Lines Matching refs:LHSTy
2096 QualType LHSTy = E->getLHS()->getType(); in EmitCompoundAssignLValue() local
2113 if (const AtomicType *atomicTy = LHSTy->getAs<AtomicType>()) { in EmitCompoundAssignLValue()
2148 EmitScalarConversion(OpInfo.RHS, E->getRHS()->getType(), LHSTy, in EmitCompoundAssignLValue()
2150 LHSTy); in EmitCompoundAssignLValue()
2173 EmitScalarConversion(OpInfo.LHS, LHSTy, E->getComputationLHSType(), Loc); in EmitCompoundAssignLValue()
2180 EmitScalarConversion(Result, E->getComputationResultType(), LHSTy, Loc); in EmitCompoundAssignLValue()
2187 llvm::Value *old = CGF.EmitToMemory(Pair.first.getScalarVal(), LHSTy); in EmitCompoundAssignLValue()
2829 QualType LHSTy = E->getLHS()->getType(); in EmitCompare() local
2831 if (const MemberPointerType *MPT = LHSTy->getAs<MemberPointerType>()) { in EmitCompare()
2838 } else if (!LHSTy->isAnyComplexType() && !RHSTy->isAnyComplexType()) { in EmitCompare()
2844 if (LHSTy->isVectorType() && !E->getType()->isVectorType()) { in EmitCompare()
2854 QualType ElTy = LHSTy->getAs<VectorType>()->getElementType(); in EmitCompare()
2910 } else if (LHSTy->hasSignedIntegerRepresentation()) { in EmitCompare()
2919 if (LHSTy->isVectorType()) in EmitCompare()
2926 if (auto *CTy = LHSTy->getAs<ComplexType>()) { in EmitCompare()
2932 CETy = LHSTy; in EmitCompare()