diff options
| author | jackkoenig | 2015-11-02 12:14:21 -0800 |
|---|---|---|
| committer | jackkoenig | 2015-11-02 12:14:21 -0800 |
| commit | d477d636b78875a0742af44f5f0372e380c36b46 (patch) | |
| tree | 14a3f140a4b6fa0abf55dc58443f516bed39ec47 /src/main/stanza/passes.stanza | |
| parent | d715e65b8de4823621b072065b746730d712d2a4 (diff) | |
Deleted extranous passes.stanza comments, updated standard passes. Added support for -b <backend> flag without any other specified passes in stanza, updated parser tests to work with stanza implementation.
Diffstat (limited to 'src/main/stanza/passes.stanza')
| -rw-r--r-- | src/main/stanza/passes.stanza | 68 |
1 files changed, 21 insertions, 47 deletions
diff --git a/src/main/stanza/passes.stanza b/src/main/stanza/passes.stanza index b9e53bc5..e31b30a9 100644 --- a/src/main/stanza/passes.stanza +++ b/src/main/stanza/passes.stanza @@ -12,56 +12,30 @@ defpackage firrtl/passes : ;============== Pass List ================ public val standard-passes = to-list $ [ - RemoveSpecialChars() ;R - ;RemoveScopes() ;R - CheckHighForm() ;R - TempElimination() ;R - ToWorkingIR() ;R -> W - ResolveKinds() ;W - InferTypes() ;R - ResolveGenders() ;W - CheckGenders() ;W - CheckKinds() ;W - CheckTypes() ;R - ExpandAccessors() ;W - LowerToGround() ;W - ;ExpandIndexedConnects() ;W + RemoveSpecialChars() + CheckHighForm() + TempElimination() + ToWorkingIR() + ResolveKinds() + InferTypes() + ResolveGenders() + CheckGenders() + CheckKinds() + CheckTypes() + ExpandAccessors() + LowerToGround() InlineIndexed() - InferTypes() ;R - CheckGenders() ;W - ExpandWhens() ;W - InferWidths() ;R - ToRealIR() ;W -> R - CheckWidths() ;R - Pad() ;R - ConstProp() ;R - SplitExp() ;R - CheckWidths() ;R - CheckHighForm() ;R - CheckLowForm() ;R - CheckInitialization() ;R + ExpandWhens() + InferWidths() + ToRealIR() + CheckWidths() + Pad() + ConstProp() + SplitExp() + CheckLowForm() + CheckInitialization() ] - ;CheckHighForm() - ;TempElimination() - ;ToWorkingIR() - ;ResolveKinds() - ;CheckKinds() - ;InferTypes() - ;CheckTypes() - ;ResolveGenders() - ;CheckGenders() - ;ExpandAccessors() - ;LowerToGround() - ;;ExpandIndexedConnects() - ;InlineIndexed() - ;ExpandWhens() - ;InferWidths() - ;Inline() - ;SplitExp() - ;CheckLowForm() - ;ToRealIR() - ;Pad() ] ;=============== WORKING IR ================================ public definterface Kind public defstruct WireKind <: Kind |
