Lines Matching refs:getLhs
59 Value lhs = adaptor.getLhs(); in matchAndRewrite()
101 auto type = adaptor.getLhs() in matchAndRewrite()
106 Value realLhs = rewriter.create<complex::ReOp>(loc, type, adaptor.getLhs()); in matchAndRewrite()
107 Value imagLhs = rewriter.create<complex::ImOp>(loc, type, adaptor.getLhs()); in matchAndRewrite()
131 auto type = adaptor.getLhs().getType().template cast<ComplexType>(); in matchAndRewrite()
135 Value realLhs = b.create<complex::ReOp>(elementType, adaptor.getLhs()); in matchAndRewrite()
139 Value imagLhs = b.create<complex::ImOp>(elementType, adaptor.getLhs()); in matchAndRewrite()
221 auto type = adaptor.getLhs().getType().cast<ComplexType>(); in matchAndRewrite()
225 rewriter.create<complex::ReOp>(loc, elementType, adaptor.getLhs()); in matchAndRewrite()
227 rewriter.create<complex::ImOp>(loc, elementType, adaptor.getLhs()); in matchAndRewrite()
532 auto type = adaptor.getLhs().getType().cast<ComplexType>(); in matchAndRewrite()
535 Value lhsReal = b.create<complex::ReOp>(elementType, adaptor.getLhs()); in matchAndRewrite()
537 Value lhsImag = b.create<complex::ImOp>(elementType, adaptor.getLhs()); in matchAndRewrite()
977 auto type = adaptor.getLhs().getType().cast<ComplexType>(); in matchAndRewrite()
980 Value a = builder.create<complex::ReOp>(elementType, adaptor.getLhs()); in matchAndRewrite()
981 Value b = builder.create<complex::ImOp>(elementType, adaptor.getLhs()); in matchAndRewrite()