14#include <mlir/Interfaces/CallInterfaces.h>
29llvm::SmallVector<mlir::StringRef>
getNames(mlir::SymbolRefAttr ref);
30llvm::SmallVector<mlir::FlatSymbolRefAttr>
getPieces(mlir::SymbolRefAttr ref);
33inline mlir::FlatSymbolRefAttr
35 return mlir::FlatSymbolRefAttr::get(mlir::StringAttr::get(context, twine));
39inline mlir::SymbolRefAttr
asSymbolRefAttr(mlir::StringAttr root, mlir::SymbolRefAttr tail) {
40 return mlir::SymbolRefAttr::get(root,
getPieces(tail));
44inline mlir::SymbolRefAttr
asSymbolRefAttr(llvm::ArrayRef<mlir::FlatSymbolRefAttr> path) {
45 return mlir::SymbolRefAttr::get(path.front().getAttr(), path.drop_front());
49inline mlir::SymbolRefAttr
asSymbolRefAttr(std::vector<mlir::FlatSymbolRefAttr> path) {
60 return mlir::SymbolRefAttr::get(
61 symbol.getRootReference(), symbol.getNestedReferences().drop_back()
66mlir::SymbolRefAttr
replaceLeaf(mlir::SymbolRefAttr orig, mlir::FlatSymbolRefAttr newLeaf);
67inline mlir::SymbolRefAttr
replaceLeaf(mlir::SymbolRefAttr orig, mlir::StringAttr newLeaf) {
68 return replaceLeaf(orig, mlir::FlatSymbolRefAttr::get(newLeaf));
70inline mlir::SymbolRefAttr
replaceLeaf(mlir::SymbolRefAttr orig,
const mlir::Twine &newLeaf) {
71 return replaceLeaf(orig, mlir::StringAttr::get(orig.getContext(), newLeaf));
75mlir::SymbolRefAttr
appendLeaf(mlir::SymbolRefAttr orig, mlir::FlatSymbolRefAttr newLeaf);
76inline mlir::SymbolRefAttr
appendLeaf(mlir::SymbolRefAttr orig, mlir::StringAttr newLeaf) {
77 return appendLeaf(orig, mlir::FlatSymbolRefAttr::get(newLeaf));
79inline mlir::SymbolRefAttr
appendLeaf(mlir::SymbolRefAttr orig,
const mlir::Twine &newLeaf) {
80 return appendLeaf(orig, mlir::StringAttr::get(orig.getContext(), newLeaf));
85mlir::SymbolRefAttr
appendLeafName(mlir::SymbolRefAttr orig,
const mlir::Twine &newLeafSuffix);
103inline mlir::FailureOr<SymbolLookupResult<T>>
104resolveCallable(mlir::SymbolTableCollection &symbolTable, mlir::CallOpInterface call) {
105 mlir::CallInterfaceCallable callable = call.getCallableForCallee();
106 if (
auto symbolVal = llvm::dyn_cast<mlir::Value>(callable)) {
114 auto symbolRef = callable.get<mlir::SymbolRefAttr>();
115 mlir::Operation *op = symbolTable.lookupNearestSymbolFrom(call.getOperation(), symbolRef);
125inline mlir::FailureOr<SymbolLookupResult<T>>
resolveCallable(mlir::CallOpInterface call) {
126 mlir::SymbolTableCollection symbolTable;
135 mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr param, mlir::Type structOrArrayType,
136 mlir::Operation *origin
142 mlir::SymbolTableCollection &tables, mlir::ArrayRef<mlir::Attribute> tyParams,
143 mlir::Type structOrArrayType, mlir::Operation *origin
156template <std::ranges::input_range Range>
158 mlir::SymbolTableCollection &tables, mlir::Operation *origin,
const Range &types
162 for (
const auto &t : types) {
165 return mlir::LogicalResult::failure(failed);
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
This file defines methods symbol lookup across LLZK operations and included files.
mlir::SymbolRefAttr getPrefixAsSymbolRefAttr(mlir::SymbolRefAttr symbol)
Return SymbolRefAttr like the one given but with the leaf/final element removed.
FailureOr< SymbolRefAttr > getPathFromRoot(StructDefOp &to)
SymbolRefAttr appendLeafName(SymbolRefAttr orig, const Twine &newLeafSuffix)
bool hasUsesWithin(Operation *symbol, Operation *from)
mlir::FlatSymbolRefAttr getFlatSymbolRefAttr(mlir::MLIRContext *context, const mlir::Twine &twine)
Construct a FlatSymbolRefAttr with the given content.
mlir::FailureOr< SymbolLookupResultUntyped > lookupTopLevelSymbol(mlir::SymbolTableCollection &tables, mlir::SymbolRefAttr symbol, mlir::Operation *origin, bool reportMissing=true)
llvm::SmallVector< StringRef > getNames(SymbolRefAttr ref)
FailureOr< ModuleOp > getRootModule(Operation *from)
SymbolRefAttr appendLeaf(SymbolRefAttr orig, FlatSymbolRefAttr newLeaf)
SymbolRefAttr replaceLeaf(SymbolRefAttr orig, FlatSymbolRefAttr newLeaf)
FailureOr< StructDefOp > verifyStructTypeResolution(SymbolTableCollection &tables, StructType ty, Operation *origin)
FailureOr< SymbolRefAttr > getPathFromTopRoot(StructDefOp &to)
mlir::FailureOr< SymbolLookupResult< T > > resolveCallable(mlir::SymbolTableCollection &symbolTable, mlir::CallOpInterface call)
Based on mlir::CallOpInterface::resolveCallable, but using LLZK lookup helpers.
FailureOr< ModuleOp > getTopRootModule(Operation *from)
LogicalResult verifyTypeResolution(SymbolTableCollection &tables, Operation *origin, Type ty)
LogicalResult verifyParamsOfType(SymbolTableCollection &tables, ArrayRef< Attribute > tyParams, Type parameterizedType, Operation *origin)
mlir::SymbolRefAttr asSymbolRefAttr(mlir::StringAttr root, mlir::SymbolRefAttr tail)
Build a SymbolRefAttr that prepends tail with root, i.e. root::tail.
mlir::SymbolRefAttr getTailAsSymbolRefAttr(mlir::SymbolRefAttr symbol)
Return SymbolRefAttr like the one given but with the root/head element removed.
LogicalResult verifyParamOfType(SymbolTableCollection &tables, SymbolRefAttr param, Type parameterizedType, Operation *origin)
llvm::SmallVector< FlatSymbolRefAttr > getPieces(SymbolRefAttr ref)