- Jul 26, 2023
-
-
Jack Koenig authored
-
- Jul 25, 2023
-
-
George Lyon authored
* Add FirtoolBinaryPath option * Format * Add Scaladoc * Add HasShellOptions * Fix build * Update src/main/scala/circt/stage/Annotations.scala Co-authored-by:
Schuyler Eldridge <schuyler.eldridge@gmail.com> * Register shell option --------- Co-authored-by:
Schuyler Eldridge <schuyler.eldridge@gmail.com>
-
Jack Koenig authored
Also make line comments work on lines with filter-action pairs.
-
- Jul 21, 2023
-
-
Jack Koenig authored
It causes issues in downstream codebases and really adding it just isn't worth the pain.
-
- Jul 19, 2023
-
-
Jack Koenig authored
Warnings have been assigned unique integers to use as identifiers for purposes of documentation and configuration. New CLI option --warn-conf accepts a comma-separated sequence of <filter>:<action> pairs for customizing warnings. Supported filters are: * any - matches all warnings * id=<integer> - matches warnings with the integer id * src=<glob> - matches warnings where <glob> matches the warning source file id and src filters can be combined with &. Supported actions are: * :s - suppress the warning * :w - report the warning as a warning (default behavior) * :e - error on the warning For example, the new Vec dynamic width matching warning can be suppressed for source files in src/main/scala while all other warnings elevated to errors with: --warn-conf "id=4&src=src/main/scala/**:s,any:e" The is also --warn-conf-file which works similarly to --warn-conf except the <filter>:<action> pairs are newline separated in a file. # is used for line comments. -
Deborah Soung authored
* clean up pkg code * pad force statements * adding width known check * fixing checks and adding test case for unknown wire width force * error out on probes of unknown width * fixing check
-
- Jul 18, 2023
-
-
Jared Barocsi authored
-
Jack Koenig authored
Co-authored-by:Schuyler Eldridge <schuyler.eldridge@sifive.com>
-
- Jul 15, 2023
-
-
Chick Markley authored
Add a simple test that `take(0)` return a zero width wire.
-
Jack Koenig authored
This moves name sanitation a little earlier and ensures that the sanitized names are use more consistently throughout Chisel internals. This fixes a bug in D/I where unsanitary names would lead to a crash.
-
- Jul 14, 2023
-
-
Jack Koenig authored
-
- Jul 11, 2023
-
-
Jack Koenig authored
-
- Jul 10, 2023
-
-
Mike Urbach authored
* Update BoringUtils.bore to not add a port when boring from a port. When drilling from the original source, if it's already a port, just use it directly. Added a simple test from this behavior. Also removed an errant println in the BoringUtilsSpec while updating it. Closes https://github.com/chipsalliance/chisel/issues/3401 . * Updates from PR review. --------- Co-authored-by:
mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-
- Jul 08, 2023
-
-
Jack Koenig authored
-
- Jul 07, 2023
-
-
George Lyon authored
-
- Jul 06, 2023
-
-
Jiuyang Liu authored
Also add mill to CI.
-
George Lyon authored
[svsim] Don't redirect simulation stderr to a pipe (#3403)
-
- Jul 01, 2023
-
-
Jared Barocsi authored
This PR adds new APIs for the SRAM module to instantiate a number of ports connected to individual clocks. This allows the creation of memories driven by multiple clocks, for use cases like clock domain crossover.
-
- Jun 30, 2023
-
-
Jack Koenig authored
This was previously deprecated, and in most cases results in an error downstream anyway.
-
Jack Koenig authored
It's an error in most cases already, and in the cases it isn't, make it a warning. Also fix a crash that could occur when viewing a non-Data containing non-hardware Data.
-
Jack Koenig authored
This is not a functional bug. The recursive form of reify for Element would use the .topBinding from the wrong argument, so it would recurse an extra time, but it would ultimately converge to the right value.
-
Megan Wachs authored
5.0.0 is now an official release so i think we should be prompting for different milestones on our PRs
-
- Jun 29, 2023
-
-
Daniel Resnick authored
* Avoid emitting 'const const' for const vecs of const elements * Handle vecs of vecs without intermediate const
-
- Jun 28, 2023
-
-
Jack Koenig authored
-
Jack Koenig authored
* log2 functions * unsignedBitLength
-
Daniel Resnick authored
-
- Jun 27, 2023
-
-
Schuyler Eldridge authored
Change the FIRRTL serializer to use literal identifiers if any identifiers begin with a leading digit. This is a FIRRTL 3.0.0 feature that simplifies parsing. This enables literal identifier emission anywhere. However, this code path is only reachable via MixedVec due to mangling of numeric names to add a leading underscore in all other circumstances. In the future, this commit will enable removing this restriction and switching to literal identifiers when this happens. No changes are made to annotation targets. E.g., the literal identifier, "wire `42`" in circuit "Foo" and module "Bar" is still referred to by a local target "~Foo|Bar>42". This is intentional (for now). Targets don't have parsing ambiguity like FIRRTL text and the name of this wire is still "42" not "`42`". It follows that the storage of this name in FIRRTL IR is not changed. This is the same way that this is handled in CIRCT. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@sifive.com>
-
Schuyler Eldridge authored
Use new FIRRTL 3.0.0 syntaxes: - `a <= b` is now `connect a, b` - `c is invalid` is now `invalidate c` - a register with a reset is now `regreset` - `UInt("b101010")` is now `UInt(0b101010)` Update the stated version of the FIRRTL emitted to 3.0.0. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@sifive.com>
-
Girish Pai authored
* Fix probe read for bundles * Remove unwanted commented code * scalafmt * Revert Data.scala change
-
- Jun 23, 2023
-
-
Jared Barocsi authored
-
Will Dietz authored
Fixes #3363.
-
Jack Koenig authored
-
Hideto Ueno authored
-
Will Dietz authored
-
- Jun 22, 2023
-
-
Jack Koenig authored
This will speed up the typical test flow by separating the execution driven tests out. Also rename the file containing VecIntegrationSpec to match the class name.
-
Jack Koenig authored
Subclasses of OpaqueType can override errorOnAsUInt to make it an elaboration time error if .asUInt is called on an instance of the particular type (including when nested inside of an Aggregate). This closes a large loophole in the OpaqueType API.
-
- Jun 21, 2023
-
-
Daniel Resnick authored
-
Guillaume Martres authored
The previous link is no longer working.
-
Schuyler Eldridge authored
Signed-off-by:Schuyler Eldridge <schuyler.eldridge@sifive.com>
-
- Jun 16, 2023
-
-
Deborah Soung authored
-