Searched refs:argLocs (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/mlir/lib/CAPI/Dialect/ |
| H A D | Linalg.cpp | 31 SmallVector<Location, 8> argLocs; in mlirLinalgFillBuiltinNamedOpRegion() local 34 argLocs.push_back(opOperand->get().getLoc()); in mlirLinalgFillBuiltinNamedOpRegion() 39 Block *body = b.createBlock(®ion, /*insertPt=*/{}, argTypes, argLocs); in mlirLinalgFillBuiltinNamedOpRegion()
|
| /llvm-project-15.0.7/mlir/test/IR/ |
| H A D | locations.mlir | 53 // CHECK-LABEL: func @argLocs( 55 func.func @argLocs(%x: i32,
|
| /llvm-project-15.0.7/mlir/lib/IR/ |
| H A D | FunctionInterfaces.cpp | 116 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 D | IRCore.cpp | 327 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 D | SCFToControlFlow.cpp | 438 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 D | FunctionInterfaces.h | 78 ArrayRef<Location> argLocs,
|
| H A D | FunctionInterfaces.td | 304 ArrayRef<Location> argLocs) { 309 this->getOperation(), argIndices, argTypes, argAttrs, argLocs,
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Linalg/IR/ |
| H A D | LinalgOps.cpp | 68 SmallVector<Location, 8> argLocs; in fillStructuredOpRegion() local 74 argLocs.push_back(opBuilder.getUnknownLoc()); in fillStructuredOpRegion() 81 opBuilder.createBlock(®ion, /*insertPt=*/{}, argTypes, argLocs); in fillStructuredOpRegion()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/SCF/IR/ |
| H A D | SCF.cpp | 2119 SmallVector<Location, 8> argLocs(numIVs, result.location); in build() local 2121 Block *bodyBlock = builder.createBlock(bodyRegion, {}, argTypes, argLocs); in build()
|