MLIR
20.0.0git
|
This class represents a collection of SymbolTable
s.
More...
#include "mlir/IR/SymbolTable.h"
Public Member Functions | |
Operation * | lookupSymbolIn (Operation *symbolTableOp, StringAttr symbol) |
Look up a symbol with the specified name within the specified symbol table operation, returning null if no such name exists. More... | |
Operation * | lookupSymbolIn (Operation *symbolTableOp, SymbolRefAttr name) |
template<typename T , typename NameT > | |
T | lookupSymbolIn (Operation *symbolTableOp, NameT &&name) |
LogicalResult | lookupSymbolIn (Operation *symbolTableOp, SymbolRefAttr name, SmallVectorImpl< Operation * > &symbols) |
A variant of 'lookupSymbolIn' that returns all of the symbols referenced by a given SymbolRefAttr when resolved within the provided symbol table operation. More... | |
Operation * | lookupNearestSymbolFrom (Operation *from, StringAttr symbol) |
Returns the operation registered with the given symbol name within the closest parent operation of, or including, 'from' with the 'OpTrait::SymbolTable' trait. More... | |
Operation * | lookupNearestSymbolFrom (Operation *from, SymbolRefAttr symbol) |
template<typename T > | |
T | lookupNearestSymbolFrom (Operation *from, StringAttr symbol) |
template<typename T > | |
T | lookupNearestSymbolFrom (Operation *from, SymbolRefAttr symbol) |
SymbolTable & | getSymbolTable (Operation *op) |
Lookup, or create, a symbol table for an operation. More... | |
Friends | |
class | LockedSymbolTableCollection |
This class represents a collection of SymbolTable
s.
This simplifies certain algorithms that run recursively on nested symbol tables. Symbol tables are constructed lazily to reduce the upfront cost of constructing unnecessary tables.
Definition at line 283 of file SymbolTable.h.
SymbolTable & SymbolTableCollection::getSymbolTable | ( | Operation * | op | ) |
Lookup, or create, a symbol table for an operation.
Definition at line 990 of file SymbolTable.cpp.
Referenced by lookupSymbolIn().
Returns the operation registered with the given symbol name within the closest parent operation of, or including, 'from' with the 'OpTrait::SymbolTable' trait.
Returns nullptr if no valid symbol was found.
Definition at line 977 of file SymbolTable.cpp.
References mlir::SymbolTable::getNearestSymbolTable(), and lookupSymbolIn().
Referenced by mlir::mesh::getMeshOrNull(), lookupNearestSymbolFrom(), mlir::irdl::lookupSymbolNearDialect(), mlir::call_interface_impl::resolveCallable(), verifySymbolAttrUse(), and walkReferencedSymbolNodes().
|
inline |
Definition at line 308 of file SymbolTable.h.
References lookupNearestSymbolFrom().
Operation * SymbolTableCollection::lookupNearestSymbolFrom | ( | Operation * | from, |
SymbolRefAttr | symbol | ||
) |
Definition at line 983 of file SymbolTable.cpp.
References mlir::SymbolTable::getNearestSymbolTable(), and lookupSymbolIn().
|
inline |
Definition at line 312 of file SymbolTable.h.
References lookupNearestSymbolFrom().
|
inline |
Definition at line 290 of file SymbolTable.h.
References lookupSymbolIn().
Look up a symbol with the specified name within the specified symbol table operation, returning null if no such name exists.
Definition at line 949 of file SymbolTable.cpp.
References getSymbolTable(), and mlir::SymbolTable::lookup().
Referenced by lookupNearestSymbolFrom(), lookupSymbolIn(), mlir::SymbolUserMap::replaceAllUsesWith(), mlir::AsmParserState::Impl::resolveSymbolUses(), and mlir::SymbolUserMap::SymbolUserMap().
Definition at line 953 of file SymbolTable.cpp.
References lookupSymbolIn().
LogicalResult SymbolTableCollection::lookupSymbolIn | ( | Operation * | symbolTableOp, |
SymbolRefAttr | name, | ||
SmallVectorImpl< Operation * > & | symbols | ||
) |
A variant of 'lookupSymbolIn' that returns all of the symbols referenced by a given SymbolRefAttr when resolved within the provided symbol table operation.
A variant of 'lookupSymbolIn' that returns all of the symbols referenced by a given SymbolRefAttr.
Returns failure if any of the nested references could not be resolved.
Definition at line 964 of file SymbolTable.cpp.
References lookupSymbolIn(), and lookupSymbolInImpl().
|
friend |
Definition at line 320 of file SymbolTable.h.