summaryrefslogtreecommitdiff
path: root/src/main/scala/Chisel
AgeCommit message (Collapse)Author
2015-12-10Add Option support in Bundleducky
2015-12-09Refactor testharness generation to create directories and have minimal APIducky
2015-12-09Optional additional Verilog sources to include in executeducky
2015-12-09Extend TesterDriver to optionally take in additional Verilog sourcesducky
2015-12-06Split internal and FIRRTL packagesducky
2015-12-06More design rationale for Vecducky
2015-11-04Fix new style errorsducky
2015-11-04Remove Parameters library and refactor Driver.Henry Cook
In addition to removing all the extraneous Driver invocations that created various top-level Parameters instances, this commit also lays the groundwork for stanza-firrtl/verilator based testing of Modules that extend BasicTester. The execution-based tests have been updated accordingly. They will only succeed if firrtl and verilator binaries have been installed. Further work is needed on individual tests to use assertions instead of .io.error.
2015-11-03Add documentation on some non-intuitive partsducky
2015-11-02Remove implementation details from scaladoc.ducky
You didn't want it, so Imma getting rid of it...
2015-11-02Add Scalastyle rule to check lines ending with a ;, fix some instancesducky
2015-11-02Scalastyle ignore ## and printlns in Error.scaladucky
2015-11-02Remove "generates {,no} logic" commentsPalmer Dabbelt
At least one of these is incorrect.
2015-11-02Deprecations and better documentation for Aggregate.scaladucky
2015-11-02Break out Utils.scala into smaller portionsducky
2015-10-30Merge pull request #47 from ucb-bar/corebitsfixAndrew Waterman
Fix whitespace in Bits
2015-10-30Fix whitespaceducky
2015-10-30Move Cat into utilsducky
2015-10-30Resolve some review todos in Bitsducky
2015-10-29Merge pull request #43 from ucb-bar/corebitpatAndrew Waterman
Fix review todos in BitPat.scala
2015-10-29Fix review todos in BitPat.scaladucky
2015-10-29Resolve review todos for Data.scaladucky
2015-10-28Merge pull request #38 from ucb-bar/internalsplitJim Lawson
Move internal files into their own directories
2015-10-26Merge pull request #39 from ucb-bar/coresplitAndrew Waterman
Break Core.scala into bite-sized pieces
2015-10-26Remove (broken) floating point data typesducky
2015-10-26Break Core.scala into bite-sized piecesducky
2015-10-26Move internal files into their own directoriesducky
2015-10-26Add scalastyle ignore commentsducky
2015-10-26Make all the log2 functions take BigInt (in addition to Int)Andrew Waterman
2015-10-22Make that one last if block scalastyle compliant by making it ternary-likeducky
2015-10-21Add explicit types for public methodsducky
2015-10-21Scalastyle fixes involving changing codeducky
2015-10-20Make if / else braces style conformant to Scalastyle checkerducky
2015-10-20Whitespace / comment style fixesducky
2015-10-19Core.scala API documentationducky
2015-10-16Remove old Literal object; fold the parseLit into UIntAndrew Waterman
2015-10-08Handle IllegalArgumentExcetions that mean a cloneType is neededPalmer Dabbelt
When trying to cloneType() on classes that take a builtin (like Int), we get an IllegalArgumentException instead of a InvocationTargetException. This change prints a nice error message instead of a stack trace.
2015-10-07Fix for getDump with empty parameters.Jim Lawson
Avoid: [error] (run-main-0) java.lang.UnsupportedOperationException: empty.reduceLeft java.lang.UnsupportedOperationException: empty.reduceLeft when invoked via chiselMain() with no Parameters.
2015-10-01Flip Mem/SeqMem argument order; deprecate old orderingAndrew Waterman
2015-09-25Improve coverage of default cloneType method; add commentsAndrew Waterman
2015-09-24Add new-style Vec constructor; deprecate old versionducky
2015-09-22Integrate Chisel2 Queue scaladoc and formatting changes.Jim Lawson
2015-09-18Improve IR class hierarchyAndrew Waterman
- Rename Alias to Node to match FIRRTL notion - Remove poorly-named Immediate and replace root of hierarchy with Arg
2015-09-18Correct some scaladoc commentsAndrew Waterman
2015-09-18Use FIRRTL idiom for SeqMem read-enablesAndrew Waterman
Emit read-enables as mux(ren, addr, poison).
2015-09-01Add scaladoc to UInt/SInt companion objectsAndrew Waterman
2015-09-01Disallow external use of Vec/UInt/SInt constructorsAndrew Waterman
Use the companion objects instead.
2015-08-31Fix val io = new Bundle{...}.flipAndrew Waterman
Now, we emit all I/Os inside a bundle named io.
2015-08-31FIRRTL keywords don't need to be name-mangled, AFAICTAndrew Waterman
2015-08-31Fix Namespace bugAndrew Waterman
A mangled name may itself conflict with another name.