mirror of
https://github.com/verilator/verilator.git
synced 2026-09-03 08:03:26 +02:00
Internals: Use Var flag instead of magic names. No functional change intended.
This commit is contained in:
@@ -2956,6 +2956,8 @@ void AstVar::dump(std::ostream& str) const {
|
||||
if (rand().isRandomizable()) str << " [" << rand() << "]";
|
||||
if (noCReset()) str << " [!CRST]";
|
||||
if (noReset()) str << " [!RST]";
|
||||
if (processQueue()) str << " [PROCQ]";
|
||||
if (sampled()) str << " [SAMPLED]";
|
||||
if (attrIsolateAssign()) str << " [aISO]";
|
||||
if (attrFileDescr()) str << " [aFD]";
|
||||
if (isFuncReturn()) {
|
||||
@@ -2986,6 +2988,8 @@ void AstVar::dumpJson(std::ostream& str) const {
|
||||
dumpJsonBoolFuncIf(str, isUsedLoopIdx);
|
||||
dumpJsonBoolFuncIf(str, noCReset);
|
||||
dumpJsonBoolFuncIf(str, noReset);
|
||||
dumpJsonBoolFuncIf(str, processQueue);
|
||||
dumpJsonBoolFuncIf(str, sampled);
|
||||
dumpJsonBoolFuncIf(str, attrIsolateAssign);
|
||||
dumpJsonBoolFuncIf(str, attrFileDescr);
|
||||
dumpJsonBoolFuncIf(str, isDpiOpenArray);
|
||||
|
||||
Reference in New Issue
Block a user