Home
last modified time | relevance | path

Searched refs:lookupSymbolIn (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/mlir/include/mlir/IR/
DSymbolTable.h101 static Operation *lookupSymbolIn(Operation *op, StringRef symbol);
102 static Operation *lookupSymbolIn(Operation *op, SymbolRefAttr symbol);
106 static LogicalResult lookupSymbolIn(Operation *op, SymbolRefAttr symbol,
225 Operation *lookupSymbolIn(Operation *symbolTableOp, StringRef symbol);
226 Operation *lookupSymbolIn(Operation *symbolTableOp, SymbolRefAttr name);
228 T lookupSymbolIn(Operation *symbolTableOp, NameT &&name) const { in lookupSymbolIn() function
230 lookupSymbolIn(symbolTableOp, std::forward<NameT>(name))); in lookupSymbolIn()
236 LogicalResult lookupSymbolIn(Operation *symbolTableOp, SymbolRefAttr name,
290 return mlir::SymbolTable::lookupSymbolIn(this->getOperation(), name); in lookupSymbol()
296 return mlir::SymbolTable::lookupSymbolIn(this->getOperation(), symbol); in lookupSymbol()
/external/llvm-project/mlir/lib/IR/
DSymbolTable.cpp279 Operation *SymbolTable::lookupSymbolIn(Operation *symbolTableOp, in lookupSymbolIn() function in SymbolTable
291 Operation *SymbolTable::lookupSymbolIn(Operation *symbolTableOp, in lookupSymbolIn() function in SymbolTable
294 if (failed(lookupSymbolIn(symbolTableOp, symbol, resolvedSymbols))) in lookupSymbolIn()
335 SymbolTable::lookupSymbolIn(Operation *symbolTableOp, SymbolRefAttr symbol, in lookupSymbolIn() function in SymbolTable
338 return lookupSymbolIn(symbolTableOp, symbol); in lookupSymbolIn()
349 return symbolTableOp ? lookupSymbolIn(symbolTableOp, symbol) : nullptr; in lookupNearestSymbolFrom()
354 return symbolTableOp ? lookupSymbolIn(symbolTableOp, symbol) : nullptr; in lookupNearestSymbolFrom()
943 Operation *SymbolTableCollection::lookupSymbolIn(Operation *symbolTableOp, in lookupSymbolIn() function in SymbolTableCollection
947 Operation *SymbolTableCollection::lookupSymbolIn(Operation *symbolTableOp, in lookupSymbolIn() function in SymbolTableCollection
950 if (failed(lookupSymbolIn(symbolTableOp, name, symbols))) in lookupSymbolIn()
[all …]
/external/llvm-project/mlir/lib/Dialect/SPIRV/Linking/ModuleCombiner/
DModuleCombiner.cpp35 if (!SymbolTable::lookupSymbolIn(combinedModule, possible)) { in renameSymbol()
50 if (!SymbolTable::lookupSymbolIn(source, op.getName())) in updateSymbolAndAllUses()
/external/llvm-project/mlir/test/lib/Dialect/Shape/
DTestShapeFunctions.cpp51 auto fn = cast<FuncOp>(SymbolTable::lookupSymbolIn(module, symbol)); in runOnOperation()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dexecutor_tpuv1_inline_tpu_island.cc84 if (!symbol_table.lookupSymbolIn(getOperation(), func_op.getName())) { in runOnOperation()
/external/llvm-project/mlir/lib/Transforms/
DSymbolDCE.cpp127 if (failed(symbolTable.lookupSymbolIn( in computeLiveness()
DSCCP.cpp444 auto *symbol = symbolTable.lookupSymbolIn(op, use.getSymbolRef()); in initializeSymbolCallables()
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMDialect.cpp984 mlir::SymbolTable::lookupSymbolIn(module, name)); in lookupSymbolInModule()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_ops_n_z.cc408 dyn_cast_or_null<FuncOp>(SymbolTable::lookupSymbolIn(module, func)); in VerifyPartitionedCall()
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dlegalize_tf.cc968 dyn_cast_or_null<FuncOp>(SymbolTable::lookupSymbolIn(module, func)); in ArgTypesMatchCallee()