From 79e02858cb6e4c2c9b2aa92305b43981e989d192 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 2 Oct 2006 17:09:56 +0000 Subject: [PATCH] Add --debug-check flag git-svn-id: file://localhost/svn/verilator/trunk/verilator@802 77ca24e4-aefa-0310-84f0-b9a241c72d87 --- bin/verilator | 5 +++++ src/V3Ast.cpp | 6 ++++-- src/V3Options.cpp | 3 +++ src/V3Options.h | 2 ++ test_regress/driver.pl | 2 +- test_regress/t/t_case_wild.v | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/bin/verilator b/bin/verilator index 76f0a6c9a..eea3dfc3d 100755 --- a/bin/verilator +++ b/bin/verilator @@ -292,6 +292,11 @@ the comment "DefaultClock": Select the debug built image of Verilator (if available), and enable more internal assertions, debugging messages, and intermediate form dump files. +=item --debug-check + +Rarely needed. Enable internal debugging assertion checks, without +changing debug verbosity. Enabled automatically when --debug specified. + =item -E Preprocess the source code, but do not compile, as with 'gcc -E'. Output diff --git a/src/V3Ast.cpp b/src/V3Ast.cpp index 9d1b9b045..8fe90338b 100644 --- a/src/V3Ast.cpp +++ b/src/V3Ast.cpp @@ -784,14 +784,16 @@ void AstNode::dumpTreeFile(const string& filename, bool append) { dumpTree(*logsp); } } + } + if (v3Global.opt.debugCheck() || v3Global.opt.dumpTree()) { // Error check checkTree(); // Broken isn't part of check tree because it can munge iterp's // set by other steps if it is called in the middle of other operations if (AstNetlist* netp=this->castNetlist()) V3Broken::brokenAll(netp); - // Next dump can indicate start from here - editCountSetLast(); } + // Next dump can indicate start from here + editCountSetLast(); } void AstNode::v3errorEnd(ostringstream& str) { diff --git a/src/V3Options.cpp b/src/V3Options.cpp index 021523a73..6e89bd439 100644 --- a/src/V3Options.cpp +++ b/src/V3Options.cpp @@ -366,6 +366,7 @@ void V3Options::parseOptsList(FileLine* fl, int argc, char** argv) { else if ( onoff (sw, "-coverage-line", flag/*ref*/) ){ m_coverageLine = flag; } else if ( onoff (sw, "-coverage-user", flag/*ref*/) ){ m_coverageUser = flag; } else if ( onoff (sw, "-covsp", flag/*ref*/) ) { } // TBD + else if ( onoff (sw, "-debug-check", flag/*ref*/) ){ m_debugCheck = flag; } else if ( onoff (sw, "-dump-tree", flag/*ref*/) ) { m_dumpTree = flag; } else if ( onoff (sw, "-exe", flag/*ref*/) ) { m_exe = flag; } else if ( onoff (sw, "-ignc", flag/*ref*/) ) { m_ignc = flag; } @@ -557,6 +558,7 @@ V3Options::V3Options() { m_coverageLine = false; m_coverageUser = false; + m_debugCheck = false; m_dumpTree = false; m_exe = false; m_ignc = false; @@ -603,6 +605,7 @@ void V3Options::setDebugMode(int level) { V3Error::debugDefault(level); m_dumpTree = true; m_stats = true; + m_debugCheck = true; cout << "Starting "< 1, # Make a default __top.v file make_main => 1, # Make __main.cpp # All compilers - v_flags => [split(/\s+/," -f input.vc")], + v_flags => [split(/\s+/," -f input.vc --debug-check")], v_flags2 => [], # Overridden in some sim files v_other_filenames => [], # After the filename so we can spec multiple files # VCS diff --git a/test_regress/t/t_case_wild.v b/test_regress/t/t_case_wild.v index e55da38d1..93a110709 100644 --- a/test_regress/t/t_case_wild.v +++ b/test_regress/t/t_case_wild.v @@ -20,7 +20,7 @@ module t (/*AUTOARG*/ sub sub (.in(crc[23:0]), .out1(out1), .out2(out2)); always @ (posedge clk) begin - $write("[%0t] cyc==%0d crc=%x sum=%x out=%x,%x\n",$time, cyc, crc, sum, out1,out2); + //$write("[%0t] cyc==%0d crc=%x sum=%x out=%x,%x\n",$time, cyc, crc, sum, out1,out2); cyc <= cyc + 1; crc <= {crc[62:0], crc[63]^crc[2]^crc[0]}; sum <= {sum[62:0], sum[63]^sum[2]^sum[0]} ^ {58'h0,out1,out2};