| /llvm-project-15.0.7/mlir/lib/Conversion/OpenMPToLLVM/ |
| H A D | OpenMPToLLVM.cpp | 104 typeConverter.isLegal(op->getOperandTypes()) && in configureOpenMPToLLVMConversionLegality() 111 return typeConverter.isLegal(op->getOperandTypes()) && in configureOpenMPToLLVMConversionLegality() 115 return typeConverter.isLegal(op->getOperandTypes()); in configureOpenMPToLLVMConversionLegality()
|
| /llvm-project-15.0.7/mlir/lib/IR/ |
| H A D | Operation.cpp | 739 for (auto opType : op->getOperandTypes()) { in verifyOperandsAreSignlessIntegerLike() 748 for (auto opType : op->getOperandTypes()) { in verifyOperandsAreFloatLike() 763 for (auto opType : llvm::drop_begin(op->getOperandTypes(), 1)) in verifySameTypeOperands() 826 if (failed(verifyCompatibleShapes(op->getOperandTypes()))) in verifySameOperandsShape() 837 SmallVector<Type, 8> types(op->getOperandTypes()); in verifySameOperandsAndResultShape() 898 for (auto opType : op->getOperandTypes()) { in verifySameOperandsAndResultType() 1051 llvm::make_filter_range(op->getOperandTypes(), isMappableType)); in verifyElementwise() 1164 auto operandTypes = op->getOperandTypes(); in verifyCastInterfaceOp()
|
| H A D | BuiltinDialect.cpp | 162 inputOp.getOperandTypes() != results.getTypes()) in fold()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/SparseTensor/Transforms/ |
| H A D | SparseTensorPasses.cpp | 109 return converter.isLegal(op.getOperandTypes()); in runOnOperation() 112 return converter.isLegal(op.getOperandTypes()); in runOnOperation()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch7/mlir/ |
| H A D | ShapeInferencePass.cpp | 96 return llvm::all_of(op->getOperandTypes(), [](Type operandType) { in allOperandsInferred()
|
| H A D | Dialect.cpp | 130 if (llvm::all_of(op->getOperandTypes(), in printBinaryOp() 137 printer.printFunctionalType(op->getOperandTypes(), op->getResultTypes()); in printBinaryOp()
|
| H A D | LowerToAffineLoops.cpp | 343 return llvm::none_of(op->getOperandTypes(), in runOnOperation()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch6/mlir/ |
| H A D | ShapeInferencePass.cpp | 96 return llvm::all_of(op->getOperandTypes(), [](Type operandType) { in allOperandsInferred()
|
| H A D | Dialect.cpp | 143 if (llvm::all_of(op->getOperandTypes(), in printBinaryOp() 150 printer.printFunctionalType(op->getOperandTypes(), op->getResultTypes()); in printBinaryOp()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch4/mlir/ |
| H A D | ShapeInferencePass.cpp | 96 return llvm::all_of(op->getOperandTypes(), [](Type operandType) { in allOperandsInferred()
|
| H A D | Dialect.cpp | 143 if (llvm::all_of(op->getOperandTypes(), in printBinaryOp() 150 printer.printFunctionalType(op->getOperandTypes(), op->getResultTypes()); in printBinaryOp()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch5/mlir/ |
| H A D | ShapeInferencePass.cpp | 96 return llvm::all_of(op->getOperandTypes(), [](Type operandType) { in allOperandsInferred()
|
| H A D | Dialect.cpp | 143 if (llvm::all_of(op->getOperandTypes(), in printBinaryOp() 150 printer.printFunctionalType(op->getOperandTypes(), op->getResultTypes()); in printBinaryOp()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/ |
| H A D | Traits.cpp | 234 hasTensorOrVectorType(op->getOperandTypes()); in verifyCompatibleOperandBroadcast() 243 op->getOperandTypes(), [](Type t) { return t.isa<RankedTensorType>(); }); in verifyCompatibleOperandBroadcast()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch3/mlir/ |
| H A D | Dialect.cpp | 81 if (llvm::all_of(op->getOperandTypes(), in printBinaryOp() 88 printer.printFunctionalType(op->getOperandTypes(), op->getResultTypes()); in printBinaryOp()
|
| /llvm-project-15.0.7/mlir/examples/toy/Ch2/mlir/ |
| H A D | Dialect.cpp | 81 if (llvm::all_of(op->getOperandTypes(), in printBinaryOp() 88 printer.printFunctionalType(op->getOperandTypes(), op->getResultTypes()); in printBinaryOp()
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/Func/ |
| H A D | TestDecomposeCallGraphTypes.cpp | 48 return typeConverter.isLegal(op.getOperandTypes()); in runOnOperation()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Quant/IR/ |
| H A D | QuantOps.cpp | 76 for (auto input : llvm::zip(getOperandTypes(), getInputSpecs())) { in verify()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Transforms/ |
| H A D | ElementwiseToLinalg.cpp | 26 return llvm::all_of(op->getOperandTypes(), in isElementwiseMappableOpOnRankedTensors()
|
| /llvm-project-15.0.7/mlir/lib/Conversion/LinalgToStandard/ |
| H A D | LinalgToStandard.cpp | 30 for (auto type : op->getOperandTypes()) { in extractOperandTypes()
|
| /llvm-project-15.0.7/mlir/lib/Conversion/GPUToVulkan/ |
| H A D | ConvertGPULaunchFuncToVulkanLaunchFunc.cpp | 106 SmallVector<Type, 8> gpuLaunchTypes(launchOp.getOperandTypes()); in declareVulkanLaunchFunc()
|
| /llvm-project-15.0.7/mlir/lib/Conversion/ComplexToLibm/ |
| H A D | ComplexToLibm.cpp | 83 rewriter.getContext(), op->getOperandTypes(), op->getResultTypes()); in matchAndRewrite()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/SCF/Transforms/ |
| H A D | StructuralTypeConversions.cpp | 191 return typeConverter.isLegal(op.getOperandTypes()); in populateSCFStructuralTypeConversionsAndLegality()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugFrame.cpp | 422 OperandType Type = CFIP.getOperandTypes()[Opcode][OperandIdx]; in getOperandAsUnsigned() 467 OperandType Type = CFIP.getOperandTypes()[Opcode][OperandIdx]; in getOperandAsSigned() 794 CFIProgram::getOperandTypes() { in getOperandTypes() function in CFIProgram 861 OperandType Type = getOperandTypes()[Opcode][OperandIdx]; in printOperand()
|
| /llvm-project-15.0.7/mlir/lib/Conversion/MathToLibm/ |
| H A D | MathToLibm.cpp | 128 rewriter.getContext(), op->getOperandTypes(), op->getResultTypes()); in matchAndRewrite()
|