You need to sign in or sign up before continuing.
- Feb 02, 2021
-
-
Jack Koenig authored
-
Albert Magyar authored
* Update reported width from div/rem to match FIRRTL results * Add tests for width of % and / on UInt and SInt * Add loop-based test for known UInt/SInt op result widths Co-authored-by:Jack Koenig <koenig@sifive.com>
-
Jack Koenig authored
-
- Jan 27, 2021
-
-
SoyaOhnishi authored
If a method passed to higher function does not return any value, it is prefer to use `foreach` instead of `map`. Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Jack Koenig authored
-
- Jan 25, 2021
-
-
SoyaOhnishi authored
This is a nit fix. no logic is changed. * Rename `typeName` to `enumTypeName` in ScalaDoc * Add return type at public method * Rename `enum_records` into `enumRecords` to retain name consistency Co-authored-by:Jack Koenig <koenig@sifive.com>
-
- Jan 23, 2021
-
-
Jack Koenig authored
-
- Jan 22, 2021
-
-
Jack Koenig authored
Remove "val io" and rename MultiIOModule to Module
-
Jack Koenig authored
Co-authored-by:Megan Wachs <megan@sifive.com>
-
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
-