/external/llvm-project/mlir/include/mlir/IR/ |
D | SymbolTable.h | 101 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/ |
D | SymbolTable.cpp | 279 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/ |
D | ModuleCombiner.cpp | 35 if (!SymbolTable::lookupSymbolIn(combinedModule, possible)) { in renameSymbol() 50 if (!SymbolTable::lookupSymbolIn(source, op.getName())) in updateSymbolAndAllUses()
|
/external/llvm-project/mlir/test/lib/Dialect/Shape/ |
D | TestShapeFunctions.cpp | 51 auto fn = cast<FuncOp>(SymbolTable::lookupSymbolIn(module, symbol)); in runOnOperation()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
D | executor_tpuv1_inline_tpu_island.cc | 84 if (!symbol_table.lookupSymbolIn(getOperation(), func_op.getName())) { in runOnOperation()
|
/external/llvm-project/mlir/lib/Transforms/ |
D | SymbolDCE.cpp | 127 if (failed(symbolTable.lookupSymbolIn( in computeLiveness()
|
D | SCCP.cpp | 444 auto *symbol = symbolTable.lookupSymbolIn(op, use.getSymbolRef()); in initializeSymbolCallables()
|
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/ |
D | LLVMDialect.cpp | 984 mlir::SymbolTable::lookupSymbolIn(module, name)); in lookupSymbolInModule()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/ |
D | tf_ops_n_z.cc | 408 dyn_cast_or_null<FuncOp>(SymbolTable::lookupSymbolIn(module, func)); in VerifyPartitionedCall()
|
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/ |
D | legalize_tf.cc | 968 dyn_cast_or_null<FuncOp>(SymbolTable::lookupSymbolIn(module, func)); in ArgTypesMatchCallee()
|