Searched refs:ShTy (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1267 EVT ShTy = N->getOperand(1).getValueType(); local
1275 NVT, InL, DAG.getConstant(Amt-NVTBits, ShTy));
1289 Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, ShTy));
1292 DAG.getConstant(Amt, ShTy)),
1294 DAG.getConstant(NVTBits-Amt, ShTy)));
1305 NVT, InH, DAG.getConstant(Amt-NVTBits,ShTy));
1313 DAG.getConstant(Amt, ShTy)),
1315 DAG.getConstant(NVTBits-Amt, ShTy)));
1316 Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, ShTy));
1324 DAG.getConstant(NVTBits-1, ShTy));
1352 EVT ShTy = Amt.getValueType(); local
1440 EVT ShTy = Amt.getValueType(); local
[all...]
H A DTargetLowering.cpp1460 EVT ShTy = getShiftAmountTy(InnerVT); local
1461 if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits()))
1462 ShTy = InnerVT;
1465 TLO.DAG.getConstant(ShAmt, ShTy));
H A DSelectionDAG.cpp1530 MVT ShTy = TLI.getShiftAmountTy(LHSTy); local
1531 if (OpTy == ShTy || OpTy.isVector()) return Op;
1533 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1534 return getNode(Opcode, Op.getDebugLoc(), ShTy, Op);
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2134 static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, argument
2140 Op->RegShiftedReg.ShiftTy = ShTy;
2149 static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, argument
2154 Op->RegShiftedImm.ShiftTy = ShTy;

Completed in 89 milliseconds