Home
last modified time | relevance | path

Searched refs:operandInfos (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/mlir/lib/Parser/
DParser.cpp782 SmallVector<SSAUseInfo, 8> operandInfos; in parseGenericOperation() local
784 parseOptionalSSAUseList(operandInfos) || in parseGenericOperation()
835 if (operandTypes.size() != operandInfos.size()) { in parseGenericOperation()
836 auto plural = "s"[operandInfos.size() == 1]; in parseGenericOperation()
838 << operandInfos.size() << " operand type" << plural in parseGenericOperation()
844 for (unsigned i = 0, e = operandInfos.size(); i != e; ++i) { in parseGenericOperation()
845 result.operands.push_back(resolveSSAUse(operandInfos[i], operandTypes[i])); in parseGenericOperation()
/external/llvm-project/mlir/test/lib/Dialect/Test/
DTestDialect.cpp877 SmallVector<OpAsmParser::OperandType, 2> operandInfos; in parseRegionIfOp() local
886 if (parser.parseOperandList(operandInfos) || in parseRegionIfOp()
897 return parser.resolveOperands(operandInfos, operandTypes, in parseRegionIfOp()
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorOps.cpp2761 SmallVector<OpAsmParser::OperandType, 4> operandInfos; in parseTupleOp() local
2766 parser.parseOperandList(operandInfos) || in parseTupleOp()
2769 parser.resolveOperands(operandInfos, types, loc, result.operands) || in parseTupleOp()