Internals: Cleanup some string constructors. No functional change.

This commit is contained in:
Wilson Snyder 2022-08-30 01:02:39 -04:00
parent 6a5f77b278
commit ea55db7286
25 changed files with 80 additions and 73 deletions

View File

@ -206,7 +206,7 @@ string AstNode::prettyName(const string& namein) {
string AstNode::prettyTypeName() const { string AstNode::prettyTypeName() const {
if (name() == "") return typeName(); if (name() == "") return typeName();
return string(typeName()) + " '" + prettyName() + "'"; return std::string{typeName()} + " '" + prettyName() + "'";
} }
//###################################################################### //######################################################################

View File

@ -279,7 +279,7 @@ private:
// We'll do this, and make the if(...) coverinc later. // We'll do this, and make the if(...) coverinc later.
// Add signal to hold the old value // Add signal to hold the old value
const string newvarname = string("__Vtogcov__") + nodep->shortName(); const string newvarname = std::string{"__Vtogcov__"} + nodep->shortName();
AstVar* const chgVarp AstVar* const chgVarp
= new AstVar(nodep->fileline(), VVarType::MODULETEMP, newvarname, nodep); = new AstVar(nodep->fileline(), VVarType::MODULETEMP, newvarname, nodep);
chgVarp->fileline()->modifyWarnOff(V3ErrorCode::UNUSED, true); chgVarp->fileline()->modifyWarnOff(V3ErrorCode::UNUSED, true);
@ -289,9 +289,9 @@ private:
// This is necessarily an O(n^2) expansion, which is why // This is necessarily an O(n^2) expansion, which is why
// we limit coverage to signals with < 256 bits. // we limit coverage to signals with < 256 bits.
ToggleEnt newvec(string(""), ToggleEnt newvec{std::string{""},
new AstVarRef(nodep->fileline(), nodep, VAccess::READ), new AstVarRef{nodep->fileline(), nodep, VAccess::READ},
new AstVarRef(nodep->fileline(), chgVarp, VAccess::WRITE)); new AstVarRef{nodep->fileline(), chgVarp, VAccess::WRITE}};
toggleVarRecurse(nodep->dtypeSkipRefp(), 0, newvec, nodep, chgVarp); toggleVarRecurse(nodep->dtypeSkipRefp(), 0, newvec, nodep, chgVarp);
newvec.cleanup(); newvec.cleanup();
} }
@ -314,11 +314,12 @@ private:
for (int index_docs = bdtypep->lo(); index_docs < bdtypep->hi() + 1; for (int index_docs = bdtypep->lo(); index_docs < bdtypep->hi() + 1;
++index_docs) { ++index_docs) {
const int index_code = index_docs - bdtypep->lo(); const int index_code = index_docs - bdtypep->lo();
ToggleEnt newent(above.m_comment + string("[") + cvtToStr(index_docs) + "]", ToggleEnt newent{above.m_comment + std::string{"["} + cvtToStr(index_docs)
new AstSel(varp->fileline(), above.m_varRefp->cloneTree(true), + "]",
index_code, 1), new AstSel{varp->fileline(), above.m_varRefp->cloneTree(true),
new AstSel(varp->fileline(), above.m_chgRefp->cloneTree(true), index_code, 1},
index_code, 1)); new AstSel{varp->fileline(), above.m_chgRefp->cloneTree(true),
index_code, 1}};
toggleVarBottom(newent, varp); toggleVarBottom(newent, varp);
newent.cleanup(); newent.cleanup();
} }
@ -328,11 +329,11 @@ private:
} else if (const AstUnpackArrayDType* const adtypep = VN_CAST(dtypep, UnpackArrayDType)) { } else if (const AstUnpackArrayDType* const adtypep = VN_CAST(dtypep, UnpackArrayDType)) {
for (int index_docs = adtypep->lo(); index_docs <= adtypep->hi(); ++index_docs) { for (int index_docs = adtypep->lo(); index_docs <= adtypep->hi(); ++index_docs) {
const int index_code = index_docs - adtypep->lo(); const int index_code = index_docs - adtypep->lo();
ToggleEnt newent(above.m_comment + string("[") + cvtToStr(index_docs) + "]", ToggleEnt newent{above.m_comment + std::string{"["} + cvtToStr(index_docs) + "]",
new AstArraySel(varp->fileline(), new AstArraySel{varp->fileline(),
above.m_varRefp->cloneTree(true), index_code), above.m_varRefp->cloneTree(true), index_code},
new AstArraySel(varp->fileline(), new AstArraySel{varp->fileline(),
above.m_chgRefp->cloneTree(true), index_code)); above.m_chgRefp->cloneTree(true), index_code}};
toggleVarRecurse(adtypep->subDTypep()->skipRefp(), depth + 1, newent, varp, toggleVarRecurse(adtypep->subDTypep()->skipRefp(), depth + 1, newent, varp,
chgVarp); chgVarp);
newent.cleanup(); newent.cleanup();
@ -341,11 +342,11 @@ private:
for (int index_docs = adtypep->lo(); index_docs <= adtypep->hi(); ++index_docs) { for (int index_docs = adtypep->lo(); index_docs <= adtypep->hi(); ++index_docs) {
const AstNodeDType* const subtypep = adtypep->subDTypep()->skipRefp(); const AstNodeDType* const subtypep = adtypep->subDTypep()->skipRefp();
const int index_code = index_docs - adtypep->lo(); const int index_code = index_docs - adtypep->lo();
ToggleEnt newent(above.m_comment + string("[") + cvtToStr(index_docs) + "]", ToggleEnt newent{above.m_comment + std::string{"["} + cvtToStr(index_docs) + "]",
new AstSel(varp->fileline(), above.m_varRefp->cloneTree(true), new AstSel{varp->fileline(), above.m_varRefp->cloneTree(true),
index_code * subtypep->width(), subtypep->width()), index_code * subtypep->width(), subtypep->width()},
new AstSel(varp->fileline(), above.m_chgRefp->cloneTree(true), new AstSel{varp->fileline(), above.m_chgRefp->cloneTree(true),
index_code * subtypep->width(), subtypep->width())); index_code * subtypep->width(), subtypep->width()}};
toggleVarRecurse(adtypep->subDTypep()->skipRefp(), depth + 1, newent, varp, toggleVarRecurse(adtypep->subDTypep()->skipRefp(), depth + 1, newent, varp,
chgVarp); chgVarp);
newent.cleanup(); newent.cleanup();
@ -356,11 +357,11 @@ private:
itemp = VN_AS(itemp->nextp(), MemberDType)) { itemp = VN_AS(itemp->nextp(), MemberDType)) {
AstNodeDType* const subtypep = itemp->subDTypep()->skipRefp(); AstNodeDType* const subtypep = itemp->subDTypep()->skipRefp();
const int index_code = itemp->lsb(); const int index_code = itemp->lsb();
ToggleEnt newent(above.m_comment + string(".") + itemp->name(), ToggleEnt newent{above.m_comment + std::string{"."} + itemp->name(),
new AstSel(varp->fileline(), above.m_varRefp->cloneTree(true), new AstSel{varp->fileline(), above.m_varRefp->cloneTree(true),
index_code, subtypep->width()), index_code, subtypep->width()},
new AstSel(varp->fileline(), above.m_chgRefp->cloneTree(true), new AstSel{varp->fileline(), above.m_chgRefp->cloneTree(true),
index_code, subtypep->width())); index_code, subtypep->width()}};
toggleVarRecurse(subtypep, depth + 1, newent, varp, chgVarp); toggleVarRecurse(subtypep, depth + 1, newent, varp, chgVarp);
newent.cleanup(); newent.cleanup();
} }
@ -368,9 +369,9 @@ private:
// Arbitrarily handle only the first member of the union // Arbitrarily handle only the first member of the union
if (const AstMemberDType* const itemp = adtypep->membersp()) { if (const AstMemberDType* const itemp = adtypep->membersp()) {
AstNodeDType* const subtypep = itemp->subDTypep()->skipRefp(); AstNodeDType* const subtypep = itemp->subDTypep()->skipRefp();
ToggleEnt newent(above.m_comment + string(".") + itemp->name(), ToggleEnt newent{above.m_comment + std::string{"."} + itemp->name(),
above.m_varRefp->cloneTree(true), above.m_varRefp->cloneTree(true),
above.m_chgRefp->cloneTree(true)); above.m_chgRefp->cloneTree(true)};
toggleVarRecurse(subtypep, depth + 1, newent, varp, chgVarp); toggleVarRecurse(subtypep, depth + 1, newent, varp, chgVarp);
newent.cleanup(); newent.cleanup();
} }

View File

@ -148,9 +148,9 @@ string V3Error::msgPrefix() {
} else if (code == V3ErrorCode::EC_ERROR) { } else if (code == V3ErrorCode::EC_ERROR) {
return "%Error: "; return "%Error: ";
} else if (isError(code, supp)) { } else if (isError(code, supp)) {
return "%Error-" + string(code.ascii()) + ": "; return "%Error-" + std::string{code.ascii()} + ": ";
} else { } else {
return "%Warning-" + string(code.ascii()) + ": "; return "%Warning-" + std::string{code.ascii()} + ": ";
} }
} }
@ -176,7 +176,7 @@ void V3Error::vlAbort() {
void V3Error::suppressThisWarning() { void V3Error::suppressThisWarning() {
#ifndef V3ERROR_NO_GLOBAL_ #ifndef V3ERROR_NO_GLOBAL_
V3Stats::addStatSum(string("Warnings, Suppressed ") + s_errorCode.ascii(), 1); V3Stats::addStatSum(std::string{"Warnings, Suppressed "} + s_errorCode.ascii(), 1);
#endif #endif
s_errorSuppressed = true; s_errorSuppressed = true;
} }

View File

@ -864,26 +864,26 @@ string V3OutFormatter::quoteNameControls(const string& namein, V3OutFormatter::L
// Encode chars into XML string // Encode chars into XML string
for (const char c : namein) { for (const char c : namein) {
if (c == '"') { if (c == '"') {
out += string("&quot;"); out += std::string{"&quot;"};
} else if (c == '\'') { } else if (c == '\'') {
out += string("&apos;"); out += std::string{"&apos;"};
} else if (c == '<') { } else if (c == '<') {
out += string("&lt;"); out += std::string{"&lt;"};
} else if (c == '>') { } else if (c == '>') {
out += string("&gt;"); out += std::string{"&gt;"};
} else if (c == '&') { } else if (c == '&') {
out += string("&amp;"); out += std::string{"&amp;"};
} else if (isprint(c)) { } else if (isprint(c)) {
out += c; out += c;
} else { } else {
out += string("&#") + cvtToStr((unsigned int)(c & 0xff)) + ";"; out += std::string{"&#"} + cvtToStr((unsigned int)(c & 0xff)) + ";";
} }
} }
} else { } else {
// Encode control chars into C style escapes // Encode control chars into C style escapes
for (const char c : namein) { for (const char c : namein) {
if (c == '\\' || c == '"') { if (c == '\\' || c == '"') {
out += string("\\") + c; out += std::string{"\\"} + c;
} else if (c == '\n') { } else if (c == '\n') {
out += "\\n"; out += "\\n";
} else if (c == '\r') { } else if (c == '\r') {
@ -894,8 +894,8 @@ string V3OutFormatter::quoteNameControls(const string& namein, V3OutFormatter::L
out += c; out += c;
} else { } else {
// This will also cover \a etc // This will also cover \a etc
const string octal = string("\\") + cvtToStr((c >> 6) & 3) + cvtToStr((c >> 3) & 7) const string octal = std::string{"\\"} + cvtToStr((c >> 6) & 3)
+ cvtToStr(c & 7); + cvtToStr((c >> 3) & 7) + cvtToStr(c & 7);
out += octal; out += octal;
} }
} }
@ -942,7 +942,8 @@ void V3OutFile::putsForceIncs() {
void V3OutCFile::putsGuard() { void V3OutCFile::putsGuard() {
UASSERT(!m_guard, "Already called putsGuard in emit file"); UASSERT(!m_guard, "Already called putsGuard in emit file");
m_guard = true; m_guard = true;
string var = VString::upcase(string("VERILATED_") + V3Os::filenameNonDir(filename()) + "_"); string var
= VString::upcase(std::string{"VERILATED_"} + V3Os::filenameNonDir(filename()) + "_");
for (char& c : var) { for (char& c : var) {
if (!isalnum(c)) c = '_'; if (!isalnum(c)) c = '_';
} }

View File

@ -32,7 +32,7 @@
void V3Global::boot() { void V3Global::boot() {
UASSERT(!m_rootp, "call once"); UASSERT(!m_rootp, "call once");
m_rootp = new AstNetlist(); m_rootp = new AstNetlist;
} }
void V3Global::clear() { void V3Global::clear() {

View File

@ -254,7 +254,7 @@ class HierBlockUsageCollectVisitor final : public VNVisitor {
// Don't visit twice // Don't visit twice
if (nodep->user1SetOnce()) return; if (nodep->user1SetOnce()) return;
UINFO(5, "Checking " << nodep->prettyNameQ() << " from " UINFO(5, "Checking " << nodep->prettyNameQ() << " from "
<< (m_hierBlockp ? m_hierBlockp->prettyNameQ() : string("null")) << (m_hierBlockp ? m_hierBlockp->prettyNameQ() : std::string{"null"})
<< std::endl); << std::endl);
VL_RESTORER(m_modp); VL_RESTORER(m_modp);
AstModule* const prevHierBlockp = m_hierBlockp; AstModule* const prevHierBlockp = m_hierBlockp;
@ -342,7 +342,7 @@ void V3HierBlockPlan::createPlan(AstNetlist* nodep) {
modp->hierBlock(false); modp->hierBlock(false);
} }
std::unique_ptr<V3HierBlockPlan> planp(new V3HierBlockPlan()); std::unique_ptr<V3HierBlockPlan> planp(new V3HierBlockPlan);
{ HierBlockUsageCollectVisitor{planp.get(), nodep}; } { HierBlockUsageCollectVisitor{planp.get(), nodep}; }
V3Stats::addStat("HierBlock, Hierarchical blocks", planp->m_blocks.size()); V3Stats::addStat("HierBlock, Hierarchical blocks", planp->m_blocks.size());

View File

@ -425,11 +425,13 @@ private:
// To keep correct visual order, must add before other Text's // To keep correct visual order, must add before other Text's
AstNode* afterp = nodep->scopeAttrp(); AstNode* afterp = nodep->scopeAttrp();
if (afterp) afterp->unlinkFrBackWithNext(); if (afterp) afterp->unlinkFrBackWithNext();
nodep->scopeAttrp(new AstText(nodep->fileline(), string("__DOT__") + m_cellp->name())); nodep->scopeAttrp(
new AstText{nodep->fileline(), std::string{"__DOT__"} + m_cellp->name()});
if (afterp) nodep->scopeAttrp(afterp); if (afterp) nodep->scopeAttrp(afterp);
afterp = nodep->scopeEntrp(); afterp = nodep->scopeEntrp();
if (afterp) afterp->unlinkFrBackWithNext(); if (afterp) afterp->unlinkFrBackWithNext();
nodep->scopeEntrp(new AstText(nodep->fileline(), string("__DOT__") + m_cellp->name())); nodep->scopeEntrp(
new AstText{nodep->fileline(), std::string{"__DOT__"} + m_cellp->name()});
if (afterp) nodep->scopeEntrp(afterp); if (afterp) nodep->scopeEntrp(afterp);
iterateChildren(nodep); iterateChildren(nodep);
} }

View File

@ -1696,7 +1696,8 @@ class LinkDotScopeVisitor final : public VNVisitor {
} }
if (!symp) { if (!symp) {
UINFO(9, "No symbol for interface alias rhs (" UINFO(9, "No symbol for interface alias rhs ("
<< string(refp ? "VARREF " : "VARXREF ") << scopename << ")" << endl); << std::string{refp ? "VARREF " : "VARXREF "} << scopename << ")"
<< endl);
} }
UASSERT_OBJ(symp, nodep, "No symbol for interface alias rhs"); UASSERT_OBJ(symp, nodep, "No symbol for interface alias rhs");
UINFO(5, " Found a linked scope RHS: " << scopename << " se" << cvtToHex(symp) UINFO(5, " Found a linked scope RHS: " << scopename << " se" << cvtToHex(symp)

View File

@ -49,7 +49,7 @@ private:
void rename(AstNode* nodep, bool addPvt) { void rename(AstNode* nodep, bool addPvt) {
if (!nodep->user1()) { // Not already done if (!nodep->user1()) { // Not already done
if (addPvt) { if (addPvt) {
const string newname = string("__PVT__") + nodep->name(); const string newname = std::string{"__PVT__"} + nodep->name();
nodep->name(newname); nodep->name(newname);
nodep->editCountInc(); nodep->editCountInc();
} else if (VN_IS(nodep, CFunc) && VN_AS(nodep, CFunc)->isConstructor()) { } else if (VN_IS(nodep, CFunc) && VN_AS(nodep, CFunc)->isConstructor()) {
@ -58,7 +58,7 @@ private:
if (rsvd != "") { if (rsvd != "") {
nodep->v3warn(SYMRSVDWORD, nodep->v3warn(SYMRSVDWORD,
"Symbol matches " + rsvd + ": " << nodep->prettyNameQ()); "Symbol matches " + rsvd + ": " << nodep->prettyNameQ());
const string newname = string("__SYM__") + nodep->name(); const string newname = std::string{"__SYM__"} + nodep->name();
nodep->name(newname); nodep->name(newname);
nodep->editCountInc(); nodep->editCountInc();
} }

View File

@ -816,7 +816,7 @@ string V3Number::toDecimalS() const {
if (isNegative()) { if (isNegative()) {
V3Number lhsNoSign = *this; V3Number lhsNoSign = *this;
lhsNoSign.opNegate(*this); lhsNoSign.opNegate(*this);
return string("-") + lhsNoSign.toDecimalU(); return std::string{"-"} + lhsNoSign.toDecimalU();
} else { } else {
return toDecimalU(); return toDecimalU();
} }

View File

@ -109,7 +109,7 @@ void test(const string& lhss, const string& op, const string& rhss, const string
<< " = " << expnum << endl << " = " << expnum << endl
<< " =? " << gotnum << endl); << " =? " << gotnum << endl);
V3Number ok(fl, 1); V3Number ok{fl, 1};
ok.opCaseEq(expnum, gotnum); ok.opCaseEq(expnum, gotnum);
if (ok.toUInt() != 1) v3fatalSrc("%Error:Test FAILED"); if (ok.toUInt() != 1) v3fatalSrc("%Error:Test FAILED");
@ -137,7 +137,7 @@ int main() {
test("99'h7FFFFFFFFFFFFFFFFFFFFFFFF", "*", "99'h0000000000000000091338A80", test("99'h7FFFFFFFFFFFFFFFFFFFFFFFF", "*", "99'h0000000000000000091338A80",
"99'h7FFFFFFFFFFFFFFFF6ECC7580"); "99'h7FFFFFFFFFFFFFFFF6ECC7580");
cout << "Test completed\n"; std::cout << "Test completed\n";
} }
//################################################################### //###################################################################

View File

@ -199,7 +199,7 @@ string V3Os::filenameRealPath(const string& filename) {
realpath(filename.c_str(), retpath) realpath(filename.c_str(), retpath)
#endif #endif
) { ) {
return string(retpath); return std::string{retpath};
} else { } else {
return filename; return filename;
} }
@ -239,7 +239,7 @@ void V3Os::unlinkRegexp(const string& dir, const string& regexp) {
if (DIR* const dirp = opendir(dir.c_str())) { if (DIR* const dirp = opendir(dir.c_str())) {
while (struct dirent* const direntp = readdir(dirp)) { while (struct dirent* const direntp = readdir(dirp)) {
if (VString::wildmatch(direntp->d_name, regexp.c_str())) { if (VString::wildmatch(direntp->d_name, regexp.c_str())) {
const string fullname = dir + "/" + string(direntp->d_name); const string fullname = dir + "/" + std::string{direntp->d_name};
#if defined(_WIN32) || defined(__MINGW32__) #if defined(_WIN32) || defined(__MINGW32__)
_unlink(fullname.c_str()); _unlink(fullname.c_str());
#else #else

View File

@ -353,7 +353,7 @@ class ParamProcessor final {
num = m_nextValue++; num = m_nextValue++;
m_valueMap[hash] = std::make_pair(num, key); m_valueMap[hash] = std::make_pair(num, key);
} }
return string("z") + cvtToStr(num); return std::string{"z"} + cvtToStr(num);
} }
string moduleCalcName(const AstNodeModule* srcModp, const string& longname) { string moduleCalcName(const AstNodeModule* srcModp, const string& longname) {
string newname = longname; string newname = longname;

View File

@ -230,13 +230,13 @@ public:
// These can be called by either parser or lexer, as not lex/parser-position aware // These can be called by either parser or lexer, as not lex/parser-position aware
string* newString(const string& text) { string* newString(const string& text) {
// Allocate a string, remembering it so we can reclaim storage at lex end // Allocate a string, remembering it so we can reclaim storage at lex end
string* const strp = new string(text); string* const strp = new std::string{text};
m_stringps.push_back(strp); m_stringps.push_back(strp);
return strp; return strp;
} }
string* newString(const char* text) { string* newString(const char* text) {
// Allocate a string, remembering it so we can reclaim storage at lex end // Allocate a string, remembering it so we can reclaim storage at lex end
string* const strp = new string(text); string* const strp = new std::string{text};
m_stringps.push_back(strp); m_stringps.push_back(strp);
return strp; return strp;
} }

View File

@ -63,7 +63,7 @@ void V3ParseImp::yylexReadTok() {
void V3ParseImp::lexNew() { void V3ParseImp::lexNew() {
if (m_lexerp) delete m_lexerp; // Restart from clean slate. if (m_lexerp) delete m_lexerp; // Restart from clean slate.
m_lexerp = new V3Lexer(); m_lexerp = new V3Lexer;
if (debugFlex() >= 9) m_lexerp->set_debug(~0); if (debugFlex() >= 9) m_lexerp->set_debug(~0);
} }

View File

@ -83,9 +83,9 @@ public:
uint64_t profilerId() const { return m_profilerId; } uint64_t profilerId() const { return m_profilerId; }
string cFuncName() const { string cFuncName() const {
// If this MTask maps to a C function, this should be the name // If this MTask maps to a C function, this should be the name
return string("__Vmtask") + "__" + cvtToStr(m_id); return std::string{"__Vmtask"} + "__" + cvtToStr(m_id);
} }
virtual string name() const override { return string("mt") + cvtToStr(id()); } virtual string name() const override { return std::string{"mt"} + cvtToStr(id()); }
string hashName() const { return m_hashName; } string hashName() const { return m_hashName; }
void hashName(const string& name) { m_hashName = name; } void hashName(const string& name) { m_hashName = name; }
void dump(std::ostream& str) const { void dump(std::ostream& str) const {

View File

@ -284,7 +284,7 @@ public:
// Creation // Creation
V3PreProc* V3PreProc::createPreProc(FileLine* fl) { V3PreProc* V3PreProc::createPreProc(FileLine* fl) {
V3PreProcImp* preprocp = new V3PreProcImp(); V3PreProcImp* preprocp = new V3PreProcImp;
preprocp->configure(fl); preprocp->configure(fl);
return preprocp; return preprocp;
} }

View File

@ -104,10 +104,10 @@ protected:
// from the V3LangCode to the various Lex BEGIN states. The language // from the V3LangCode to the various Lex BEGIN states. The language
// of this source file is updated here, in case there have been any // of this source file is updated here, in case there have been any
// intervening +<lang>ext+ options since it was first encountered. // intervening +<lang>ext+ options since it was first encountered.
FileLine* const modfileline = new FileLine(modfilename); FileLine* const modfileline = new FileLine{modfilename};
modfileline->language(v3Global.opt.fileLanguage(modfilename)); modfileline->language(v3Global.opt.fileLanguage(modfilename));
V3Parse::ppPushText( V3Parse::ppPushText(parsep, (std::string{"`begin_keywords \""}
parsep, (string("`begin_keywords \"") + modfileline->language().ascii() + "\"\n")); + modfileline->language().ascii() + "\"\n"));
// FileLine tracks and frees modfileline // FileLine tracks and frees modfileline
} }

View File

@ -355,7 +355,7 @@ private:
initialComment(txtp, fl); initialComment(txtp, fl);
txtp->addText(fl, "void* " + m_libName + "_protectlib_create(const char* scopep__V) {\n"); txtp->addText(fl, "void* " + m_libName + "_protectlib_create(const char* scopep__V) {\n");
txtp->addText(fl, /**/ m_topName + "_container* const handlep__V = new " + m_topName txtp->addText(fl, /**/ m_topName + "_container* const handlep__V = new " + m_topName
+ "_container(scopep__V);\n"); + "_container{scopep__V};\n");
txtp->addText(fl, /**/ "return handlep__V;\n"); txtp->addText(fl, /**/ "return handlep__V;\n");
txtp->addText(fl, "}\n\n"); txtp->addText(fl, "}\n\n");

View File

@ -71,7 +71,7 @@ private:
static AstVar* findCreateVarTemp(FileLine* fl, AstCFunc* cfuncp) { static AstVar* findCreateVarTemp(FileLine* fl, AstCFunc* cfuncp) {
AstVar* varp = VN_AS(cfuncp->user1p(), Var); AstVar* varp = VN_AS(cfuncp->user1p(), Var);
if (!varp) { if (!varp) {
const string newvarname = string("__Vilp"); const string newvarname{"__Vilp"};
varp = new AstVar{fl, VVarType::STMTTEMP, newvarname, VFlagLogicPacked{}, 32}; varp = new AstVar{fl, VVarType::STMTTEMP, newvarname, VFlagLogicPacked{}, 32};
UASSERT_OBJ(cfuncp, fl, "Assignment not under a function"); UASSERT_OBJ(cfuncp, fl, "Assignment not under a function");
cfuncp->addInitsp(varp); cfuncp->addInitsp(varp);

View File

@ -291,7 +291,7 @@ private:
} }
virtual void visit(AstScopeName* nodep) override { virtual void visit(AstScopeName* nodep) override {
// If there's a %m in the display text, we add a special node that will contain the name() // If there's a %m in the display text, we add a special node that will contain the name()
const string prefix = string("__DOT__") + m_scopep->name(); const string prefix = std::string{"__DOT__"} + m_scopep->name();
// TOP and above will be the user's name(). // TOP and above will be the user's name().
// Note 'TOP.' is stripped by scopePrettyName // Note 'TOP.' is stripped by scopePrettyName
// To keep correct visual order, must add before other Text's // To keep correct visual order, must add before other Text's

View File

@ -1083,7 +1083,7 @@ private:
nodep, "Argument for $display like statement is not constant"); nodep, "Argument for $display like statement is not constant");
break; break;
} }
const string pformat = string("%") + pos[0]; const string pformat = std::string{"%"} + pos[0];
result += constp->num().displayed(nodep, pformat); result += constp->num().displayed(nodep, pformat);
} else { } else {
switch (tolower(pos[0])) { switch (tolower(pos[0])) {

View File

@ -251,7 +251,8 @@ public:
for (int type = 0; type < VNType::_ENUM_END; type++) { for (int type = 0; type < VNType::_ENUM_END; type++) {
const double count = double(m_statTypeCount.at(type)); const double count = double(m_statTypeCount.at(type));
if (count != 0.0) { if (count != 0.0) {
V3Stats::addStat(m_stage, string("Node count, ") + VNType(type).ascii(), count); V3Stats::addStat(m_stage, std::string{"Node count, "} + VNType{type}.ascii(),
count);
} }
} }
for (int type = 0; type < VNType::_ENUM_END; type++) { for (int type = 0; type < VNType::_ENUM_END; type++) {
@ -259,7 +260,7 @@ public:
const double count = double(m_statAbove[type][type2]); const double count = double(m_statAbove[type][type2]);
if (count != 0.0) { if (count != 0.0) {
V3Stats::addStat(m_stage, V3Stats::addStat(m_stage,
(string("Node pairs, ") + VNType(type).ascii() + "_" (std::string{"Node pairs, "} + VNType{type}.ascii() + "_"
+ VNType(type2).ascii()), + VNType(type2).ascii()),
count); count);
} }
@ -269,8 +270,9 @@ public:
for (int type = 0; type < VBranchPred::_ENUM_END; type++) { for (int type = 0; type < VBranchPred::_ENUM_END; type++) {
const double count = double(m_statPred[type]); const double count = double(m_statPred[type]);
if (count != 0.0) { if (count != 0.0) {
V3Stats::addStat( V3Stats::addStat(m_stage,
m_stage, (string("Branch prediction, ") + VBranchPred(type).ascii()), count); (std::string{"Branch prediction, "} + VBranchPred{type}.ascii()),
count);
} }
} }
} }

View File

@ -436,7 +436,7 @@ class TristateVisitor final : public TristateBaseVisitor {
const auto it = m_lhsmap.find(key); const auto it = m_lhsmap.find(key);
UINFO(9, " mapInsertLhsVarRef " << nodep << endl); UINFO(9, " mapInsertLhsVarRef " << nodep << endl);
if (it == m_lhsmap.end()) { // Not found if (it == m_lhsmap.end()) { // Not found
RefVec* const refsp = new RefVec(); RefVec* const refsp = new RefVec;
refsp->push_back(nodep); refsp->push_back(nodep);
m_lhsmap.emplace(key, refsp); m_lhsmap.emplace(key, refsp);
} else { } else {

View File

@ -65,7 +65,7 @@ private:
nodep->v3warn(E_UNSUPPORTED, "Unsupported: Can't unroll generate for; " << reason); nodep->v3warn(E_UNSUPPORTED, "Unsupported: Can't unroll generate for; " << reason);
UINFO(3, " Can't Unroll: " << reason << " :" << nodep << endl); UINFO(3, " Can't Unroll: " << reason << " :" << nodep << endl);
// if (debug() >= 9) nodep->dumpTree(cout, "-cant-"); // if (debug() >= 9) nodep->dumpTree(cout, "-cant-");
V3Stats::addStatSum(string("Unrolling gave up, ") + reason, 1); V3Stats::addStatSum(std::string{"Unrolling gave up, "} + reason, 1);
return false; return false;
} }