| Age | Commit message (Collapse) | Author |
|
trait AST -> abstract class FirrtlNode
Move all IR to new package ir
Add import of firrtl.ir._
|
|
Add simple documentation
trait PrimOp -> abstract class PrimOp
Move PrimOp case objects to object PrimOps
Rename PrimOp case objects to match concrete syntax
Overrwrite toString for more canonical serialization
Update some PrimOps utility functions
|
|
trait Expression -> abstract class Expression
Ref -> Reference
abbrev. exp -> expr
Add abstract class Literal
UIntValue -> UIntLiteral extends Literal
SIntValue -> SIntLiteral extends Literal
|
|
trait Stmt -> abstract class Statement (to match Expression)
abbrev. exp -> expr
BulkConnect -> PartialConnect
camelCase things that were snake_case
case class Empty() -> case object EmptyStmt
Change >120 character Statements to multiline
|
|
Add simple documentation
trait Width -> abstract class Width
case class UnknownWidth -> case object UnknownWidth
|
|
Add simple documentation
Flip -> Orientation
trait Orientation -> abstract class Orientation
Orientation case objects to upper camel case
REVERSE -> Flip
|
|
trait Type -> abstract class Type
case class ClockType() -> case object ClockType
case class UnknownType() -> case object UnknownType
Add GroundType and AggregateType
ClockType has width of IntWidth(1)
|
|
Add simple documentation
Change Direction case objects to upper camel case
|
|
trait Module -> abstract class DefModule
InModule -> Module (match concrete syntax)
ExModule -> ExtModule (match concrete syntax)
Add simple scaladoc for each one
|
|
|
|
Change Field from IsDeclaration to HasName
Make WDefInstance an IsDeclaration
|
|
|
|
Almost all of the code was already there. This is cleaner (and faster)
than calling tpe(Expression).
|
|
|
|
|
|
|
|
|
|
|
|
getting info for error reporting in new pass/check.
|
|
|
|
|
|
|
|
|
|
|
|
(notably stop, printf, mux, validif, ubits, sbits, readers, writers, and readwriters are incomplete)
|
|
|
|
|
|
there yet. Will allow simple bulk connecting at top-level
|
|
convert object <=> string, added eqv and neqv
|
|
modified Logger slightly, added Primops object for utility functions, minor changes in Utils
|
|
|
|
for unknown width. Also added test to check this
|
|
AST -> String). Uses ANTLRv4 to generate concrete syntax parser
|