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

/freebsd-10.0-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.h76 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i8; }
/freebsd-10.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.h138 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10.0-release/contrib/llvm/lib/Target/Sparc/
H A DSparcISelLowering.h74 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp3570 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); local
3580 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
3584 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
3589 LHSTy->getAs<ObjCObjectPointerType>()) {
3620 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
3629 } else if (LHSTy->isArrayType()) {
3637 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
3639 LHSTy = LHSExp->getType();
3643 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
5100 QualType LHSTy local
5167 QualType LHSTy = LHS.get()->getType(); local
5193 QualType LHSTy = LHS.get()->getType(); local
5280 QualType LHSTy = LHS.get()->getType(); local
5374 QualType LHSTy = LHS.get()->getType(); local
6766 QualType LHSTy = Context.isPromotableBitField(LHS.get()); local
[all...]
H A DSemaChecking.cpp390 QualType LHSTy = Context.getPointerType(EltTy); local
392 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
395 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
/freebsd-10.0-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h117 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const LLVM_OVERRIDE {
/freebsd-10.0-release/contrib/llvm/lib/Target/XCore/
H A DXCoreISelLowering.h87 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp1927 QualType LHSTy = E->getLHS()->getType(); local
1951 if (const AtomicType *atomicTy = LHSTy->getAs<AtomicType>()) {
1986 E->getRHS()->getType(), LHSTy), LHSTy);
2007 OpInfo.LHS = EmitScalarConversion(OpInfo.LHS, LHSTy,
2014 Result = EmitScalarConversion(Result, E->getComputationResultType(), LHSTy);
2020 CGF.EmitToMemory(Result, LHSTy), llvm::SequentiallyConsistent);
2632 QualType LHSTy = E->getLHS()->getType(); local
2633 if (const MemberPointerType *MPT = LHSTy->getAs<MemberPointerType>()) {
2640 } else if (!LHSTy
[all...]
H A DCGExprComplex.cpp614 QualType LHSTy = E->getLHS()->getType(); local
634 OpInfo.LHS = EmitComplexToComplexCast(LHSComplexPair, LHSTy, OpInfo.Ty);
640 Result = EmitComplexToComplexCast(Result, OpInfo.Ty, LHSTy);
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp750 MVT TargetLoweringBase::getScalarShiftAmountTy(EVT LHSTy) const {
754 EVT TargetLoweringBase::getShiftAmountTy(EVT LHSTy) const {
755 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
756 if (LHSTy.isVector())
757 return LHSTy;
758 return getScalarShiftAmountTy(LHSTy);
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/
H A DMipsISelLowering.h178 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h340 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.h481 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i8; }
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DTargetLowering.h153 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const;
155 EVT getShiftAmountTy(EVT LHSTy) const;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp5576 QualType LHSTy = E->getLHS()->getType();
5579 if (LHSTy->isAnyComplexType()) {
5622 if (LHSTy->isRealFloatingType() &&
5656 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
5769 if (LHSTy->isVoidPointerType() && LHSOffset != RHSOffset &&
5817 unsigned PtrSize = Info.Ctx.getTypeSize(LHSTy);
5850 if (LHSTy->isMemberPointerType()) {
5888 if (LHSTy->isNullPtrType()) {
5898 assert((!LHSTy->isIntegralOrEnumerationType() ||
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h746 SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op);
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1519 SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) { argument
1521 EVT ShTy = TLI.getShiftAmountTy(LHSTy);
H A DDAGCombiner.cpp328 EVT getShiftAmountTy(EVT LHSTy) { argument
329 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();

Completed in 400 milliseconds