Streamline dump control options

- Rename `--dump-treei` option to `--dumpi-tree`, which itself is now a
  special case of `--dumpi-<tag>` where tag can be a magic word, or a
  filename
- Control dumping via static `dump*()` functions, analogous to `debug()`
- Make dumping independent of the value of `debug()` (so dumping always
  works even without the debug flag)
- Add separate `--dumpi-graph` for dumping V3Graphs, which is again a
  special case of `--dumpi-<tag>`
- Alias `--dump-<tag>` to `--dumpi-<tag> 3` as before
This commit is contained in:
Geza Lore
2022-09-22 17:24:41 +01:00
parent 12093e6939
commit 63c694f65f
135 changed files with 565 additions and 589 deletions
+3 -3
View File
@@ -34,6 +34,8 @@
#include <unordered_map>
#include <unordered_set>
VL_DEFINE_DEBUG_FUNCTIONS;
//######################################################################
// Scope class functions
@@ -62,7 +64,6 @@ private:
m_varRefScopes; // Varrefs-in-scopes needing fixup when done
// METHODS
VL_DEBUG_FUNC; // Declare debug()
void cleanupVarRefs() {
for (const auto& itr : m_varRefScopes) {
@@ -327,7 +328,6 @@ private:
AstScope* m_scopep = nullptr; // Current scope we are building
// METHODS
VL_DEBUG_FUNC; // Declare debug()
// VISITORS
void visit(AstScope* nodep) override {
@@ -405,5 +405,5 @@ void V3Scope::scopeAll(AstNetlist* nodep) {
const ScopeVisitor visitor{nodep};
ScopeCleanupVisitor{nodep};
} // Destruct before checking
V3Global::dumpCheckGlobalTree("scope", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 3);
V3Global::dumpCheckGlobalTree("scope", 0, dumpTree() >= 3);
}