From 6a38d3bcf3b3aa5082526d9788ec2c44ebc67b64 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 4 Apr 2012 21:55:20 -0400 Subject: [PATCH] Add SELRANGE as warning instead of error, bug477. --- Changes | 2 + bin/verilator | 17 +++++++++ src/V3Const.cpp | 2 +- src/V3Error.h | 3 +- test_regress/t/t_param_sel_range.pl | 21 +++++++++++ test_regress/t/t_param_sel_range.v | 50 +++++++++++++++++++++++++ test_regress/t/t_param_sel_range_bad.pl | 29 ++++++++++++++ 7 files changed, 122 insertions(+), 2 deletions(-) create mode 100755 test_regress/t/t_param_sel_range.pl create mode 100644 test_regress/t/t_param_sel_range.v create mode 100755 test_regress/t/t_param_sel_range_bad.pl diff --git a/Changes b/Changes index 33f93a1f4..54834688b 100644 --- a/Changes +++ b/Changes @@ -10,6 +10,8 @@ indicates the contributor was also the author of the fix; Thanks! *** Fix processing unused parametrized modules, bug469, bug470. [Alex Solomatnikov] +**** Add SELRANGE as warning instead of error, bug477. [Alex Solomatnikov] + **** Fix signed array warning, bug456. [Alex Solomatnikov] **** Fix genvar and begin under generate, bug461. [Alex Solomatnikov] diff --git a/bin/verilator b/bin/verilator index 711c43718..5a7bcea9b 100755 --- a/bin/verilator +++ b/bin/verilator @@ -2771,6 +2771,23 @@ is not possible, add a undef to indicate the code is overriding the value: `undef MACRO `define MACRO otherdef +=item SELRANGE + +Warns that a selection index will go out of bounds: + + wire vec[6:0]; + initial out = vec[7]; // There is no 7 + +Verilator will assume zero for this value, instead of X. Note that in some +cases this warning may be false, when a condition upstream or downstream of +the access means the access out of bounds will never execute or be used. + + wire vec[6:0]; + initial begin + seven = 7; + ... + if (seven != 7) out = vec[seven]; // Never will use vec[7] + =item STMTDLY Warns that you have a statement with a delayed time in front of it, for diff --git a/src/V3Const.cpp b/src/V3Const.cpp index 4a1b7a2cd..1b515f6ab 100644 --- a/src/V3Const.cpp +++ b/src/V3Const.cpp @@ -385,7 +385,7 @@ private: else if ((nodep->msbConst() > bdtypep->msbMaxSelect()) || (nodep->lsbConst() > bdtypep->msbMaxSelect())) { // See also warning in V3Width - nodep->v3error("Selection index out of range: " + nodep->v3warn(SELRANGE, "Selection index out of range: " <msbConst()<<":"<lsbConst() <<" outside "<msbMaxSelect()<<":0" <<(bdtypep->lsb()>=0 ? "" diff --git a/src/V3Error.h b/src/V3Error.h index b655a94bc..8773a9b72 100644 --- a/src/V3Error.h +++ b/src/V3Error.h @@ -81,6 +81,7 @@ public: MULTIDRIVEN, // Driven from multiple blocks REALCVT, // Real conversion REDEFMACRO, // Redefining existing define macro + SELRANGE, // Selection index out of range STMTDLY, // Delayed statement SYMRSVDWORD, // Symbol is Reserved Word SYNCASYNCNET, // Mixed sync + async reset @@ -120,7 +121,7 @@ public: "LITENDIAN", "MODDUP", "MULTIDRIVEN", "REALCVT", "REDEFMACRO", - "STMTDLY", "SYMRSVDWORD", "SYNCASYNCNET", + "SELRANGE", "STMTDLY", "SYMRSVDWORD", "SYNCASYNCNET", "UNDRIVEN", "UNOPT", "UNOPTFLAT", "UNSIGNED", "UNUSED", "VARHIDDEN", "WIDTH", "WIDTHCONCAT", " MAX" diff --git a/test_regress/t/t_param_sel_range.pl b/test_regress/t/t_param_sel_range.pl new file mode 100755 index 000000000..dec6d69ed --- /dev/null +++ b/test_regress/t/t_param_sel_range.pl @@ -0,0 +1,21 @@ +#!/usr/bin/perl +if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; } +# DESCRIPTION: Verilator: Verilog Test driver/expect definition +# +# Copyright 2003 by Wilson Snyder. This program is free software; you can +# redistribute it and/or modify it under the terms of either the GNU +# Lesser General Public License Version 3 or the Perl Artistic License +# Version 2.0. + +$Self->{vlt} or $Self->skip("Verilator only test"); + +compile ( + v_flags2 => ["--lint-only -Wno-SELRANGE"], + fails=>0, + verilator_make_gcc => 0, + make_top_shell => 0, + make_main => 0, + ); + +ok(1); +1; diff --git a/test_regress/t/t_param_sel_range.v b/test_regress/t/t_param_sel_range.v new file mode 100644 index 000000000..ec8e69970 --- /dev/null +++ b/test_regress/t/t_param_sel_range.v @@ -0,0 +1,50 @@ +// DESCRIPTION: Verilator: Verilog Test module + +// bug477 + +module t ( + input rst_n, + input clk, + output out + ); + + submod #(.STAGES(5)) u2(.*); + +endmodule + +module submod (/*AUTOARG*/ + // Outputs + out, + // Inputs + rst_n, clk + ); + + parameter STAGES = 4; + + input rst_n; + input clk; + output out; + + reg [STAGES-1:0] r_rst; + + generate + // for i=0..5 (5+1-1) + for (genvar i=0; i{vlt} and $Self->unsupported("Verilator unsupported, bug477"); + +top_filename("t/t_param_sel_range.v"); + +compile ( + v_flags2 => ["--lint-only"], + fails=>1, + verilator_make_gcc => 0, + make_top_shell => 0, + make_main => 0, + expect=> +'%Warning-SELRANGE: t/t_param_sel_range.v:\d+: Selection index out of range: 7:7 outside 4:0 +%Warning-SELRANGE: Use .* to disable this message. +%Error: Exiting due to.*', + ); + +ok(1); +1;