diff --git a/src/V3Width.cpp b/src/V3Width.cpp index e493885cb..01fc120e1 100644 --- a/src/V3Width.cpp +++ b/src/V3Width.cpp @@ -1430,10 +1430,8 @@ private: UASSERT_OBJ(nodep->fromp() && dtypep, nodep, "Unsized expression"); AstVar* const varp = dimensionVarp(dtypep, nodep->attrType(), msbdim); AstNode* const dimp = nodep->dimp()->unlinkFrBack(); - AstVarRef* const varrefp - = new AstVarRef(nodep->fileline(), varp, VAccess::READ); - varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp()); - AstNode* const newp = new AstArraySel(nodep->fileline(), varrefp, dimp); + AstNode* const newp + = new AstArraySel{nodep->fileline(), newVarRefDollarUnit(varp), dimp}; nodep->replaceWith(newp); VL_DO_DANGLING(nodep->deleteTree(), nodep); } @@ -1679,15 +1677,12 @@ private: AstNode* testp = nullptr; if (assoc) { AstVar* const varp = enumVarp(enumDtp, AstAttrType::ENUM_VALID, true, 0); - AstVarRef* const varrefp = new AstVarRef{fl, varp, VAccess::READ}; - varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp()); - testp = new AstAssocSel{fl, varrefp, nodep->fromp()->cloneTree(false)}; + testp = new AstAssocSel{fl, newVarRefDollarUnit(varp), + nodep->fromp()->cloneTree(false)}; } else { const int selwidth = V3Number::log2b(maxval) + 1; // Width to address a bit AstVar* const varp = enumVarp(enumDtp, AstAttrType::ENUM_VALID, false, (1ULL << selwidth) - 1); - AstVarRef* const varrefp = new AstVarRef(fl, varp, VAccess::READ); - varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp()); FileLine* const fl_nowarn = new FileLine(fl); fl_nowarn->warnOff(V3ErrorCode::WIDTH, true); testp = new AstCond{ @@ -1696,7 +1691,7 @@ private: new AstConst{fl_nowarn, AstConst::Unsized64{}, maxval}}, new AstConst{fl, AstConst::BitFalse{}}, new AstArraySel{ - fl, varrefp, + fl, newVarRefDollarUnit(varp), new AstSel{fl, nodep->fromp()->cloneTree(false), 0, selwidth}}}; } newp = new AstCond{fl, testp, @@ -2648,18 +2643,14 @@ private: const bool assoc = msbdim > ENUM_LOOKUP_BITS; if (assoc) { AstVar* const varp = enumVarp(adtypep, attrType, true, 0); - AstVarRef* const varrefp = new AstVarRef{nodep->fileline(), varp, VAccess::READ}; - varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp()); - AstNode* const newp - = new AstAssocSel{nodep->fileline(), varrefp, nodep->fromp()->unlinkFrBack()}; + AstNode* const newp = new AstAssocSel{nodep->fileline(), newVarRefDollarUnit(varp), + nodep->fromp()->unlinkFrBack()}; nodep->replaceWith(newp); } else { const int selwidth = V3Number::log2b(msbdim) + 1; // Width to address a bit AstVar* const varp = enumVarp(adtypep, attrType, false, (1ULL << selwidth) - 1); - AstVarRef* const varrefp = new AstVarRef{nodep->fileline(), varp, VAccess::READ}; - varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp()); AstNode* const newp = new AstArraySel( - nodep->fileline(), varrefp, + nodep->fileline(), newVarRefDollarUnit(varp), // Select in case widths are off due to msblen!=width // We return "random" values if outside the range, which is fine // as next/previous on illegal values just need something good out @@ -6322,6 +6313,11 @@ private: VL_DO_DANGLING(pushDeletep(nodep), nodep); } } + AstNode* newVarRefDollarUnit(AstVar* nodep) { + AstVarRef* const varrefp = new AstVarRef{nodep->fileline(), nodep, VAccess::READ}; + varrefp->classOrPackagep(v3Global.rootp()->dollarUnitPkgAddp()); + return varrefp; + } AstNode* nodeForUnsizedWarning(AstNode* nodep) { // Return a nodep to use for unsized warnings, reporting on child if can if (nodep->op1p() && nodep->op1p()->dtypep() && !nodep->op1p()->dtypep()->widthSized()) { diff --git a/test_regress/t/t_xml_debugcheck.out b/test_regress/t/t_xml_debugcheck.out index bbe26868f..e2b4221fe 100644 --- a/test_regress/t/t_xml_debugcheck.out +++ b/test_regress/t/t_xml_debugcheck.out @@ -73,7 +73,7 @@ - + @@ -85,7 +85,7 @@ - + @@ -107,7 +107,7 @@ - + @@ -120,7 +120,7 @@ - + @@ -137,7 +137,7 @@ - + @@ -150,7 +150,7 @@ - + @@ -167,11 +167,11 @@ - + - + @@ -186,11 +186,11 @@ - + - + @@ -209,7 +209,7 @@ - + @@ -222,7 +222,7 @@ - + @@ -239,7 +239,7 @@ - + @@ -252,7 +252,7 @@ - + @@ -269,11 +269,11 @@ - + - + @@ -288,11 +288,11 @@ - + - + @@ -323,7 +323,7 @@ - + @@ -335,7 +335,7 @@ - + @@ -357,7 +357,7 @@ - + @@ -370,7 +370,7 @@ - + @@ -387,7 +387,7 @@ - + @@ -400,7 +400,7 @@ - + @@ -417,11 +417,11 @@ - + - + @@ -436,11 +436,11 @@ - + - + @@ -459,7 +459,7 @@ - + @@ -472,7 +472,7 @@ - + @@ -489,7 +489,7 @@ - + @@ -502,7 +502,7 @@ - + @@ -519,11 +519,11 @@ - + - + @@ -538,11 +538,11 @@ - + - + @@ -573,7 +573,7 @@ - + @@ -585,7 +585,7 @@ - + @@ -607,7 +607,7 @@ - + @@ -620,7 +620,7 @@ - + @@ -637,7 +637,7 @@ - + @@ -650,7 +650,7 @@ - + @@ -667,11 +667,11 @@ - + - + @@ -686,11 +686,11 @@ - + - + @@ -709,7 +709,7 @@ - + @@ -722,7 +722,7 @@ - + @@ -739,7 +739,7 @@ - + @@ -752,7 +752,7 @@ - + @@ -769,11 +769,11 @@ - + - + @@ -788,11 +788,11 @@ - + - + @@ -858,7 +858,7 @@ - + @@ -871,7 +871,7 @@ - + @@ -888,11 +888,11 @@ - + - + @@ -907,11 +907,11 @@ - + - + @@ -930,11 +930,11 @@ - + - + @@ -949,11 +949,11 @@ - + - + @@ -972,15 +972,15 @@ - + - + - + @@ -997,15 +997,15 @@ - + - + - + @@ -1026,15 +1026,15 @@ - + - + - + @@ -1051,15 +1051,15 @@ - + - + - + @@ -1080,15 +1080,15 @@ - + - + - + @@ -1105,15 +1105,15 @@ - + - + - + @@ -1134,7 +1134,7 @@ - + @@ -1147,7 +1147,7 @@ - + @@ -1164,7 +1164,7 @@ - + @@ -1177,7 +1177,7 @@ - + @@ -1194,11 +1194,11 @@ - + - + @@ -1213,11 +1213,11 @@ - + - + @@ -1236,11 +1236,11 @@ - + - + @@ -1255,11 +1255,11 @@ - + - + @@ -1278,7 +1278,7 @@ - + @@ -1290,7 +1290,7 @@ - + @@ -1332,7 +1332,7 @@ - + @@ -1347,7 +1347,7 @@ - + @@ -1366,7 +1366,7 @@ - +