forked from github/verilator
For performance, use unordered_set/map where possible. No functional change intended.
This commit is contained in:
parent
085ef5fc05
commit
f2d8e45d72
@ -32,6 +32,7 @@
|
|||||||
#include <memory>
|
#include <memory>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <unordered_set>
|
||||||
|
|
||||||
//===================================================================
|
//===================================================================
|
||||||
// String formatters (required by below containers)
|
// String formatters (required by below containers)
|
||||||
@ -267,7 +268,7 @@ public:
|
|||||||
void shuffle() { std::shuffle(m_deque.begin(), m_deque.end(), VlURNG()); }
|
void shuffle() { std::shuffle(m_deque.begin(), m_deque.end(), VlURNG()); }
|
||||||
VlQueue unique() const {
|
VlQueue unique() const {
|
||||||
VlQueue out;
|
VlQueue out;
|
||||||
std::set<T_Value> saw;
|
std::unordered_set<T_Value> saw;
|
||||||
for (const auto& i : m_deque) {
|
for (const auto& i : m_deque) {
|
||||||
auto it = saw.find(i);
|
auto it = saw.find(i);
|
||||||
if (it == saw.end()) {
|
if (it == saw.end()) {
|
||||||
@ -280,7 +281,7 @@ public:
|
|||||||
VlQueue<IData> unique_index() const {
|
VlQueue<IData> unique_index() const {
|
||||||
VlQueue<IData> out;
|
VlQueue<IData> out;
|
||||||
IData index = 0;
|
IData index = 0;
|
||||||
std::set<T_Value> saw;
|
std::unordered_set<T_Value> saw;
|
||||||
for (const auto& i : m_deque) {
|
for (const auto& i : m_deque) {
|
||||||
auto it = saw.find(i);
|
auto it = saw.find(i);
|
||||||
if (it == saw.end()) {
|
if (it == saw.end()) {
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
#include "verilated_sym_props.h"
|
#include "verilated_sym_props.h"
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <unordered_map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
//======================================================================
|
//======================================================================
|
||||||
@ -58,7 +59,8 @@ public:
|
|||||||
|
|
||||||
typedef std::vector<const VerilatedScope*> VerilatedScopeVector;
|
typedef std::vector<const VerilatedScope*> VerilatedScopeVector;
|
||||||
|
|
||||||
class VerilatedHierarchyMap final : public std::map<const VerilatedScope*, VerilatedScopeVector> {
|
class VerilatedHierarchyMap final
|
||||||
|
: public std::unordered_map<const VerilatedScope*, VerilatedScopeVector> {
|
||||||
public:
|
public:
|
||||||
VerilatedHierarchyMap() = default;
|
VerilatedHierarchyMap() = default;
|
||||||
~VerilatedHierarchyMap() = default;
|
~VerilatedHierarchyMap() = default;
|
||||||
|
@ -497,7 +497,7 @@ public:
|
|||||||
assertOneCheck();
|
assertOneCheck();
|
||||||
VpioCbList& cbObjList = s_s.m_cbObjLists[cbValueChange];
|
VpioCbList& cbObjList = s_s.m_cbObjLists[cbValueChange];
|
||||||
bool called = false;
|
bool called = false;
|
||||||
typedef std::set<VerilatedVpioVar*> VpioVarSet;
|
typedef std::unordered_set<VerilatedVpioVar*> VpioVarSet;
|
||||||
VpioVarSet 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
|
||||||
|
@ -98,7 +98,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::map<const AstVarScope*, int> ScopeVecMap;
|
typedef std::unordered_map<const AstVarScope*, int> ScopeVecMap;
|
||||||
ScopeVecMap m_scopeVecMap; // Next var number for each scope
|
ScopeVecMap m_scopeVecMap; // Next var number for each scope
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
|
@ -109,7 +109,7 @@ class EmitCSyms final : EmitCBaseVisitor {
|
|||||||
int m_numStmts = 0; // Number of statements output
|
int m_numStmts = 0; // Number of statements output
|
||||||
int m_funcNum = 0; // CFunc split function number
|
int m_funcNum = 0; // CFunc split function number
|
||||||
V3OutCFile* m_ofpBase = nullptr; // Base (not split) C file
|
V3OutCFile* m_ofpBase = nullptr; // Base (not split) C file
|
||||||
std::map<int, bool> m_usesVfinal; // Split method uses __Vfinal
|
std::unordered_map<int, bool> m_usesVfinal; // Split method uses __Vfinal
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
void emitSymHdr();
|
void emitSymHdr();
|
||||||
|
@ -906,7 +906,7 @@ void GateVisitor::optimizeElimVar(AstVarScope* varscp, AstNode* substp, AstNode*
|
|||||||
class GateDedupeHash final : public V3HashedUserSame {
|
class GateDedupeHash final : public V3HashedUserSame {
|
||||||
public:
|
public:
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::set<AstNode*> NodeSet;
|
typedef std::unordered_set<AstNode*> NodeSet;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
|
@ -335,7 +335,7 @@ void V3Graph::dumpDotFile(const string& filename, bool colorAsSubgraph) const {
|
|||||||
|
|
||||||
// We use a map here, as we don't want to corrupt anything (userp) in the graph,
|
// We use a map here, as we don't want to corrupt anything (userp) in the graph,
|
||||||
// and we don't care if this is slow.
|
// and we don't care if this is slow.
|
||||||
std::map<const V3GraphVertex*, int> numMap;
|
std::unordered_map<const V3GraphVertex*, int> numMap;
|
||||||
|
|
||||||
// Print vertices
|
// Print vertices
|
||||||
int n = 0;
|
int n = 0;
|
||||||
|
@ -294,7 +294,7 @@ private:
|
|||||||
UINFO(9, " On dfaState " << dfaStatep << endl);
|
UINFO(9, " On dfaState " << dfaStatep << endl);
|
||||||
|
|
||||||
// From this dfaState, what corresponding nfaStates have what inputs?
|
// From this dfaState, what corresponding nfaStates have what inputs?
|
||||||
std::set<int> inputs;
|
std::unordered_set<int> inputs;
|
||||||
// Foreach NFA state (this DFA state was formed from)
|
// Foreach NFA state (this DFA state was formed from)
|
||||||
for (V3GraphEdge* dfaEdgep = dfaStatep->outBeginp(); dfaEdgep;
|
for (V3GraphEdge* dfaEdgep = dfaStatep->outBeginp(); dfaEdgep;
|
||||||
dfaEdgep = dfaEdgep->outNextp()) {
|
dfaEdgep = dfaEdgep->outNextp()) {
|
||||||
|
@ -81,7 +81,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
typedef std::set<VxHolder, VxHolderCmp&> ReadyVertices;
|
typedef std::set<VxHolder, VxHolderCmp&> ReadyVertices;
|
||||||
typedef std::unordered_map<const V3GraphVertex*, VxHolder> WaitingVertices;
|
typedef std::map<const V3GraphVertex*, VxHolder> WaitingVertices;
|
||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
VxHolderCmp m_vxHolderCmp; // Vertext comparison functor
|
VxHolderCmp m_vxHolderCmp; // Vertext comparison functor
|
||||||
|
@ -153,7 +153,7 @@ void V3Hashed::dumpFile(const string& filename, bool tree) {
|
|||||||
const std::unique_ptr<std::ofstream> logp(V3File::new_ofstream(filename));
|
const std::unique_ptr<std::ofstream> logp(V3File::new_ofstream(filename));
|
||||||
if (logp->fail()) v3fatal("Can't write " << filename);
|
if (logp->fail()) v3fatal("Can't write " << filename);
|
||||||
|
|
||||||
std::map<int, int> dist;
|
std::unordered_map<int, int> dist;
|
||||||
|
|
||||||
V3Hash lasthash;
|
V3Hash lasthash;
|
||||||
int num_in_bucket = 0;
|
int num_in_bucket = 0;
|
||||||
|
@ -240,7 +240,7 @@ class HierBlockUsageCollectVisitor final : public AstNVisitor {
|
|||||||
AstUser1InUse m_inuser1;
|
AstUser1InUse m_inuser1;
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
typedef std::set<const AstModule*> ModuleSet;
|
typedef std::unordered_set<const AstModule*> ModuleSet;
|
||||||
V3HierBlockPlan* const m_planp;
|
V3HierBlockPlan* const m_planp;
|
||||||
AstModule* m_modp = nullptr; // The current module
|
AstModule* m_modp = nullptr; // The current module
|
||||||
AstModule* m_hierBlockp = nullptr; // The nearest parent module that is a hierarchical block
|
AstModule* m_hierBlockp = nullptr; // The nearest parent module that is a hierarchical block
|
||||||
@ -355,7 +355,8 @@ void V3HierBlockPlan::createPlan(AstNetlist* nodep) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
V3HierBlockPlan::HierVector V3HierBlockPlan::hierBlocksSorted() const {
|
V3HierBlockPlan::HierVector V3HierBlockPlan::hierBlocksSorted() const {
|
||||||
typedef std::map<const V3HierBlock*, std::set<const V3HierBlock*>> ChildrenMap;
|
typedef std::unordered_map<const V3HierBlock*, std::unordered_set<const V3HierBlock*>>
|
||||||
|
ChildrenMap;
|
||||||
ChildrenMap childrenOfHierBlock;
|
ChildrenMap childrenOfHierBlock;
|
||||||
|
|
||||||
HierVector sorted;
|
HierVector sorted;
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
#include <set>
|
#include <set>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
#include <unordered_set>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class AstNodeModule;
|
class AstNodeModule;
|
||||||
@ -40,8 +41,8 @@ class AstVar;
|
|||||||
class V3HierBlock final {
|
class V3HierBlock final {
|
||||||
public:
|
public:
|
||||||
typedef std::vector<AstVar*> GParams;
|
typedef std::vector<AstVar*> GParams;
|
||||||
typedef std::set<V3HierBlock*> HierBlockSet;
|
typedef std::unordered_set<V3HierBlock*> HierBlockSet;
|
||||||
typedef std::set<const AstNodeModule*> NodeModuleSet;
|
typedef std::unordered_set<const AstNodeModule*> NodeModuleSet;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// TYPES
|
// TYPES
|
||||||
@ -96,7 +97,7 @@ public:
|
|||||||
|
|
||||||
// Holds relashonship between AstNodeModule and V3HierBlock
|
// Holds relashonship between AstNodeModule and V3HierBlock
|
||||||
class V3HierBlockPlan final {
|
class V3HierBlockPlan final {
|
||||||
typedef std::map<const AstNodeModule*, V3HierBlock*> HierMap;
|
typedef std::unordered_map<const AstNodeModule*, V3HierBlock*> HierMap;
|
||||||
HierMap m_blocks;
|
HierMap m_blocks;
|
||||||
|
|
||||||
V3HierBlockPlan() = default;
|
V3HierBlockPlan() = default;
|
||||||
|
@ -74,10 +74,10 @@ private:
|
|||||||
|
|
||||||
// Within the context of a given module, LocalInstanceMap maps
|
// Within the context of a given module, LocalInstanceMap maps
|
||||||
// from child modules to the count of each child's local instantiations.
|
// from child modules to the count of each child's local instantiations.
|
||||||
typedef std::map<AstNodeModule*, int> LocalInstanceMap;
|
typedef std::unordered_map<AstNodeModule*, int> LocalInstanceMap;
|
||||||
|
|
||||||
// We keep a LocalInstanceMap for each module in the design
|
// We keep a LocalInstanceMap for each module in the design
|
||||||
std::map<AstNodeModule*, LocalInstanceMap> m_instances;
|
std::unordered_map<AstNodeModule*, LocalInstanceMap> m_instances;
|
||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
VL_DEBUG_FUNC; // Declare debug()
|
VL_DEBUG_FUNC; // Declare debug()
|
||||||
|
@ -123,7 +123,7 @@ class LifeBlock final {
|
|||||||
|
|
||||||
// LIFE MAP
|
// LIFE MAP
|
||||||
// For each basic block, we'll make a new map of what variables that if/else is changing
|
// For each basic block, we'll make a new map of what variables that if/else is changing
|
||||||
typedef std::map<AstVarScope*, LifeVarEntry> LifeMap;
|
typedef std::unordered_map<AstVarScope*, LifeVarEntry> LifeMap;
|
||||||
LifeMap m_map; // Current active lifetime map for current scope
|
LifeMap m_map; // Current active lifetime map for current scope
|
||||||
LifeBlock* m_aboveLifep; // Upper life, or nullptr
|
LifeBlock* m_aboveLifep; // Upper life, or nullptr
|
||||||
LifeState* m_statep; // Current global state
|
LifeState* m_statep; // Current global state
|
||||||
@ -278,7 +278,7 @@ private:
|
|||||||
|
|
||||||
// LIFE MAP
|
// LIFE MAP
|
||||||
// For each basic block, we'll make a new map of what variables that if/else is changing
|
// For each basic block, we'll make a new map of what variables that if/else is changing
|
||||||
typedef std::map<AstVarScope*, LifeVarEntry> LifeMap;
|
typedef std::unordered_map<AstVarScope*, LifeVarEntry> LifeMap;
|
||||||
// cppcheck-suppress memleak // cppcheck bug - it is deleted
|
// cppcheck-suppress memleak // cppcheck bug - it is deleted
|
||||||
LifeBlock* m_lifep; // Current active lifetime map for current scope
|
LifeBlock* m_lifep; // Current active lifetime map for current scope
|
||||||
|
|
||||||
|
@ -141,7 +141,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::multimap<string, VSymEnt*> NameScopeSymMap;
|
typedef std::multimap<string, VSymEnt*> NameScopeSymMap;
|
||||||
typedef std::map<VSymEnt*, VSymEnt*> ScopeAliasMap;
|
typedef std::unordered_map<VSymEnt*, VSymEnt*> ScopeAliasMap;
|
||||||
typedef std::set<std::pair<AstNodeModule*, string>> ImplicitNameSet;
|
typedef std::set<std::pair<AstNodeModule*, string>> ImplicitNameSet;
|
||||||
typedef std::vector<VSymEnt*> IfaceVarSyms;
|
typedef std::vector<VSymEnt*> IfaceVarSyms;
|
||||||
typedef std::vector<std::pair<AstIface*, VSymEnt*>> IfaceModSyms;
|
typedef std::vector<std::pair<AstIface*, VSymEnt*>> IfaceModSyms;
|
||||||
|
@ -45,7 +45,7 @@ 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::set<FileLine*> FileLineSet;
|
typedef std::unordered_set<FileLine*> FileLineSet;
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
AstVar* m_varp = nullptr; // Variable we're under
|
AstVar* m_varp = nullptr; // Variable we're under
|
||||||
|
@ -216,7 +216,7 @@ private:
|
|||||||
typedef std::deque<std::pair<AstIfaceRefDType*, AstIfaceRefDType*>> IfaceRefRefs;
|
typedef std::deque<std::pair<AstIfaceRefDType*, AstIfaceRefDType*>> IfaceRefRefs;
|
||||||
|
|
||||||
// STATE
|
// STATE
|
||||||
typedef std::map<const AstNode*, AstNode*> CloneMap;
|
typedef std::unordered_map<const AstNode*, AstNode*> CloneMap;
|
||||||
struct ModInfo {
|
struct ModInfo {
|
||||||
AstNodeModule* m_modp; // Module with specified name
|
AstNodeModule* m_modp; // Module with specified name
|
||||||
CloneMap m_cloneMap; // Map of old-varp -> new cloned varp
|
CloneMap m_cloneMap; // Map of old-varp -> new cloned varp
|
||||||
|
@ -61,7 +61,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
typedef std::deque<AstConst*> ConstDeque;
|
typedef std::deque<AstConst*> ConstDeque;
|
||||||
typedef std::map<const AstNodeDType*, ConstDeque> ConstPile;
|
typedef std::unordered_map<const AstNodeDType*, ConstDeque> ConstPile;
|
||||||
|
|
||||||
class SimulateVisitor VL_NOT_FINAL : public AstNVisitor {
|
class SimulateVisitor VL_NOT_FINAL : public AstNVisitor {
|
||||||
// Simulate a node tree, returning value of variables
|
// Simulate a node tree, returning value of variables
|
||||||
|
@ -23,8 +23,9 @@
|
|||||||
// No V3 headers here - this is a base class for Vlc etc
|
// No V3 headers here - this is a base class for Vlc etc
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <string>
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
#include <unordered_map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
//######################################################################
|
//######################################################################
|
||||||
|
@ -36,7 +36,7 @@ class VSymEnt;
|
|||||||
//######################################################################
|
//######################################################################
|
||||||
// Symbol table
|
// Symbol table
|
||||||
|
|
||||||
typedef std::set<const VSymEnt*> VSymConstMap;
|
typedef std::unordered_set<const VSymEnt*> VSymConstMap;
|
||||||
|
|
||||||
class VSymEnt final {
|
class VSymEnt final {
|
||||||
// Symbol table that can have a "superior" table for resolving upper references
|
// Symbol table that can have a "superior" table for resolving upper references
|
||||||
|
@ -104,7 +104,7 @@ private:
|
|||||||
|
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::map<std::pair<AstScope*, AstVar*>, AstVarScope*> VarToScopeMap;
|
typedef std::map<std::pair<AstScope*, AstVar*>, AstVarScope*> VarToScopeMap;
|
||||||
typedef std::map<const AstNodeFTask*, AstClass*> FuncToClassMap;
|
typedef std::unordered_map<const AstNodeFTask*, AstClass*> FuncToClassMap;
|
||||||
typedef std::vector<AstInitial*> Initials;
|
typedef std::vector<AstInitial*> Initials;
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
VarToScopeMap m_varToScopeMap; // Map for Var -> VarScope mappings
|
VarToScopeMap m_varToScopeMap; // Map for Var -> VarScope mappings
|
||||||
|
@ -329,7 +329,7 @@ class TristateVisitor final : public TristateBaseVisitor {
|
|||||||
|
|
||||||
// TYPES
|
// TYPES
|
||||||
typedef std::vector<AstVarRef*> RefVec;
|
typedef std::vector<AstVarRef*> RefVec;
|
||||||
typedef std::map<AstVar*, RefVec*> VarMap;
|
typedef std::unordered_map<AstVar*, RefVec*> VarMap;
|
||||||
enum : uint8_t {
|
enum : uint8_t {
|
||||||
U2_GRAPHING = 1, // bit[0] if did m_graphing visit
|
U2_GRAPHING = 1, // bit[0] if did m_graphing visit
|
||||||
U2_NONGRAPH = 2, // bit[1] if did !m_graphing visit
|
U2_NONGRAPH = 2, // bit[1] if did !m_graphing visit
|
||||||
|
Loading…
Reference in New Issue
Block a user