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

/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.h76 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i8; }
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.h142 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprComplex.cpp641 QualType LHSTy = E->getLHS()->getType(); local
659 if (LHSTy->isAnyComplexType()) {
661 OpInfo.LHS = EmitComplexToComplexCast(LHSVal, LHSTy, OpInfo.Ty);
664 OpInfo.LHS = EmitScalarToComplexCast(LHSVal, LHSTy, OpInfo.Ty);
671 if (LHSTy->isAnyComplexType()) {
672 ComplexPairTy ResVal = EmitComplexToComplexCast(Result, OpInfo.Ty, LHSTy);
677 CGF.EmitComplexToScalarConversion(Result, OpInfo.Ty, LHSTy);
H A DCGExprScalar.cpp1987 QualType LHSTy = E->getLHS()->getType(); local
2004 if (const AtomicType *atomicTy = LHSTy->getAs<AtomicType>()) {
2039 E->getRHS()->getType(), LHSTy), LHSTy);
2060 OpInfo.LHS = EmitScalarConversion(OpInfo.LHS, LHSTy,
2067 Result = EmitScalarConversion(Result, E->getComputationResultType(), LHSTy);
2073 CGF.EmitToMemory(Result, LHSTy), llvm::SequentiallyConsistent);
2685 QualType LHSTy = E->getLHS()->getType(); local
2686 if (const MemberPointerType *MPT = LHSTy->getAs<MemberPointerType>()) {
2693 } else if (!LHSTy
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp3730 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); local
3740 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
3744 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
3749 LHSTy->getAs<ObjCObjectPointerType>()) {
3775 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
3784 } else if (LHSTy->isArrayType()) {
3792 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
3794 LHSTy = LHSExp->getType();
3798 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
5367 QualType LHSTy local
5439 QualType LHSTy = LHS.get()->getType(); local
5465 QualType LHSTy = LHS.get()->getType(); local
5558 QualType LHSTy = LHS.get()->getType(); local
5640 QualType LHSTy = LHS.get()->getType(); local
7110 QualType LHSTy = Context.isPromotableBitField(LHS.get()); local
[all...]
H A DSemaChecking.cpp425 QualType LHSTy = Context.getPointerType(EltTy); local
427 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
430 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
612 QualType LHSTy = Context.getPointerType(EltTy); local
614 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
617 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/
H A DSparcISelLowering.h87 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h198 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const LLVM_OVERRIDE {
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/
H A DXCoreISelLowering.h94 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp810 MVT TargetLoweringBase::getScalarShiftAmountTy(EVT LHSTy) const {
814 EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy) const {
815 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
816 if (LHSTy.isVector())
817 return LHSTy;
818 return getScalarShiftAmountTy(LHSTy);
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
H A DMipsISelLowering.h217 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h346 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10-stable/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.h531 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i8; }
/freebsd-10-stable/contrib/llvm/include/llvm/Target/
H A DTargetLowering.h158 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const;
160 EVT getShiftAmountTy(EVT LHSTy) const;
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp6550 QualType LHSTy = E->getLHS()->getType();
6553 if (LHSTy->isAnyComplexType()) {
6596 if (LHSTy->isRealFloatingType() &&
6630 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
6752 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset &&
6800 unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
6833 if (LHSTy->isMemberPointerType()) {
6871 if (LHSTy->isNullPtrType()) {
6881 assert((!LHSTy->isIntegralOrEnumerationType() ||
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h822 SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op);
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp348 EVT getShiftAmountTy(EVT LHSTy) { argument
349 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
350 if (LHSTy.isVector())
351 return LHSTy;
352 return LegalTypes ? TLI.getScalarShiftAmountTy(LHSTy)
H A DSelectionDAG.cpp1593 SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) { argument
1595 EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy);

Completed in 293 milliseconds