diff --git a/bin/verilator b/bin/verilator index 819192ffb..711c43718 100755 --- a/bin/verilator +++ b/bin/verilator @@ -262,6 +262,7 @@ descriptions in the next sections for more information. --debugi- Enable debugging a source file at a level +define++ Set preprocessor define --dump-tree Enable dumping .tree files + --dump-treei Enable dumping .tree files at a level -E Preprocess, but do not compile --error-limit Abort after this number of errors --exe Link to create executable @@ -529,9 +530,16 @@ standard across Verilog tools while -D is an alias for GCC compatibility. =item --dump-tree -Rarely needed. Enable writing .tree debug files. This is enabled with ---debug, so "--debug --no-dump-tree" may be useful if the dump files are -large and not desired. +Rarely needed. Enable writing .tree debug files with dumping level 3, +which dumps the standard critical stages. --dump-tree is enabled +automatically with --debug, so "--debug --no-dump-tree" may be useful if +the dump files are large and not desired. + +=item --dump-treei + +Rarely needed. Enable writing .tree debug files with a specific dumping +level, 0 disbles dumps and is equivelent to "--no-dump-tree". Level 9 +enables dumping of every stage. =item -E diff --git a/src/V3Ast.cpp b/src/V3Ast.cpp index 60f06c14b..0285c422c 100644 --- a/src/V3Ast.cpp +++ b/src/V3Ast.cpp @@ -1014,7 +1014,8 @@ void AstNode::dumpTreeFile(const string& filename, bool append) { if (logsp->fail()) v3fatalSrc("Can't write "<"; *logsp<<" to "<=9)) { *logsp<= 9); // Sort modules by level so later algorithms don't need to care V3LinkLevel::modSortByLevel();