Searched refs:complexStruct (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/mlir/lib/Conversion/ComplexToLLVM/ |
| H A D | ComplexToLLVM.cpp | 66 ComplexStructBuilder complexStruct(adaptor.getComplex()); in matchAndRewrite() local 67 Value real = complexStruct.real(rewriter, op.getLoc()); in matchAndRewrite() 68 Value imag = complexStruct.imaginary(rewriter, op.getLoc()); in matchAndRewrite() 101 auto complexStruct = ComplexStructBuilder::undef(rewriter, loc, structType); in matchAndRewrite() local 102 complexStruct.setReal(rewriter, loc, adaptor.getReal()); in matchAndRewrite() 103 complexStruct.setImaginary(rewriter, loc, adaptor.getImaginary()); in matchAndRewrite() 105 rewriter.replaceOp(complexOp, {complexStruct}); in matchAndRewrite() 117 ComplexStructBuilder complexStruct(adaptor.getComplex()); in matchAndRewrite() local 118 Value real = complexStruct.real(rewriter, op.getLoc()); in matchAndRewrite() 132 ComplexStructBuilder complexStruct(adaptor.getComplex()); in matchAndRewrite() local [all …]
|