Searched refs:ShTy (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeIntegerTypes.cpp | 1430 EVT ShTy = N->getOperand(1).getValueType(); in ExpandShiftByConstant() local 1438 NVT, InL, DAG.getConstant(Amt - NVTBits, DL, ShTy)); in ExpandShiftByConstant() 1452 Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, DL, ShTy)); in ExpandShiftByConstant() 1455 DAG.getConstant(Amt, DL, ShTy)), in ExpandShiftByConstant() 1457 DAG.getConstant(-Amt + NVTBits, DL, ShTy))); in ExpandShiftByConstant() 1467 NVT, InH, DAG.getConstant(Amt - NVTBits, DL, ShTy)); in ExpandShiftByConstant() 1475 DAG.getConstant(Amt, DL, ShTy)), in ExpandShiftByConstant() 1477 DAG.getConstant(-Amt + NVTBits, DL, ShTy))); in ExpandShiftByConstant() 1478 Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, DL, ShTy)); in ExpandShiftByConstant() 1486 DAG.getConstant(NVTBits - 1, DL, ShTy)); in ExpandShiftByConstant() [all …]
|
D | TargetLowering.cpp | 661 EVT ShTy = getShiftAmountTy(InnerVT, DL); in SimplifyDemandedBits() local 662 if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits())) in SimplifyDemandedBits() 663 ShTy = InnerVT; in SimplifyDemandedBits() 666 TLO.DAG.getConstant(ShAmt, dl, ShTy)); in SimplifyDemandedBits()
|
D | SelectionDAG.cpp | 1832 EVT ShTy = TLI->getShiftAmountTy(LHSTy, getDataLayout()); in getShiftAmountOperand() local 1833 if (OpTy == ShTy || OpTy.isVector()) return Op; in getShiftAmountOperand() 1835 return getZExtOrTrunc(Op, SDLoc(Op), ShTy); in getShiftAmountOperand()
|
/external/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 2542 CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, unsigned SrcReg, in CreateShiftedRegister() argument 2546 Op->RegShiftedReg.ShiftTy = ShTy; in CreateShiftedRegister() 2556 CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, unsigned SrcReg, in CreateShiftedImmediate() argument 2559 Op->RegShiftedImm.ShiftTy = ShTy; in CreateShiftedImmediate()
|