forked from github/verilator
Merge branch 'master' into develop-v5
This commit is contained in:
commit
766fb56651
1
Changes
1
Changes
@ -21,6 +21,7 @@ Verilator 4.223 devel
|
|||||||
|
|
||||||
**Minor:**
|
**Minor:**
|
||||||
|
|
||||||
|
* Support compile time trace signal selection with tracing_on/off (#3323). [Shunyao CAD]
|
||||||
* Fix hang with large case statement optimization (#3405). [Mike Urbach]
|
* Fix hang with large case statement optimization (#3405). [Mike Urbach]
|
||||||
|
|
||||||
|
|
||||||
|
@ -71,6 +71,7 @@ Markus Krause
|
|||||||
Marlon James
|
Marlon James
|
||||||
Marshal Qiao
|
Marshal Qiao
|
||||||
Martin Schmidt
|
Martin Schmidt
|
||||||
|
Martin Stadler
|
||||||
Matthew Ballance
|
Matthew Ballance
|
||||||
Michael Killough
|
Michael Killough
|
||||||
Michaël Lefebvre
|
Michaël Lefebvre
|
||||||
|
@ -1676,9 +1676,28 @@ The grammar of configuration commands is as follows:
|
|||||||
|
|
||||||
.. option:: tracing_off [-file "<filename>" [-lines <line> [ - <line> ]]]
|
.. option:: tracing_off [-file "<filename>" [-lines <line> [ - <line> ]]]
|
||||||
|
|
||||||
Enable/disable waveform tracing for all future signals declared in the
|
.. option:: tracing_on [-scope "<scopename>" [-levels <levels> ]]
|
||||||
specified filename (or wildcard with '\*' or '?', or all files if
|
|
||||||
omitted) and range of line numbers (or all lines if omitted).
|
|
||||||
|
|
||||||
For tracing_off, instances below any module in the files/ranges
|
.. option:: tracing_off [-scope "<scopename>" [-levels <levels> ]]
|
||||||
specified will also not be traced.
|
|
||||||
|
Enable/disable waveform tracing for all future signals declared in
|
||||||
|
all files.
|
||||||
|
|
||||||
|
With -file, enable/disable waveform tracing in the specified
|
||||||
|
filename (or wildcard with '\*' or '?'), and -line range of line
|
||||||
|
numbers (or all lines if omitted).
|
||||||
|
|
||||||
|
For tracing_off with -file, instances below any module in the
|
||||||
|
files/ranges specified will also not be traced. To overcome this
|
||||||
|
feature, use tracing_on on the upper module declaration and on any
|
||||||
|
cells, or use the -scope flavor of the command.
|
||||||
|
|
||||||
|
With -scope enable/disable waveform tracing for the specified scope (or
|
||||||
|
wildcard with '\*' or '?'), and optional --levels number of levels
|
||||||
|
below. These controls only take place after other file/line/module
|
||||||
|
based controls have indicated the signal should be traced.
|
||||||
|
|
||||||
|
With -levels (used with -scope), the number of levels below that
|
||||||
|
scope which the rule is to match, where 0 means all levels below, 1
|
||||||
|
the exact level as the provided scope, and 2 meaning an additional
|
||||||
|
level of children below the provided scope, etc.
|
||||||
|
@ -103,7 +103,7 @@ private:
|
|||||||
using ItemList = std::deque<VerilatedCovImpItem*>;
|
using ItemList = std::deque<VerilatedCovImpItem*>;
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
VerilatedMutex m_mutex; // Protects all members
|
mutable VerilatedMutex m_mutex; // Protects all members
|
||||||
ValueIndexMap m_valueIndexes VL_GUARDED_BY(m_mutex); // Unique arbitrary value for values
|
ValueIndexMap m_valueIndexes VL_GUARDED_BY(m_mutex); // Unique arbitrary value for values
|
||||||
IndexValueMap m_indexValues VL_GUARDED_BY(m_mutex); // Unique arbitrary value for keys
|
IndexValueMap m_indexValues VL_GUARDED_BY(m_mutex); // Unique arbitrary value for keys
|
||||||
ItemList m_items VL_GUARDED_BY(m_mutex); // List of all items
|
ItemList m_items VL_GUARDED_BY(m_mutex); // List of all items
|
||||||
|
@ -157,8 +157,8 @@ protected:
|
|||||||
friend class VerilatedCovImp;
|
friend class VerilatedCovImp;
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
// Internal: Only made as part of VerilatedCovImp
|
// Internal: Only made as part of VerilatedCovImp
|
||||||
VerilatedCovContext() {}
|
VerilatedCovContext() = default;
|
||||||
virtual ~VerilatedCovContext() {}
|
virtual ~VerilatedCovContext() = default;
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
// Internal: access to implementation class
|
// Internal: access to implementation class
|
||||||
|
@ -91,7 +91,7 @@ class VerilatedEvalMsgQueue final {
|
|||||||
|
|
||||||
std::atomic<uint64_t> m_depth; // Current depth of queue (see comments below)
|
std::atomic<uint64_t> m_depth; // Current depth of queue (see comments below)
|
||||||
|
|
||||||
VerilatedMutex m_mutex; // Mutex protecting queue
|
mutable VerilatedMutex m_mutex; // Mutex protecting queue
|
||||||
VerilatedThreadQueue m_queue VL_GUARDED_BY(m_mutex); // Message queue
|
VerilatedThreadQueue m_queue VL_GUARDED_BY(m_mutex); // Message queue
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
|
@ -155,7 +155,7 @@ class VlExecutionProfiler final {
|
|||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
static VL_THREAD_LOCAL ExecutionTrace t_trace; // thread-local trace buffers
|
static VL_THREAD_LOCAL ExecutionTrace t_trace; // thread-local trace buffers
|
||||||
VerilatedMutex m_mutex;
|
mutable VerilatedMutex m_mutex;
|
||||||
// Map from thread id to &t_trace of given thread
|
// Map from thread id to &t_trace of given thread
|
||||||
std::map<uint32_t, ExecutionTrace*> m_traceps VL_GUARDED_BY(m_mutex);
|
std::map<uint32_t, ExecutionTrace*> m_traceps VL_GUARDED_BY(m_mutex);
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
VerilatedMutex m_mutex;
|
mutable VerilatedMutex m_mutex;
|
||||||
std::condition_variable_any m_cv;
|
std::condition_variable_any m_cv;
|
||||||
// Only notify the condition_variable if the worker is waiting
|
// Only notify the condition_variable if the worker is waiting
|
||||||
bool m_waiting VL_GUARDED_BY(m_mutex) = false;
|
bool m_waiting VL_GUARDED_BY(m_mutex) = false;
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
// A simple synchronized first in first out queue
|
// A simple synchronized first in first out queue
|
||||||
template <class T> class VerilatedThreadQueue final { // LCOV_EXCL_LINE // lcov bug
|
template <class T> class VerilatedThreadQueue final { // LCOV_EXCL_LINE // lcov bug
|
||||||
private:
|
private:
|
||||||
VerilatedMutex m_mutex; // Protects m_queue
|
mutable VerilatedMutex m_mutex; // Protects m_queue
|
||||||
std::condition_variable_any m_cv;
|
std::condition_variable_any m_cv;
|
||||||
std::deque<T> m_queue VL_GUARDED_BY(m_mutex);
|
std::deque<T> m_queue VL_GUARDED_BY(m_mutex);
|
||||||
|
|
||||||
@ -208,7 +208,7 @@ protected:
|
|||||||
//=========================================================================
|
//=========================================================================
|
||||||
// Internals available to format specific implementations
|
// Internals available to format specific implementations
|
||||||
|
|
||||||
VerilatedMutex m_mutex; // Ensure dump() etc only called from single thread
|
mutable VerilatedMutex m_mutex; // Ensure dump() etc only called from single thread
|
||||||
|
|
||||||
uint32_t nextCode() const { return m_nextCode; }
|
uint32_t nextCode() const { return m_nextCode; }
|
||||||
uint32_t numSignals() const { return m_numSignals; }
|
uint32_t numSignals() const { return m_numSignals; }
|
||||||
|
@ -317,7 +317,7 @@ public:
|
|||||||
iterate(nodep);
|
iterate(nodep);
|
||||||
m_graph.latchCheck(nodep, kwd == VAlwaysKwd::ALWAYS_LATCH);
|
m_graph.latchCheck(nodep, kwd == VAlwaysKwd::ALWAYS_LATCH);
|
||||||
}
|
}
|
||||||
virtual ~ActiveLatchCheckVisitor() {}
|
virtual ~ActiveLatchCheckVisitor() = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
//######################################################################
|
//######################################################################
|
||||||
|
@ -758,7 +758,7 @@ void AstNode::deleteTree() {
|
|||||||
#ifdef VL_LEAK_CHECKS
|
#ifdef VL_LEAK_CHECKS
|
||||||
void* AstNode::operator new(size_t size) {
|
void* AstNode::operator new(size_t size) {
|
||||||
// Optimization note: Aligning to cache line is a loss, due to lost packing
|
// Optimization note: Aligning to cache line is a loss, due to lost packing
|
||||||
const AstNode* const objp = static_cast<AstNode*>(::operator new(size));
|
AstNode* const objp = static_cast<AstNode*>(::operator new(size));
|
||||||
V3Broken::addNewed(objp);
|
V3Broken::addNewed(objp);
|
||||||
return objp;
|
return objp;
|
||||||
}
|
}
|
||||||
|
133
src/V3Config.cpp
133
src/V3Config.cpp
@ -44,13 +44,8 @@ public:
|
|||||||
|
|
||||||
/// Update into maps from other
|
/// Update into maps from other
|
||||||
void update(const V3ConfigWildcardResolver& other) {
|
void update(const V3ConfigWildcardResolver& other) {
|
||||||
typename Map::const_iterator it;
|
for (const auto& itr : other.m_mapResolved) m_mapResolved[itr.first].update(itr.second);
|
||||||
for (it = other.m_mapResolved.begin(); it != other.m_mapResolved.end(); ++it) {
|
for (const auto& itr : other.m_mapWildcard) m_mapWildcard[itr.first].update(itr.second);
|
||||||
m_mapResolved[it->first].update(it->second);
|
|
||||||
}
|
|
||||||
for (it = other.m_mapWildcard.begin(); it != other.m_mapWildcard.end(); ++it) {
|
|
||||||
m_mapWildcard[it->first].update(it->second);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Access and create a (wildcard) entity
|
// Access and create a (wildcard) entity
|
||||||
@ -68,12 +63,12 @@ public:
|
|||||||
// Cannot be resolved, create if matched
|
// Cannot be resolved, create if matched
|
||||||
|
|
||||||
// Update this entity with all matches in the wildcards
|
// Update this entity with all matches in the wildcards
|
||||||
for (it = m_mapWildcard.begin(); it != m_mapWildcard.end(); ++it) {
|
for (const auto& wildent : m_mapWildcard) {
|
||||||
if (VString::wildmatch(name, it->first)) {
|
if (VString::wildmatch(name, wildent.first)) {
|
||||||
if (!newp) {
|
if (!newp) {
|
||||||
newp = &m_mapResolved[name]; // Emplace and get pointer
|
newp = &m_mapResolved[name]; // Emplace and get pointer
|
||||||
}
|
}
|
||||||
newp->update(it->second);
|
newp->update(wildent.second);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return newp;
|
return newp;
|
||||||
@ -198,8 +193,8 @@ public:
|
|||||||
AstNode* const nodep = new AstPragma(modp->fileline(), type);
|
AstNode* const nodep = new AstPragma(modp->fileline(), type);
|
||||||
modp->addStmtp(nodep);
|
modp->addStmtp(nodep);
|
||||||
}
|
}
|
||||||
for (auto it = m_modPragmas.cbegin(); it != m_modPragmas.cend(); ++it) {
|
for (const auto& itr : m_modPragmas) {
|
||||||
AstNode* const nodep = new AstPragma(modp->fileline(), *it);
|
AstNode* const nodep = new AstPragma{modp->fileline(), itr};
|
||||||
modp->addStmtp(nodep);
|
modp->addStmtp(nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -344,25 +339,124 @@ public:
|
|||||||
|
|
||||||
using V3ConfigFileResolver = V3ConfigWildcardResolver<V3ConfigFile>;
|
using V3ConfigFileResolver = V3ConfigWildcardResolver<V3ConfigFile>;
|
||||||
|
|
||||||
|
//######################################################################
|
||||||
|
// ScopeTrace tracking
|
||||||
|
|
||||||
|
class V3ConfigScopeTraceEntry final {
|
||||||
|
public:
|
||||||
|
const string m_scope; // Scope or regexp to match
|
||||||
|
const bool m_on = false; // True to enable message
|
||||||
|
int m_levels = 0; // # levels, 0 = all, 1 = only this, ...
|
||||||
|
// CONSTRUCTORS
|
||||||
|
V3ConfigScopeTraceEntry(const string& scope, bool on, int levels)
|
||||||
|
: m_scope{scope}
|
||||||
|
, m_on{on}
|
||||||
|
, m_levels{levels} {}
|
||||||
|
~V3ConfigScopeTraceEntry() = default;
|
||||||
|
bool operator<(const V3ConfigScopeTraceEntry& other) const {
|
||||||
|
if (m_on < other.m_on) return true;
|
||||||
|
if (m_on > other.m_on) return false;
|
||||||
|
if (m_levels < other.m_levels) return true;
|
||||||
|
if (m_levels > other.m_levels) return false;
|
||||||
|
return m_scope < other.m_scope;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Tracks what matches are known to hit against V3ConfigScopeTraceEntries
|
||||||
|
class V3ConfigScopeTraceEntryMatch final {
|
||||||
|
public:
|
||||||
|
const V3ConfigScopeTraceEntry* m_entryp;
|
||||||
|
const string m_scopepart;
|
||||||
|
V3ConfigScopeTraceEntryMatch(const V3ConfigScopeTraceEntry* entryp, const string& scopepart)
|
||||||
|
: m_entryp{entryp}
|
||||||
|
, m_scopepart{scopepart} {}
|
||||||
|
bool operator<(const V3ConfigScopeTraceEntryMatch& other) const {
|
||||||
|
if (m_entryp < other.m_entryp) return true;
|
||||||
|
if (m_entryp > other.m_entryp) return false;
|
||||||
|
return m_scopepart < other.m_scopepart;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
class V3ConfigScopeTraceResolver final {
|
||||||
|
std::vector<V3ConfigScopeTraceEntry> m_entries; // User specified on/offs and levels
|
||||||
|
std::map<V3ConfigScopeTraceEntryMatch, bool> m_matchCache; // Matching entries for speed
|
||||||
|
|
||||||
|
public:
|
||||||
|
void addScopeTraceOn(bool on, const string& scope, int levels) {
|
||||||
|
UINFO(9, "addScopeTraceOn " << on << " '" << scope << "' "
|
||||||
|
<< " levels=" << levels << endl);
|
||||||
|
m_entries.emplace_back(V3ConfigScopeTraceEntry{scope, on, levels});
|
||||||
|
m_matchCache.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool getEntryMatch(const V3ConfigScopeTraceEntry* entp, const string& scopepart) {
|
||||||
|
// Return if a entry matches the scopepart, with memoization
|
||||||
|
const auto& key = V3ConfigScopeTraceEntryMatch{entp, scopepart};
|
||||||
|
const auto& it = m_matchCache.find(key);
|
||||||
|
if (it != m_matchCache.end()) return it->second; // Cached
|
||||||
|
const bool matched = VString::wildmatch(scopepart, entp->m_scope);
|
||||||
|
m_matchCache.emplace(key, matched);
|
||||||
|
return matched;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool getScopeTraceOn(const string& scope) {
|
||||||
|
// Apply in the order the user provided them, so they can choose on/off preferencing
|
||||||
|
int maxLevel = 1;
|
||||||
|
for (const auto& ch : scope) {
|
||||||
|
if (ch == '.') ++maxLevel;
|
||||||
|
}
|
||||||
|
UINFO(9, "getScopeTraceOn " << scope << " maxLevel=" << maxLevel << endl);
|
||||||
|
|
||||||
|
bool enabled = true;
|
||||||
|
for (const auto& ent : m_entries) {
|
||||||
|
// We apply shortest match first for each rule component
|
||||||
|
// (Otherwise the levels would be useless as "--scope top* --levels 1" would
|
||||||
|
// always match at every scopepart, and we wound't know how to count levels)
|
||||||
|
int partLevel = 1;
|
||||||
|
for (string::size_type partEnd = 0; true;) {
|
||||||
|
partEnd = scope.find('.', partEnd + 1);
|
||||||
|
if (partEnd == string::npos) partEnd = scope.length();
|
||||||
|
const std::string scopepart = scope.substr(0, partEnd);
|
||||||
|
if (getEntryMatch(&ent, scopepart)) {
|
||||||
|
const bool levelMatch
|
||||||
|
= !ent.m_levels || (ent.m_levels >= maxLevel - partLevel);
|
||||||
|
if (levelMatch) enabled = ent.m_on;
|
||||||
|
UINFO(9, "getScopeTraceOn-part " << scope << " enabled=" << enabled
|
||||||
|
<< " @ lev=" << partLevel
|
||||||
|
<< (levelMatch ? "[match]" : "[miss]")
|
||||||
|
<< " from scopepart=" << scopepart << endl);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (partEnd == scope.length()) break;
|
||||||
|
++partLevel;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return enabled;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
//######################################################################
|
//######################################################################
|
||||||
// Resolve modules and files in the design
|
// Resolve modules and files in the design
|
||||||
|
|
||||||
class V3ConfigResolver final {
|
class V3ConfigResolver final {
|
||||||
V3ConfigModuleResolver m_modules; // Access to module names (with wildcards)
|
V3ConfigModuleResolver m_modules; // Access to module names (with wildcards)
|
||||||
V3ConfigFileResolver m_files; // Access to file names (with wildcards)
|
V3ConfigFileResolver m_files; // Access to file names (with wildcards)
|
||||||
|
V3ConfigScopeTraceResolver m_scopeTraces; // Regexp to trace enables
|
||||||
std::unordered_map<string, std::unordered_map<string, uint64_t>>
|
std::unordered_map<string, std::unordered_map<string, uint64_t>>
|
||||||
m_profileData; // Access to profile_data records
|
m_profileData; // Access to profile_data records
|
||||||
FileLine* m_profileFileLine = nullptr;
|
FileLine* m_profileFileLine = nullptr;
|
||||||
|
|
||||||
static V3ConfigResolver s_singleton; // Singleton (not via local static, as that's slow)
|
|
||||||
V3ConfigResolver() = default;
|
V3ConfigResolver() = default;
|
||||||
~V3ConfigResolver() = default;
|
~V3ConfigResolver() = default;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static V3ConfigResolver& s() { return s_singleton; }
|
static V3ConfigResolver& s() {
|
||||||
|
static V3ConfigResolver s_singleton;
|
||||||
|
return s_singleton;
|
||||||
|
}
|
||||||
V3ConfigModuleResolver& modules() { return m_modules; }
|
V3ConfigModuleResolver& modules() { return m_modules; }
|
||||||
V3ConfigFileResolver& files() { return m_files; }
|
V3ConfigFileResolver& files() { return m_files; }
|
||||||
|
V3ConfigScopeTraceResolver& scopeTraces() { return m_scopeTraces; }
|
||||||
|
|
||||||
void addProfileData(FileLine* fl, const string& model, const string& key, uint64_t cost) {
|
void addProfileData(FileLine* fl, const string& model, const string& key, uint64_t cost) {
|
||||||
if (!m_profileFileLine) m_profileFileLine = fl;
|
if (!m_profileFileLine) m_profileFileLine = fl;
|
||||||
@ -379,8 +473,6 @@ public:
|
|||||||
FileLine* getProfileDataFileLine() const { return m_profileFileLine; } // Maybe null
|
FileLine* getProfileDataFileLine() const { return m_profileFileLine; } // Maybe null
|
||||||
};
|
};
|
||||||
|
|
||||||
V3ConfigResolver V3ConfigResolver::s_singleton;
|
|
||||||
|
|
||||||
//######################################################################
|
//######################################################################
|
||||||
// V3Config
|
// V3Config
|
||||||
|
|
||||||
@ -434,6 +526,10 @@ void V3Config::addProfileData(FileLine* fl, const string& model, const string& k
|
|||||||
V3ConfigResolver::s().addProfileData(fl, model, key, cost);
|
V3ConfigResolver::s().addProfileData(fl, model, key, cost);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void V3Config::addScopeTraceOn(bool on, const string& scope, int levels) {
|
||||||
|
V3ConfigResolver::s().scopeTraces().addScopeTraceOn(on, scope, levels);
|
||||||
|
}
|
||||||
|
|
||||||
void V3Config::addVarAttr(FileLine* fl, const string& module, const string& ftask,
|
void V3Config::addVarAttr(FileLine* fl, const string& module, const string& ftask,
|
||||||
const string& var, VAttrType attr, AstSenTree* sensep) {
|
const string& var, VAttrType attr, AstSenTree* sensep) {
|
||||||
// Semantics: sensep only if public_flat_rw
|
// Semantics: sensep only if public_flat_rw
|
||||||
@ -540,6 +636,9 @@ uint64_t V3Config::getProfileData(const string& model, const string& key) {
|
|||||||
FileLine* V3Config::getProfileDataFileLine() {
|
FileLine* V3Config::getProfileDataFileLine() {
|
||||||
return V3ConfigResolver::s().getProfileDataFileLine();
|
return V3ConfigResolver::s().getProfileDataFileLine();
|
||||||
}
|
}
|
||||||
|
bool V3Config::getScopeTraceOn(const string& scope) {
|
||||||
|
return V3ConfigResolver::s().scopeTraces().getScopeTraceOn(scope);
|
||||||
|
}
|
||||||
|
|
||||||
bool V3Config::waive(FileLine* filelinep, V3ErrorCode code, const string& message) {
|
bool V3Config::waive(FileLine* filelinep, V3ErrorCode code, const string& message) {
|
||||||
V3ConfigFile* filep = V3ConfigResolver::s().files().resolve(filelinep->filename());
|
V3ConfigFile* filep = V3ConfigResolver::s().files().resolve(filelinep->filename());
|
||||||
|
@ -37,19 +37,21 @@ public:
|
|||||||
static void addModulePragma(const string& module, VPragmaType pragma);
|
static void addModulePragma(const string& module, VPragmaType pragma);
|
||||||
static void addProfileData(FileLine* fl, const string& model, const string& key,
|
static void addProfileData(FileLine* fl, const string& model, const string& key,
|
||||||
uint64_t cost);
|
uint64_t cost);
|
||||||
static void addWaiver(V3ErrorCode code, const string& filename, const string& message);
|
static void addScopeTraceOn(bool on, const string& scope, int levels);
|
||||||
static void addVarAttr(FileLine* fl, const string& module, const string& ftask,
|
static void addVarAttr(FileLine* fl, const string& module, const string& ftask,
|
||||||
const string& signal, VAttrType type, AstSenTree* nodep);
|
const string& signal, VAttrType type, AstSenTree* nodep);
|
||||||
|
static void addWaiver(V3ErrorCode code, const string& filename, const string& message);
|
||||||
|
|
||||||
static void applyCase(AstCase* nodep);
|
static void applyCase(AstCase* nodep);
|
||||||
static void applyCoverageBlock(AstNodeModule* modulep, AstBegin* nodep);
|
static void applyCoverageBlock(AstNodeModule* modulep, AstBegin* nodep);
|
||||||
|
static void applyFTask(AstNodeModule* modulep, AstNodeFTask* ftaskp);
|
||||||
static void applyIgnores(FileLine* filelinep);
|
static void applyIgnores(FileLine* filelinep);
|
||||||
static void applyModule(AstNodeModule* modulep);
|
static void applyModule(AstNodeModule* modulep);
|
||||||
static void applyFTask(AstNodeModule* modulep, AstNodeFTask* ftaskp);
|
|
||||||
static void applyVarAttr(AstNodeModule* modulep, AstNodeFTask* ftaskp, AstVar* varp);
|
static void applyVarAttr(AstNodeModule* modulep, AstNodeFTask* ftaskp, AstVar* varp);
|
||||||
|
|
||||||
static uint64_t getProfileData(const string& model, const string& key);
|
static uint64_t getProfileData(const string& model, const string& key);
|
||||||
static FileLine* getProfileDataFileLine();
|
static FileLine* getProfileDataFileLine();
|
||||||
|
static bool getScopeTraceOn(const string& scope);
|
||||||
static bool waive(FileLine* filelinep, V3ErrorCode code, const string& message);
|
static bool waive(FileLine* filelinep, V3ErrorCode code, const string& message);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -25,9 +25,10 @@
|
|||||||
#include "verilated_trace_defs.h" // For VLT_TRACE_SCOPE_*
|
#include "verilated_trace_defs.h" // For VLT_TRACE_SCOPE_*
|
||||||
|
|
||||||
#include "V3Global.h"
|
#include "V3Global.h"
|
||||||
#include "V3TraceDecl.h"
|
#include "V3Config.h"
|
||||||
#include "V3EmitCBase.h"
|
#include "V3EmitCBase.h"
|
||||||
#include "V3Stats.h"
|
#include "V3Stats.h"
|
||||||
|
#include "V3TraceDecl.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
@ -140,10 +141,13 @@ private:
|
|||||||
return "Verilator trace_off";
|
return "Verilator trace_off";
|
||||||
} else if (!nodep->isTrace()) {
|
} else if (!nodep->isTrace()) {
|
||||||
return "Verilator instance trace_off";
|
return "Verilator instance trace_off";
|
||||||
} else if (!v3Global.opt.traceUnderscore()) {
|
} else {
|
||||||
const string prettyName = varp->prettyName();
|
const string prettyName = varp->prettyName();
|
||||||
if (!prettyName.empty() && prettyName[0] == '_') return "Leading underscore";
|
if (!v3Global.opt.traceUnderscore()) {
|
||||||
if (prettyName.find("._") != string::npos) return "Inlined leading underscore";
|
if (!prettyName.empty() && prettyName[0] == '_') return "Leading underscore";
|
||||||
|
if (prettyName.find("._") != string::npos) return "Inlined leading underscore";
|
||||||
|
}
|
||||||
|
if (!V3Config::getScopeTraceOn(prettyName)) return "Vlt scope trace_off";
|
||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
@ -138,12 +138,14 @@ vnum {vnum1}|{vnum2}|{vnum3}|{vnum4}|{vnum5}
|
|||||||
-?"-cost" { FL; return yVLT_D_COST; }
|
-?"-cost" { FL; return yVLT_D_COST; }
|
||||||
-?"-file" { FL; return yVLT_D_FILE; }
|
-?"-file" { FL; return yVLT_D_FILE; }
|
||||||
-?"-function" { FL; return yVLT_D_FUNCTION; }
|
-?"-function" { FL; return yVLT_D_FUNCTION; }
|
||||||
|
-?"-levels" { FL; return yVLT_D_LEVELS; }
|
||||||
-?"-lines" { FL; return yVLT_D_LINES; }
|
-?"-lines" { FL; return yVLT_D_LINES; }
|
||||||
-?"-match" { FL; return yVLT_D_MATCH; }
|
-?"-match" { FL; return yVLT_D_MATCH; }
|
||||||
-?"-model" { FL; return yVLT_D_MODEL; }
|
-?"-model" { FL; return yVLT_D_MODEL; }
|
||||||
-?"-module" { FL; return yVLT_D_MODULE; }
|
-?"-module" { FL; return yVLT_D_MODULE; }
|
||||||
-?"-mtask" { FL; return yVLT_D_MTASK; }
|
-?"-mtask" { FL; return yVLT_D_MTASK; }
|
||||||
-?"-rule" { FL; return yVLT_D_RULE; }
|
-?"-rule" { FL; return yVLT_D_RULE; }
|
||||||
|
-?"-scope" { FL; return yVLT_D_SCOPE; }
|
||||||
-?"-task" { FL; return yVLT_D_TASK; }
|
-?"-task" { FL; return yVLT_D_TASK; }
|
||||||
-?"-var" { FL; return yVLT_D_VAR; }
|
-?"-var" { FL; return yVLT_D_VAR; }
|
||||||
|
|
||||||
|
9001
src/verilog.y
9001
src/verilog.y
File diff suppressed because it is too large
Load Diff
@ -40,7 +40,7 @@ public:
|
|||||||
__LINE__, m_info.product);
|
__LINE__, m_info.product);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
~TestSimulator() {}
|
~TestSimulator() = default;
|
||||||
// METHORS
|
// METHORS
|
||||||
private:
|
private:
|
||||||
static TestSimulator& singleton() {
|
static TestSimulator& singleton() {
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
class t_extend_class_c {
|
class t_extend_class_c {
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
t_extend_class_c() {}
|
t_extend_class_c() = default;
|
||||||
~t_extend_class_c() {}
|
~t_extend_class_c() = default;
|
||||||
// METHODS
|
// METHODS
|
||||||
// This function will be called from a instance created in Verilog
|
// This function will be called from a instance created in Verilog
|
||||||
inline uint32_t my_math(uint32_t in) { return in + 1; }
|
inline uint32_t my_math(uint32_t in) { return in + 1; }
|
||||||
|
157
test_regress/t/t_trace_scope_vlt.out
Normal file
157
test_regress/t/t_trace_scope_vlt.out
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
$version Generated by VerilatedVcd $end
|
||||||
|
$date Thu May 12 22:13:21 2022 $end
|
||||||
|
$timescale 1ps $end
|
||||||
|
|
||||||
|
$scope module top $end
|
||||||
|
$var wire 1 ) clk $end
|
||||||
|
$scope module t $end
|
||||||
|
$var wire 1 ) clk $end
|
||||||
|
$scope module sub1a $end
|
||||||
|
$var wire 32 * ADD [31:0] $end
|
||||||
|
$var wire 32 # cyc [31:0] $end
|
||||||
|
$var wire 32 $ value [31:0] $end
|
||||||
|
$upscope $end
|
||||||
|
$scope module sub1b $end
|
||||||
|
$var wire 32 + ADD [31:0] $end
|
||||||
|
$var wire 32 # cyc [31:0] $end
|
||||||
|
$var wire 32 % value [31:0] $end
|
||||||
|
$scope module sub2a $end
|
||||||
|
$var wire 32 # cyc [31:0] $end
|
||||||
|
$var wire 32 & value [31:0] $end
|
||||||
|
$upscope $end
|
||||||
|
$scope module sub2b $end
|
||||||
|
$var wire 32 , ADD [31:0] $end
|
||||||
|
$var wire 32 # cyc [31:0] $end
|
||||||
|
$var wire 32 ' value [31:0] $end
|
||||||
|
$upscope $end
|
||||||
|
$scope module sub2c $end
|
||||||
|
$var wire 32 - ADD [31:0] $end
|
||||||
|
$var wire 32 # cyc [31:0] $end
|
||||||
|
$var wire 32 ( value [31:0] $end
|
||||||
|
$upscope $end
|
||||||
|
$upscope $end
|
||||||
|
$upscope $end
|
||||||
|
$upscope $end
|
||||||
|
$enddefinitions $end
|
||||||
|
|
||||||
|
|
||||||
|
#0
|
||||||
|
b00000000000000000000000000000000 #
|
||||||
|
b00000000000000000000000000001010 $
|
||||||
|
b00000000000000000000000000010100 %
|
||||||
|
b00000000000000000000000000010101 &
|
||||||
|
b00000000000000000000000000010110 '
|
||||||
|
b00000000000000000000000000010111 (
|
||||||
|
0)
|
||||||
|
b00000000000000000000000000001010 *
|
||||||
|
b00000000000000000000000000010100 +
|
||||||
|
b00000000000000000000000000010110 ,
|
||||||
|
b00000000000000000000000000010111 -
|
||||||
|
#10
|
||||||
|
b00000000000000000000000000000001 #
|
||||||
|
b00000000000000000000000000001011 $
|
||||||
|
b00000000000000000000000000010101 %
|
||||||
|
b00000000000000000000000000010110 &
|
||||||
|
b00000000000000000000000000010111 '
|
||||||
|
b00000000000000000000000000011000 (
|
||||||
|
1)
|
||||||
|
#15
|
||||||
|
0)
|
||||||
|
#20
|
||||||
|
b00000000000000000000000000000010 #
|
||||||
|
b00000000000000000000000000001100 $
|
||||||
|
b00000000000000000000000000010110 %
|
||||||
|
b00000000000000000000000000010111 &
|
||||||
|
b00000000000000000000000000011000 '
|
||||||
|
b00000000000000000000000000011001 (
|
||||||
|
1)
|
||||||
|
#25
|
||||||
|
0)
|
||||||
|
#30
|
||||||
|
b00000000000000000000000000000011 #
|
||||||
|
b00000000000000000000000000001101 $
|
||||||
|
b00000000000000000000000000010111 %
|
||||||
|
b00000000000000000000000000011000 &
|
||||||
|
b00000000000000000000000000011001 '
|
||||||
|
b00000000000000000000000000011010 (
|
||||||
|
1)
|
||||||
|
#35
|
||||||
|
0)
|
||||||
|
#40
|
||||||
|
b00000000000000000000000000000100 #
|
||||||
|
b00000000000000000000000000001110 $
|
||||||
|
b00000000000000000000000000011000 %
|
||||||
|
b00000000000000000000000000011001 &
|
||||||
|
b00000000000000000000000000011010 '
|
||||||
|
b00000000000000000000000000011011 (
|
||||||
|
1)
|
||||||
|
#45
|
||||||
|
0)
|
||||||
|
#50
|
||||||
|
b00000000000000000000000000000101 #
|
||||||
|
b00000000000000000000000000001111 $
|
||||||
|
b00000000000000000000000000011001 %
|
||||||
|
b00000000000000000000000000011010 &
|
||||||
|
b00000000000000000000000000011011 '
|
||||||
|
b00000000000000000000000000011100 (
|
||||||
|
1)
|
||||||
|
#55
|
||||||
|
0)
|
||||||
|
#60
|
||||||
|
b00000000000000000000000000000110 #
|
||||||
|
b00000000000000000000000000010000 $
|
||||||
|
b00000000000000000000000000011010 %
|
||||||
|
b00000000000000000000000000011011 &
|
||||||
|
b00000000000000000000000000011100 '
|
||||||
|
b00000000000000000000000000011101 (
|
||||||
|
1)
|
||||||
|
#65
|
||||||
|
0)
|
||||||
|
#70
|
||||||
|
b00000000000000000000000000000111 #
|
||||||
|
b00000000000000000000000000010001 $
|
||||||
|
b00000000000000000000000000011011 %
|
||||||
|
b00000000000000000000000000011100 &
|
||||||
|
b00000000000000000000000000011101 '
|
||||||
|
b00000000000000000000000000011110 (
|
||||||
|
1)
|
||||||
|
#75
|
||||||
|
0)
|
||||||
|
#80
|
||||||
|
b00000000000000000000000000001000 #
|
||||||
|
b00000000000000000000000000010010 $
|
||||||
|
b00000000000000000000000000011100 %
|
||||||
|
b00000000000000000000000000011101 &
|
||||||
|
b00000000000000000000000000011110 '
|
||||||
|
b00000000000000000000000000011111 (
|
||||||
|
1)
|
||||||
|
#85
|
||||||
|
0)
|
||||||
|
#90
|
||||||
|
b00000000000000000000000000001001 #
|
||||||
|
b00000000000000000000000000010011 $
|
||||||
|
b00000000000000000000000000011101 %
|
||||||
|
b00000000000000000000000000011110 &
|
||||||
|
b00000000000000000000000000011111 '
|
||||||
|
b00000000000000000000000000100000 (
|
||||||
|
1)
|
||||||
|
#95
|
||||||
|
0)
|
||||||
|
#100
|
||||||
|
b00000000000000000000000000001010 #
|
||||||
|
b00000000000000000000000000010100 $
|
||||||
|
b00000000000000000000000000011110 %
|
||||||
|
b00000000000000000000000000011111 &
|
||||||
|
b00000000000000000000000000100000 '
|
||||||
|
b00000000000000000000000000100001 (
|
||||||
|
1)
|
||||||
|
#105
|
||||||
|
0)
|
||||||
|
#110
|
||||||
|
b00000000000000000000000000001011 #
|
||||||
|
b00000000000000000000000000010101 $
|
||||||
|
b00000000000000000000000000011111 %
|
||||||
|
b00000000000000000000000000100000 &
|
||||||
|
b00000000000000000000000000100001 '
|
||||||
|
b00000000000000000000000000100010 (
|
||||||
|
1)
|
26
test_regress/t/t_trace_scope_vlt.pl
Executable file
26
test_regress/t/t_trace_scope_vlt.pl
Executable file
@ -0,0 +1,26 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||||||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||||
|
#
|
||||||
|
# Copyright 2003-2009 by Wilson Snyder. This program is free software; you
|
||||||
|
# can redistribute it and/or modify it under the terms of either the GNU
|
||||||
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
||||||
|
# Version 2.0.
|
||||||
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||||||
|
|
||||||
|
scenarios(vlt_all => 1);
|
||||||
|
|
||||||
|
top_filename("t/t_trace_scope_vlt.v");
|
||||||
|
|
||||||
|
compile(
|
||||||
|
v_flags2 => ["--trace t/t_trace_scope_vlt.vlt"],
|
||||||
|
);
|
||||||
|
|
||||||
|
execute(
|
||||||
|
check_finished => 1,
|
||||||
|
);
|
||||||
|
|
||||||
|
vcd_identical("$Self->{obj_dir}/simx.vcd", $Self->{golden_filename});
|
||||||
|
|
||||||
|
ok(1);
|
||||||
|
1;
|
42
test_regress/t/t_trace_scope_vlt.v
Normal file
42
test_regress/t/t_trace_scope_vlt.v
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
||||||
|
// any use, without warranty, 2022 by Wilson Snyder.
|
||||||
|
// SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
module t (/*AUTOARG*/
|
||||||
|
// Inputs
|
||||||
|
clk
|
||||||
|
);
|
||||||
|
|
||||||
|
input clk;
|
||||||
|
int cyc;
|
||||||
|
|
||||||
|
sub1 #(10) sub1a (.*);
|
||||||
|
sub1 #(20) sub1b (.*);
|
||||||
|
|
||||||
|
always @ (posedge clk) begin
|
||||||
|
cyc <= cyc + 1;
|
||||||
|
if (cyc == 10) begin
|
||||||
|
$write("*-* All Finished *-*\n");
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module sub1 #(parameter int ADD)
|
||||||
|
(input int cyc);
|
||||||
|
|
||||||
|
wire int value = cyc + ADD;
|
||||||
|
|
||||||
|
sub2 #(ADD + 1) sub2a(.*);
|
||||||
|
sub2 #(ADD + 2) sub2b(.*);
|
||||||
|
sub2 #(ADD + 3) sub2c(.*);
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module sub2 #(parameter int ADD)
|
||||||
|
(input int cyc);
|
||||||
|
|
||||||
|
wire int value = cyc + ADD;
|
||||||
|
endmodule
|
13
test_regress/t/t_trace_scope_vlt.vlt
Normal file
13
test_regress/t/t_trace_scope_vlt.vlt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed into the Public Domain, for any use,
|
||||||
|
// without warranty, 2022 by Wilson Snyder.
|
||||||
|
// SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
`verilator_config
|
||||||
|
|
||||||
|
tracing_off -scope "t*" -levels 0
|
||||||
|
tracing_on -scope "t.clk"
|
||||||
|
tracing_on -scope "t.sub1a" -levels 1
|
||||||
|
tracing_on -scope "t.sub1b" -levels 2
|
||||||
|
tracing_off -scope "*.sub2a.ADD"
|
@ -1,7 +1,22 @@
|
|||||||
%Error: t/t_vlt_syntax_bad.vlt:9:20: sensitivity not expected for attribute
|
%Error: t/t_vlt_syntax_bad.vlt:9:20: sensitivity not expected for attribute
|
||||||
9 | public -module "t" @(posedge clk)
|
9 | public -module "t" @(posedge clk)
|
||||||
| ^
|
| ^
|
||||||
%Error: t/t_vlt_syntax_bad.vlt:10:1: isolate_assignments only applies to signals or functions/tasks
|
%Error: t/t_vlt_syntax_bad.vlt:11:1: isolate_assignments only applies to signals or functions/tasks
|
||||||
10 | isolate_assignments -module "t"
|
11 | isolate_assignments -module "t"
|
||||||
| ^~~~~~~~~~~~~~~~~~~
|
| ^~~~~~~~~~~~~~~~~~~
|
||||||
|
%Error: t/t_vlt_syntax_bad.vlt:13:1: Argument -match only supported for lint_off
|
||||||
|
13 | tracing_off --file "*" -match "nothing"
|
||||||
|
| ^~~~~~~~~~~
|
||||||
|
%Error: t/t_vlt_syntax_bad.vlt:15:1: Argument -scope only supported for tracing_on/off
|
||||||
|
15 | lint_off --rule UNOPTFLAT -scope "top*"
|
||||||
|
| ^~~~~~~~
|
||||||
|
%Error: t/t_vlt_syntax_bad.vlt:16:1: Argument -scope only supported for tracing_on/off_off
|
||||||
|
16 | lint_off --rule UNOPTFLAT -scope "top*" -levels 0
|
||||||
|
| ^~~~~~~~
|
||||||
|
%Error: t/t_vlt_syntax_bad.vlt:17:1: Argument -scope only supported for tracing_on/off
|
||||||
|
17 | lint_on --rule UNOPTFLAT -scope "top*"
|
||||||
|
| ^~~~~~~
|
||||||
|
%Error: t/t_vlt_syntax_bad.vlt:18:1: Argument -scope only supported for tracing_on/off_off
|
||||||
|
18 | lint_on --rule UNOPTFLAT -scope "top*" -levels 0
|
||||||
|
| ^~~~~~~
|
||||||
%Error: Exiting due to
|
%Error: Exiting due to
|
||||||
|
@ -7,4 +7,12 @@
|
|||||||
`verilator_config
|
`verilator_config
|
||||||
|
|
||||||
public -module "t" @(posedge clk)
|
public -module "t" @(posedge clk)
|
||||||
|
// only signals/functions/tasks
|
||||||
isolate_assignments -module "t"
|
isolate_assignments -module "t"
|
||||||
|
// -match not supported
|
||||||
|
tracing_off --file "*" -match "nothing"
|
||||||
|
// -scope not supported
|
||||||
|
lint_off --rule UNOPTFLAT -scope "top*"
|
||||||
|
lint_off --rule UNOPTFLAT -scope "top*" -levels 0
|
||||||
|
lint_on --rule UNOPTFLAT -scope "top*"
|
||||||
|
lint_on --rule UNOPTFLAT -scope "top*" -levels 0
|
||||||
|
@ -334,9 +334,14 @@ function(verilate TARGET)
|
|||||||
|
|
||||||
target_link_libraries(${TARGET} PUBLIC
|
target_link_libraries(${TARGET} PUBLIC
|
||||||
${${VERILATE_PREFIX}_USER_LDLIBS}
|
${${VERILATE_PREFIX}_USER_LDLIBS}
|
||||||
"$<$<BOOL:$<TARGET_PROPERTY:VERILATOR_THREADED>>:${VERILATOR_MT_CFLAGS}>"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (${VERILATE_PREFIX}_THREADS OR ${VERILATE_PREFIX}_TRACE_THREADS)
|
||||||
|
target_link_libraries(${TARGET} PUBLIC
|
||||||
|
${VERILATOR_MT_CFLAGS}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user