Home
last modified time | relevance | path

Searched refs:argLocs (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/mlir/lib/CAPI/Dialect/
H A DLinalg.cpp31 SmallVector<Location, 8> argLocs; in mlirLinalgFillBuiltinNamedOpRegion() local
34 argLocs.push_back(opOperand->get().getLoc()); in mlirLinalgFillBuiltinNamedOpRegion()
39 Block *body = b.createBlock(&region, /*insertPt=*/{}, argTypes, argLocs); in mlirLinalgFillBuiltinNamedOpRegion()
/llvm-project-15.0.7/mlir/test/IR/
H A Dlocations.mlir53 // CHECK-LABEL: func @argLocs(
55 func.func @argLocs(%x: i32,
/llvm-project-15.0.7/mlir/lib/IR/
H A DFunctionInterfaces.cpp116 ArrayRef<DictionaryAttr> argAttrs, ArrayRef<Location> argLocs, in insertFunctionArguments() argument
120 assert(argIndices.size() == argLocs.size()); in insertFunctionArguments()
157 entry.insertArgument(argIndices[i] + i, argTypes[i], argLocs[i]); in insertFunctionArguments()
/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRCore.cpp327 llvm::SmallVector<MlirLocation, 4> argLocs; in appendBlock() local
329 argLocs.reserve(pyArgTypes.size()); in appendBlock()
333 argLocs.push_back( in appendBlock()
2791 llvm::SmallVector<MlirLocation, 4> argLocs; in populateIRCore() local
2793 argLocs.reserve(pyArgTypes.size()); in populateIRCore()
2797 argLocs.push_back( in populateIRCore()
2823 llvm::SmallVector<MlirLocation, 4> argLocs; in populateIRCore() local
2825 argLocs.reserve(pyArgTypes.size()); in populateIRCore()
2829 argLocs.push_back( in populateIRCore()
2848 argLocs.reserve(pyArgTypes.size()); in populateIRCore()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/SCFToControlFlow/
H A DSCFToControlFlow.cpp438 SmallVector<Location> argLocs(op.getNumResults(), op->getLoc()); in matchAndRewrite() local
440 remainingOpsBlock->addArguments(op->getResultTypes(), argLocs)) in matchAndRewrite()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DFunctionInterfaces.h78 ArrayRef<Location> argLocs,
H A DFunctionInterfaces.td304 ArrayRef<Location> argLocs) {
309 this->getOperation(), argIndices, argTypes, argAttrs, argLocs,
/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/IR/
H A DLinalgOps.cpp68 SmallVector<Location, 8> argLocs; in fillStructuredOpRegion() local
74 argLocs.push_back(opBuilder.getUnknownLoc()); in fillStructuredOpRegion()
81 opBuilder.createBlock(&region, /*insertPt=*/{}, argTypes, argLocs); in fillStructuredOpRegion()
/llvm-project-15.0.7/mlir/lib/Dialect/SCF/IR/
H A DSCF.cpp2119 SmallVector<Location, 8> argLocs(numIVs, result.location); in build() local
2121 Block *bodyBlock = builder.createBlock(bodyRegion, {}, argTypes, argLocs); in build()