Sign-extension related fixes in SatGen and AST frontend
authorClifford Wolf <clifford@clifford.at>
Mon, 10 Jun 2013 15:10:06 +0000 (17:10 +0200)
committerClifford Wolf <clifford@clifford.at>
Mon, 10 Jun 2013 15:10:06 +0000 (17:10 +0200)
frontends/ast/genrtlil.cc
kernel/satgen.h

index c75bca911a356a84bf75ce99c6d71a81f64c807b..cb59246c6a857342a6a429f125a3ce1108a5feec 100644 (file)
@@ -768,6 +768,8 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint)
                        int width = std::max(left.width, right.width);
                        if (width > width_hint && width_hint > 0)
                                width = width_hint;
+                       if (width < width_hint)
+                               width = width_hint;
                        return binop2rtlil(this, type_name, width, left, right);
                }
 
index 5b3a4d041393cebed200c5f8e7dd694ddce50cc4..fcbdcc1477c23831aaf75ca15583a57b8652047a 100644 (file)
@@ -76,15 +76,13 @@ struct SatGen
 
        void extendSignalWidth(std::vector<int> &vec_a, std::vector<int> &vec_b, RTLIL::Cell *cell, size_t y_width = 0)
        {
-               bool is_signed_a = false, is_signed_b = false;
-               if (cell->parameters.count("\\A_SIGNED") > 0)
-                       is_signed_a = cell->parameters["\\A_SIGNED"].as_bool();
-               if (cell->parameters.count("\\B_SIGNED") > 0)
-                       is_signed_b = cell->parameters["\\B_SIGNED"].as_bool();
+               bool is_signed = false;
+               if (cell->parameters.count("\\A_SIGNED") > 0 && cell->parameters.count("\\B_SIGNED") > 0)
+                       is_signed = cell->parameters["\\A_SIGNED"].as_bool() && cell->parameters["\\B_SIGNED"].as_bool();
                while (vec_a.size() < vec_b.size() || vec_a.size() < y_width)
-                       vec_a.push_back(is_signed_a && vec_a.size() > 0 ? vec_a.back() : ez->FALSE);
+                       vec_a.push_back(is_signed && vec_a.size() > 0 ? vec_a.back() : ez->FALSE);
                while (vec_b.size() < vec_a.size() || vec_b.size() < y_width)
-                       vec_b.push_back(is_signed_b && vec_b.size() > 0 ? vec_b.back() : ez->FALSE);
+                       vec_b.push_back(is_signed && vec_b.size() > 0 ? vec_b.back() : ez->FALSE);
        }
 
        void extendSignalWidth(std::vector<int> &vec_a, std::vector<int> &vec_b, std::vector<int> &vec_y, RTLIL::Cell *cell)
@@ -222,9 +220,11 @@ struct SatGen
                        std::vector<int> b = importSigSpec(cell->connections.at("\\B"), timestep);
                        std::vector<int> y = importSigSpec(cell->connections.at("\\Y"), timestep);
                        char shift_left = cell->type == "$shl" || cell->type == "$sshl";
-                       bool sign_extend = cell->type == "$sshr";
+                       bool sign_extend = cell->type == "$sshr" && cell->parameters["\\A_SIGNED"].as_bool();
                        while (y.size() < a.size())
                                y.push_back(ez->literal());
+                       while (y.size() > a.size())
+                               a.push_back(cell->parameters["\\A_SIGNED"].as_bool() ? a.back() : ez->FALSE);
                        std::vector<int> tmp = a;
                        for (size_t i = 0; i < b.size(); i++)
                        {