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

/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1275 EVT ShTy = N->getOperand(1).getValueType(); local
1283 NVT, InL, DAG.getConstant(Amt-NVTBits, ShTy));
1297 Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, ShTy));
1300 DAG.getConstant(Amt, ShTy)),
1302 DAG.getConstant(NVTBits-Amt, ShTy)));
1313 NVT, InH, DAG.getConstant(Amt-NVTBits,ShTy));
1321 DAG.getConstant(Amt, ShTy)),
1323 DAG.getConstant(NVTBits-Amt, ShTy)));
1324 Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, ShTy));
1332 DAG.getConstant(NVTBits-1, ShTy));
1360 EVT ShTy = Amt.getValueType(); local
1448 EVT ShTy = Amt.getValueType(); local
[all...]
H A DTargetLowering.cpp1465 EVT ShTy = getShiftAmountTy(InnerVT); local
1466 if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits()))
1467 ShTy = InnerVT;
1470 TLO.DAG.getConstant(ShAmt, ShTy));
H A DSelectionDAG.cpp1533 MVT ShTy = TLI.getShiftAmountTy(LHSTy); local
1534 if (OpTy == ShTy || OpTy.isVector()) return Op;
1536 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1537 return getNode(Opcode, Op.getDebugLoc(), ShTy, Op);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2131 static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, argument
2137 Op->RegShiftedReg.ShiftTy = ShTy;
2146 static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, argument
2151 Op->RegShiftedImm.ShiftTy = ShTy;

Completed in 290 milliseconds