|
MLIR 22.0.0git
|
Default symbol cache implementation; stores associations between names (StringAttr's) to mlir::Operation's. More...
#include "mlir/Target/SMTLIB/SymCache.h"
Public Member Functions | |
| void | addDefinition (mlir::Attribute key, mlir::Operation *op) override |
| In the building phase, add symbols. | |
| mlir::Operation * | getDefinition (mlir::Attribute attr) const override |
| Lookup a definition for 'symbol' in the cache. | |
| SymbolCacheBase::Iterator | begin () override |
| SymbolCacheBase::Iterator | end () override |
| mlir::Operation * | getDefinition (mlir::FlatSymbolRefAttr symbol) const |
| Lookup a definition for 'symbol' in the cache. | |
| Public Member Functions inherited from mlir::SymbolCacheBase | |
| virtual | ~SymbolCacheBase () |
| void | addSymbol (mlir::SymbolOpInterface op) |
| Adds the symbol-defining 'op' to the cache. | |
| void | addDefinitions (mlir::Operation *top) |
| Populate the symbol cache with all symbol-defining operations within the 'top' operation. | |
| mlir::Operation * | getDefinition (mlir::FlatSymbolRefAttr symbol) const |
| Lookup a definition for 'symbol' in the cache. | |
Protected Attributes | |
| llvm::DenseMap< mlir::Attribute, mlir::Operation * > | symbolCache |
| This stores a lookup table from symbol attribute to the operation that defines it. | |
Additional Inherited Members | |
| Public Types inherited from mlir::SymbolCacheBase | |
| using | CacheItem = std::pair<mlir::Attribute, mlir::Operation *> |
| Iterator support through a pointer to some abstract cache. | |
Default symbol cache implementation; stores associations between names (StringAttr's) to mlir::Operation's.
Adding/getting definitions from the symbol cache is not thread safe. If this is required, synchronizing cache acccess should be ensured by the caller.
Definition at line 85 of file SymCache.h.
|
inlineoverridevirtual |
In the building phase, add symbols.
Implements mlir::SymbolCacheBase.
Definition at line 88 of file SymCache.h.
References symbolCache.
|
inlineoverridevirtual |
Implements mlir::SymbolCacheBase.
Definition at line 121 of file SymCache.h.
References symbolCache.
|
inlineoverridevirtual |
Implements mlir::SymbolCacheBase.
Definition at line 125 of file SymCache.h.
References symbolCache.
|
inlineoverridevirtual |
Lookup a definition for 'symbol' in the cache.
Implements mlir::SymbolCacheBase.
Definition at line 94 of file SymCache.h.
References symbolCache.
|
inline |
Lookup a definition for 'symbol' in the cache.
Definition at line 45 of file SymCache.h.
|
protected |
This stores a lookup table from symbol attribute to the operation that defines it.
Definition at line 104 of file SymCache.h.
Referenced by addDefinition(), begin(), end(), and getDefinition().