Lines Matching refs:LHSTy
2105 QualType LHSTy = E->getLHS()->getType(); in EmitCompoundAssignLValue() local
2122 if (const AtomicType *atomicTy = LHSTy->getAs<AtomicType>()) { in EmitCompoundAssignLValue()
2157 E->getRHS()->getType(), LHSTy), LHSTy); in EmitCompoundAssignLValue()
2178 OpInfo.LHS = EmitScalarConversion(OpInfo.LHS, LHSTy, in EmitCompoundAssignLValue()
2185 Result = EmitScalarConversion(Result, E->getComputationResultType(), LHSTy); in EmitCompoundAssignLValue()
2192 llvm::Value *old = CGF.EmitToMemory(Pair.first.getScalarVal(), LHSTy); in EmitCompoundAssignLValue()
2835 QualType LHSTy = E->getLHS()->getType(); in EmitCompare() local
2837 if (const MemberPointerType *MPT = LHSTy->getAs<MemberPointerType>()) { in EmitCompare()
2844 } else if (!LHSTy->isAnyComplexType() && !RHSTy->isAnyComplexType()) { in EmitCompare()
2850 if (LHSTy->isVectorType() && !E->getType()->isVectorType()) { in EmitCompare()
2860 QualType ElTy = LHSTy->getAs<VectorType>()->getElementType(); in EmitCompare()
2916 } else if (LHSTy->hasSignedIntegerRepresentation()) { in EmitCompare()
2927 if (LHSTy->isVectorType()) in EmitCompare()
2934 if (auto *CTy = LHSTy->getAs<ComplexType>()) { in EmitCompare()
2940 CETy = LHSTy; in EmitCompare()