HomeSort by relevance Sort by last modified time
    Searched refs:LHSTy (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 76 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i8; }
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.h 141 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 74 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 637 QualType LHSTy = E->getLHS()->getType();
655 if (LHSTy->isAnyComplexType()) {
657 OpInfo.LHS = EmitComplexToComplexCast(LHSVal, LHSTy, OpInfo.Ty);
660 OpInfo.LHS = EmitScalarToComplexCast(LHSVal, LHSTy, OpInfo.Ty);
667 if (LHSTy->isAnyComplexType()) {
668 ComplexPairTy ResVal = EmitComplexToComplexCast(Result, OpInfo.Ty, LHSTy);
673 CGF.EmitComplexToScalarConversion(Result, OpInfo.Ty, LHSTy);
    [all...]
CGExprScalar.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
SemaChecking.cpp 421 QualType LHSTy = Context.getPointerType(EltTy);
423 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
426 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
605 QualType LHSTy = Context.getPointerType(EltTy);
607 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
610 if (DiagnoseAssignmentResult(ConvTy, Arg->getLocStart(), LHSTy, RHSTy,
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 126 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const LLVM_OVERRIDE {
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 87 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp 750 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);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 178 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.h 346 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i32; }
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 511 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const { return MVT::i8; }
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 155 virtual MVT getScalarShiftAmountTy(EVT LHSTy) const;
157 EVT getShiftAmountTy(EVT LHSTy) const;
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 328 EVT getShiftAmountTy(EVT LHSTy) {
329 assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
330 if (LHSTy.isVector())
331 return LHSTy;
332 return LegalTypes ? TLI.getScalarShiftAmountTy(LHSTy) : TLI.getPointerTy();
    [all...]
SelectionDAG.cpp     [all...]

Completed in 393 milliseconds