mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Internals: Remove some unnecessary typedefs. No functional change.
This commit is contained in:
parent
21e9794fd7
commit
404b323f8c
@ -43,12 +43,9 @@ private:
|
|||||||
//=========================================================================
|
//=========================================================================
|
||||||
// FST specific internals
|
// FST specific internals
|
||||||
|
|
||||||
typedef std::map<vluint32_t, fstHandle> Code2SymbolType;
|
|
||||||
typedef std::map<int, fstEnumHandle> Local2FstDtype;
|
|
||||||
|
|
||||||
void* m_fst;
|
void* m_fst;
|
||||||
Code2SymbolType m_code2symbol;
|
std::map<vluint32_t, fstHandle> m_code2symbol;
|
||||||
Local2FstDtype m_local2fstdtype;
|
std::map<int, fstEnumHandle> m_local2fstdtype;
|
||||||
std::list<std::string> m_curScope;
|
std::list<std::string> m_curScope;
|
||||||
fstHandle* m_symbolp = nullptr; ///< same as m_code2symbol, but as an array
|
fstHandle* m_symbolp = nullptr; ///< same as m_code2symbol, but as an array
|
||||||
char* m_strbuf = nullptr; ///< String buffer long enough to hold maxBits() chars
|
char* m_strbuf = nullptr; ///< String buffer long enough to hold maxBits() chars
|
||||||
|
@ -252,7 +252,6 @@ public:
|
|||||||
class VlThreadPool final {
|
class VlThreadPool final {
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::vector<VlProfileRec> ProfileTrace;
|
typedef std::vector<VlProfileRec> ProfileTrace;
|
||||||
typedef std::set<ProfileTrace*> ProfileSet;
|
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
std::vector<VlWorkerThread*> m_workers; // our workers
|
std::vector<VlWorkerThread*> m_workers; // our workers
|
||||||
@ -266,7 +265,7 @@ class VlThreadPool final {
|
|||||||
// this is the only cost we pay in real-time during a profiling cycle.
|
// this is the only cost we pay in real-time during a profiling cycle.
|
||||||
// Internal note: Globals may multi-construct, see verilated.cpp top.
|
// Internal note: Globals may multi-construct, see verilated.cpp top.
|
||||||
static VL_THREAD_LOCAL ProfileTrace* t_profilep;
|
static VL_THREAD_LOCAL ProfileTrace* t_profilep;
|
||||||
ProfileSet m_allProfiles VL_GUARDED_BY(m_mutex);
|
std::set<ProfileTrace*> m_allProfiles VL_GUARDED_BY(m_mutex);
|
||||||
VerilatedMutex m_mutex;
|
VerilatedMutex m_mutex;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -607,8 +607,7 @@ public:
|
|||||||
assertOneCheck();
|
assertOneCheck();
|
||||||
VpioCbList& cbObjList = s().m_cbObjLists[cbValueChange];
|
VpioCbList& cbObjList = s().m_cbObjLists[cbValueChange];
|
||||||
bool called = false;
|
bool called = false;
|
||||||
typedef std::unordered_set<VerilatedVpioVar*> VpioVarSet;
|
std::unordered_set<VerilatedVpioVar*> update; // set of objects to update after callbacks
|
||||||
VpioVarSet update; // set of objects to update after callbacks
|
|
||||||
if (cbObjList.empty()) return called;
|
if (cbObjList.empty()) return called;
|
||||||
const auto last = std::prev(cbObjList.end()); // prevent looping over newly added elements
|
const auto last = std::prev(cbObjList.end()); // prevent looping over newly added elements
|
||||||
for (auto it = cbObjList.begin(); true;) {
|
for (auto it = cbObjList.begin(); true;) {
|
||||||
|
@ -77,10 +77,8 @@ public:
|
|||||||
|
|
||||||
class LatchDetectGraph final : public V3Graph {
|
class LatchDetectGraph final : public V3Graph {
|
||||||
protected:
|
protected:
|
||||||
typedef std::vector<AstVarRef*> VarRefVec;
|
|
||||||
|
|
||||||
LatchDetectGraphVertex* m_curVertexp; // Current latch detection graph vertex
|
LatchDetectGraphVertex* m_curVertexp; // Current latch detection graph vertex
|
||||||
VarRefVec m_outputs; // Vector of lvalues encountered on this pass
|
std::vector<AstVarRef*> m_outputs; // Vector of lvalues encountered on this pass
|
||||||
|
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
|
||||||
|
@ -42,13 +42,10 @@ private:
|
|||||||
// AstFTask::user1() -> int. Number of references
|
// AstFTask::user1() -> int. Number of references
|
||||||
AstUser1InUse m_inuser1;
|
AstUser1InUse m_inuser1;
|
||||||
|
|
||||||
// TYPES
|
|
||||||
typedef std::vector<AstCFunc*> CFuncVec;
|
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
int m_likely; // Excuses for branch likely taken
|
int m_likely; // Excuses for branch likely taken
|
||||||
int m_unlikely; // Excuses for branch likely not taken
|
int m_unlikely; // Excuses for branch likely not taken
|
||||||
CFuncVec m_cfuncsp; // List of all tasks
|
std::vector<AstCFunc*> m_cfuncsp; // List of all tasks
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
@ -556,8 +556,7 @@ private:
|
|||||||
return;
|
return;
|
||||||
} // Fully computed
|
} // Fully computed
|
||||||
|
|
||||||
typedef std::set<AstSenTree*> SenSet;
|
std::set<AstSenTree*> senouts; // List of all sensitivities for new signal
|
||||||
SenSet senouts; // List of all sensitivities for new signal
|
|
||||||
if (CdcLogicVertex* vvertexp = dynamic_cast<CdcLogicVertex*>(vertexp)) {
|
if (CdcLogicVertex* vvertexp = dynamic_cast<CdcLogicVertex*>(vertexp)) {
|
||||||
if (vvertexp) {} // Unused
|
if (vvertexp) {} // Unused
|
||||||
} else if (CdcVarVertex* vvertexp = dynamic_cast<CdcVarVertex*>(vertexp)) {
|
} else if (CdcVarVertex* vvertexp = dynamic_cast<CdcVarVertex*>(vertexp)) {
|
||||||
|
@ -37,8 +37,7 @@ private:
|
|||||||
AstScope* m_classScopep = nullptr; // Package moving scopes into
|
AstScope* m_classScopep = nullptr; // Package moving scopes into
|
||||||
AstScope* m_packageScopep = nullptr; // Class package scope
|
AstScope* m_packageScopep = nullptr; // Class package scope
|
||||||
AstNodeFTask* m_ftaskp = nullptr; // Current task
|
AstNodeFTask* m_ftaskp = nullptr; // Current task
|
||||||
typedef std::vector<std::pair<AstNode*, AstScope*>> MoveVector;
|
std::vector<std::pair<AstNode*, AstScope*>> m_moves;
|
||||||
MoveVector m_moves;
|
|
||||||
|
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// AstClass::user1() -> bool. True if iterated already
|
// AstClass::user1() -> bool. True if iterated already
|
||||||
|
@ -79,7 +79,7 @@ public:
|
|||||||
UINFO(4, " Remove " << oldfuncp << endl);
|
UINFO(4, " Remove " << oldfuncp << endl);
|
||||||
}
|
}
|
||||||
// Note: m_callMmap modified in loop, so not using equal_range.
|
// Note: m_callMmap modified in loop, so not using equal_range.
|
||||||
for (CallMmap::iterator it = m_callMmap.find(oldfuncp); it != m_callMmap.end();
|
for (auto it = m_callMmap.find(oldfuncp); it != m_callMmap.end();
|
||||||
it = m_callMmap.find(oldfuncp)) {
|
it = m_callMmap.find(oldfuncp)) {
|
||||||
AstCCall* callp = it->second;
|
AstCCall* callp = it->second;
|
||||||
if (!callp->user3()) { // !already done
|
if (!callp->user3()) { // !already done
|
||||||
@ -173,7 +173,7 @@ private:
|
|||||||
// AstUser4InUse part of V3Hashed
|
// AstUser4InUse part of V3Hashed
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
typedef enum : uint8_t { STATE_IDLE, STATE_HASH, STATE_DUP } CombineState;
|
enum CombineState : uint8_t { STATE_IDLE, STATE_HASH, STATE_DUP };
|
||||||
VDouble0 m_statCombs; // Statistic tracking
|
VDouble0 m_statCombs; // Statistic tracking
|
||||||
CombineState m_state = STATE_IDLE; // Major state
|
CombineState m_state = STATE_IDLE; // Major state
|
||||||
AstNodeModule* m_modp = nullptr; // Current module
|
AstNodeModule* m_modp = nullptr; // Current module
|
||||||
|
@ -154,13 +154,10 @@ typedef V3ConfigWildcardResolver<V3ConfigFTask> V3ConfigFTaskResolver;
|
|||||||
// Modules have tasks, variables, named blocks and properties
|
// Modules have tasks, variables, named blocks and properties
|
||||||
|
|
||||||
class V3ConfigModule final {
|
class V3ConfigModule final {
|
||||||
typedef std::unordered_set<string> StringSet;
|
|
||||||
typedef std::set<AstPragmaType> PragmaSet;
|
|
||||||
|
|
||||||
V3ConfigFTaskResolver m_tasks; // Functions/tasks in module
|
V3ConfigFTaskResolver m_tasks; // Functions/tasks in module
|
||||||
V3ConfigVarResolver m_vars; // Variables in module
|
V3ConfigVarResolver m_vars; // Variables in module
|
||||||
StringSet m_coverageOffBlocks; // List of block names for coverage_off
|
std::unordered_set<std::string> m_coverageOffBlocks; // List of block names for coverage_off
|
||||||
PragmaSet m_modPragmas; // List of Pragmas for modules
|
std::set<AstPragmaType> m_modPragmas; // List of Pragmas for modules
|
||||||
bool m_inline = false; // Whether to force the inline
|
bool m_inline = false; // Whether to force the inline
|
||||||
bool m_inlineValue = false; // The inline value (on/off)
|
bool m_inlineValue = false; // The inline value (on/off)
|
||||||
|
|
||||||
@ -175,8 +172,7 @@ public:
|
|||||||
m_inline = m.m_inline;
|
m_inline = m.m_inline;
|
||||||
m_inlineValue = m.m_inlineValue;
|
m_inlineValue = m.m_inlineValue;
|
||||||
}
|
}
|
||||||
for (PragmaSet::const_iterator it = m.m_modPragmas.begin(); it != m.m_modPragmas.end();
|
for (auto it = m.m_modPragmas.cbegin(); it != m.m_modPragmas.cend(); ++it) {
|
||||||
++it) {
|
|
||||||
m_modPragmas.insert(*it);
|
m_modPragmas.insert(*it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -198,7 +194,7 @@ public:
|
|||||||
AstNode* nodep = new AstPragma(modp->fileline(), type);
|
AstNode* nodep = new AstPragma(modp->fileline(), type);
|
||||||
modp->addStmtp(nodep);
|
modp->addStmtp(nodep);
|
||||||
}
|
}
|
||||||
for (PragmaSet::const_iterator it = m_modPragmas.begin(); it != m_modPragmas.end(); ++it) {
|
for (auto it = m_modPragmas.cbegin(); it != m_modPragmas.cend(); ++it) {
|
||||||
AstNode* nodep = new AstPragma(modp->fileline(), *it);
|
AstNode* nodep = new AstPragma(modp->fileline(), *it);
|
||||||
modp->addStmtp(nodep);
|
modp->addStmtp(nodep);
|
||||||
}
|
}
|
||||||
|
@ -40,9 +40,7 @@
|
|||||||
class CoverageVisitor final : public AstNVisitor {
|
class CoverageVisitor final : public AstNVisitor {
|
||||||
private:
|
private:
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::unordered_map<string, int> VarNameMap;
|
|
||||||
typedef std::set<int> LinenoSet;
|
typedef std::set<int> LinenoSet;
|
||||||
typedef std::unordered_map<int, LinenoSet> HandleLines;
|
|
||||||
|
|
||||||
struct ToggleEnt {
|
struct ToggleEnt {
|
||||||
string m_comment; // Comment for coverage dump
|
string m_comment; // Comment for coverage dump
|
||||||
@ -81,9 +79,10 @@ private:
|
|||||||
CheckState m_state; // State save-restored on each new coverage scope/block
|
CheckState m_state; // State save-restored on each new coverage scope/block
|
||||||
AstNodeModule* m_modp = nullptr; // Current module to add statement to
|
AstNodeModule* m_modp = nullptr; // Current module to add statement to
|
||||||
bool m_inToggleOff = false; // In function/task etc
|
bool m_inToggleOff = false; // In function/task etc
|
||||||
VarNameMap m_varnames; // Uniquification of inserted variable names
|
std::unordered_map<std::string, int> m_varnames; // Uniquification of inserted variable names
|
||||||
string m_beginHier; // AstBegin hier name for user coverage points
|
string m_beginHier; // AstBegin hier name for user coverage points
|
||||||
HandleLines m_handleLines; // All line numbers for a given m_stateHandle
|
std::unordered_map<int, LinenoSet>
|
||||||
|
m_handleLines; // All line numbers for a given m_stateHandle
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
@ -38,11 +38,8 @@ private:
|
|||||||
|
|
||||||
// AstUser4InUse In V3Hashed
|
// AstUser4InUse In V3Hashed
|
||||||
|
|
||||||
// TYPES
|
|
||||||
typedef std::vector<AstCoverToggle*> ToggleList;
|
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
ToggleList m_toggleps; // List of of all AstCoverToggle's
|
std::vector<AstCoverToggle*> m_toggleps; // List of of all AstCoverToggle's
|
||||||
|
|
||||||
VDouble0 m_statToggleJoins; // Statistic tracking
|
VDouble0 m_statToggleJoins; // Statistic tracking
|
||||||
|
|
||||||
|
@ -97,8 +97,7 @@ private:
|
|||||||
typedef std::map<const std::pair<AstNodeModule*, string>, AstVar*> VarMap;
|
typedef std::map<const std::pair<AstNodeModule*, string>, AstVar*> VarMap;
|
||||||
VarMap m_modVarMap; // Table of new var names created under module
|
VarMap m_modVarMap; // Table of new var names created under module
|
||||||
VDouble0 m_statSharedSet; // Statistic tracking
|
VDouble0 m_statSharedSet; // Statistic tracking
|
||||||
typedef std::unordered_map<const AstVarScope*, int> ScopeVecMap;
|
std::unordered_map<const AstVarScope*, int> m_scopeVecMap; // Next var number for each scope
|
||||||
ScopeVecMap m_scopeVecMap; // Next var number for each scope
|
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
@ -77,14 +77,14 @@ public:
|
|||||||
char fmtLetter);
|
char fmtLetter);
|
||||||
|
|
||||||
void emitVarDecl(const AstVar* nodep, const string& prefixIfImp);
|
void emitVarDecl(const AstVar* nodep, const string& prefixIfImp);
|
||||||
typedef enum : uint8_t {
|
enum EisWhich : uint8_t {
|
||||||
EVL_CLASS_IO,
|
EVL_CLASS_IO,
|
||||||
EVL_CLASS_SIG,
|
EVL_CLASS_SIG,
|
||||||
EVL_CLASS_TEMP,
|
EVL_CLASS_TEMP,
|
||||||
EVL_CLASS_PAR,
|
EVL_CLASS_PAR,
|
||||||
EVL_CLASS_ALL,
|
EVL_CLASS_ALL,
|
||||||
EVL_FUNC_ALL
|
EVL_FUNC_ALL
|
||||||
} EisWhich;
|
};
|
||||||
void emitVarList(AstNode* firstp, EisWhich which, const string& prefixIfImp, string& sectionr);
|
void emitVarList(AstNode* firstp, EisWhich which, const string& prefixIfImp, string& sectionr);
|
||||||
static void emitVarSort(const VarSortMap& vmap, VarVec* sortedp);
|
static void emitVarSort(const VarSortMap& vmap, VarVec* sortedp);
|
||||||
void emitSortedVarList(const VarVec& anons, const VarVec& nonanons, const string& prefixIfImp);
|
void emitSortedVarList(const VarVec& anons, const VarVec& nonanons, const string& prefixIfImp);
|
||||||
@ -221,8 +221,7 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
void emitIntFuncDecls(AstNodeModule* modp, bool methodFuncs) {
|
void emitIntFuncDecls(AstNodeModule* modp, bool methodFuncs) {
|
||||||
typedef std::vector<const AstCFunc*> FuncVec;
|
std::vector<const AstCFunc*> funcsp;
|
||||||
FuncVec funcsp;
|
|
||||||
|
|
||||||
for (AstNode* nodep = modp->stmtsp(); nodep; nodep = nodep->nextp()) {
|
for (AstNode* nodep = modp->stmtsp(); nodep; nodep = nodep->nextp()) {
|
||||||
if (const AstCFunc* funcp = VN_CAST(nodep, CFunc)) {
|
if (const AstCFunc* funcp = VN_CAST(nodep, CFunc)) {
|
||||||
|
@ -71,8 +71,6 @@ class EmitCSyms final : EmitCBaseVisitor {
|
|||||||
, m_modp{modp}
|
, m_modp{modp}
|
||||||
, m_scopep{scopep} {}
|
, m_scopep{scopep} {}
|
||||||
};
|
};
|
||||||
typedef std::map<const string, ScopeFuncData> ScopeFuncs;
|
|
||||||
typedef std::map<const string, ScopeVarData> ScopeVars;
|
|
||||||
typedef std::map<const string, ScopeData> ScopeNames;
|
typedef std::map<const string, ScopeData> ScopeNames;
|
||||||
typedef std::pair<AstScope*, AstNodeModule*> ScopeModPair;
|
typedef std::pair<AstScope*, AstNodeModule*> ScopeModPair;
|
||||||
typedef std::pair<AstNodeModule*, AstVar*> ModVarPair;
|
typedef std::pair<AstNodeModule*, AstVar*> ModVarPair;
|
||||||
@ -100,8 +98,8 @@ class EmitCSyms final : EmitCBaseVisitor {
|
|||||||
std::vector<AstCFunc*> m_dpis; // DPI functions
|
std::vector<AstCFunc*> m_dpis; // DPI functions
|
||||||
std::vector<ModVarPair> m_modVars; // Each public {mod,var}
|
std::vector<ModVarPair> m_modVars; // Each public {mod,var}
|
||||||
ScopeNames m_scopeNames; // Each unique AstScopeName
|
ScopeNames m_scopeNames; // Each unique AstScopeName
|
||||||
ScopeFuncs m_scopeFuncs; // Each {scope,dpi-export-func}
|
std::map<const std::string, ScopeFuncData> m_scopeFuncs; // Each {scope,dpi-export-func}
|
||||||
ScopeVars m_scopeVars; // Each {scope,public-var}
|
std::map<const std::string, ScopeVarData> m_scopeVars; // Each {scope,public-var}
|
||||||
ScopeNames m_vpiScopeCandidates; // All scopes for VPI
|
ScopeNames m_vpiScopeCandidates; // All scopes for VPI
|
||||||
ScopeNameHierarchy m_vpiScopeHierarchy; // The actual hierarchy of scopes
|
ScopeNameHierarchy m_vpiScopeHierarchy; // The actual hierarchy of scopes
|
||||||
int m_coverBins = 0; // Coverage bin number
|
int m_coverBins = 0; // Coverage bin number
|
||||||
@ -572,8 +570,7 @@ void EmitCSyms::emitScopeHier(bool destroy) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (ScopeNameHierarchy::const_iterator it = m_vpiScopeHierarchy.begin();
|
for (auto it = m_vpiScopeHierarchy.cbegin(); it != m_vpiScopeHierarchy.cend(); ++it) {
|
||||||
it != m_vpiScopeHierarchy.end(); ++it) {
|
|
||||||
for (ScopeNameList::const_iterator lit = it->second.begin(); lit != it->second.end();
|
for (ScopeNameList::const_iterator lit = it->second.begin(); lit != it->second.end();
|
||||||
++lit) {
|
++lit) {
|
||||||
string fromname = scopeSymString(it->first);
|
string fromname = scopeSymString(it->first);
|
||||||
@ -734,7 +731,7 @@ void EmitCSyms::emitSymImp() {
|
|||||||
if (v3Global.dpi()) {
|
if (v3Global.dpi()) {
|
||||||
m_ofpBase->puts("// Setup export functions\n");
|
m_ofpBase->puts("// Setup export functions\n");
|
||||||
m_ofpBase->puts("for (int __Vfinal=0; __Vfinal<2; __Vfinal++) {\n");
|
m_ofpBase->puts("for (int __Vfinal=0; __Vfinal<2; __Vfinal++) {\n");
|
||||||
for (ScopeFuncs::iterator it = m_scopeFuncs.begin(); it != m_scopeFuncs.end(); ++it) {
|
for (auto it = m_scopeFuncs.begin(); it != m_scopeFuncs.end(); ++it) {
|
||||||
AstScopeName* scopep = it->second.m_scopep;
|
AstScopeName* scopep = it->second.m_scopep;
|
||||||
AstCFunc* funcp = it->second.m_cfuncp;
|
AstCFunc* funcp = it->second.m_cfuncp;
|
||||||
AstNodeModule* modp = it->second.m_modp;
|
AstNodeModule* modp = it->second.m_modp;
|
||||||
@ -752,7 +749,7 @@ void EmitCSyms::emitSymImp() {
|
|||||||
}
|
}
|
||||||
// It would be less code if each module inserted its own variables.
|
// It would be less code if each module inserted its own variables.
|
||||||
// Someday. For now public isn't common.
|
// Someday. For now public isn't common.
|
||||||
for (ScopeVars::iterator it = m_scopeVars.begin(); it != m_scopeVars.end(); ++it) {
|
for (auto it = m_scopeVars.begin(); it != m_scopeVars.end(); ++it) {
|
||||||
checkSplit(true);
|
checkSplit(true);
|
||||||
AstNodeModule* modp = it->second.m_modp;
|
AstNodeModule* modp = it->second.m_modp;
|
||||||
AstScope* scopep = it->second.m_scopep;
|
AstScope* scopep = it->second.m_scopep;
|
||||||
|
@ -328,10 +328,9 @@ void V3File::createMakeDir() {
|
|||||||
// VInFilterImp
|
// VInFilterImp
|
||||||
|
|
||||||
class VInFilterImp final {
|
class VInFilterImp final {
|
||||||
typedef std::map<const string, string> FileContentsMap;
|
|
||||||
typedef VInFilter::StrList StrList;
|
typedef VInFilter::StrList StrList;
|
||||||
|
|
||||||
FileContentsMap m_contentsMap; // Cache of file contents
|
std::map<const std::string, std::string> m_contentsMap; // Cache of file contents
|
||||||
bool m_readEof = false; // Received EOF on read
|
bool m_readEof = false; // Received EOF on read
|
||||||
#ifdef INFILTER_PIPE
|
#ifdef INFILTER_PIPE
|
||||||
pid_t m_pid = 0; // fork() process id
|
pid_t m_pid = 0; // fork() process id
|
||||||
@ -949,10 +948,8 @@ void V3OutCFile::putsGuard() {
|
|||||||
|
|
||||||
class VIdProtectImp final {
|
class VIdProtectImp final {
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
typedef std::map<const string, string> IdMap;
|
std::map<const std::string, std::string> m_nameMap; // Map of old name into new name
|
||||||
IdMap m_nameMap; // Map of old name into new name
|
std::unordered_set<std::string> m_newIdSet; // Which new names exist
|
||||||
typedef std::unordered_set<std::string> IdSet;
|
|
||||||
IdSet m_newIdSet; // Which new names exist
|
|
||||||
protected:
|
protected:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
friend class VIdProtect;
|
friend class VIdProtect;
|
||||||
|
@ -71,7 +71,7 @@ int FileLineSingleton::nameToNumber(const string& filename) {
|
|||||||
//! Experimental. Updated to also put out the language.
|
//! Experimental. Updated to also put out the language.
|
||||||
void FileLineSingleton::fileNameNumMapDumpXml(std::ostream& os) {
|
void FileLineSingleton::fileNameNumMapDumpXml(std::ostream& os) {
|
||||||
os << "<files>\n";
|
os << "<files>\n";
|
||||||
for (FileNameNumMap::const_iterator it = m_namemap.begin(); it != m_namemap.end(); ++it) {
|
for (auto it = m_namemap.cbegin(); it != m_namemap.cend(); ++it) {
|
||||||
os << "<file id=\"" << filenameLetters(it->second) << "\" filename=\""
|
os << "<file id=\"" << filenameLetters(it->second) << "\" filename=\""
|
||||||
<< V3OutFormatter::quoteNameControls(it->first, V3OutFormatter::LA_XML)
|
<< V3OutFormatter::quoteNameControls(it->first, V3OutFormatter::LA_XML)
|
||||||
<< "\" language=\"" << numberToLang(it->second).ascii() << "\"/>\n";
|
<< "\" language=\"" << numberToLang(it->second).ascii() << "\"/>\n";
|
||||||
@ -427,8 +427,7 @@ string FileLine::warnContext(bool secondary) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef VL_LEAK_CHECKS
|
#ifdef VL_LEAK_CHECKS
|
||||||
typedef std::unordered_set<FileLine*> FileLineCheckSet;
|
std::unordered_set<FileLine*> fileLineLeakChecks;
|
||||||
FileLineCheckSet fileLineLeakChecks;
|
|
||||||
|
|
||||||
void* FileLine::operator new(size_t size) {
|
void* FileLine::operator new(size_t size) {
|
||||||
FileLine* objp = static_cast<FileLine*>(::operator new(size));
|
FileLine* objp = static_cast<FileLine*>(::operator new(size));
|
||||||
|
@ -38,10 +38,8 @@ class FileLine;
|
|||||||
//! This singleton class contains tables of data that are unchanging in each
|
//! This singleton class contains tables of data that are unchanging in each
|
||||||
//! source file (each with its own unique filename number).
|
//! source file (each with its own unique filename number).
|
||||||
class FileLineSingleton final {
|
class FileLineSingleton final {
|
||||||
// TYPES
|
|
||||||
typedef std::map<const string, int> FileNameNumMap;
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
FileNameNumMap m_namemap; // filenameno for each filename
|
std::map<const std::string, int> m_namemap; // filenameno for each filename
|
||||||
std::deque<string> m_names; // filename text for each filenameno
|
std::deque<string> m_names; // filename text for each filenameno
|
||||||
std::deque<V3LangCode> m_languages; // language for each filenameno
|
std::deque<V3LangCode> m_languages; // language for each filenameno
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
|
@ -681,9 +681,9 @@ bool GateVisitor::elimLogicOkOutputs(GateLogicVertex* consumeVertexp,
|
|||||||
// Return true if can optimize
|
// Return true if can optimize
|
||||||
// Return false if the consuming logic has an output signal that the
|
// Return false if the consuming logic has an output signal that the
|
||||||
// replacement logic has as an input
|
// replacement logic has as an input
|
||||||
typedef std::unordered_set<AstVarScope*> VarScopeSet;
|
|
||||||
// Use map to find duplicates between two lists
|
// Use map to find duplicates between two lists
|
||||||
VarScopeSet varscopes;
|
std::unordered_set<AstVarScope*> varscopes;
|
||||||
// Replacement logic usually has shorter input list, so faster to build list based on it
|
// Replacement logic usually has shorter input list, so faster to build list based on it
|
||||||
const GateVarRefList& rhsVarRefs = okVisitor.rhsVarRefs();
|
const GateVarRefList& rhsVarRefs = okVisitor.rhsVarRefs();
|
||||||
for (GateVarRefList::const_iterator it = rhsVarRefs.begin(); it != rhsVarRefs.end(); ++it) {
|
for (GateVarRefList::const_iterator it = rhsVarRefs.begin(); it != rhsVarRefs.end(); ++it) {
|
||||||
@ -901,10 +901,6 @@ void GateVisitor::optimizeElimVar(AstVarScope* varscp, AstNode* substp, AstNode*
|
|||||||
// Auxiliary hash class for GateDedupeVarVisitor
|
// Auxiliary hash class for GateDedupeVarVisitor
|
||||||
|
|
||||||
class GateDedupeHash final : public V3HashedUserSame {
|
class GateDedupeHash final : public V3HashedUserSame {
|
||||||
public:
|
|
||||||
// TYPES
|
|
||||||
typedef std::unordered_set<AstNode*> NodeSet;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// Ast*::user2p -> parent AstNodeAssign* for this rhsp
|
// Ast*::user2p -> parent AstNodeAssign* for this rhsp
|
||||||
@ -919,7 +915,7 @@ private:
|
|||||||
AstUser5InUse m_inuser5;
|
AstUser5InUse m_inuser5;
|
||||||
|
|
||||||
V3Hashed m_hashed; // Hash, contains rhs of assigns
|
V3Hashed m_hashed; // Hash, contains rhs of assigns
|
||||||
NodeSet m_nodeDeleteds; // Any node in this hash was deleted
|
std::unordered_set<AstNode*> m_nodeDeleteds; // Any node in this hash was deleted
|
||||||
|
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
|
||||||
|
@ -105,8 +105,8 @@ class V3Global final {
|
|||||||
bool m_useRandomizeMethods = false; // Need to define randomize() class methods
|
bool m_useRandomizeMethods = false; // Need to define randomize() class methods
|
||||||
|
|
||||||
// Memory address to short string mapping (for debug)
|
// Memory address to short string mapping (for debug)
|
||||||
typedef std::unordered_map<const void*, std::string> PtrToIdMap; // The map type
|
std::unordered_map<const void*, std::string>
|
||||||
PtrToIdMap m_ptrToId; // The actual 'address' <=> 'short string' bijection
|
m_ptrToId; // The actual 'address' <=> 'short string' bijection
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Options
|
// Options
|
||||||
|
@ -325,8 +325,7 @@ void V3Graph::dumpDotFile(const string& filename, bool colorAsSubgraph) const {
|
|||||||
*logp << "\t\t rankdir=" << dotRankDir() << "];\n";
|
*logp << "\t\t rankdir=" << dotRankDir() << "];\n";
|
||||||
|
|
||||||
// List of all possible subgraphs
|
// List of all possible subgraphs
|
||||||
typedef std::multimap<string, V3GraphVertex*> SubgraphMmap;
|
std::multimap<std::string, V3GraphVertex*> subgraphs;
|
||||||
SubgraphMmap subgraphs;
|
|
||||||
for (V3GraphVertex* vertexp = verticesBeginp(); vertexp; vertexp = vertexp->verticesNextp()) {
|
for (V3GraphVertex* vertexp = verticesBeginp(); vertexp; vertexp = vertexp->verticesNextp()) {
|
||||||
string vertexSubgraph
|
string vertexSubgraph
|
||||||
= (colorAsSubgraph && vertexp->color()) ? cvtToStr(vertexp->color()) : "";
|
= (colorAsSubgraph && vertexp->color()) ? cvtToStr(vertexp->color()) : "";
|
||||||
@ -340,7 +339,7 @@ void V3Graph::dumpDotFile(const string& filename, bool colorAsSubgraph) const {
|
|||||||
// Print vertices
|
// Print vertices
|
||||||
int n = 0;
|
int n = 0;
|
||||||
string subgr;
|
string subgr;
|
||||||
for (SubgraphMmap::const_iterator it = subgraphs.begin(); it != subgraphs.end(); ++it) {
|
for (auto it = subgraphs.cbegin(); it != subgraphs.cend(); ++it) {
|
||||||
string vertexSubgraph = it->first;
|
string vertexSubgraph = it->first;
|
||||||
V3GraphVertex* vertexp = it->second;
|
V3GraphVertex* vertexp = it->second;
|
||||||
numMap[vertexp] = n;
|
numMap[vertexp] = n;
|
||||||
|
@ -177,7 +177,7 @@ private:
|
|||||||
uint32_t hash = hashDfaOrigins(nfasWithInput);
|
uint32_t hash = hashDfaOrigins(nfasWithInput);
|
||||||
|
|
||||||
const auto eqrange = m_hashMap.equal_range(hash);
|
const auto eqrange = m_hashMap.equal_range(hash);
|
||||||
for (HashMap::iterator it = eqrange.first; it != eqrange.second; ++it) {
|
for (auto it = eqrange.first; it != eqrange.second; ++it) {
|
||||||
DfaVertex* testp = it->second;
|
DfaVertex* testp = it->second;
|
||||||
if (compareDfaOrigins(nfasWithInput, testp)) {
|
if (compareDfaOrigins(nfasWithInput, testp)) {
|
||||||
UINFO(9, " DFA match for set: " << testp << endl);
|
UINFO(9, " DFA match for set: " << testp << endl);
|
||||||
|
@ -81,12 +81,11 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
typedef std::set<VxHolder, VxHolderCmp&> ReadyVertices;
|
typedef std::set<VxHolder, VxHolderCmp&> ReadyVertices;
|
||||||
typedef std::map<const V3GraphVertex*, VxHolder> WaitingVertices;
|
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
VxHolderCmp m_vxHolderCmp; // Vertext comparison functor
|
VxHolderCmp m_vxHolderCmp; // Vertext comparison functor
|
||||||
ReadyVertices m_readyVertices; // List of ready vertices
|
ReadyVertices m_readyVertices; // List of ready vertices
|
||||||
WaitingVertices m_waitingVertices; // List of waiting vertices
|
std::map<const V3GraphVertex*, VxHolder> m_waitingVertices; // List of waiting vertices
|
||||||
typename ReadyVertices::iterator m_last; // Previously returned element
|
typename ReadyVertices::iterator m_last; // Previously returned element
|
||||||
GraphWay m_way; // FORWARD or REVERSE order of traversal
|
GraphWay m_way; // FORWARD or REVERSE order of traversal
|
||||||
|
|
||||||
|
@ -42,7 +42,6 @@ class V3HierBlock final {
|
|||||||
public:
|
public:
|
||||||
typedef std::vector<AstVar*> GParams;
|
typedef std::vector<AstVar*> GParams;
|
||||||
typedef std::unordered_set<V3HierBlock*> HierBlockSet;
|
typedef std::unordered_set<V3HierBlock*> HierBlockSet;
|
||||||
typedef std::unordered_set<const AstNodeModule*> NodeModuleSet;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// TYPES
|
// TYPES
|
||||||
|
@ -264,14 +264,12 @@ public:
|
|||||||
|
|
||||||
class InlineRelinkVisitor final : public AstNVisitor {
|
class InlineRelinkVisitor final : public AstNVisitor {
|
||||||
private:
|
private:
|
||||||
typedef std::unordered_set<string> StringSet;
|
|
||||||
|
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// Input:
|
// Input:
|
||||||
// See InlineVisitor
|
// See InlineVisitor
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
StringSet m_renamedInterfaces; // Name of renamed interface variables
|
std::unordered_set<std::string> m_renamedInterfaces; // Name of renamed interface variables
|
||||||
AstNodeModule* m_modp; // Current module
|
AstNodeModule* m_modp; // Current module
|
||||||
AstCell* m_cellp; // Cell being cloned
|
AstCell* m_cellp; // Cell being cloned
|
||||||
|
|
||||||
|
@ -141,8 +141,7 @@ class InstDeModVarVisitor final : public AstNVisitor {
|
|||||||
// Expand all module variables, and save names for later reference
|
// Expand all module variables, and save names for later reference
|
||||||
private:
|
private:
|
||||||
// STATE
|
// STATE
|
||||||
typedef std::map<const string, AstVar*> VarNameMap;
|
std::map<const std::string, AstVar*> m_modVarNameMap; // Per module, name of cloned variables
|
||||||
VarNameMap m_modVarNameMap; // Per module, name of cloned variables
|
|
||||||
|
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
|
||||||
|
@ -150,8 +150,7 @@ private:
|
|||||||
LocMap m_writes; // VarScope write locations
|
LocMap m_writes; // VarScope write locations
|
||||||
|
|
||||||
// Map each dly var to its AstAssignPost* node and the location thereof
|
// Map each dly var to its AstAssignPost* node and the location thereof
|
||||||
typedef std::unordered_map<const AstVarScope*, LifePostLocation> PostLocMap;
|
std::unordered_map<const AstVarScope*, LifePostLocation> m_assignposts;
|
||||||
PostLocMap m_assignposts; // AssignPost dly var locations
|
|
||||||
|
|
||||||
const V3Graph* m_mtasksGraphp = nullptr; // Mtask tracking graph
|
const V3Graph* m_mtasksGraphp = nullptr; // Mtask tracking graph
|
||||||
std::unique_ptr<GraphPathChecker> m_checker;
|
std::unique_ptr<GraphPathChecker> m_checker;
|
||||||
|
@ -140,10 +140,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::multimap<string, VSymEnt*> NameScopeSymMap;
|
|
||||||
typedef std::unordered_map<VSymEnt*, VSymEnt*> ScopeAliasMap;
|
typedef std::unordered_map<VSymEnt*, VSymEnt*> ScopeAliasMap;
|
||||||
typedef std::set<std::pair<AstNodeModule*, string>> ImplicitNameSet;
|
|
||||||
typedef std::vector<VSymEnt*> IfaceVarSyms;
|
|
||||||
typedef std::vector<std::pair<AstIface*, VSymEnt*>> IfaceModSyms;
|
typedef std::vector<std::pair<AstIface*, VSymEnt*>> IfaceModSyms;
|
||||||
|
|
||||||
static LinkDotState* s_errorThisp; // Last self, for error reporting only
|
static LinkDotState* s_errorThisp; // Last self, for error reporting only
|
||||||
@ -151,10 +148,12 @@ private:
|
|||||||
// MEMBERS
|
// MEMBERS
|
||||||
VSymGraph m_syms; // Symbol table
|
VSymGraph m_syms; // Symbol table
|
||||||
VSymEnt* m_dunitEntp; // $unit entry
|
VSymEnt* m_dunitEntp; // $unit entry
|
||||||
NameScopeSymMap m_nameScopeSymMap; // Map of scope referenced by non-pretty textual name
|
std::multimap<std::string, VSymEnt*>
|
||||||
ImplicitNameSet m_implicitNameSet; // For [module][signalname] if we can implicitly create it
|
m_nameScopeSymMap; // Map of scope referenced by non-pretty textual name
|
||||||
|
std::set<std::pair<AstNodeModule*, std::string>>
|
||||||
|
m_implicitNameSet; // For [module][signalname] if we can implicitly create it
|
||||||
std::array<ScopeAliasMap, SAMN__MAX> m_scopeAliasMap; // Map of <lhs,rhs> aliases
|
std::array<ScopeAliasMap, SAMN__MAX> m_scopeAliasMap; // Map of <lhs,rhs> aliases
|
||||||
IfaceVarSyms m_ifaceVarSyms; // List of AstIfaceRefDType's to be imported
|
std::vector<VSymEnt*> m_ifaceVarSyms; // List of AstIfaceRefDType's to be imported
|
||||||
IfaceModSyms m_ifaceModSyms; // List of AstIface+Symbols to be processed
|
IfaceModSyms m_ifaceModSyms; // List of AstIface+Symbols to be processed
|
||||||
bool m_forPrimary; // First link
|
bool m_forPrimary; // First link
|
||||||
bool m_forPrearray; // Compress cell__[array] refs
|
bool m_forPrearray; // Compress cell__[array] refs
|
||||||
|
@ -43,9 +43,6 @@
|
|||||||
|
|
||||||
class LinkJumpVisitor final : public AstNVisitor {
|
class LinkJumpVisitor final : public AstNVisitor {
|
||||||
private:
|
private:
|
||||||
// TYPES
|
|
||||||
typedef std::vector<AstNodeBlock*> BlockStack;
|
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
AstNodeModule* m_modp = nullptr; // Current module
|
AstNodeModule* m_modp = nullptr; // Current module
|
||||||
AstNodeFTask* m_ftaskp = nullptr; // Current function/task
|
AstNodeFTask* m_ftaskp = nullptr; // Current function/task
|
||||||
@ -53,7 +50,7 @@ private:
|
|||||||
bool m_loopInc = false; // In loop increment
|
bool m_loopInc = false; // In loop increment
|
||||||
bool m_inFork = false; // Under fork
|
bool m_inFork = false; // Under fork
|
||||||
int m_modRepeatNum = 0; // Repeat counter
|
int m_modRepeatNum = 0; // Repeat counter
|
||||||
BlockStack m_blockStack; // All begin blocks above current node
|
std::vector<AstNodeBlock*> m_blockStack; // All begin blocks above current node
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
@ -45,12 +45,11 @@ private:
|
|||||||
|
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::map<const std::pair<void*, string>, AstTypedef*> ImplTypedefMap;
|
typedef std::map<const std::pair<void*, string>, AstTypedef*> ImplTypedefMap;
|
||||||
typedef std::unordered_set<FileLine*> FileLineSet;
|
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
AstVar* m_varp = nullptr; // Variable we're under
|
AstVar* m_varp = nullptr; // Variable we're under
|
||||||
ImplTypedefMap m_implTypedef; // Created typedefs for each <container,name>
|
ImplTypedefMap m_implTypedef; // Created typedefs for each <container,name>
|
||||||
FileLineSet m_filelines; // Filelines that have been seen
|
std::unordered_set<FileLine*> m_filelines; // Filelines that have been seen
|
||||||
bool m_inAlways = false; // Inside an always
|
bool m_inAlways = false; // Inside an always
|
||||||
AstNodeModule* m_valueModp
|
AstNodeModule* m_valueModp
|
||||||
= nullptr; // If set, move AstVar->valuep() initial values to this module
|
= nullptr; // If set, move AstVar->valuep() initial values to this module
|
||||||
|
@ -422,9 +422,6 @@ template <class T_MoveVertex> class ProcessMoveBuildGraph {
|
|||||||
|
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::pair<const V3GraphVertex*, const AstSenTree*> VxDomPair;
|
typedef std::pair<const V3GraphVertex*, const AstSenTree*> VxDomPair;
|
||||||
// Maps an (original graph vertex, domain) pair to a T_MoveVertex
|
|
||||||
// Not std::unordered_map, because std::pair doesn't provide std::hash
|
|
||||||
typedef std::map<VxDomPair, T_MoveVertex*> Var2Move;
|
|
||||||
typedef std::unordered_map<const OrderLogicVertex*, T_MoveVertex*> Logic2Move;
|
typedef std::unordered_map<const OrderLogicVertex*, T_MoveVertex*> Logic2Move;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -446,7 +443,9 @@ private:
|
|||||||
V3Graph* m_outGraphp; // Output graph of T_MoveVertex's
|
V3Graph* m_outGraphp; // Output graph of T_MoveVertex's
|
||||||
MoveVertexMaker* m_vxMakerp; // Factory class for T_MoveVertex's
|
MoveVertexMaker* m_vxMakerp; // Factory class for T_MoveVertex's
|
||||||
Logic2Move m_logic2move; // Map Logic to Vertex
|
Logic2Move m_logic2move; // Map Logic to Vertex
|
||||||
Var2Move m_var2move; // Map Vars to Vertex
|
// Maps an (original graph vertex, domain) pair to a T_MoveVertex
|
||||||
|
// Not std::unordered_map, because std::pair doesn't provide std::hash
|
||||||
|
std::map<VxDomPair, T_MoveVertex*> m_var2move;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
@ -752,14 +751,13 @@ private:
|
|||||||
|
|
||||||
// processMTask* routines schedule threaded execution
|
// processMTask* routines schedule threaded execution
|
||||||
struct MTaskState {
|
struct MTaskState {
|
||||||
typedef std::list<const OrderLogicVertex*> Logics;
|
|
||||||
AstMTaskBody* m_mtaskBodyp = nullptr;
|
AstMTaskBody* m_mtaskBodyp = nullptr;
|
||||||
Logics m_logics;
|
std::list<const OrderLogicVertex*> m_logics;
|
||||||
ExecMTask* m_execMTaskp = nullptr;
|
ExecMTask* m_execMTaskp = nullptr;
|
||||||
MTaskState() = default;
|
MTaskState() = default;
|
||||||
};
|
};
|
||||||
void processMTasks();
|
void processMTasks();
|
||||||
typedef enum : uint8_t { LOGIC_INITIAL, LOGIC_SETTLE } InitialLogicE;
|
enum InitialLogicE : uint8_t { LOGIC_INITIAL, LOGIC_SETTLE };
|
||||||
void processMTasksInitial(InitialLogicE logic_type);
|
void processMTasksInitial(InitialLogicE logic_type);
|
||||||
|
|
||||||
string cfuncName(AstNodeModule* modp, AstSenTree* domainp, AstScope* scopep,
|
string cfuncName(AstNodeModule* modp, AstSenTree* domainp, AstScope* scopep,
|
||||||
|
@ -300,7 +300,7 @@ public:
|
|||||||
//--- Following only under the move graph, not the main graph
|
//--- Following only under the move graph, not the main graph
|
||||||
|
|
||||||
class OrderMoveVertex final : public V3GraphVertex {
|
class OrderMoveVertex final : public V3GraphVertex {
|
||||||
typedef enum : uint8_t { POM_WAIT, POM_READY, POM_MOVED } OrderMState;
|
enum OrderMState : uint8_t { POM_WAIT, POM_READY, POM_MOVED };
|
||||||
|
|
||||||
OrderLogicVertex* m_logicp;
|
OrderLogicVertex* m_logicp;
|
||||||
OrderMState m_state; // Movement state
|
OrderMState m_state; // Movement state
|
||||||
|
@ -72,8 +72,6 @@ class ParameterizedHierBlocks final {
|
|||||||
typedef std::map<const string, AstNodeModule*> HierBlockModMap;
|
typedef std::map<const string, AstNodeModule*> HierBlockModMap;
|
||||||
typedef std::map<const string, std::unique_ptr<AstConst>> ParamConstMap;
|
typedef std::map<const string, std::unique_ptr<AstConst>> ParamConstMap;
|
||||||
typedef std::map<const string, AstVar*> GParamsMap; // key:parameter name value:parameter
|
typedef std::map<const string, AstVar*> GParamsMap; // key:parameter name value:parameter
|
||||||
typedef std::map<const V3HierarchicalBlockOption*, ParamConstMap> HierParamsMap;
|
|
||||||
typedef std::map<const string, GParamsMap> ModParamsMap; // key:module name
|
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
// key:Original module name, value:HiearchyBlockOption*
|
// key:Original module name, value:HiearchyBlockOption*
|
||||||
@ -83,8 +81,9 @@ class ParameterizedHierBlocks final {
|
|||||||
// key:mangled module name, value:AstNodeModule*
|
// key:mangled module name, value:AstNodeModule*
|
||||||
HierBlockModMap m_hierBlockMod;
|
HierBlockModMap m_hierBlockMod;
|
||||||
// Overridden parameters of the hierarchical block
|
// Overridden parameters of the hierarchical block
|
||||||
HierParamsMap m_hierParams;
|
std::map<const V3HierarchicalBlockOption*, ParamConstMap> m_hierParams;
|
||||||
ModParamsMap m_modParams; // Parameter variables of hierarchical blocks
|
std::map<const std::string, GParamsMap>
|
||||||
|
m_modParams; // Parameter variables of hierarchical blocks
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
@ -243,11 +242,10 @@ class ParamProcessor final {
|
|||||||
explicit ModInfo(AstNodeModule* modp)
|
explicit ModInfo(AstNodeModule* modp)
|
||||||
: m_modp{modp} {}
|
: m_modp{modp} {}
|
||||||
};
|
};
|
||||||
typedef std::map<const string, ModInfo> ModNameMap;
|
std::map<const std::string, ModInfo> m_modNameMap; // Hash of created module flavors by name
|
||||||
ModNameMap m_modNameMap; // Hash of created module flavors by name
|
|
||||||
|
|
||||||
typedef std::map<const string, string> LongMap;
|
std::map<const std::string, std::string>
|
||||||
LongMap m_longMap; // Hash of very long names to unique identity number
|
m_longMap; // Hash of very long names to unique identity number
|
||||||
int m_longId = 0;
|
int m_longId = 0;
|
||||||
|
|
||||||
// All module names that are loaded from source code
|
// All module names that are loaded from source code
|
||||||
@ -255,8 +253,7 @@ class ParamProcessor final {
|
|||||||
V3StringSet m_allModuleNames;
|
V3StringSet m_allModuleNames;
|
||||||
|
|
||||||
typedef std::pair<int, string> ValueMapValue;
|
typedef std::pair<int, string> ValueMapValue;
|
||||||
typedef std::map<const V3Hash, ValueMapValue> ValueMap;
|
std::map<const V3Hash, ValueMapValue> m_valueMap; // Hash of node hash to (param value, name)
|
||||||
ValueMap m_valueMap; // Hash of node hash to (param value, name)
|
|
||||||
int m_nextValue = 1; // Next value to use in m_valueMap
|
int m_nextValue = 1; // Next value to use in m_valueMap
|
||||||
|
|
||||||
AstNodeModule* m_modp = nullptr; // Current module being processed
|
AstNodeModule* m_modp = nullptr; // Current module being processed
|
||||||
@ -821,8 +818,7 @@ class ParamVisitor final : public AstNVisitor {
|
|||||||
string m_unlinkedTxt; // Text for AstUnlinkedRef
|
string m_unlinkedTxt; // Text for AstUnlinkedRef
|
||||||
std::deque<AstCell*> m_cellps; // Cells left to process (in this module)
|
std::deque<AstCell*> m_cellps; // Cells left to process (in this module)
|
||||||
|
|
||||||
typedef std::multimap<int, AstNodeModule*> LevelModMap;
|
std::multimap<int, AstNodeModule*> m_todoModps; // Modules left to process
|
||||||
LevelModMap m_todoModps; // Modules left to process
|
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
@ -37,9 +37,9 @@ class V3Lexer;
|
|||||||
//======================================================================
|
//======================================================================
|
||||||
// Types (between parser & lexer)
|
// Types (between parser & lexer)
|
||||||
|
|
||||||
typedef enum : uint8_t { uniq_NONE, uniq_UNIQUE, uniq_UNIQUE0, uniq_PRIORITY } V3UniqState;
|
enum V3UniqState : uint8_t { uniq_NONE, uniq_UNIQUE, uniq_UNIQUE0, uniq_PRIORITY };
|
||||||
|
|
||||||
typedef enum : uint8_t { iprop_NONE, iprop_CONTEXT, iprop_PURE } V3ImportProperty;
|
enum V3ImportProperty : uint8_t { iprop_NONE, iprop_CONTEXT, iprop_PURE };
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
// Member qualifiers
|
// Member qualifiers
|
||||||
|
@ -40,7 +40,7 @@ private:
|
|||||||
VSymGraph m_syms; // Graph of symbol tree
|
VSymGraph m_syms; // Graph of symbol tree
|
||||||
VSymEnt* m_symTableNextId = nullptr; // Symbol table for next lexer lookup (parser use only)
|
VSymEnt* m_symTableNextId = nullptr; // Symbol table for next lexer lookup (parser use only)
|
||||||
VSymEnt* m_symCurrentp; // Active symbol table for additions/lookups
|
VSymEnt* m_symCurrentp; // Active symbol table for additions/lookups
|
||||||
SymStack m_sympStack; // Stack of upper nodes with pending symbol tables
|
std::vector<VSymEnt*> m_sympStack; // Stack of upper nodes with pending symbol tables
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
|
@ -166,8 +166,7 @@ private:
|
|||||||
vluint64_t m_generation = 0; // Mark each vertex with this number;
|
vluint64_t m_generation = 0; // Mark each vertex with this number;
|
||||||
// // confirm we only process each vertex once.
|
// // confirm we only process each vertex once.
|
||||||
bool m_slowAsserts; // Enable nontrivial asserts
|
bool m_slowAsserts; // Enable nontrivial asserts
|
||||||
typedef SortByValueMap<V3GraphVertex*, uint32_t> PropCpPendSet;
|
SortByValueMap<V3GraphVertex*, uint32_t> m_pending; // Pending rescores
|
||||||
PropCpPendSet m_pending; // Pending rescores
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
@ -2040,8 +2039,7 @@ private:
|
|||||||
ReadyMTasks m_ready; // MTasks ready to be assigned next; all their
|
ReadyMTasks m_ready; // MTasks ready to be assigned next; all their
|
||||||
// // dependencies are already assigned.
|
// // dependencies are already assigned.
|
||||||
|
|
||||||
typedef std::vector<ExecMTask*> MTaskVec;
|
std::vector<ExecMTask*> m_prevMTask; // Previous mtask scheduled to each thread.
|
||||||
MTaskVec m_prevMTask; // Previous mtask scheduled to each thread.
|
|
||||||
std::vector<uint32_t> m_busyUntil; // Time each thread is occupied until
|
std::vector<uint32_t> m_busyUntil; // Time each thread is occupied until
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -2458,7 +2456,7 @@ void V3Partition::go(V3Graph* mtasksp) {
|
|||||||
sorted.insert(mtaskp);
|
sorted.insert(mtaskp);
|
||||||
}
|
}
|
||||||
uint32_t nextId = 1;
|
uint32_t nextId = 1;
|
||||||
for (SortedMTaskSet::iterator it = sorted.begin(); it != sorted.end(); ++it) {
|
for (auto it = sorted.begin(); it != sorted.end(); ++it) {
|
||||||
// We shouldn't perturb the sort order of the set, despite
|
// We shouldn't perturb the sort order of the set, despite
|
||||||
// changing the IDs, they should all just remain in the same
|
// changing the IDs, they should all just remain in the same
|
||||||
// relative order. Confirm that:
|
// relative order. Confirm that:
|
||||||
|
@ -76,10 +76,9 @@ private:
|
|||||||
class PartPtrIdMap final {
|
class PartPtrIdMap final {
|
||||||
private:
|
private:
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::unordered_map<const void*, vluint64_t> PtrMap;
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
mutable vluint64_t m_nextId = 0;
|
mutable vluint64_t m_nextId = 0;
|
||||||
mutable PtrMap m_id;
|
mutable std::unordered_map<const void*, vluint64_t> m_id;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
|
@ -45,9 +45,6 @@ constexpr unsigned RELOOP_MIN_ITERS = 40; // Need at least this many loops to d
|
|||||||
|
|
||||||
class ReloopVisitor final : public AstNVisitor {
|
class ReloopVisitor final : public AstNVisitor {
|
||||||
private:
|
private:
|
||||||
// TYPES
|
|
||||||
typedef std::vector<AstNodeAssign*> AssVec;
|
|
||||||
|
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// AstCFunc::user1p -> Var* for temp var, 0=not set yet
|
// AstCFunc::user1p -> Var* for temp var, 0=not set yet
|
||||||
AstUser1InUse m_inuser1;
|
AstUser1InUse m_inuser1;
|
||||||
@ -57,7 +54,7 @@ private:
|
|||||||
VDouble0 m_statReItems; // Statistic tracking
|
VDouble0 m_statReItems; // Statistic tracking
|
||||||
AstCFunc* m_cfuncp = nullptr; // Current block
|
AstCFunc* m_cfuncp = nullptr; // Current block
|
||||||
|
|
||||||
AssVec m_mgAssignps; // List of assignments merging
|
std::vector<AstNodeAssign*> m_mgAssignps; // List of assignments merging
|
||||||
AstCFunc* m_mgCfuncp = nullptr; // Parent C function
|
AstCFunc* m_mgCfuncp = nullptr; // Parent C function
|
||||||
AstNode* m_mgNextp = nullptr; // Next node
|
AstNode* m_mgNextp = nullptr; // Next node
|
||||||
AstNodeSel* m_mgSelLp = nullptr; // Parent select, nullptr = idle
|
AstNodeSel* m_mgSelLp = nullptr; // Parent select, nullptr = idle
|
||||||
|
@ -45,10 +45,8 @@ private:
|
|||||||
AstUser2InUse m_inuser2;
|
AstUser2InUse m_inuser2;
|
||||||
|
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::unordered_map<AstNodeModule*, AstScope*> PackageScopeMap;
|
|
||||||
// These cannot be unordered unless make a specialized hashing pair (gcc-8)
|
// These cannot be unordered unless make a specialized hashing pair (gcc-8)
|
||||||
typedef std::map<std::pair<AstVar*, AstScope*>, AstVarScope*> VarScopeMap;
|
typedef std::map<std::pair<AstVar*, AstScope*>, AstVarScope*> VarScopeMap;
|
||||||
typedef std::set<std::pair<AstVarRef*, AstScope*>> VarRefScopeSet;
|
|
||||||
|
|
||||||
// STATE, inside processing a single module
|
// STATE, inside processing a single module
|
||||||
AstNodeModule* m_modp = nullptr; // Current module
|
AstNodeModule* m_modp = nullptr; // Current module
|
||||||
@ -57,9 +55,10 @@ private:
|
|||||||
AstCell* m_aboveCellp = nullptr; // Cell that instantiates this module
|
AstCell* m_aboveCellp = nullptr; // Cell that instantiates this module
|
||||||
AstScope* m_aboveScopep = nullptr; // Scope that instantiates this scope
|
AstScope* m_aboveScopep = nullptr; // Scope that instantiates this scope
|
||||||
|
|
||||||
PackageScopeMap m_packageScopes; // Scopes for each package
|
std::unordered_map<AstNodeModule*, AstScope*> m_packageScopes; // Scopes for each package
|
||||||
VarScopeMap m_varScopes; // Varscopes created for each scope and var
|
VarScopeMap m_varScopes; // Varscopes created for each scope and var
|
||||||
VarRefScopeSet m_varRefScopes; // Varrefs-in-scopes needing fixup when done
|
std::set<std::pair<AstVarRef*, AstScope*>>
|
||||||
|
m_varRefScopes; // Varrefs-in-scopes needing fixup when done
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
@ -44,12 +44,11 @@ template <typename T_Key, typename T_Value, class T_KeyCompare = std::less<T_Key
|
|||||||
class SortByValueMap final {
|
class SortByValueMap final {
|
||||||
// TYPES
|
// TYPES
|
||||||
private:
|
private:
|
||||||
typedef std::unordered_map<T_Key, T_Value> Key2Val;
|
|
||||||
typedef std::set<T_Key, T_KeyCompare> KeySet;
|
typedef std::set<T_Key, T_KeyCompare> KeySet;
|
||||||
typedef std::map<T_Value, KeySet> Val2Keys;
|
typedef std::map<T_Value, KeySet> Val2Keys;
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
Key2Val m_keys; // Map each key to its value. Not sorted.
|
std::unordered_map<T_Key, T_Value> m_keys; // Map each key to its value. Not sorted.
|
||||||
Val2Keys m_vals; // Map each value to its keys. Sorted.
|
Val2Keys m_vals; // Map each value to its keys. Sorted.
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -353,7 +352,6 @@ template <typename T_Elem, typename T_Score, class T_ElemCompare = std::less<T_E
|
|||||||
class V3Scoreboard final {
|
class V3Scoreboard final {
|
||||||
private:
|
private:
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::unordered_set<const T_Elem*> NeedRescoreSet;
|
|
||||||
class CmpElems final {
|
class CmpElems final {
|
||||||
public:
|
public:
|
||||||
bool operator()(const T_Elem* const& ap, const T_Elem* const& bp) const {
|
bool operator()(const T_Elem* const& ap, const T_Elem* const& bp) const {
|
||||||
@ -365,7 +363,7 @@ private:
|
|||||||
typedef T_Score (*UserScoreFnp)(const T_Elem*);
|
typedef T_Score (*UserScoreFnp)(const T_Elem*);
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
NeedRescoreSet m_unknown; // Elements with unknown scores
|
std::unordered_set<const T_Elem*> m_unknown; // Elements with unknown scores
|
||||||
SortedMap m_sorted; // Set of elements with known scores
|
SortedMap m_sorted; // Set of elements with known scores
|
||||||
UserScoreFnp m_scoreFnp; // Scoring function
|
UserScoreFnp m_scoreFnp; // Scoring function
|
||||||
bool m_slowAsserts; // Do some asserts that require extra lookups
|
bool m_slowAsserts; // Do some asserts that require extra lookups
|
||||||
|
@ -248,12 +248,9 @@ private:
|
|||||||
AstUser4InUse m_inuser4;
|
AstUser4InUse m_inuser4;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// TYPES
|
|
||||||
typedef std::vector<SplitLogicVertex*> VStack;
|
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
string m_noReorderWhy; // Reason we can't reorder
|
string m_noReorderWhy; // Reason we can't reorder
|
||||||
VStack m_stmtStackps; // Current statements being tracked
|
std::vector<SplitLogicVertex*> m_stmtStackps; // Current statements being tracked
|
||||||
SplitPliVertex* m_pliVertexp; // Element specifying PLI ordering
|
SplitPliVertex* m_pliVertexp; // Element specifying PLI ordering
|
||||||
V3Graph m_graph; // Scoreboard of var usages/dependencies
|
V3Graph m_graph; // Scoreboard of var usages/dependencies
|
||||||
bool m_inDly; // Inside ASSIGNDLY
|
bool m_inDly; // Inside ASSIGNDLY
|
||||||
@ -523,8 +520,7 @@ protected:
|
|||||||
// Reorder statements in the completed graph
|
// Reorder statements in the completed graph
|
||||||
|
|
||||||
// Map the rank numbers into nodes they associate with
|
// Map the rank numbers into nodes they associate with
|
||||||
typedef std::multimap<uint32_t, AstNode*> RankNodeMap;
|
std::multimap<uint32_t, AstNode*> rankMap;
|
||||||
RankNodeMap rankMap;
|
|
||||||
int currOrder = 0; // Existing sequence number of assignment
|
int currOrder = 0; // Existing sequence number of assignment
|
||||||
for (AstNode* nextp = nodep; nextp; nextp = nextp->nextp()) {
|
for (AstNode* nextp = nodep; nextp; nextp = nextp->nextp()) {
|
||||||
SplitLogicVertex* vvertexp = reinterpret_cast<SplitLogicVertex*>(nextp->user3p());
|
SplitLogicVertex* vvertexp = reinterpret_cast<SplitLogicVertex*>(nextp->user3p());
|
||||||
@ -535,7 +531,7 @@ protected:
|
|||||||
// Is the current ordering OK?
|
// Is the current ordering OK?
|
||||||
bool leaveAlone = true;
|
bool leaveAlone = true;
|
||||||
int newOrder = 0; // New sequence number of assignment
|
int newOrder = 0; // New sequence number of assignment
|
||||||
for (RankNodeMap::const_iterator it = rankMap.begin(); it != rankMap.end(); ++it) {
|
for (auto it = rankMap.cbegin(); it != rankMap.cend(); ++it) {
|
||||||
AstNode* nextp = it->second;
|
AstNode* nextp = it->second;
|
||||||
if (++newOrder != nextp->user4()) leaveAlone = false;
|
if (++newOrder != nextp->user4()) leaveAlone = false;
|
||||||
}
|
}
|
||||||
@ -544,7 +540,7 @@ protected:
|
|||||||
} else {
|
} else {
|
||||||
AstNRelinker replaceHandle; // Where to add the list
|
AstNRelinker replaceHandle; // Where to add the list
|
||||||
AstNode* newListp = nullptr;
|
AstNode* newListp = nullptr;
|
||||||
for (RankNodeMap::const_iterator it = rankMap.begin(); it != rankMap.end(); ++it) {
|
for (auto it = rankMap.cbegin(); it != rankMap.cend(); ++it) {
|
||||||
AstNode* nextp = it->second;
|
AstNode* nextp = it->second;
|
||||||
UINFO(6, " New order: " << nextp << endl);
|
UINFO(6, " New order: " << nextp << endl);
|
||||||
if (nextp == nodep) {
|
if (nextp == nodep) {
|
||||||
@ -626,11 +622,10 @@ class IfColorVisitor final : public AstNVisitor {
|
|||||||
// MEMBERS
|
// MEMBERS
|
||||||
ColorSet m_colors; // All colors in the original always block
|
ColorSet m_colors; // All colors in the original always block
|
||||||
|
|
||||||
typedef std::vector<AstNodeIf*> IfStack;
|
std::vector<AstNodeIf*> m_ifStack; // Stack of nested if-statements we're currently processing
|
||||||
IfStack m_ifStack; // Stack of nested if-statements we're currently processing
|
|
||||||
|
|
||||||
typedef std::unordered_map<AstNodeIf*, ColorSet> IfColorMap;
|
std::unordered_map<AstNodeIf*, ColorSet>
|
||||||
IfColorMap m_ifColors; // Map each if-statement to the set of colors (split blocks)
|
m_ifColors; // Map each if-statement to the set of colors (split blocks)
|
||||||
// that will get a copy of that if-statement
|
// that will get a copy of that if-statement
|
||||||
|
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
@ -657,7 +652,7 @@ private:
|
|||||||
UINFO(8, " SVL " << vertexp << " has color " << color << "\n");
|
UINFO(8, " SVL " << vertexp << " has color " << color << "\n");
|
||||||
|
|
||||||
// Record that all containing ifs have this color.
|
// Record that all containing ifs have this color.
|
||||||
for (IfStack::const_iterator it = m_ifStack.begin(); it != m_ifStack.end(); ++it) {
|
for (auto it = m_ifStack.cbegin(); it != m_ifStack.cend(); ++it) {
|
||||||
m_ifColors[*it].insert(color);
|
m_ifColors[*it].insert(color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -686,8 +681,7 @@ class EmitSplitVisitor final : public AstNVisitor {
|
|||||||
const IfColorVisitor* m_ifColorp; // Digest of results of prior coloring
|
const IfColorVisitor* m_ifColorp; // Digest of results of prior coloring
|
||||||
|
|
||||||
// Map each color to our current place within the color's new always
|
// Map each color to our current place within the color's new always
|
||||||
typedef std::unordered_map<uint32_t, AstNode*> LocMap;
|
std::unordered_map<uint32_t, AstNode*> m_addAfter;
|
||||||
LocMap m_addAfter;
|
|
||||||
|
|
||||||
AlwaysVec* m_newBlocksp; // Split always blocks we have generated
|
AlwaysVec* m_newBlocksp; // Split always blocks we have generated
|
||||||
|
|
||||||
@ -794,8 +788,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
class RemovePlaceholdersVisitor final : public AstNVisitor {
|
class RemovePlaceholdersVisitor final : public AstNVisitor {
|
||||||
typedef std::unordered_set<AstNode*> NodeSet;
|
std::unordered_set<AstNode*> m_removeSet; // placeholders to be removed
|
||||||
NodeSet m_removeSet; // placeholders to be removed
|
|
||||||
public:
|
public:
|
||||||
explicit RemovePlaceholdersVisitor(AstNode* nodep) {
|
explicit RemovePlaceholdersVisitor(AstNode* nodep) {
|
||||||
iterate(nodep);
|
iterate(nodep);
|
||||||
@ -817,8 +810,7 @@ private:
|
|||||||
// Keys are original always blocks pending delete,
|
// Keys are original always blocks pending delete,
|
||||||
// values are newly split always blocks pending insertion
|
// values are newly split always blocks pending insertion
|
||||||
// at the same position as the originals:
|
// at the same position as the originals:
|
||||||
typedef std::unordered_map<AstAlways*, AlwaysVec> ReplaceMap;
|
std::unordered_map<AstAlways*, AlwaysVec> m_replaceBlocks;
|
||||||
ReplaceMap m_replaceBlocks;
|
|
||||||
|
|
||||||
// AstNodeIf* whose condition we're currently visiting
|
// AstNodeIf* whose condition we're currently visiting
|
||||||
AstNode* m_curIfConditional = nullptr;
|
AstNode* m_curIfConditional = nullptr;
|
||||||
@ -831,8 +823,7 @@ public:
|
|||||||
// Splice newly-split blocks into the tree. Remove placeholders
|
// Splice newly-split blocks into the tree. Remove placeholders
|
||||||
// from newly-split blocks. Delete the original always blocks
|
// from newly-split blocks. Delete the original always blocks
|
||||||
// that we're replacing.
|
// that we're replacing.
|
||||||
for (ReplaceMap::iterator it = m_replaceBlocks.begin(); it != m_replaceBlocks.end();
|
for (auto it = m_replaceBlocks.begin(); it != m_replaceBlocks.end(); ++it) {
|
||||||
++it) {
|
|
||||||
AstAlways* origp = it->first;
|
AstAlways* origp = it->first;
|
||||||
for (AlwaysVec::iterator addme = it->second.begin(); addme != it->second.end();
|
for (AlwaysVec::iterator addme = it->second.begin(); addme != it->second.end();
|
||||||
++addme) {
|
++addme) {
|
||||||
@ -851,7 +842,7 @@ protected:
|
|||||||
virtual void makeRvalueEdges(SplitVarStdVertex* vstdp) override {
|
virtual void makeRvalueEdges(SplitVarStdVertex* vstdp) override {
|
||||||
// Each 'if' depends on rvalues in its own conditional ONLY,
|
// Each 'if' depends on rvalues in its own conditional ONLY,
|
||||||
// not rvalues in the if/else bodies.
|
// not rvalues in the if/else bodies.
|
||||||
for (VStack::const_iterator it = m_stmtStackps.begin(); it != m_stmtStackps.end(); ++it) {
|
for (auto it = m_stmtStackps.cbegin(); it != m_stmtStackps.cend(); ++it) {
|
||||||
AstNodeIf* ifNodep = VN_CAST((*it)->nodep(), NodeIf);
|
AstNodeIf* ifNodep = VN_CAST((*it)->nodep(), NodeIf);
|
||||||
if (ifNodep && (m_curIfConditional != ifNodep)) continue;
|
if (ifNodep && (m_curIfConditional != ifNodep)) continue;
|
||||||
new SplitRVEdge(&m_graph, *it, vstdp);
|
new SplitRVEdge(&m_graph, *it, vstdp);
|
||||||
|
@ -334,12 +334,9 @@ public:
|
|||||||
|
|
||||||
// Found nodes for SplitPackedVarVisitor
|
// Found nodes for SplitPackedVarVisitor
|
||||||
struct RefsInModule {
|
struct RefsInModule {
|
||||||
typedef std::set<AstVar*, AstNodeComparator> VarSet;
|
std::set<AstVar*, AstNodeComparator> m_vars;
|
||||||
typedef std::set<AstVarRef*, AstNodeComparator> VarRefSet;
|
std::set<AstVarRef*, AstNodeComparator> m_refs;
|
||||||
typedef std::set<AstSel*, AstNodeComparator> SelSet;
|
std::set<AstSel*, AstNodeComparator> m_sels;
|
||||||
VarSet m_vars;
|
|
||||||
VarRefSet m_refs;
|
|
||||||
SelSet m_sels;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void add(AstVar* nodep) { m_vars.insert(nodep); }
|
void add(AstVar* nodep) { m_vars.insert(nodep); }
|
||||||
@ -362,7 +359,7 @@ public:
|
|||||||
}
|
}
|
||||||
void visit(AstNVisitor* visitor) {
|
void visit(AstNVisitor* visitor) {
|
||||||
for (const auto& varp : m_vars) visitor->iterate(varp);
|
for (const auto& varp : m_vars) visitor->iterate(varp);
|
||||||
for (SelSet::iterator it = m_sels.begin(), it_end = m_sels.end(); it != it_end; ++it) {
|
for (auto it = m_sels.begin(), it_end = m_sels.end(); it != it_end; ++it) {
|
||||||
// If m_refs includes VarRef from ArraySel, remove it
|
// If m_refs includes VarRef from ArraySel, remove it
|
||||||
// because the VarRef would not be visited in SplitPackedVarVisitor::visit(AstSel*).
|
// because the VarRef would not be visited in SplitPackedVarVisitor::visit(AstSel*).
|
||||||
if (AstVarRef* refp = VN_CAST((*it)->fromp(), VarRef)) {
|
if (AstVarRef* refp = VN_CAST((*it)->fromp(), VarRef)) {
|
||||||
@ -375,7 +372,7 @@ public:
|
|||||||
UASSERT_OBJ(reinterpret_cast<uintptr_t>((*it)->op1p()) != 1, *it, "stale");
|
UASSERT_OBJ(reinterpret_cast<uintptr_t>((*it)->op1p()) != 1, *it, "stale");
|
||||||
visitor->iterate(*it);
|
visitor->iterate(*it);
|
||||||
}
|
}
|
||||||
for (VarRefSet::iterator it = m_refs.begin(), it_end = m_refs.end(); it != it_end; ++it) {
|
for (auto it = m_refs.begin(), it_end = m_refs.end(); it != it_end; ++it) {
|
||||||
UASSERT_OBJ(reinterpret_cast<uintptr_t>((*it)->op1p()) != 1, *it, "stale");
|
UASSERT_OBJ(reinterpret_cast<uintptr_t>((*it)->op1p()) != 1, *it, "stale");
|
||||||
visitor->iterate(*it);
|
visitor->iterate(*it);
|
||||||
}
|
}
|
||||||
@ -871,13 +868,11 @@ class PackedVarRef final {
|
|||||||
bool m_dedupDone = false;
|
bool m_dedupDone = false;
|
||||||
static void dedupRefs(std::vector<PackedVarRefEntry>& refs) {
|
static void dedupRefs(std::vector<PackedVarRefEntry>& refs) {
|
||||||
// Use raw pointer to dedup
|
// Use raw pointer to dedup
|
||||||
typedef std::map<AstNode*, size_t, AstNodeComparator> NodeIndices;
|
std::map<AstNode*, size_t, AstNodeComparator> nodes;
|
||||||
NodeIndices nodes;
|
|
||||||
for (size_t i = 0; i < refs.size(); ++i) { nodes.emplace(refs[i].nodep(), i); }
|
for (size_t i = 0; i < refs.size(); ++i) { nodes.emplace(refs[i].nodep(), i); }
|
||||||
std::vector<PackedVarRefEntry> vect;
|
std::vector<PackedVarRefEntry> vect;
|
||||||
vect.reserve(nodes.size());
|
vect.reserve(nodes.size());
|
||||||
for (NodeIndices::const_iterator it = nodes.begin(), it_end = nodes.end(); it != it_end;
|
for (auto it = nodes.cbegin(), it_end = nodes.cend(); it != it_end; ++it) {
|
||||||
++it) {
|
|
||||||
vect.push_back(refs[it->second]);
|
vect.push_back(refs[it->second]);
|
||||||
}
|
}
|
||||||
refs.swap(vect);
|
refs.swap(vect);
|
||||||
@ -955,12 +950,11 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
class SplitPackedVarVisitor final : public AstNVisitor, public SplitVarImpl {
|
class SplitPackedVarVisitor final : public AstNVisitor, public SplitVarImpl {
|
||||||
typedef std::map<AstVar*, PackedVarRef, AstNodeComparator> PackedVarRefMap;
|
|
||||||
AstNetlist* m_netp;
|
AstNetlist* m_netp;
|
||||||
AstNodeModule* m_modp = nullptr; // Current module (just for log)
|
AstNodeModule* m_modp = nullptr; // Current module (just for log)
|
||||||
int m_numSplit = 0; // Total number of split variables
|
int m_numSplit = 0; // Total number of split variables
|
||||||
// key:variable to be split. value:location where the variable is referenced.
|
// key:variable to be split. value:location where the variable is referenced.
|
||||||
PackedVarRefMap m_refs;
|
std::map<AstVar*, PackedVarRef, AstNodeComparator> m_refs;
|
||||||
virtual void visit(AstNodeFTask* nodep) override {
|
virtual void visit(AstNodeFTask* nodep) override {
|
||||||
if (!cannotSplitTaskReason(nodep)) iterateChildren(nodep);
|
if (!cannotSplitTaskReason(nodep)) iterateChildren(nodep);
|
||||||
}
|
}
|
||||||
@ -1163,8 +1157,7 @@ class SplitPackedVarVisitor final : public AstNVisitor, public SplitVarImpl {
|
|||||||
}
|
}
|
||||||
// Do the actual splitting operation
|
// Do the actual splitting operation
|
||||||
void split() {
|
void split() {
|
||||||
for (PackedVarRefMap::iterator it = m_refs.begin(), it_end = m_refs.end(); it != it_end;
|
for (auto it = m_refs.begin(), it_end = m_refs.end(); it != it_end; ++it) {
|
||||||
++it) {
|
|
||||||
it->second.dedup();
|
it->second.dedup();
|
||||||
AstVar* varp = it->first;
|
AstVar* varp = it->first;
|
||||||
UINFO(3, "In module " << m_modp->name() << " var " << varp->prettyNameQ()
|
UINFO(3, "In module " << m_modp->name() << " var " << varp->prettyNameQ()
|
||||||
|
@ -49,8 +49,7 @@ class StatsReport final {
|
|||||||
|
|
||||||
void sumit() {
|
void sumit() {
|
||||||
// If sumit is set on a statistic, combine with others of same name
|
// If sumit is set on a statistic, combine with others of same name
|
||||||
typedef std::multimap<string, V3Statistic*> ByName;
|
std::multimap<std::string, V3Statistic*> byName;
|
||||||
ByName byName;
|
|
||||||
// * is always first
|
// * is always first
|
||||||
for (auto& itr : s_allStats) {
|
for (auto& itr : s_allStats) {
|
||||||
V3Statistic* repp = &itr;
|
V3Statistic* repp = &itr;
|
||||||
@ -72,8 +71,7 @@ class StatsReport final {
|
|||||||
void stars() {
|
void stars() {
|
||||||
// Find all stages
|
// Find all stages
|
||||||
size_t maxWidth = 0;
|
size_t maxWidth = 0;
|
||||||
typedef std::multimap<string, const V3Statistic*> ByName;
|
std::multimap<std::string, const V3Statistic*> byName;
|
||||||
ByName byName;
|
|
||||||
// * is always first
|
// * is always first
|
||||||
for (const auto& itr : s_allStats) {
|
for (const auto& itr : s_allStats) {
|
||||||
const V3Statistic* repp = &itr;
|
const V3Statistic* repp = &itr;
|
||||||
@ -112,13 +110,11 @@ class StatsReport final {
|
|||||||
// Find all stages
|
// Find all stages
|
||||||
int stage = 0;
|
int stage = 0;
|
||||||
size_t maxWidth = 0;
|
size_t maxWidth = 0;
|
||||||
typedef std::vector<string> Stages;
|
std::vector<std::string> stages;
|
||||||
Stages stages;
|
|
||||||
std::unordered_map<string, int> stageInt;
|
std::unordered_map<string, int> stageInt;
|
||||||
typedef std::multimap<string, const V3Statistic*> ByName;
|
std::multimap<std::string, const V3Statistic*> byName;
|
||||||
ByName byName;
|
|
||||||
// * is always first
|
// * is always first
|
||||||
for (StatColl::iterator it = s_allStats.begin(); it != s_allStats.end(); ++it) {
|
for (auto it = s_allStats.begin(); it != s_allStats.end(); ++it) {
|
||||||
const V3Statistic* repp = &(*it);
|
const V3Statistic* repp = &(*it);
|
||||||
if (repp->stage() != "*" && repp->printit()) {
|
if (repp->stage() != "*" && repp->printit()) {
|
||||||
if (maxWidth < repp->name().length()) maxWidth = repp->name().length();
|
if (maxWidth < repp->name().length()) maxWidth = repp->name().length();
|
||||||
@ -144,7 +140,7 @@ class StatsReport final {
|
|||||||
string lastName = "__NONE__";
|
string lastName = "__NONE__";
|
||||||
string lastCommaName = "__NONE__";
|
string lastCommaName = "__NONE__";
|
||||||
unsigned col = 0;
|
unsigned col = 0;
|
||||||
for (ByName::const_iterator it = byName.begin(); it != byName.end(); ++it) {
|
for (auto it = byName.cbegin(); it != byName.cend(); ++it) {
|
||||||
const V3Statistic* repp = it->second;
|
const V3Statistic* repp = it->second;
|
||||||
if (lastName != repp->name()) {
|
if (lastName != repp->name()) {
|
||||||
lastName = repp->name();
|
lastName = repp->name();
|
||||||
|
@ -194,9 +194,8 @@ class VSpellCheck final {
|
|||||||
static constexpr unsigned LENGTH_LIMIT = 100; // Maximum string length to search
|
static constexpr unsigned LENGTH_LIMIT = 100; // Maximum string length to search
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef unsigned int EditDistance;
|
typedef unsigned int EditDistance;
|
||||||
typedef std::vector<string> Candidates;
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
Candidates m_candidates; // Strings we try to match
|
std::vector<std::string> m_candidates; // Strings we try to match
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
VSpellCheck() = default;
|
VSpellCheck() = default;
|
||||||
|
@ -74,8 +74,7 @@ public:
|
|||||||
typedef TspVertexTmpl<T_Key> Vertex;
|
typedef TspVertexTmpl<T_Key> Vertex;
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
typedef std::unordered_map<T_Key, Vertex*> VMap;
|
std::unordered_map<T_Key, Vertex*> m_vertices; // T_Key to Vertex lookup map
|
||||||
VMap m_vertices; // T_Key to Vertex lookup map
|
|
||||||
|
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
TspGraphTmpl()
|
TspGraphTmpl()
|
||||||
|
@ -77,8 +77,7 @@ private:
|
|||||||
// State cleared on each module
|
// State cleared on each module
|
||||||
AstNodeModule* m_modp = nullptr; // Current MODULE
|
AstNodeModule* m_modp = nullptr; // Current MODULE
|
||||||
int m_modTables = 0; // Number of tables created in this module
|
int m_modTables = 0; // Number of tables created in this module
|
||||||
typedef std::deque<AstVarScope*> ModTableVector;
|
std::deque<AstVarScope*> m_modTableVscs; // All tables created
|
||||||
ModTableVector m_modTableVscs; // All tables created
|
|
||||||
|
|
||||||
// State cleared on each scope
|
// State cleared on each scope
|
||||||
AstScope* m_scopep = nullptr; // Current SCOPE
|
AstScope* m_scopep = nullptr; // Current SCOPE
|
||||||
@ -222,8 +221,7 @@ private:
|
|||||||
|
|
||||||
void createTableVars(AstNode* nodep) {
|
void createTableVars(AstNode* nodep) {
|
||||||
// Create table for each output
|
// Create table for each output
|
||||||
typedef std::map<const string, int> NameCounts;
|
std::map<const std::string, int> namecounts;
|
||||||
NameCounts namecounts;
|
|
||||||
for (const AstVarScope* outvscp : m_outVarps) {
|
for (const AstVarScope* outvscp : m_outVarps) {
|
||||||
AstVar* outvarp = outvscp->varp();
|
AstVar* outvarp = outvscp->varp();
|
||||||
FileLine* fl = nodep->fileline();
|
FileLine* fl = nodep->fileline();
|
||||||
|
@ -105,7 +105,6 @@ private:
|
|||||||
// TYPES
|
// TYPES
|
||||||
typedef std::map<std::pair<AstScope*, AstVar*>, AstVarScope*> VarToScopeMap;
|
typedef std::map<std::pair<AstScope*, AstVar*>, AstVarScope*> VarToScopeMap;
|
||||||
typedef std::unordered_map<const AstNodeFTask*, AstClass*> FuncToClassMap;
|
typedef std::unordered_map<const AstNodeFTask*, AstClass*> FuncToClassMap;
|
||||||
typedef std::vector<AstInitial*> Initials;
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
VarToScopeMap m_varToScopeMap; // Map for Var -> VarScope mappings
|
VarToScopeMap m_varToScopeMap; // Map for Var -> VarScope mappings
|
||||||
FuncToClassMap m_funcToClassMap; // Map for ctor func -> class
|
FuncToClassMap m_funcToClassMap; // Map for ctor func -> class
|
||||||
@ -114,7 +113,7 @@ private:
|
|||||||
AstClass* m_classp = nullptr; // Current class
|
AstClass* m_classp = nullptr; // Current class
|
||||||
V3Graph m_callGraph; // Task call graph
|
V3Graph m_callGraph; // Task call graph
|
||||||
TaskBaseVertex* m_curVxp; // Current vertex we're adding to
|
TaskBaseVertex* m_curVxp; // Current vertex we're adding to
|
||||||
Initials m_initialps; // Initial blocks to move
|
std::vector<AstInitial*> m_initialps; // Initial blocks to move
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// METHODS
|
// METHODS
|
||||||
@ -1470,8 +1469,7 @@ V3TaskConnects V3Task::taskConnects(AstNodeFTaskRef* nodep, AstNode* taskStmtsp)
|
|||||||
// Missing pin/expr? We return (pinvar, nullptr)
|
// Missing pin/expr? We return (pinvar, nullptr)
|
||||||
// Extra pin/expr? We clean it up
|
// Extra pin/expr? We clean it up
|
||||||
|
|
||||||
typedef std::map<const string, int> NameToIndex;
|
std::map<const std::string, int> nameToIndex;
|
||||||
NameToIndex nameToIndex;
|
|
||||||
V3TaskConnects tconnects;
|
V3TaskConnects tconnects;
|
||||||
UASSERT_OBJ(nodep->taskp(), nodep, "unlinked");
|
UASSERT_OBJ(nodep->taskp(), nodep, "unlinked");
|
||||||
|
|
||||||
|
@ -200,7 +200,6 @@ private:
|
|||||||
// TYPES
|
// TYPES
|
||||||
typedef std::map<std::pair<const AstNodeDType*, AstAttrType>, AstVar*> TableMap;
|
typedef std::map<std::pair<const AstNodeDType*, AstAttrType>, AstVar*> TableMap;
|
||||||
typedef std::map<int, AstPatMember*> PatVecMap;
|
typedef std::map<int, AstPatMember*> PatVecMap;
|
||||||
typedef std::map<const AstNodeDType*, AstQueueDType*> DTypeQMap;
|
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
WidthVP* m_vup = nullptr; // Current node state
|
WidthVP* m_vup = nullptr; // Current node state
|
||||||
@ -214,7 +213,8 @@ private:
|
|||||||
bool m_doGenerate; // Do errors later inside generate statement
|
bool m_doGenerate; // Do errors later inside generate statement
|
||||||
int m_dtTables = 0; // Number of created data type tables
|
int m_dtTables = 0; // Number of created data type tables
|
||||||
TableMap m_tableMap; // Created tables so can remove duplicates
|
TableMap m_tableMap; // Created tables so can remove duplicates
|
||||||
DTypeQMap m_queueDTypeIndexed; // Queues with given index type
|
std::map<const AstNodeDType*, AstQueueDType*>
|
||||||
|
m_queueDTypeIndexed; // Queues with given index type
|
||||||
|
|
||||||
// ENUMS
|
// ENUMS
|
||||||
enum ExtendRule : uint8_t {
|
enum ExtendRule : uint8_t {
|
||||||
@ -3336,7 +3336,7 @@ private:
|
|||||||
// which member each AstPatMember corresponds to before we can
|
// which member each AstPatMember corresponds to before we can
|
||||||
// determine the dtypep for that PatMember's value, and then
|
// determine the dtypep for that PatMember's value, and then
|
||||||
// width the initial value appropriately.
|
// width the initial value appropriately.
|
||||||
typedef std::map<const AstMemberDType*, AstPatMember*> PatMap;
|
using PatMap = std::map<const AstMemberDType*, AstPatMember*>;
|
||||||
PatMap patmap;
|
PatMap patmap;
|
||||||
{
|
{
|
||||||
AstMemberDType* memp = vdtypep->membersp();
|
AstMemberDType* memp = vdtypep->membersp();
|
||||||
|
Loading…
Reference in New Issue
Block a user