mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Fix unsound temporary name generation in V3DfgRegularize
Sadly used to produce some conflicting names.
This commit is contained in:
parent
3a1355fb54
commit
a30930bdcc
@ -43,18 +43,13 @@ public:
|
|||||||
class V3DfgRegularizeContext final {
|
class V3DfgRegularizeContext final {
|
||||||
const std::string m_label; // Label to apply to stats
|
const std::string m_label; // Label to apply to stats
|
||||||
|
|
||||||
const std::string m_ident = [&]() {
|
// Used to generate unique names for different DFGs within the same hashed name
|
||||||
std::string ident = m_label;
|
std::unordered_map<std::string, uint32_t> m_multiplicity;
|
||||||
std::transform(ident.begin(), ident.end(), ident.begin(), [](unsigned char c) { //
|
|
||||||
return c == ' ' ? '_' : std::tolower(c);
|
|
||||||
});
|
|
||||||
return ident;
|
|
||||||
}();
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
VDouble0 m_temporariesIntroduced; // Number of temporaries introduced
|
VDouble0 m_temporariesIntroduced; // Number of temporaries introduced
|
||||||
|
|
||||||
const std::string& ident() const { return m_ident; }
|
std::string tmpNamePrefix(DfgGraph&); // Return prefix to use for given graph
|
||||||
|
|
||||||
explicit V3DfgRegularizeContext(const std::string& label)
|
explicit V3DfgRegularizeContext(const std::string& label)
|
||||||
: m_label{label} {}
|
: m_label{label} {}
|
||||||
|
@ -23,17 +23,25 @@
|
|||||||
|
|
||||||
#include "V3Dfg.h"
|
#include "V3Dfg.h"
|
||||||
#include "V3DfgPasses.h"
|
#include "V3DfgPasses.h"
|
||||||
#include "V3UniqueNames.h"
|
|
||||||
|
|
||||||
VL_DEFINE_DEBUG_FUNCTIONS;
|
VL_DEFINE_DEBUG_FUNCTIONS;
|
||||||
|
|
||||||
|
std::string V3DfgRegularizeContext::tmpNamePrefix(DfgGraph& dfg) {
|
||||||
|
V3Hash hash{dfg.modulep()->name()};
|
||||||
|
hash += m_label;
|
||||||
|
std::string name = hash.toString();
|
||||||
|
const uint32_t sequenceNumber = m_multiplicity[name]++;
|
||||||
|
name += '_' + std::to_string(sequenceNumber);
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
class DfgRegularize final {
|
class DfgRegularize final {
|
||||||
DfgGraph& m_dfg; // The graph being processed
|
DfgGraph& m_dfg; // The graph being processed
|
||||||
V3DfgRegularizeContext& m_ctx; // The optimization context for stats
|
V3DfgRegularizeContext& m_ctx; // The optimization context for stats
|
||||||
|
|
||||||
// For generating temporary names
|
// Prefix of temporary variable names
|
||||||
V3UniqueNames m_tmpNames{"__VdfgRegularize_" + m_ctx.ident() + "_" + m_dfg.modulep()->name()
|
const std::string m_tmpNamePrefix = "__VdfgRegularize_" + m_ctx.tmpNamePrefix(m_dfg) + '_';
|
||||||
+ "_tmp"};
|
size_t m_nTmps = 0; // Number of temporaries added to this graph - for variable names only
|
||||||
|
|
||||||
// Return canonical variable that can be used to hold the value of this vertex
|
// Return canonical variable that can be used to hold the value of this vertex
|
||||||
DfgVarPacked* getCanonicalVariable(DfgVertex* vtxp) {
|
DfgVarPacked* getCanonicalVariable(DfgVertex* vtxp) {
|
||||||
@ -72,7 +80,7 @@ class DfgRegularize final {
|
|||||||
|
|
||||||
// Add temporary AstVar to containing module
|
// Add temporary AstVar to containing module
|
||||||
FileLine* const flp = vtxp->fileline();
|
FileLine* const flp = vtxp->fileline();
|
||||||
const std::string name = m_tmpNames.get(vtxp->hash().toString());
|
const std::string name = m_tmpNamePrefix + std::to_string(m_nTmps++);
|
||||||
AstVar* const varp = new AstVar{flp, VVarType::MODULETEMP, name, vtxp->dtypep()};
|
AstVar* const varp = new AstVar{flp, VVarType::MODULETEMP, name, vtxp->dtypep()};
|
||||||
m_dfg.modulep()->addStmtsp(varp);
|
m_dfg.modulep()->addStmtsp(varp);
|
||||||
|
|
||||||
@ -85,9 +93,6 @@ class DfgRegularize final {
|
|||||||
: m_dfg{dfg}
|
: m_dfg{dfg}
|
||||||
, m_ctx{ctx} {
|
, m_ctx{ctx} {
|
||||||
|
|
||||||
// Used by DfgVertex::hash
|
|
||||||
const auto userDataInUse = m_dfg.userDataInUse();
|
|
||||||
|
|
||||||
// Ensure intermediate values used multiple times are written to variables
|
// Ensure intermediate values used multiple times are written to variables
|
||||||
for (DfgVertex *vtxp = m_dfg.opVerticesBeginp(), *nextp; vtxp; vtxp = nextp) {
|
for (DfgVertex *vtxp = m_dfg.opVerticesBeginp(), *nextp; vtxp; vtxp = nextp) {
|
||||||
nextp = vtxp->verticesNext();
|
nextp = vtxp->verticesNext();
|
||||||
|
Loading…
Reference in New Issue
Block a user