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

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1265 EVT ShTy = N->getOperand(1).getValueType(); local
1273 NVT, InL, DAG.getConstant(Amt-NVTBits, ShTy));
1287 Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, ShTy));
1290 DAG.getConstant(Amt, ShTy)),
1292 DAG.getConstant(NVTBits-Amt, ShTy)));
1303 NVT, InH, DAG.getConstant(Amt-NVTBits,ShTy));
1311 DAG.getConstant(Amt, ShTy)),
1313 DAG.getConstant(NVTBits-Amt, ShTy)));
1314 Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, ShTy));
1322 DAG.getConstant(NVTBits-1, ShTy));
1350 EVT ShTy = Amt.getValueType(); local
1438 EVT ShTy = Amt.getValueType(); local
[all...]
H A DTargetLowering.cpp622 EVT ShTy = getShiftAmountTy(InnerVT); local
623 if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits()))
624 ShTy = InnerVT;
627 TLO.DAG.getConstant(ShAmt, ShTy));
H A DSelectionDAG.cpp1521 EVT ShTy = TLI.getShiftAmountTy(LHSTy); local
1522 if (OpTy == ShTy || OpTy.isVector()) return Op;
1524 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1525 return getNode(Opcode, Op.getDebugLoc(), ShTy, Op);
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2174 static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy, argument
2180 Op->RegShiftedReg.ShiftTy = ShTy;
2189 static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy, argument
2194 Op->RegShiftedImm.ShiftTy = ShTy;

Completed in 200 milliseconds