20#include <mlir/IR/BuiltinOps.h>
21#include <mlir/IR/Operation.h>
22#include <mlir/IR/OwningOpRef.h>
24#include <llvm/ADT/StringRef.h>
32 std::shared_ptr<std::pair<mlir::OwningOpRef<mlir::ModuleOp>, mlir::SymbolTableCollection>>;
43 mlir::Operation *
get();
44 mlir::Operation *
get()
const;
47 operator bool()
const;
53 bool viaInclude()
const {
return !includeSymNameStack.empty(); }
56 if (managedResources) {
57 return &managedResources->second;
64 void manage(mlir::OwningOpRef<mlir::ModuleOp> &&ptr, mlir::SymbolTableCollection &&tables);
77 std::vector<llvm::StringRef> includeSymNameStack;
90 const T
operator*()
const {
return llvm::dyn_cast<T>(*inner); }
91 T
get() {
return llvm::dyn_cast<T>(inner.get()); }
92 T
get()
const {
return llvm::dyn_cast<T>(inner.get()); }
94 operator bool()
const {
return inner && llvm::isa<T>(*inner); }
115 Within(mlir::Operation *op) : from(op) { assert(op &&
"cannot lookup within nullptr"); }
128 mlir::FailureOr<SymbolLookupResultUntyped>
lookup(
129 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin,
130 bool reportMissing =
true
134 std::variant<mlir::Operation *, SymbolLookupResultUntyped>
from;
138 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol,
Within &&lookupWithin,
139 mlir::Operation *origin,
bool reportMissing =
true
141 return std::move(lookupWithin).lookup(tables, symbol, origin, reportMissing);
145 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin,
146 bool reportMissing =
true
148 return Within().
lookup(tables, symbol, origin, reportMissing);
153 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol,
Within &&lookupWithin,
154 mlir::Operation *origin,
bool reportMissing =
true
156 auto found =
lookupSymbolIn(tables, symbol, std::move(lookupWithin), origin, reportMissing);
157 if (mlir::failed(found)) {
158 return mlir::failure();
161 mlir::Operation *op = found->get();
166 return origin->emitError() <<
"symbol \"" << symbol <<
"\" references a '" << op->getName()
167 <<
"' but expected a '" << T::getOperationName() <<
'\'';
169 return mlir::failure();
177 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin,
178 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 *opPtr)
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
SymbolLookupResult(SymbolLookupResultUntyped &&innerRes)
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.
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(Within &&other) noexcept
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)