20#include <mlir/IR/BuiltinOps.h>
21#include <mlir/IR/Operation.h>
22#include <mlir/IR/OwningOpRef.h>
24#include <llvm/ADT/StringRef.h>
31 std::shared_ptr<std::pair<mlir::OwningOpRef<mlir::ModuleOp>, mlir::SymbolTableCollection>>;
42 mlir::Operation *
get();
43 mlir::Operation *
get()
const;
46 operator bool()
const;
52 bool viaInclude()
const {
return !includeSymNameStack.empty(); }
55 if (managedResources) {
56 return &managedResources->second;
63 void manage(mlir::OwningOpRef<mlir::ModuleOp> &&ptr, mlir::SymbolTableCollection &&tables);
76 std::vector<llvm::StringRef> includeSymNameStack;
89 const T
operator*()
const {
return llvm::dyn_cast<T>(*inner); }
90 T
get() {
return llvm::dyn_cast<T>(inner.get()); }
91 T
get()
const {
return llvm::dyn_cast<T>(inner.get()); }
93 operator bool()
const {
return inner && llvm::isa<T>(*inner); }
114 Within(mlir::Operation *op) : from(op) { assert(op &&
"cannot lookup within nullptr"); }
127 mlir::FailureOr<SymbolLookupResultUntyped>
lookup(
128 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin,
129 bool reportMissing =
true
133 std::variant<mlir::Operation *, SymbolLookupResultUntyped>
from;
137 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol,
Within &&lookupWithin,
138 mlir::Operation *origin,
bool reportMissing =
true
140 return std::move(lookupWithin).lookup(tables, symbol, origin, reportMissing);
144 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin,
145 bool reportMissing =
true
147 return Within().
lookup(tables, symbol, origin, reportMissing);
152 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol,
Within &&lookupWithin,
153 mlir::Operation *origin,
bool reportMissing =
true
155 auto found =
lookupSymbolIn(tables, symbol, std::move(lookupWithin), origin, reportMissing);
156 if (mlir::failed(found)) {
157 return mlir::failure();
160 mlir::Operation *op = found->get();
165 return origin->emitError() <<
"symbol \"" << symbol <<
"\" references a '" << op->getName()
166 <<
"' but expected a '" << T::getOperationName() <<
'\'';
168 return mlir::failure();
176 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin,
177 bool reportMissing =
true
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable from
mlir::SymbolTableCollection * getSymbolTableCache()
bool viaInclude() const
Return 'true' if at least one IncludeOp was traversed to load this result.
void manage(mlir::OwningOpRef< mlir::ModuleOp > &&ptr, mlir::SymbolTableCollection &&tables)
Adds a pointer to the set of resources the result has to manage the lifetime of.
std::vector< llvm::StringRef > getIncludeSymNames() const
Return the stack of symbol names from the IncludeOp that were traversed to load this result.
SymbolLookupResultUntyped()
void trackIncludeAsName(llvm::StringRef includeOpSymName)
Adds the symbol name from the IncludeOp that caused the module to be loaded.
bool operator==(const SymbolLookupResultUntyped &rhs) const
SymbolLookupResultUntyped(mlir::Operation *op)
mlir::Operation & operator*()
mlir::Operation * operator->()
Access the internal operation.
std::vector< llvm::StringRef > getIncludeSymNames() const
Return the stack of symbol names from the IncludeOp that were traversed to load this result.
const T operator*() const
bool viaInclude() const
Return 'true' if at least one IncludeOp was traversed to load this result.
bool operator==(const SymbolLookupResult< T > &rhs) const
T operator->()
Access the internal operation as type T.
SymbolLookupResult(SymbolLookupResultUntyped &&inner)
mlir::FailureOr< SymbolLookupResultUntyped > lookup(mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin, bool reportMissing=true) &&
Within(const Within &)=delete
Within()
Lookup within the top-level (root) module.
Within(SymbolLookupResultUntyped &&res)
Lookup within the Operation of the given result and transfer managed resources.
Within & operator=(const Within &)=delete
Within(mlir::Operation *op)
Lookup within the given Operation (cannot be nullptr)
Within(SymbolLookupResult< T > &&res)
Lookup within the Operation of the given result and transfer managed resources.
mlir::FailureOr< SymbolLookupResultUntyped > lookupTopLevelSymbol(mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin, bool reportMissing=true)
std::shared_ptr< std::pair< mlir::OwningOpRef< mlir::ModuleOp >, mlir::SymbolTableCollection > > ManagedResources
mlir::FailureOr< SymbolLookupResultUntyped > lookupSymbolIn(mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, Within &&lookupWithin, mlir::Operation *origin, bool reportMissing=true)