- Jul 09, 2022
-
-
Zachary Yedidia authored
-
- Jul 08, 2022
-
-
Zachary Yedidia authored
-
- Jul 07, 2022
-
-
Zachary Yedidia authored
-
- Jul 06, 2022
-
-
Zachary Yedidia authored
-
Zachary Yedidia authored
-
Zachary Yedidia authored
-
Zachary Yedidia authored
-
Zachary Yedidia authored
-
- Jul 03, 2022
-
-
Zachary Yedidia authored
-
Zachary Yedidia authored
-
- Jul 02, 2022
-
-
Zachary Yedidia authored
-
Zachary Yedidia authored
-
Zachary Yedidia authored
-
Jack Koenig authored
-
Andrew Waterman authored
-
- Jun 24, 2022
-
-
Zachary Yedidia authored
-
- Jun 23, 2022
-
-
Carlos Eduardo authored
-
Jack Koenig authored
This makes it such that we can stop hosting ScalaDoc on the Chisel website, instead just pointing to the latest docs on javadoc.io
-
- Jun 22, 2022
-
-
Michael Etzkorn 叶明凯 authored
Co-authored-by:Megan Wachs <megan@sifive.com>
-
Girish Pai authored
Used for separate elaboration of Definition and Instance
-
- Jun 19, 2022
-
-
Carlos Eduardo authored
-
- Jun 18, 2022
-
-
Jack Koenig authored
Previously, the plugin would crash with a useless internal error.
-
- Jun 17, 2022
-
-
Jack Koenig authored
-
- Jun 16, 2022
-
-
Jack Koenig authored
Define leading '_' as API for creating temporaries
-
Jack Koenig authored
-
Jack Koenig authored
Chisel and FIRRTL have long used signals with names beginning with an underscore as an API to specify that the name does not really matter. Tools like Verilator follow a similar convention and exclude signals with underscore names from waveform dumps by default. With the introduction of compiler-plugin prefixing in Chisel 3.4, the convention remained but was hard for users to use unless the unnnamed signal existed outside of any prefix domain. Notably, unnamed signals are most useful when creating wires inside of utility methods which almost always results in the signal ending up with a prefix. With this commit, Chisel explicitly recognizes signals whos val names start with an underscore and preserve that underscore regardless of any prefixing. Chisel will also ignore such underscores when generating prefixes based on the temporary signal, preventing accidental double underscores in the names of signals that are prefixed by the temporary.
-
- Jun 14, 2022
-
-
Adam Izraelevitz authored
* Added ImplicitInvalidate trait with tests
-
- Jun 11, 2022
-
-
Jack Koenig authored
BitPat.rawString is called a lot when decoding and is used for certain BitPat operations. We should use it less but this is at least a bandaid.
-
- Jun 09, 2022
-
-
Jack Koenig authored
Captures default output in TesterDriver with a ProcessLogger using the Logger from FIRRTL to suppress output from Verilator when running tests. This will change behavior for any users of the TesterDriver because the standard out of Verilator compilation and execution is suppressed by default. Users can create their own ProcessLogger to restore the previous behavior, eg. import scala.sys.process.ProcessLogger val echoLogger = ProcessLogger(Console.out.println, Console.err.println)
-
Adam Izraelevitz authored
Co-authored-by:Jack Koenig <koenig@sifive.com>
-
- Jun 08, 2022
-
-
Jack Koenig authored
Include the function being called in the suggestion.
-
Jared Barocsi authored
-
- Jun 07, 2022
-
-
Jack Koenig authored
Remove reflective naming
-
Jack Koenig authored
With reflective naming removed, this warning no longer does anything so the option to enable it is deprecated.
-
Jack Koenig authored
This includes removal of closeUnboundIds and _onModuleClose which were hacks to support naming of non-hardware (ie. unbound) Data. This can result in a substantial performance improvement for large Modules with many public vals.
-
Jack Koenig authored
This includes both .*Name APIs and .toTarget
-
Jack Koenig authored
Add --warn:reflective-naming
-
Jack Koenig authored
This new argument (and associated annotation) will turn on a warning whenever reflective naming changes the name of a signal. This is provided to help migrate from Chisel 3.5 to 3.6 since reflective naming is removed in Chisel 3.6.
-
Jack Koenig authored
The new function is chisel3.internal.buildName.
-
- Jun 03, 2022
-
-
Jared Barocsi authored
-