Internals: Fix spacing and style of v4 changes. No functional change.

This commit is contained in:
Wilson Snyder 2018-08-23 05:09:12 -04:00
parent 0b84222500
commit 8f838433df
32 changed files with 66 additions and 66 deletions

View File

@ -1,4 +1,4 @@
GNU LESSER GENERAL PUBLIC LICENSE GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007 Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>

View File

@ -21,8 +21,8 @@ our %Global;
autoflush STDOUT 1; autoflush STDOUT 1;
autoflush STDERR 1; autoflush STDERR 1;
Getopt::Long::config ("no_auto_abbrev"); Getopt::Long::config("no_auto_abbrev");
if (! GetOptions ( if (! GetOptions(
"help" => \&usage, "help" => \&usage,
"scale=i" => \$Opt_Time_Per_Char, "scale=i" => \$Opt_Time_Per_Char,
"debug" => sub { $Debug = 1; }, "debug" => sub { $Debug = 1; },
@ -156,8 +156,8 @@ sub report {
# of synchronization and scheduling should not.) # of synchronization and scheduling should not.)
print "\nAnalysis:\n"; print "\nAnalysis:\n";
printf " Total threads = %d\n", $nthreads; printf " Total threads = %d\n", $nthreads;
printf " Total mtasks = %d\n", scalar (keys %Mtasks); printf " Total mtasks = %d\n", scalar(keys %Mtasks);
printf " Total cpus used = %d\n", scalar (keys %{$Global{cpus}}); printf " Total cpus used = %d\n", scalar(keys %{$Global{cpus}});
printf " Total yields = %d\n", $Global{stats}{yields}; printf " Total yields = %d\n", $Global{stats}{yields};
printf " Total eval time = %d rdtsc ticks\n", $Global{last_end}; printf " Total eval time = %d rdtsc ticks\n", $Global{last_end};
printf " Longest mtask time = %d rdtsc ticks\n", $long_mtask_time; printf " Longest mtask time = %d rdtsc ticks\n", $long_mtask_time;

View File

@ -305,8 +305,8 @@ public:
*m_writep++=' '; printCode(code); *m_writep++='\n'; *m_writep++=' '; printCode(code); *m_writep++='\n';
bufferCheck(); bufferCheck();
} }
inline void fullQuadX(vluint32_t code, int bits) { fullBusX (code, bits); } inline void fullQuadX(vluint32_t code, int bits) { fullBusX(code, bits); }
inline void fullArrayX(vluint32_t code, int bits) { fullBusX (code, bits); } inline void fullArrayX(vluint32_t code, int bits) { fullBusX(code, bits); }
/// Inside dumping routines, dump one signal if it has changed /// Inside dumping routines, dump one signal if it has changed
inline void chgBit(vluint32_t code, const vluint32_t newval) { inline void chgBit(vluint32_t code, const vluint32_t newval) {

View File

@ -571,7 +571,7 @@ call will correctly see the change. Alternatively:
lp = nodep->lhsp(); lp = nodep->lhsp();
// nodep->lhsp() is 0x1234000, lp is 0x1234000 // nodep->lhsp() is 0x1234000, lp is 0x1234000
iterateAndNextNull(lp); **lhsp=NULL;** // and under covers nodep->lhsp() changes iterateAndNextNull(lp); **lhsp=NULL;** // and under covers nodep->lhsp() changes
// nodep->lhsp() is 0x5678400, lp is 0x1234000 // nodep->lhsp() is 0x5678400, lp is 0x1234000
iterateAndNextNull(lp); iterateAndNextNull(lp);

View File

@ -67,7 +67,7 @@ private:
SenTreeSet m_activeSens; // Sen lists for each active we've made SenTreeSet m_activeSens; // Sen lists for each active we've made
typedef vl_unordered_map<AstSenTree*, AstActive*> ActiveMap; typedef vl_unordered_map<AstSenTree*, AstActive*> ActiveMap;
ActiveMap m_activeMap; // Map sentree to active, for folding. ActiveMap m_activeMap; // Map sentree to active, for folding.
// METHODS // METHODS
void addActive(AstActive* nodep) { void addActive(AstActive* nodep) {

View File

@ -112,7 +112,7 @@ private:
AstNode* bodysp = NULL; AstNode* bodysp = NULL;
bool selfDestruct = false; bool selfDestruct = false;
AstIf* ifp = NULL; AstIf* ifp = NULL;
if (AstPslCover* snodep = VN_CAST(nodep, PslCover)) { if (AstPslCover* snodep = VN_CAST(nodep, PslCover)) {
++m_statAsCover; ++m_statAsCover;
if (!v3Global.opt.coverageUser()) { if (!v3Global.opt.coverageUser()) {
selfDestruct = true; selfDestruct = true;

View File

@ -68,7 +68,7 @@ public:
,m_num(V3Number(fl,32,num)) { dtypeSetLogicSized(m_num.width(), ,m_num(V3Number(fl,32,num)) { dtypeSetLogicSized(m_num.width(),
m_num.sized()?0:m_num.widthMin(), m_num.sized()?0:m_num.widthMin(),
AstNumeric::UNSIGNED); } AstNumeric::UNSIGNED); }
class Unsized32 {}; // for creator type-overload selection class Unsized32 {}; // for creator type-overload selection
AstConst(FileLine* fl, Unsized32, uint32_t num) // Unsized 32-bit integer of specified value AstConst(FileLine* fl, Unsized32, uint32_t num) // Unsized 32-bit integer of specified value
:AstNodeMath(fl) :AstNodeMath(fl)
,m_num(V3Number(fl,32,num)) { m_num.width(32,false); dtypeSetLogicSized(32,m_num.widthMin(), ,m_num(V3Number(fl,32,num)) { m_num.width(32,false); dtypeSetLogicSized(32,m_num.widthMin(),

View File

@ -1755,7 +1755,7 @@ private:
if (nextp && !cmp(senp, nextp)) { if (nextp && !cmp(senp, nextp)) {
// Something's out of order, sort it // Something's out of order, sort it
senp = NULL; senp = NULL;
std::vector<AstNodeSenItem*> vec; std::vector<AstNodeSenItem*> vec;
for (AstNodeSenItem* senp = VN_CAST(nodep->sensesp(), NodeSenItem); for (AstNodeSenItem* senp = VN_CAST(nodep->sensesp(), NodeSenItem);
senp; senp=VN_CAST(senp->nextp(), NodeSenItem)) { senp; senp=VN_CAST(senp->nextp(), NodeSenItem)) {
vec.push_back(senp); vec.push_back(senp);

View File

@ -351,7 +351,7 @@ public:
} }
else { else {
nodep->v3error(nodep->verilogKwd() nodep->v3error(nodep->verilogKwd()
<< " loading other than unpacked-array variable"); << " loading other than unpacked-array variable");
} }
} }
putbs(", "); putbs(", ");
@ -1290,7 +1290,7 @@ void EmitCStmts::emitVarCtors(bool* firstp) {
ofp()->indentInc(); ofp()->indentInc();
puts("\n"); puts("\n");
puts("#if (SYSTEMC_VERSION>20011000)\n"); // SystemC 2.0.1 and newer puts("#if (SYSTEMC_VERSION>20011000)\n"); // SystemC 2.0.1 and newer
for (VarVec::iterator it = m_ctorVarsVec.begin(); it != m_ctorVarsVec.end(); ++it) { for (VarVec::iterator it = m_ctorVarsVec.begin(); it != m_ctorVarsVec.end(); ++it) {
const AstVar* varp = *it; const AstVar* varp = *it;
bool isArray = !VN_CAST(varp->dtypeSkipRefp(), BasicDType); bool isArray = !VN_CAST(varp->dtypeSkipRefp(), BasicDType);
if (isArray) { if (isArray) {

View File

@ -162,7 +162,7 @@ string V3Error::warnMore() {
return msgPrefix(); return msgPrefix();
} }
void V3Error::v3errorEnd (std::ostringstream& sstr) { void V3Error::v3errorEnd(std::ostringstream& sstr) {
#if defined(__COVERITY__) || defined(__cppcheck__) #if defined(__COVERITY__) || defined(__cppcheck__)
if (s_errorCode==V3ErrorCode::EC_FATAL) __coverity_panic__(x); if (s_errorCode==V3ErrorCode::EC_FATAL) __coverity_panic__(x);
#endif #endif

View File

@ -211,7 +211,7 @@ class V3Error {
static int s_errCount; // Error count static int s_errCount; // Error count
static int s_warnCount; // Warning count static int s_warnCount; // Warning count
static int s_tellManual; // Tell user to see manual, 0=not yet, 1=doit, 2=disable static int s_tellManual; // Tell user to see manual, 0=not yet, 1=doit, 2=disable
static std::ostringstream s_errorStr; // Error string being formed static std::ostringstream s_errorStr; // Error string being formed
static V3ErrorCode s_errorCode; // Error string being formed will abort static V3ErrorCode s_errorCode; // Error string being formed will abort
static bool s_errorSuppressed; // Error being formed should be suppressed static bool s_errorSuppressed; // Error being formed should be suppressed
static MessagesSet s_messages; // What errors we've outputted static MessagesSet s_messages; // What errors we've outputted
@ -256,7 +256,7 @@ class V3Error {
s_errorStr.str(""); s_errorCode=code; s_errorSuppressed=false; } s_errorStr.str(""); s_errorCode=code; s_errorSuppressed=false; }
static std::ostringstream& v3errorStr() { return s_errorStr; } static std::ostringstream& v3errorStr() { return s_errorStr; }
static void vlAbort(); static void vlAbort();
static void v3errorEnd(std::ostringstream& sstr); // static, but often overridden in classes. static void v3errorEnd(std::ostringstream& sstr); // static, but often overridden in classes.
}; };
// Global versions, so that if the class doesn't define a operator, we get the functions anyways. // Global versions, so that if the class doesn't define a operator, we get the functions anyways.

View File

@ -122,7 +122,7 @@ private:
} }
public: public:
GraphRemoveRedundant(V3Graph* graphp, V3EdgeFuncP edgeFuncp, bool sumWeights) GraphRemoveRedundant(V3Graph* graphp, V3EdgeFuncP edgeFuncp, bool sumWeights)
: GraphAlg<>(graphp, edgeFuncp), m_sumWeights(sumWeights) { : GraphAlg<>(graphp, edgeFuncp), m_sumWeights(sumWeights) {
main(); main();
} }
~GraphRemoveRedundant() {} ~GraphRemoveRedundant() {}
@ -210,7 +210,7 @@ private:
} }
public: public:
GraphAlgWeakly(V3Graph* graphp, V3EdgeFuncP edgeFuncp) GraphAlgWeakly(V3Graph* graphp, V3EdgeFuncP edgeFuncp)
: GraphAlg<>(graphp, edgeFuncp) { : GraphAlg<>(graphp, edgeFuncp) {
main(); main();
} }
~GraphAlgWeakly() {} ~GraphAlgWeakly() {}
@ -295,7 +295,7 @@ private:
} }
public: public:
GraphAlgStrongly(V3Graph* graphp, V3EdgeFuncP edgeFuncp) GraphAlgStrongly(V3Graph* graphp, V3EdgeFuncP edgeFuncp)
: GraphAlg<>(graphp, edgeFuncp) { : GraphAlg<>(graphp, edgeFuncp) {
m_currentDfs = 0; m_currentDfs = 0;
main(); main();
} }
@ -348,7 +348,7 @@ private:
} }
public: public:
GraphAlgRank(V3Graph* graphp, V3EdgeFuncP edgeFuncp) GraphAlgRank(V3Graph* graphp, V3EdgeFuncP edgeFuncp)
: GraphAlg<>(graphp, edgeFuncp) { : GraphAlg<>(graphp, edgeFuncp) {
main(); main();
} }
~GraphAlgRank() {} ~GraphAlgRank() {}
@ -406,7 +406,7 @@ private:
} }
public: public:
GraphAlgRLoops(V3Graph* graphp, V3EdgeFuncP edgeFuncp, V3GraphVertex* vertexp) GraphAlgRLoops(V3Graph* graphp, V3EdgeFuncP edgeFuncp, V3GraphVertex* vertexp)
: GraphAlg<>(graphp, edgeFuncp) { : GraphAlg<>(graphp, edgeFuncp) {
m_done = false; m_done = false;
main(vertexp); main(vertexp);
} }
@ -453,7 +453,7 @@ private:
public: public:
GraphAlgSubtrees(V3Graph* graphp, V3Graph* loopGraphp, GraphAlgSubtrees(V3Graph* graphp, V3Graph* loopGraphp,
V3EdgeFuncP edgeFuncp, V3GraphVertex* vertexp) V3EdgeFuncP edgeFuncp, V3GraphVertex* vertexp)
: GraphAlg<>(graphp, edgeFuncp), m_loopGraphp (loopGraphp) { : GraphAlg<>(graphp, edgeFuncp), m_loopGraphp (loopGraphp) {
// Vertex::m_userp - New vertex if we have seen this vertex already // Vertex::m_userp - New vertex if we have seen this vertex already
// Edge::m_userp - New edge if we have seen this edge already // Edge::m_userp - New edge if we have seen this edge already
m_graphp->userClearVertices(); m_graphp->userClearVertices();

View File

@ -348,7 +348,7 @@ private:
public: public:
GraphNfaToDfa(V3Graph* graphp, V3EdgeFuncP edgeFuncp) GraphNfaToDfa(V3Graph* graphp, V3EdgeFuncP edgeFuncp)
: GraphAlg<>(graphp, edgeFuncp) { : GraphAlg<>(graphp, edgeFuncp) {
m_step = 0; m_step = 0;
main(); main();
} }
@ -471,7 +471,7 @@ private:
} }
public: public:
DfaGraphReduce(V3Graph* graphp, V3EdgeFuncP edgeFuncp) DfaGraphReduce(V3Graph* graphp, V3EdgeFuncP edgeFuncp)
: GraphAlg<>(graphp, edgeFuncp) { : GraphAlg<>(graphp, edgeFuncp) {
if (debug()>=6) m_graphp->dumpDotFilePrefixed("opt_in"); if (debug()>=6) m_graphp->dumpDotFilePrefixed("opt_in");
optimize_accepting_out(); optimize_accepting_out();
if (debug()>=6) m_graphp->dumpDotFilePrefixed("opt_acc"); if (debug()>=6) m_graphp->dumpDotFilePrefixed("opt_acc");
@ -561,7 +561,7 @@ private:
} }
public: public:
DfaGraphComplement(V3Graph* dfagraphp, V3EdgeFuncP edgeFuncp) DfaGraphComplement(V3Graph* dfagraphp, V3EdgeFuncP edgeFuncp)
: GraphAlg<>(dfagraphp, edgeFuncp) { : GraphAlg<>(dfagraphp, edgeFuncp) {
if (debug()>=6) m_graphp->dumpDotFilePrefixed("comp_in"); if (debug()>=6) m_graphp->dumpDotFilePrefixed("comp_in");
// Vertex::m_user begin: 1 indicates new edge, no more processing // Vertex::m_user begin: 1 indicates new edge, no more processing

View File

@ -401,7 +401,7 @@ private:
// the updated t_clocker VCD test. // the updated t_clocker VCD test.
// If reenable this visitor note AstNodeMath short circuit below // If reenable this visitor note AstNodeMath short circuit below
} }
virtual void visit(AstNodeMath* nodep) {} // Accelerate virtual void visit(AstNodeMath* nodep) {} // Accelerate
virtual void visit(AstNode* nodep) { virtual void visit(AstNode* nodep) {
iterateChildren(nodep); iterateChildren(nodep);
} }
@ -1321,7 +1321,7 @@ inline void OrderMoveDomScope::movedVertex(OrderVisitor* ovp, OrderMoveVertex* v
if (!m_onReadyList) { if (!m_onReadyList) {
vertexp->v3fatalSrc("Moving vertex from ready when nothing was on que as ready."); vertexp->v3fatalSrc("Moving vertex from ready when nothing was on que as ready.");
} }
if (m_readyVertices.empty()) { // Else more work to get to later if (m_readyVertices.empty()) { // Else more work to get to later
m_onReadyList = false; m_onReadyList = false;
m_readyDomScopeE.unlink(ovp->m_pomReadyDomScope, this); m_readyDomScopeE.unlink(ovp->m_pomReadyDomScope, this);
} }

View File

@ -375,7 +375,7 @@ private:
} else { } else {
UINFO(4,"Autoflush "<<nodep<<endl); UINFO(4,"Autoflush "<<nodep<<endl);
nodep->addNextHere(new AstFFlush(nodep->fileline(), nodep->addNextHere(new AstFFlush(nodep->fileline(),
AstNode::cloneTreeNull(nodep->filep(), true))); AstNode::cloneTreeNull(nodep->filep(), true)));
} }
} }
} }

View File

@ -45,7 +45,7 @@
#include "V3Stats.h" #include "V3Stats.h"
#include "V3Ast.h" #include "V3Ast.h"
#define RELOOP_MIN_ITERS 40 // Need at least this many loops to do this optimization #define RELOOP_MIN_ITERS 40 // Need at least this many loops to do this optimization
//###################################################################### //######################################################################
@ -122,7 +122,7 @@ private:
AstNode* lbitp = m_mgSelLp->bitp(); AstNode* lbitp = m_mgSelLp->bitp();
lbitp->replaceWith(new AstVarRef(fl, itp, false)); lbitp->replaceWith(new AstVarRef(fl, itp, false));
lbitp->deleteTree(); VL_DANGLING(lbitp); lbitp->deleteTree(); VL_DANGLING(lbitp);
if (m_mgSelRp) { // else constant and no replace if (m_mgSelRp) { // else constant and no replace
AstNode* rbitp = m_mgSelRp->bitp(); AstNode* rbitp = m_mgSelRp->bitp();
rbitp->replaceWith(new AstVarRef(fl, itp, false)); rbitp->replaceWith(new AstVarRef(fl, itp, false));
rbitp->deleteTree(); VL_DANGLING(lbitp); rbitp->deleteTree(); VL_DANGLING(lbitp);
@ -184,7 +184,7 @@ private:
} }
} }
if (m_mgSelLp) { // Old merge if (m_mgSelLp) { // Old merge
if (m_mgCfuncp == m_cfuncp if (m_mgCfuncp == m_cfuncp
&& m_mgNextp == nodep && m_mgNextp == nodep
&& m_mgSelLp->same(lselp) && m_mgSelLp->same(lselp)
@ -260,7 +260,7 @@ public:
void V3Reloop::reloopAll(AstNetlist* nodep) { void V3Reloop::reloopAll(AstNetlist* nodep) {
UINFO(2,__FUNCTION__<<": "<<endl); UINFO(2,__FUNCTION__<<": "<<endl);
{ {
ReloopVisitor visitor (nodep); ReloopVisitor visitor(nodep);
} // Destruct before checking } // Destruct before checking
V3Global::dumpCheckGlobalTree("reloop", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 6); V3Global::dumpCheckGlobalTree("reloop", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 6);
} }

View File

@ -32,4 +32,4 @@ public:
static void reloopAll(AstNetlist* nodep); static void reloopAll(AstNetlist* nodep);
}; };
#endif // Guard #endif // Guard

View File

@ -1002,14 +1002,14 @@ private:
void V3Split::splitReorderAll(AstNetlist* nodep) { void V3Split::splitReorderAll(AstNetlist* nodep) {
UINFO(2,__FUNCTION__<<": "<<endl); UINFO(2,__FUNCTION__<<": "<<endl);
{ {
ReorderVisitor visitor (nodep); ReorderVisitor visitor(nodep);
} // Destruct before checking } // Destruct before checking
V3Global::dumpCheckGlobalTree("reorder", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 3); V3Global::dumpCheckGlobalTree("reorder", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 3);
} }
void V3Split::splitAlwaysAll(AstNetlist* nodep) { void V3Split::splitAlwaysAll(AstNetlist* nodep) {
UINFO(2,__FUNCTION__<<": "<<endl); UINFO(2,__FUNCTION__<<": "<<endl);
{ {
SplitVisitor visitor (nodep); SplitVisitor visitor(nodep);
} // Destruct before checking } // Destruct before checking
V3Global::dumpCheckGlobalTree("split", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 3); V3Global::dumpCheckGlobalTree("split", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 3);
} }

View File

@ -206,7 +206,7 @@ StatsReport::StatColl StatsReport::s_allStats;
//###################################################################### //######################################################################
// V3Statstic class // V3Statstic class
void V3Statistic::dump (std::ofstream& os) const { void V3Statistic::dump(std::ofstream& os) const {
if (perf()) { if (perf()) {
os<<" "<<std::right<<std::fixed<<std::setprecision(6)<<std::setw(9)<<count(); os<<" "<<std::right<<std::fixed<<std::setprecision(6)<<std::setw(9)<<count();
} else { } else {

View File

@ -53,4 +53,4 @@ namespace V3TSP {
} }
#endif // Guard #endif // Guard

View File

@ -358,7 +358,7 @@ private:
AstNode* createInlinedFTask(AstNodeFTaskRef* refp, const string& namePrefix, AstVarScope* outvscp) { AstNode* createInlinedFTask(AstNodeFTaskRef* refp, const string& namePrefix, AstVarScope* outvscp) {
// outvscp is the variable for functions only, if NULL, it's a task // outvscp is the variable for functions only, if NULL, it's a task
if (!refp->taskp()) refp->v3fatalSrc("Unlinked?"); if (!refp->taskp()) refp->v3fatalSrc("Unlinked?");
AstNode* newbodysp = AstNode::cloneTreeNull(refp->taskp()->stmtsp(), true); // Maybe NULL AstNode* newbodysp = AstNode::cloneTreeNull(refp->taskp()->stmtsp(), true); // Maybe NULL
AstNode* beginp = new AstComment(refp->fileline(), (string)("Function: ")+refp->name()); AstNode* beginp = new AstComment(refp->fileline(), (string)("Function: ")+refp->name());
if (newbodysp) beginp->addNext(newbodysp); if (newbodysp) beginp->addNext(newbodysp);
if (debug()>=9) { beginp->dumpTreeAndNext(cout,"-newbegi:"); } if (debug()>=9) { beginp->dumpTreeAndNext(cout,"-newbegi:"); }
@ -1140,8 +1140,8 @@ private:
AstVarScope* outvscp = NULL; AstVarScope* outvscp = NULL;
if (nodep->taskp()->isFunction()) { if (nodep->taskp()->isFunction()) {
// Not that it's a FUNCREF, but that we're calling a function (perhaps as a task) // Not that it's a FUNCREF, but that we're calling a function (perhaps as a task)
outvscp = createVarScope (VN_CAST(nodep->taskp()->fvarp(), Var), outvscp = createVarScope(VN_CAST(nodep->taskp()->fvarp(), Var),
namePrefix+"__Vfuncout"); namePrefix+"__Vfuncout");
} }
// Create cloned statements // Create cloned statements
AstNode* beginp; AstNode* beginp;

View File

@ -419,7 +419,7 @@ private:
UINFO(9,"Making trees\n"); UINFO(9,"Making trees\n");
typedef std::set<uint32_t> ActCodeSet; // All activity numbers applying to a given trace typedef std::set<uint32_t> ActCodeSet; // All activity numbers applying to a given trace
typedef std::multimap<ActCodeSet,TraceTraceVertex*> TraceVec; // For activity set, what traces apply typedef std::multimap<ActCodeSet,TraceTraceVertex*> TraceVec; // For activity set, what traces apply
TraceVec traces; TraceVec traces;
// Form sort structure // Form sort structure

View File

@ -187,7 +187,7 @@ private:
// If we got ==1'bx it can never be true (but 1'bx==1'bx can be!) // If we got ==1'bx it can never be true (but 1'bx==1'bx can be!)
if (((VN_IS(lhsp, Const) && VN_CAST(lhsp, Const)->num().isFourState()) if (((VN_IS(lhsp, Const) && VN_CAST(lhsp, Const)->num().isFourState())
|| (VN_IS(rhsp, Const) && VN_CAST(rhsp, Const)->num().isFourState()))) { || (VN_IS(rhsp, Const) && VN_CAST(rhsp, Const)->num().isFourState()))) {
V3Number num (nodep->fileline(), 1, (VN_IS(nodep, EqCase) ? 0:1)); V3Number num(nodep->fileline(), 1, (VN_IS(nodep, EqCase) ? 0:1));
newp = new AstConst (nodep->fileline(), num); newp = new AstConst (nodep->fileline(), num);
lhsp->deleteTree(); VL_DANGLING(lhsp); lhsp->deleteTree(); VL_DANGLING(lhsp);
rhsp->deleteTree(); VL_DANGLING(rhsp); rhsp->deleteTree(); VL_DANGLING(rhsp);

View File

@ -1285,7 +1285,7 @@ private:
// Assign missing values // Assign missing values
V3Number num (nodep->fileline(), nodep->width(), 0); V3Number num (nodep->fileline(), nodep->width(), 0);
V3Number one (nodep->fileline(), nodep->width(), 1); V3Number one (nodep->fileline(), nodep->width(), 1);
std::map<V3Number,AstEnumItem*> inits; std::map<V3Number,AstEnumItem*> inits;
for (AstEnumItem* itemp = nodep->itemsp(); itemp; itemp=VN_CAST(itemp->nextp(), EnumItem)) { for (AstEnumItem* itemp = nodep->itemsp(); itemp; itemp=VN_CAST(itemp->nextp(), EnumItem)) {
if (itemp->valuep()) { if (itemp->valuep()) {
if (debug()>=9) { UINFO(0,"EnumInit "<<itemp<<endl); itemp->valuep()->dumpTree(cout,"-EnumInit: "); } if (debug()>=9) { UINFO(0,"EnumInit "<<itemp<<endl); itemp->valuep()->dumpTree(cout,"-EnumInit: "); }
@ -1442,7 +1442,7 @@ private:
backip = VN_CAST(itemp->backp(), MemberDType); backip = VN_CAST(itemp->backp(), MemberDType);
itemp->lsb(lsb); itemp->lsb(lsb);
if (VN_IS(nodep, UnionDType)) { if (VN_IS(nodep, UnionDType)) {
width = std::max(width, itemp->width()); width = std::max(width, itemp->width());
} else { } else {
lsb += itemp->width(); lsb += itemp->width();
width += itemp->width(); width += itemp->width();

View File

@ -32,7 +32,7 @@
void VlcTop::readCoverage(const string& filename, bool nonfatal) { void VlcTop::readCoverage(const string& filename, bool nonfatal) {
UINFO(2,"readCoverage "<<filename<<endl); UINFO(2,"readCoverage "<<filename<<endl);
std::ifstream is (filename.c_str()); std::ifstream is(filename.c_str());
if (!is) { if (!is) {
if (!nonfatal) v3fatal("Can't read "<<filename); if (!nonfatal) v3fatal("Can't read "<<filename);
return; return;
@ -69,7 +69,7 @@ void VlcTop::readCoverage(const string& filename, bool nonfatal) {
void VlcTop::writeCoverage(const string& filename) { void VlcTop::writeCoverage(const string& filename) {
UINFO(2,"writeCoverage "<<filename<<endl); UINFO(2,"writeCoverage "<<filename<<endl);
std::ofstream os (filename.c_str()); std::ofstream os(filename.c_str());
if (!os) { if (!os) {
v3fatal("Can't write "<<filename); v3fatal("Can't write "<<filename);
return; return;
@ -203,13 +203,13 @@ void VlcTop::annotateOutputFiles(const string& dirname) {
UINFO(1,"annotateOutputFile "<<filename<<" -> "<<outfilename<<endl); UINFO(1,"annotateOutputFile "<<filename<<" -> "<<outfilename<<endl);
std::ifstream is (filename.c_str()); std::ifstream is(filename.c_str());
if (!is) { if (!is) {
v3error("Can't read "<<filename); v3error("Can't read "<<filename);
return; return;
} }
std::ofstream os (outfilename.c_str()); std::ofstream os(outfilename.c_str());
if (!os) { if (!os) {
v3fatal("Can't write "<<outfilename); v3fatal("Can't write "<<outfilename);
return; return;

View File

@ -10,18 +10,18 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
scenarios(vlt_all => 1); scenarios(vlt_all => 1);
top_filename("t/t_alw_reorder.v"); top_filename("t/t_alw_reorder.v");
compile ( compile(
verilator_flags2 => ["--stats -Or"], verilator_flags2 => ["--stats -Or"],
); );
file_grep ($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0); file_grep($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0);
# Here we should see some dly vars since reorder is disabled. # Here we should see some dly vars since reorder is disabled.
# (Whereas our twin test, t_alw_reorder, should see no dly vars # (Whereas our twin test, t_alw_reorder, should see no dly vars
# since it enables the reorder step.) # since it enables the reorder step.)
file_grep ("$Self->{obj_dir}/$Self->{VM_PREFIX}.cpp", qr/dly__t__DOT__v1/i); file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.cpp", qr/dly__t__DOT__v1/i);
file_grep ("$Self->{obj_dir}/$Self->{VM_PREFIX}.cpp", qr/dly__t__DOT__v2/i); file_grep("$Self->{obj_dir}/$Self->{VM_PREFIX}.cpp", qr/dly__t__DOT__v2/i);
execute ( execute(
check_finished=>1, check_finished=>1,
); );

View File

@ -9,15 +9,15 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
scenarios(simulator => 1); scenarios(simulator => 1);
compile ( compile(
verilator_flags2 => ["--stats"], verilator_flags2 => ["--stats"],
); );
if ($Self->{vlt_all}) { if ($Self->{vlt_all}) {
file_grep ($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0); file_grep($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0);
} }
execute ( execute(
check_finished=>1, check_finished=>1,
); );

View File

@ -88,7 +88,7 @@ module t (/*AUTOARG*/
h_split_1 <= 16'h0; h_split_1 <= 16'h0;
h_split_2 <= 16'h0; h_split_2 <= 16'h0;
end end
end // always @ (posedge clk) end // always @ (posedge clk)
always @ (posedge clk) begin always @ (posedge clk) begin
if (cyc!=0) begin if (cyc!=0) begin

View File

@ -9,11 +9,11 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
scenarios(vlt_all => 1); scenarios(vlt_all => 1);
compile ( compile(
verilator_flags2 => ["--stats"], verilator_flags2 => ["--stats"],
); );
file_grep ($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0); file_grep($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 0);
# Important: if reorder succeeded, we should see no dly vars. # Important: if reorder succeeded, we should see no dly vars.
# Equally important: twin test t_alw_noreorder should see dly vars, # Equally important: twin test t_alw_noreorder should see dly vars,
# is identical to this test except for disabling the reorder step. # is identical to this test except for disabling the reorder step.
@ -24,7 +24,7 @@ foreach my $file ("$Self->{obj_dir}/$Self->{VM_PREFIX}.cpp",
file_grep_not($file, qr/dly__t__DOT__v3/i); file_grep_not($file, qr/dly__t__DOT__v3/i);
} }
execute ( execute(
check_finished=>1, check_finished=>1,
); );

View File

@ -14,7 +14,7 @@ compile(
); );
if ($Self->{vlt_all}) { if ($Self->{vlt_all}) {
file_grep ($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 3); file_grep($Self->{stats}, qr/Optimizations, Split always\s+(\d+)/i, 3);
} }
execute( execute(

View File

@ -82,6 +82,6 @@ module t (/*AUTOARG*/
$finish; $finish;
end end
end end
end // always @ (posedge clk) end // always @ (posedge clk)
endmodule endmodule

View File

@ -14,9 +14,9 @@ compile(
); );
if ($Self->{vlt_all}) { if ($Self->{vlt_all}) {
file_grep ($Self->{stats}, qr/Optimizations, Tables created\s+(\d+)/i, 10); file_grep($Self->{stats}, qr/Optimizations, Tables created\s+(\d+)/i, 10);
file_grep ($Self->{stats}, qr/Optimizations, Combined CFuncs\s+(\d+)/i, file_grep($Self->{stats}, qr/Optimizations, Combined CFuncs\s+(\d+)/i,
($Self->{vltmt} ? 0 : 8)); ($Self->{vltmt} ? 0 : 8));
} }
execute( execute(