Lines Matching refs:RHSTy
214 QualType RHSTy = *OptionalRHSTy; in CanElideOverflowCheck() local
219 !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType()) in CanElideOverflowCheck()
226 (2 * Ctx.getTypeSize(RHSTy)) < PromotedSize; in CanElideOverflowCheck()
4203 QualType LHSTy, RHSTy; in EmitFixedPointBinOp() local
4205 RHSTy = BinOp->getRHS()->getType(); in EmitFixedPointBinOp()
4217 RHSTy = UnOp->getSubExpr()->getType(); in EmitFixedPointBinOp()
4224 auto RHSFixedSema = Ctx.getFixedPointSemantics(RHSTy); in EmitFixedPointBinOp()
4416 llvm::Type *RHSTy = RHS->getType(); in GetMaximumShiftAmount() local
4418 RHSIsSigned ? llvm::APInt::getSignedMaxValue(RHSTy->getScalarSizeInBits()) in GetMaximumShiftAmount()
4419 : llvm::APInt::getMaxValue(RHSTy->getScalarSizeInBits()); in GetMaximumShiftAmount()
4421 return llvm::ConstantInt::get(RHSTy, RHSMax); in GetMaximumShiftAmount()
4422 return llvm::ConstantInt::get(RHSTy, Ty->getBitWidth() - 1); in GetMaximumShiftAmount()
4605 QualType RHSTy = E->getRHS()->getType(); in EmitCompare() local
4613 } else if (!LHSTy->isAnyComplexType() && !RHSTy->isAnyComplexType()) { in EmitCompare()
4718 if (RHSTy.mayBeDynamicClass()) in EmitCompare()
4742 if (auto *CTy = RHSTy->getAs<ComplexType>()) { in EmitCompare()
4751 assert(CGF.getContext().hasSameUnqualifiedType(CETy, RHSTy) && in EmitCompare()