| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lower Types pass. #53
|
|
compliant
|
|
not and integer
|
|
|
|
|
|
map.
Also rewrite main so stanza and scala passes can be intermixed.
|
|
|
|
|
|
|
|
ready, has some weird issues when they're not, but also kind of works in that the hardware verifier still reports the right answer, it seems to go to half duty cycle and then do every token twice
|
|
IO between the sim modules.
|
|
need to parse queue module text in midas/Utils.scala, need to create (src, dst) -> Module mapping in midas/Fame.scala
|
|
|
|
|
|
there yet. Will allow simple bulk connecting at top-level
|
|
|
|
|
|
updated Makefile to play nicer when firrtl is a submodule, fixed bug in Translator for single line scopes, fixed firrtl-scala script to point to firrtl.Driver instead of old firrtl.Test
|
|
|
|
support for -b <backend> flag without any other specified passes in stanza, updated parser tests to work with stanza implementation.
|
|
backend can be applied. Added firrtl compiler for emitting firrtl
|
|
Updated Scala FIRRTL with Testing and Infer-Types Pass
|
|
convert object <=> string, added eqv and neqv
|
|
modified Logger slightly, added Primops object for utility functions, minor changes in Utils
|
|
sense for some applications, also fixed up printing to better match stanza implementation
|
|
printing to match stanza implementation
|
|
|
|
of printVars still missing. Added Logger class for debug printing
|
|
|
|
for unknown width. Also added test to check this
|
|
|
|
|
|
|
|
|
|
Changed DefMemory to be a non-vector type with a size member
|
|
AST -> String). Uses ANTLRv4 to generate concrete syntax parser
|
|
Change of FIRRTL semantics!
|
|
ASIC backend.
|
|
Assignments to a register are no longer affected by enclosing when
statements:
when p :
reg r : UInt,clk,reset
r := a
will lower to:
reg r : UInt,clk,reset
r := a
instead of:
reg r : UInt,clk,reset
when p : r := a
|