- Mar 20, 2019
-
-
Jack Koenig authored
-
John Wright authored
Designs with no SeqMems should produce empty MemConf strings, and this should be parsable without excepting (#1060)
-
- Mar 19, 2019
-
-
Jim Lawson authored
* Add serialization support for LoadMemoryFileType in LoadMemoryAnnotation Add custom LoadMemoryFileTypeSerializer. Add test to verify LoadMemoryAnnotation can be correctly serialized/deserialized. * Simplify and focus LoadMemoryAnnotation serialization/deserialization. Respond to comments on earlier implementations. * Add type FileType definition for current chisel3 code.
-
- Mar 08, 2019
-
-
John Wright authored
* Copy MemConf.scala from ucb-bar/barstools#35 into memlib. This provides a data structure wrapper around the existing memory conf format which contains both reading and writing methods, making it easier to write code that needs to read the format. * Add MemConf tests and use a Map[MemPort, Int] for port lists instead of a Seq[MemPort] which is a bit less fragile.
-
- Mar 06, 2019
-
-
Jean Bruant authored
-
- Mar 01, 2019
-
-
Adam Izraelevitz authored
-
Albert Magyar authored
* Don't create nodes to hold Muxes with >0 void cases * Added test case demonstrating void error * Memoize intermediate expression when checking for WVoid-ness
-
- Feb 28, 2019
-
-
Jim Lawson authored
* Add --nodedup option to facilitate FIRRTL to verilog regression testing. * Short-circuit the DedupModules transform if NoCircuitDedupAnnotation exists.
-
- Feb 27, 2019
-
-
Chick Markley authored
* Create a simple generic graphviz renderer for DiGraph There are three basic kinds - A simple default renderer - A ranked renderer that places nodes in columns based on depth from sources - A sub-graph render for graphs that contain a loop - Renders just nodes that are part of first loop found - Plus the neighbors of the loop - Loop edges are shown in red. * Create a simple generic graphviz renderer for DiGraph - Moved the graph loop finder into DiGraph - Fixed scala doc per Edward's comments
-
- Feb 26, 2019
-
-
Jack Koenig authored
* Run CheckHighForm after all non-emitter transforms in firrtl tests * Remove shlw from checks.scala * Removed mistake in fix * Fix FirrtlSpec fix
-
Albert Magyar authored
-
- Feb 25, 2019
-
-
Schuyler Eldridge authored
Fix almost all scaladoc warnings, add source links
-
Schuyler Eldridge authored
Signed-off-by:Schuyler Eldridge <schuyler.eldridge@ibm.com>
-
Schuyler Eldridge authored
This fixes all Scaladoc warnings except for those trying to link to Java. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@ibm.com>
-
- Feb 23, 2019
-
-
Albert Chen authored
* refactor InferWidths to allow for extra contraints, add InferWidthsWithAnnos * add test cases * add ResolvedAnnotationPaths trait to InferWidthsWithAnnos * remove println * cleanup tests * remove extraneous constraints * use foreachStmt instead of mapStmt * remove support for aggregates * fold InferWidthsWithAnnos into InferWidths * throw exception if ref not found, check for annos before AST walk
-
Jack Koenig authored
Instead, just forward the exception
-
Adam Izraelevitz authored
Previously would require all requested reviewers must have approved a PR before merging.
-
- Feb 22, 2019
-
-
Adam Izraelevitz authored
-
Jim Lawson authored
-
Jim Lawson authored
* No time left for you - quickly rename deep bundles still occasionally fails. Run the "quick" calibration test three times and choose the maximum as the basis for comparison with the "deep" test. * Rename local variable to less confusing name.
-
Adam Izraelevitz authored
-
Adam Izraelevitz authored
-
Schuyler Eldridge authored
-
Nick Hynes authored
* Correctly handle dots in loaded memory paths * Added test for loadmem filename
-
- Feb 21, 2019
-
-
Jim Lawson authored
* Attempt to deal with timing vagaries in UniquifySpec.quicklyrenamedeepbundles Switching to Scala 2.12.8 cause this test to start failing on OSX. Try earlier scheme to compare shallow vs deep to reduce brittleness. * Address review concerns; update comment.
-
- Feb 15, 2019
-
-
Jack Koenig authored
Fixes #219 * Adds AsyncResetType (similar to ClockType) * Registers with reset signal of type AsyncResetType are async reset registers * Registers with async reset can only be reset to literal values * Add initialization logic for async reset registers
-
- Feb 12, 2019
-
-
John Wright authored
-
- Feb 06, 2019
-
-
Schuyler Eldridge authored
Add "mverilog" Compiler Option, MinimumVerilogEmitter
-
Schuyler Eldridge authored
This uses the foldShiftRight method of the ConstantPropagation Transform when legalizing Shr PrimOps. This has the effect of removing literals with bit extracts from the MinimumVerilogCompiler. This makes the formerly private foldShiftRight method of a public method of the ConstantPropagation companion object. Tests in the MimimumVerilogCompilerSpec are updated to check that Shr is handled as intended. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@ibm.com>
-
Schuyler Eldridge authored
This adds the RemoveValidIf Pass to the MinimumLowFirrtlOptimization Transform. A test case is included to verify that `is invalid` is properly converted to a connection to zero. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@ibm.com>
-
Schuyler Eldridge authored
This adds runs of the minimum Verilog compiler and SystemVerilog compiler in DriverSpec. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@ibm.com>
-
Schuyler Eldridge authored
This adds "mverilog" to the "--compiler" command line option. This will run the MinimumVerilogCompiler. This additionally fixes the MinimumVerilogCompiler such that DeadCodeElimination will not be run (it's not supposed to be). This is done by adding a MinimumVerilogEmitter, subclassing VerilogVerilog, that strips the DeadCodeElimination step from its parent. Additionally, BlackBoxSourceHelper is removed from the MinimumVerilogCompiler since this will be run by the VerilogEmitter already. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@ibm.com>
-
Andrew Waterman authored
* Enhance constant propagation across registers * Add more elaborate test case for register const prop
-
- Feb 05, 2019
-
-
Albert Magyar authored
-
- Feb 02, 2019
-
-
Schuyler Eldridge authored
This avoids an apparent problem somewhere in sbt and/or scalatest where the JVM runs out of metaspace if you repeatedly run tasks. This is an annoyance for FIRRTL developers or users that keep an sbt session open. This kludges around that by forking all tasks into a separate JVM. Signed-off-by:Schuyler Eldridge <schuyler.eldridge@ibm.com>
-
Albert Magyar authored
* Add memory WRef factory for completeness * Refactor DefAnnotatedMemory construction for clarity
-
- Feb 01, 2019
-
-
Jack Koenig authored
-
Albert Magyar authored
-
- Jan 29, 2019
-
-
Sequencer authored
make more clear for ExecutionOptionsManager log level settings.
-
- Jan 27, 2019
-
-
Jim Lawson authored
-