$__ICE40_CARRY_LUT4 -> $__ICE40_FULL_ADDER as per @whitequark
authorEddie Hung <eddie@fpgeh.com>
Mon, 15 Jul 2019 19:03:51 +0000 (12:03 -0700)
committerEddie Hung <eddie@fpgeh.com>
Mon, 15 Jul 2019 19:03:51 +0000 (12:03 -0700)
techlibs/ice40/abc_hx.box
techlibs/ice40/abc_lp.box
techlibs/ice40/abc_u.box
techlibs/ice40/arith_map.v
techlibs/ice40/cells_map.v
techlibs/ice40/cells_sim.v
techlibs/ice40/ice40_opt.cc

index 4b55297dddbf98f04cac6cb7a8a19b001ef623e8..c0ea742e24fa79a9a67f3985023446459d37f85b 100644 (file)
@@ -8,6 +8,6 @@
 #   (NB: carry chain input/output must be last
 #        input/output and have been moved there
 #        overriding the alphabetical ordering)
-$__ICE40_CARRY_LUT4 1 1 3 2
+$__ICE40_FULL_ADDER 1 1 3 2
 400 379 316
 259 231 126
index b85346370b119b653e1f0691d3c6bee23185c00d..d73b6d649b18449ec3f8804c95a315e7a0818df5 100644 (file)
@@ -8,6 +8,6 @@
 #   (NB: carry chain input/output must be last
 #        input/output and have been moved there
 #        overriding the alphabetical ordering)
-$__ICE40_CARRY_LUT4 1 1 3 2
+$__ICE40_FULL_ADDER 1 1 3 2
 589 558 465
 675 609 186 
index 95c2c3d811bed213fa7a5cfb6c572581f70ce964..42d666051057e808e1c6e22798ce9b98cb5ddc68 100644 (file)
@@ -8,6 +8,6 @@
 #   (NB: carry chain input/output must be last
 #        input/output and have been moved there
 #        overriding the alphabetical ordering)
-$__ICE40_CARRY_LUT4 1 1 3 2
+$__ICE40_FULL_ADDER 1 1 3 2
 1231 1205 874
 675  609  278
index abba18c37d070248129a8453bfd0ad4fa6e6f08b..fe83a8e38156aad9693617ccbaffbcfd3bb84371 100644 (file)
@@ -45,7 +45,7 @@ module _80_ice40_alu (A, B, CI, BI, X, Y, CO);
        genvar i;
        generate for (i = 0; i < Y_WIDTH; i = i + 1) begin:slice
 `ifdef _ABC
-               \$__ICE40_CARRY_LUT4 carry (
+               \$__ICE40_FULL_ADDER carry (
                        .A(AA[i]),
                        .B(BB[i]),
                        .CI(C[i]),
index 5dca63e199c070fda73eebdaf7cc4e719256858c..b4b8311650e156a759cebc5c050fcfe9c4a27666 100644 (file)
@@ -63,7 +63,7 @@ endmodule
 `endif
 
 `ifdef _ABC
-module \$__ICE40_CARRY_LUT4 (output CO, O, input A, B, CI);
+module \$__ICE40_FULL_ADDER (output CO, O, input A, B, CI);
   SB_CARRY carry (
     .I0(A),
     .I1(B),
index cf36f5cfb96e4b7b4f2a13d1789a2c458a5b6def..609facc9319bc28162b0f92977960aecbed3535d 100644 (file)
@@ -142,7 +142,7 @@ module SB_CARRY (output CO, input I0, I1, CI);
 endmodule
 
 (* abc_box_id = 1, abc_carry="CI,CO", lib_whitebox *)
-module \$__ICE40_CARRY_LUT4 (output CO, O, input A, B, CI);
+module \$__ICE40_FULL_ADDER (output CO, O, input A, B, CI);
        SB_CARRY carry (
                .I0(A),
                .I1(B),
index 38910dffa997b259a6113a04d5e5591c25eb74a4..e492454fb220e3befbd1d361d5d6cba42da5cb3b 100644 (file)
@@ -84,7 +84,7 @@ static void run_ice40_opts(Module *module)
                        continue;
                }
 
-               if (cell->type == "$__ICE40_CARRY_LUT4")
+               if (cell->type == "$__ICE40_FULL_ADDER")
                {
                        SigSpec non_const_inputs, replacement_output;
                        int count_zeros = 0, count_ones = 0;
@@ -114,7 +114,7 @@ static void run_ice40_opts(Module *module)
                                optimized_co.insert(sigmap(cell->getPort("\\CO")[0]));
                                module->connect(cell->getPort("\\CO")[0], replacement_output);
                                module->design->scratchpad_set_bool("opt.did_something", true);
-                               log("Optimized $__ICE40_CARRY_LUT4 cell into $lut (without SB_CARRY) %s.%s: CO=%s\n",
+                               log("Optimized $__ICE40_FULL_ADDER cell back to logic (without SB_CARRY) %s.%s: CO=%s\n",
                                                log_id(module), log_id(cell), log_signal(replacement_output));
                                cell->type = "$lut";
                                cell->setPort("\\A", { RTLIL::S0, inbit[0], inbit[1], inbit[2] });