Home
last modified time | relevance | path

Searched refs:argIndices (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/mlir/lib/IR/
DFunctionSupport.cpp35 ArrayRef<unsigned> argIndices, in eraseFunctionArguments() argument
47 iterateIndicesExcept(originalNumArgs, argIndices, [&](unsigned i) { in eraseFunctionArguments()
69 entry.eraseArguments(argIndices); in eraseFunctionArguments()
DBlock.cpp180 void Block::eraseArguments(ArrayRef<unsigned> argIndices) { in eraseArguments() argument
182 for (unsigned i : argIndices) in eraseArguments()
DBuiltinTypes.cpp134 FunctionType::getWithoutArgsAndResults(ArrayRef<unsigned> argIndices, in getWithoutArgsAndResults() argument
138 if (!argIndices.empty()) { in getWithoutArgsAndResults()
140 iterateIndicesExcept(originalNumArgs, argIndices, [&](unsigned i) { in getWithoutArgsAndResults()
/external/llvm-project/mlir/include/mlir/IR/
DFunctionSupport.h76 void eraseFunctionArguments(Operation *op, ArrayRef<unsigned> argIndices,
212 FunctionType getTypeWithoutArgsAndResults(ArrayRef<unsigned> argIndices, in getTypeWithoutArgsAndResults() argument
214 return getType().getWithoutArgsAndResults(argIndices, resultIndices); in getTypeWithoutArgsAndResults()
268 void eraseArguments(ArrayRef<unsigned> argIndices) { in eraseArguments() argument
270 Type newType = getTypeWithoutArgsAndResults(argIndices, {}); in eraseArguments()
271 ::mlir::impl::eraseFunctionArguments(this->getOperation(), argIndices, in eraseArguments()
DBlock.h108 void eraseArguments(ArrayRef<unsigned> argIndices);
DBuiltinTypes.h266 FunctionType getWithoutArgsAndResults(ArrayRef<unsigned> argIndices,
/external/clang/utils/ABITest/
DTypeGen.py400 argIndices = getNthTuple(N+1, self.maxSize+1, self.typeGen.cardinality)
401 retIndex,argIndices = argIndices[0],argIndices[1:]
405 argIndices = getNthTuple(N, self.maxSize, self.typeGen.cardinality)
406 args = map(self.typeGen.get, argIndices)
/external/llvm-project/clang/utils/ABITest/
DTypeGen.py402 argIndices = getNthTuple(N+1, self.maxSize+1, self.typeGen.cardinality)
403 retIndex,argIndices = argIndices[0],argIndices[1:]
407 argIndices = getNthTuple(N, self.maxSize, self.typeGen.cardinality)
408 args = [self.typeGen.get(i) for i in argIndices]