Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect direction for mixed specified and unspecified directionality #4204

Open
jackkoenig opened this issue Jun 21, 2024 · 0 comments · May be fixed by #4205
Open

Incorrect direction for mixed specified and unspecified directionality #4204

jackkoenig opened this issue Jun 21, 2024 · 0 comments · May be fixed by #4205

Comments

@jackkoenig
Copy link
Contributor

Type of issue: Bug Report

Please provide the steps to reproduce the problem:

Consider the following Chisel:

//> using scala "2.13.12"
//> using dep "org.chipsalliance::chisel:6.4.0"
//> using plugin "org.chipsalliance:::chisel-plugin:6.4.0"
//> using options "-unchecked", "-deprecation", "-language:reflectiveCalls", "-feature", "-Xcheckinit", "-Xfatal-warnings", "-Ywarn-dead-code", "-Ywarn-unused", "-Ymacro-annotations"

import chisel3._
import chisel3.reflect.DataMirror
// _root_ disambiguates from package chisel3.util.circt if user imports chisel3.util._
import _root_.circt.stage.ChiselStage

class MyBundle extends Bundle {
  val a = Output(UInt(8.W))
  val b = UInt(8.W)
}

class Foo extends Module {

  val w = Wire(new MyBundle)

  println(DataMirror.directionOf(w))
}

object Main extends App {
  ChiselStage.emitCHIRRTL(new Foo)
}

What is the current behavior?

The printed direction is Bidirectional(Default)

What is the expected behavior?

The result definitely should not be Bidirectional, it probably should be Output although if you didn't specify Output then you would get Unspecified (which behaves like Output).

Please tell us about your environment:

Other Information

What is the use case for changing the behavior?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant