aboutsummaryrefslogtreecommitdiffstats
path: root/frontends
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2021-03-07 03:45:41 -0800
committerGitHub <noreply@github.com>2021-03-07 03:45:41 -0800
commit72ae15c77c34fe2306c3ac41c40521e9141b8cf0 (patch)
tree3606b07a7372af728cbfa8d16dc258162f659a8b /frontends
parentb1a8e73a609d3065f1caf7a230529443b54295bc (diff)
parentc18ddbcd822410095d28c4be1c3ac3c6358622d2 (diff)
downloadyosys-72ae15c77c34fe2306c3ac41c40521e9141b8cf0.tar.gz
yosys-72ae15c77c34fe2306c3ac41c40521e9141b8cf0.tar.bz2
yosys-72ae15c77c34fe2306c3ac41c40521e9141b8cf0.zip
Merge pull request #2632 from zachjs/width-limit
verilog: impose limit on maximum expression width
Diffstat (limited to 'frontends')
-rw-r--r--frontends/ast/genrtlil.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc
index d4299bf69..e0a522430 100644
--- a/frontends/ast/genrtlil.cc
+++ b/frontends/ast/genrtlil.cc
@@ -1000,6 +1000,12 @@ void AstNode::detectSignWidth(int &width_hint, bool &sign_hint, bool *found_real
if (found_real)
*found_real = false;
detectSignWidthWorker(width_hint, sign_hint, found_real);
+
+ constexpr int kWidthLimit = 1 << 24;
+ if (width_hint >= kWidthLimit)
+ log_file_error(filename, location.first_line,
+ "Expression width %d exceeds implementation limit of %d!\n",
+ width_hint, kWidthLimit);
}
static void check_unique_id(RTLIL::Module *module, RTLIL::IdString id,