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

/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1281 EVT ShTy = N->getOperand(1).getValueType(); local
1289 NVT, InL, DAG.getConstant(Amt-NVTBits, ShTy));
1303 Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, ShTy));
1306 DAG.getConstant(Amt, ShTy)),
1308 DAG.getConstant(NVTBits-Amt, ShTy)));
1319 NVT, InH, DAG.getConstant(Amt-NVTBits,ShTy));
1327 DAG.getConstant(Amt, ShTy)),
1329 DAG.getConstant(NVTBits-Amt, ShTy)));
1330 Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, ShTy));
1338 DAG.getConstant(NVTBits-1, ShTy));
1366 EVT ShTy = Amt.getValueType(); local
1454 EVT ShTy = Amt.getValueType(); local
[all...]
H A DTargetLowering.cpp640 EVT ShTy = getShiftAmountTy(InnerVT); local
641 if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits()))
642 ShTy = InnerVT;
645 TLO.DAG.getConstant(ShAmt, ShTy));
H A DSelectionDAG.cpp1595 EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy); local
1596 if (OpTy == ShTy || OpTy.isVector()) return Op;
1598 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1599 return getNode(Opcode, SDLoc(Op), ShTy, Op);
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2300 static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, argument
2306 Op->RegShiftedReg.ShiftTy = ShTy;
2315 static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, argument
2320 Op->RegShiftedImm.ShiftTy = ShTy;

Completed in 111 milliseconds