Searched refs:ShiftVT (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/ |
D | SPUISelLowering.cpp | 2196 EVT ShiftVT = TLI.getShiftAmountTy(N0.getValueType()); in LowerI8Math() local 2230 if (!N1VT.bitsEq(ShiftVT)) { in LowerI8Math() 2231 unsigned N1Opc = N1.getValueType().bitsLT(ShiftVT) in LowerI8Math() 2234 N1 = DAG.getNode(N1Opc, dl, ShiftVT, N1); in LowerI8Math() 2253 if (!N1VT.bitsEq(ShiftVT)) { in LowerI8Math() 2256 if (N1.getValueType().bitsGT(ShiftVT)) in LowerI8Math() 2259 N1 = DAG.getNode(N1Opc, dl, ShiftVT, N1); in LowerI8Math() 2270 if (!N1VT.bitsEq(ShiftVT)) { in LowerI8Math() 2273 if (N1VT.bitsGT(ShiftVT)) in LowerI8Math() 2275 N1 = DAG.getNode(N1Opc, dl, ShiftVT, N1); in LowerI8Math()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 4871 EVT ShiftVT = N0.getOperand(1).getValueType(); in combineSIGN_EXTEND() local 4876 ShiftVT)); in combineSIGN_EXTEND() 4878 DAG.getConstant(NewSraAmt, SDLoc(N0), ShiftVT)); in combineSIGN_EXTEND()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 3380 EVT ShiftVT = N->getOperand(1).getValueType(); in LowerShift() local 3381 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT, in LowerShift() 3382 getZeroVector(ShiftVT, DAG, dl), in LowerShift()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 4821 EVT ShiftVT = N->getOperand(1).getValueType(); in LowerShift() local 4822 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT, in LowerShift() 4823 getZeroVector(ShiftVT, DAG, dl), in LowerShift()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 7888 MVT ShiftVT = ByteShift ? MVT::getVectorVT(MVT::i8, VT.getSizeInBits() / 8) in lowerVectorShuffleAsShift() local 7890 assert(DAG.getTargetLoweringInfo().isTypeLegal(ShiftVT) && in lowerVectorShuffleAsShift() 7892 V = DAG.getBitcast(ShiftVT, V); in lowerVectorShuffleAsShift() 7894 V = DAG.getNode(OpCode, DL, ShiftVT, V, in lowerVectorShuffleAsShift() 19813 MVT ShiftVT = MVT::getVectorVT(MVT::i16, NumElts / 2); in LowerScalarImmediateShift() local 19836 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, ShiftVT, in LowerScalarImmediateShift() 19845 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, ShiftVT, in LowerScalarImmediateShift()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 2991 EVT ShiftVT = TLI.getShiftAmountTy(HalfVT, DAG.getDataLayout()); in visitANDLike() local 2996 SDValue ShiftK = DAG.getConstant(ShiftBits, SL, ShiftVT); in visitANDLike()
|