CIRCT
20.0.0git
|
A namespace that is used to store existing names and generate new names in some scope within the IR. More...
#include <Namespace.h>
Public Member Functions | |
Namespace () | |
Namespace (const Namespace &other)=default | |
Namespace (Namespace &&other) | |
Namespace & | operator= (const Namespace &other)=default |
Namespace & | operator= (Namespace &&other) |
void | add (mlir::ModuleOp module) |
void | add (SymbolCache &symCache) |
SymbolCache initializer; initialize from every key that is convertible to a StringAttr in the SymbolCache. More... | |
bool | erase (llvm::StringRef symbol) |
Removes a symbol from the namespace. More... | |
void | clear () |
Empty the namespace. More... | |
StringRef | newName (const Twine &name) |
Return a unique name, derived from the input name , and add the new name to the internal namespace. More... | |
StringRef | newName (const Twine &name, const Twine &suffix) |
Return a unique name, derived from the input name and ensure the returned name has the input suffix . More... | |
Protected Attributes | |
llvm::StringMap< size_t > | nextIndex |
bool | locked = false |
A namespace that is used to store existing names and generate new names in some scope within the IR.
This exists to work around limitations of SymbolTables. This acts as a base class providing facilities common to all namespaces implementations.
Definition at line 30 of file Namespace.h.
|
inline |
Definition at line 32 of file Namespace.h.
References nextIndex.
|
default |
|
inline |
Definition at line 38 of file Namespace.h.
|
inline |
Definition at line 48 of file Namespace.h.
References assert(), and nextIndex.
Referenced by circt::SMTGlobalsHandler::create(), circt::FirMemLowering::FirMemLowering(), LowerDPIFunc::LowerDPIFunc(), circt::ExportVerilog::lowerHWInstanceChoices(), and circt::SMTGlobalsHandler::SMTGlobalsHandler().
|
inline |
SymbolCache initializer; initialize from every key that is convertible to a StringAttr in the SymbolCache.
Definition at line 58 of file Namespace.h.
References nextIndex.
|
inline |
|
inline |
Removes a symbol from the namespace.
Returns true if the symbol was removed, false if the symbol was not found. This is only allowed to be called before any call to newName.
Definition at line 67 of file Namespace.h.
|
inline |
Return a unique name, derived from the input name
, and add the new name to the internal namespace.
There are two possible outcomes for the returned name:
_<n>
suffix where <n>
is a number starting from 0
and incrementing by one each time (_0
, ...). Definition at line 85 of file Namespace.h.
References locked, and nextIndex.
Referenced by circt::firrtl::applyGCTMemTaps(), circt::SMTGlobalsHandler::create(), circt::FirMemLowering::createMemoryModule(), createModuleForCut(), circt::ExportVerilog::lowerHWInstanceChoices(), LowerLayersPass::preprocessLayers(), ModuleNameSanitizer::rewrite(), and LowerLayersPass::runOnOperation().
|
inline |
Return a unique name, derived from the input name
and ensure the returned name has the input suffix
.
Also add the new name to the internal namespace. There are two possible outcomes for the returned name:
_<suffix>
is returned._<n>_<suffix>
where <n>
is a number starting from 0
and incrementing by one each time. Definition at line 119 of file Namespace.h.
Definition at line 42 of file Namespace.h.
|
protected |
Definition at line 164 of file Namespace.h.
Referenced by clear(), erase(), newName(), and operator=().
|
protected |
Definition at line 159 of file Namespace.h.
Referenced by circt::firrtl::CircuitNamespace::add(), add(), circt::hw::InnerSymbolNamespace::add(), clear(), erase(), Namespace(), newName(), and operator=().