- Jan 22, 2021
-
-
Jack Koenig authored
-
Jack Koenig authored
-
Jack Koenig authored
-
Jack Koenig authored
Chisel projects no longer need -Xsource:2.11 when compiling with Scala 2.12. Autowrapping of "val io" for compatibility mode Modules is now implemented using reflection instead of calling the virtual method. Also move Chisel.BlackBox to new chisel3.internal.LegacyBlackBox
-
Jack Koenig authored
-
Jack Koenig authored
-
- Jan 21, 2021
-
-
Jiuyang Liu authored
This PR revert #1480, but keep the test. Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Jack Koenig authored
-
- Jan 20, 2021
-
-
Jack Koenig authored
This is useful for libraries to guard operations implemented via annotations or BlackBoxes by the current when predicate
-
- Jan 16, 2021
-
-
Jack Koenig authored
Farewell Scala 2.11
-
- Jan 15, 2021
-
-
Jiuyang liu authored
-
- Jan 11, 2021
-
-
Megan Wachs authored
* Add (failing) Test for Data toTarget calls Add scaladoc and clean up test * Builder: don't let .toTarget pass if it won't be able to deserialize properly later * Update src/test/scala/chiselTests/ReferenceTargetSpec.scala * Rename and simplify tests for literal toTarget
-
- Jan 07, 2021
-
-
Jiuyang Liu authored
-
- Dec 18, 2020
-
-
Jack Koenig authored
-
Jack Koenig authored
Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Jack Koenig authored
-
- Dec 17, 2020
-
-
Jack Koenig authored
MiMa binary compatibility checks are now run on master, but the mimaPreviousArtifacts are empty which makes the check a no-op. This helps keep both the build.sbt and CI more consistent between master and stable branches. .mergify.yml is also updated with mergify.sc from chisel-repo-tools using the following configuration: conditions: - status-success=all tests passed branches: - 3.2.x - 3.3.x - 3.4.x
-
- Dec 09, 2020
-
-
Chick Markley authored
- fix build.sbt - fix build.sc
-
- Dec 08, 2020
-
-
Jiuyang Liu authored
* Builder: use LazyLogging.logger.warn to print elaboration message * add deprecation for chisel3.internal.ErrorLog.info. * add test to check elaboration message still exist. Co-authored-by:Kevin Laeufer <kevin.laeufer@sifive.com>
-
- Dec 02, 2020
-
-
Jack Koenig authored
Implemented by folding Element.ref into Data.ref. Element.ref had special handling for literals, but because Bundles can also be literals, there were code paths that tried to get the ref of a Bundle literal which was non-existent. Now, all literals are handled together. Because FIRRTL does not have support for Bundle literals, Bundle literal refs are implemented by materializing a Wire.
-
Kevin Laeufer authored
-
- Nov 24, 2020
-
-
Jack Koenig authored
-
- Nov 17, 2020
-
-
Daniel Kasza authored
* Improve source locators for switch statements.
-
- Nov 12, 2020
-
-
Jack Koenig authored
-
- Nov 11, 2020
-
-
Jack Koenig authored
The SecurityManager is global so is not thread-safe. This is the source of flaky tests in FIRRTL CI. Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Jack Koenig authored
* Refine autonaming to have more intuitive behavior Last name in an Expression wins, while the first Statement to name wins. This is done via checking the _id of HasIds during autonaming and only applying a name if the HasId was created in the scope of autonaming. There is no change to .autoSeed or .suggestName behavior. Behavior of chisel3-plugins from before this change is maintained. * Update docs with naming plugin changes
-
- Nov 06, 2020
-
-
Jack Koenig authored
This is a refinement of the assertion added in #1616 then removed in #1654. Because Records now set the refs of children upon binding, later, unbound Records could incorrectly override the refs. The first set should win.
-
- Nov 04, 2020
-
-
Jack Koenig authored
It causes issues for some legal (if awkward) patterns. A larger refactor of when refs are set could reinstate this check.
-
- Nov 03, 2020
-
-
John Ingalls authored
Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Adam Izraelevitz authored
-
- Oct 31, 2020
-
-
Jack Koenig authored
This requires a combination of things, but it happens to be a combination used by Diplomacy in Rocket Chip. It must be a Record in compatibility code with Vecs as fields and a mix of components with and without set directions.
-
- Oct 28, 2020
-
-
Adam Izraelevitz authored
-
- Oct 27, 2020
-
-
Adam Izraelevitz authored
* Fix crosslinks in mdoc. Can't use md suffix * Removed all .md crossrefs Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Adam Izraelevitz authored
* Bugfix - module name collision for injecting aspect * Fixed mechanism to avoid module name collisions * Added comments for reviewer feedback Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Adam Izraelevitz authored
* Added forcename transform and tests * Added documentation and additional error checking * Added mdoc. Added RunFirrtlTransform trait * Removed TODO comment * Addressed reviewer feedback * Removed trailing comma Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
PENGUINLIONG authored
Co-authored-by:
Schuyler Eldridge <schuyler.eldridge@sifive.com> Co-authored-by:
mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Adam Izraelevitz authored
Causes issues when building the website, using these docs. Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
- Oct 23, 2020
-
-
Jack Koenig authored
* Use Data refs for name prefixing with aggregate elements Vecs set the refs of their elements upon construction of those elements. In the past, Records haven't set their elements refs until module close, but it can be done sooner. Doing it upon binding means that refs will at least be available for Records used in hardware elements. Since only bound Data can be connected to anyway, Aggregate elements being connected to will always have a ref which we can then use for creating naming prefixes. * Add tighter correctness checks * Handle more cases in connection prefixing Add support for forcing setRef to override a previous setting. This is only used by BlackBox ports which need to drop their io prefix. Also add a Try() around Data.bindingToString which sometimes throws exceptions when being used to .toString a Data in an error message. * Strip trailing spaces in names in compiler plugin
-
- Oct 22, 2020
-
-
Schuyler Eldridge authored
* Fix `-e` option causing ChiselStage.emit* to error Signed-off-by:
Schuyler Eldridge <schuyler.eldridge@sifive.com> * Add test of `-e` ChiselStage behavior Signed-off-by:
Schuyler Eldridge <schuyler.eldridge@sifive.com> * fixup! Add test of `-e` ChiselStage behavior
-
- Oct 20, 2020
-
-
Jack Koenig authored
This allows for sharing of the prefix stacks between Data, and removes a boxing per prefix stack element that is no longer necessary. Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-