Searched refs:LHSTy (Results 1 - 11 of 11) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprComplex.cpp829 QualType LHSTy = E->getLHS()->getType(); local
830 if (const AtomicType *AT = LHSTy->getAs<AtomicType>())
831 LHSTy = AT->getValueType();
857 if (LHSTy->isAnyComplexType()) {
859 OpInfo.LHS = EmitComplexToComplexCast(LHSVal, LHSTy, OpInfo.Ty, Loc);
864 if (LHSTy->isRealFloatingType()) {
865 if (!CGF.getContext().hasSameUnqualifiedType(ComplexElementTy, LHSTy))
866 LHSVal = CGF.EmitScalarConversion(LHSVal, LHSTy, ComplexElementTy, Loc);
869 OpInfo.LHS = EmitScalarToComplexCast(LHSVal, LHSTy, OpInfo.Ty, Loc);
877 if (LHSTy
[all...]
H A DCGExprScalar.cpp2106 QualType LHSTy = E->getLHS()->getType(); local
2123 if (const AtomicType *atomicTy = LHSTy->getAs<AtomicType>()) {
2158 EmitScalarConversion(OpInfo.RHS, E->getRHS()->getType(), LHSTy,
2160 LHSTy);
2183 EmitScalarConversion(OpInfo.LHS, LHSTy, E->getComputationLHSType(), Loc);
2190 EmitScalarConversion(Result, E->getComputationResultType(), LHSTy, Loc);
2197 llvm::Value *old = CGF.EmitToMemory(Pair.first.getScalarVal(), LHSTy);
2839 QualType LHSTy = E->getLHS()->getType(); local
2841 if (const MemberPointerType *MPT = LHSTy->getAs<MemberPointerType>()) {
2848 } else if (!LHSTy
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp4279 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); local
4289 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
4293 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
4298 LHSTy->getAs<ObjCObjectPointerType>()) {
4325 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
4334 } else if (LHSTy->isArrayType()) {
4342 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
4344 LHSTy = LHSExp->getType();
4348 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
6085 QualType LHSTy local
6157 QualType LHSTy = LHS.get()->getType(); local
6183 QualType LHSTy = LHS.get()->getType(); local
6541 QualType LHSTy = LHS.get()->getType(); local
8157 QualType LHSTy = Context.isPromotableBitField(LHS.get()); local
[all...]
H A DSemaChecking.cpp726 QualType LHSTy = Context.getPointerType(EltTy); local
728 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
731 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp869 EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy, argument
871 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
872 if (LHSTy.isVector())
873 return LHSTy;
874 return getScalarShiftAmountTy(DL, LHSTy);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1846 auto RankVectorTypes = [&DL](VectorType *RHSTy, VectorType *LHSTy) {
1847 assert(DL.getTypeSizeInBits(RHSTy) == DL.getTypeSizeInBits(LHSTy) &&
1851 assert(LHSTy->getElementType()->isIntegerTy() &&
1853 return RHSTy->getNumElements() < LHSTy->getNumElements();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp7195 QualType LHSTy = E->getLHS()->getType();
7198 if (LHSTy->isAnyComplexType() || RHSTy->isAnyComplexType()) {
7205 } else if (LHSTy->isRealFloatingType()) {
7257 if (LHSTy->isRealFloatingType() &&
7291 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
7425 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset &&
7473 unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
7506 if (LHSTy->isMemberPointerType()) {
7544 if (LHSTy->isNullPtrType()) {
7554 assert((!LHSTy
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Target/
H A DTargetLowering.h181 EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL) const;
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h903 SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp474 EVT getShiftAmountTy(EVT LHSTy) { argument
475 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
476 if (LHSTy.isVector())
477 return LHSTy;
479 return LegalTypes ? TLI.getScalarShiftAmountTy(DL, LHSTy)
H A DSelectionDAG.cpp1821 SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) { argument
1823 EVT ShTy = TLI->getShiftAmountTy(LHSTy, getDataLayout());

Completed in 219 milliseconds