Another filter -> if
authorEddie Hung <eddie@fpgeh.com>
Fri, 9 Aug 2019 23:23:32 +0000 (16:23 -0700)
committerEddie Hung <eddie@fpgeh.com>
Fri, 9 Aug 2019 23:23:32 +0000 (16:23 -0700)
passes/pmgen/ice40_dsp.pmg

index a1b0b5004c4fc89f2303534ba3d1fa5cca37515a..e0a213e85b579ced1e9ff8a03f8ff584bdae2ae2 100644 (file)
@@ -22,8 +22,8 @@ endcode
 
 match ffA
        if mul->type != \SB_MAC16 || !param(mul, \A_REG).as_bool()
+       if !port(mul, \A).remove_const().empty()
        select ffA->type.in($dff)
-       filter !port(mul, \A).remove_const().empty()
        filter includes(port(ffA, \Q).to_sigbit_set(), port(mul, \A).remove_const().to_sigbit_set())
        optional
 endmatch
@@ -45,8 +45,8 @@ endcode
 
 match ffB
        if mul->type != \SB_MAC16 || !param(mul, \B_REG).as_bool()
+       if !port(mul, \B).remove_const().empty()
        select ffB->type.in($dff)
-       filter !port(mul, \B).remove_const().empty()
        filter includes(port(ffB, \Q).to_sigbit_set(), port(mul, \B).remove_const().to_sigbit_set())
        optional
 endmatch