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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1271 EVT ShTy = N->getOperand(1).getValueType(); local
1279 NVT, InL, DAG.getConstant(Amt-NVTBits, ShTy));
1293 Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, ShTy));
1296 DAG.getConstant(Amt, ShTy)),
1298 DAG.getConstant(NVTBits-Amt, ShTy)));
1309 NVT, InH, DAG.getConstant(Amt-NVTBits,ShTy));
1317 DAG.getConstant(Amt, ShTy)),
1319 DAG.getConstant(NVTBits-Amt, ShTy)));
1320 Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, ShTy));
1328 DAG.getConstant(NVTBits-1, ShTy));
1356 EVT ShTy = Amt.getValueType(); local
1444 EVT ShTy = Amt.getValueType(); local
[all...]
H A DTargetLowering.cpp1482 EVT ShTy = getShiftAmountTy(InnerVT); local
1483 if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits()))
1484 ShTy = InnerVT;
1487 TLO.DAG.getConstant(ShAmt, ShTy));
H A DSelectionDAG.cpp1476 MVT ShTy = TLI.getShiftAmountTy(LHSTy); local
1477 if (OpTy == ShTy || OpTy.isVector()) return Op;
1479 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1480 return getNode(Opcode, Op.getDebugLoc(), ShTy, Op);
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2102 static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, argument
2108 Op->RegShiftedReg.ShiftTy = ShTy;
2117 static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, argument
2122 Op->RegShiftedImm.ShiftTy = ShTy;

Completed in 121 milliseconds