- Nov 11, 2022
-
-
Jack Koenig authored
-
Jack Koenig authored
-
- Nov 09, 2022
-
-
Adam Izraelevitz authored
-
Jack Koenig authored
-
Jack Koenig authored
-
Jack Koenig authored
This makes it more clear that the feature is experimental. Users may still override the opaqueType method for more dynamic control over when instances of a given Record are OpaqueTypes or not, but they are discouraged from doing so.
-
- Nov 08, 2022
-
-
Megan Wachs authored
-
Jack Koenig authored
Co-authored-by:mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
Adam Izraelevitz authored
* Bugfix: Output on Vec of bundle with mixed field orientations * Bugfix OpaqueTypes clearing flips
-
Jack Koenig authored
Improve Record.bind and Detect Records with unstable elements
-
- Nov 06, 2022
-
-
Jack Koenig authored
-
Jack Koenig authored
This replaces an immutable.Map with a single mutable.HashSet and saves the allocation of # elements Seqs.
-
Jack Koenig authored
Vec overrides bind and does not call the version in Aggregate so the version in Aggregate is misleading in that its only ever used by Records. Now there is no version in Aggregate and the actual functionality and use is more clear.
-
Jack Koenig authored
elementsIterator provides a more efficient API for iterating on the elements of Aggregates. It is especially useful for Records where getElements returns a Seq and thus eagerly constructs a new datastructure which may then just be iterated on anyway. This new elementsIterator API is then used throughout the codebase where it makes sense. Also change Vec.getElements to just return the underlying self instead of constructing a new Seq.
-
Jack Koenig authored
Co-authored-by:Megan Wachs <megan@sifive.com>
-
- Nov 05, 2022
-
-
Jack Koenig authored
This factory method makes it easy to create PartialDataViews from a Bundle type to its supertype. Because of the typing relationship, there is no need to provide a mapping between fields. The only thing necessary is to provide a function for constructing an instance of the supertype from an instance of the subtype.
-
- Nov 02, 2022
-
-
Jiuyang Liu authored
-
- Oct 25, 2022
-
-
Megan Wachs authored
* Add initial roadmap Co-authored-by:edwardcwang <edwardcwang@users.noreply.github.com>
-
Jiuyang Liu authored
* add scalafmt for test in mill build system. * reformat codes in integration-tests
-
- Oct 24, 2022
-
-
Megan Wachs authored
MonoConnect.traceFlow now properly handles coerced directions. Also minor improvement to getClassName especially useful in test case printf debugging.
-
- Oct 22, 2022
-
-
Jared Barocsi authored
* Don't invalidate ExtModule ports in an explicitInvalidate = true context ExtModule ports were previously invalidated in the emitted FIRRTL, which is correct in a NonStrict / `Chisel._` compatibility context but not in newer chisel3 code where `explicitInvalidate = true`.
-
- Oct 20, 2022
-
-
Jared Barocsi authored
-
- Oct 19, 2022
-
-
Jared Barocsi authored
Don't modify the Builder prefix if reinvoking suggestName on a Data
-
Jared Barocsi authored
-
Jared Barocsi authored
-
Jared Barocsi authored
-
- Oct 18, 2022
-
-
Schuyler Eldridge authored
Add utilities to enable backwards compatibility of the Trace.traceName API to Chisel 3.5.x. This adds a Trace.traceNameV2 utility which aliases to Trace.traceName. This also removes the TraceNameAnnotation and renames it TraceAnnotation. In 3.5.x, traceName will point at TraceNameAnnotation (which has don't touch behavior) and will be deprecated telling people to use traceNameV2 which will point at TraceAnnotation (which does not have don't touch behavior). This will require fixups to the backport associated with this PR. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@sifive.com>
-
Jack Koenig authored
There is a new trait, chisel3.experimental.AutoCloneType that is mixed in to Bundle and can optionally be mixed in to user-defined Records. The compiler plugin prints a deprecation warning on any user-defined implementation of cloneType, telling the user to mix in AutoCloneType before upgrading to 3.6.
-
- Oct 14, 2022
-
-
Jack Koenig authored
Chisel 3.5.4 predates Scala 2.13.10 so the plugin is not published for 2.13.10.
-
Jack Koenig authored
2.13.9 has a binary compatibility regression so should be avoided.
-
- Oct 13, 2022
-
-
Schuyler Eldridge authored
Change the behavior of the Trace API to not have "don't touch" behavior unconditionally. Removing "don't touch" enables a finer granularity of functionality: if a user wants "don't touch" they can add a "don't touch". However, they are not locked optimization blocking behavior which may be undesirable in certain situations. Signed-off-by:
Schuyler Eldridge <schuyler.eldridge@sifive.com> Signed-off-by:
Schuyler Eldridge <schuyler.eldridge@sifive.com>
-
- Oct 11, 2022
-
-
Aditya Naik authored
-
- Oct 08, 2022
-
-
Schuyler Eldridge authored
Change the type of modules that the traceName API can be used for from "Module" to "RawModule". This fixes a bug where this API couldn't be used for RawModules even though it totally works. Signed-off-by:
Schuyler Eldridge <schuyler.eldridge@sifive.com> Signed-off-by:
Schuyler Eldridge <schuyler.eldridge@sifive.com>
-
Megan Wachs authored
* Add unit test for Issue 2760 * checkpoint: Fix for nested instance * remove comments about stuff not working * make the test check the output a little more * relax the requirement on returning empty ioMap * Update core/src/main/scala/chisel3/experimental/hierarchy/core/Lookupable.scala * Update core/src/main/scala/chisel3/Data.scala * Update core/src/main/scala/chisel3/experimental/hierarchy/core/Lookupable.scala Co-authored-by:
Jack Koenig <koenig@sifive.com> * Update src/test/scala/chiselTests/experimental/hierarchy/InstanceSpec.scala Co-authored-by:
Jack Koenig <koenig@sifive.com> * Update core/src/main/scala/chisel3/experimental/hierarchy/core/Lookupable.scala * Add another unit test which unfortunately still passes * Update core/src/main/scala/chisel3/Data.scala * Update src/test/scala/chiselTests/experimental/hierarchy/InstanceSpec.scala Co-authored-by:
Jack Koenig <koenig@sifive.com> Co-authored-by:
mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
- Oct 07, 2022
-
-
Aditya Naik authored
-
- Sep 30, 2022
-
-
Megan Wachs authored
Co-authored-by:Jack Koenig <koenig@sifive.com>
-
Aditya Naik authored
Co-authored-by:
Megan Wachs <megan@sifive.com> Co-authored-by:
Jack Koenig <koenig@sifive.com>
-
Aditya Naik authored
-
- Sep 28, 2022
-
-
Jack Koenig authored
-
Jack Koenig authored
Use Treadle (on pull requests only) to speed up CI
-