Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:VTBits

2530   unsigned VTBits = VT.getScalarType().getSizeInBits();
2541 return VTBits-Tmp+1;
2544 return VTBits-Tmp;
2553 VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
2560 Tmp = VTBits-Tmp+1;
2570 if (Tmp > VTBits) Tmp = VTBits;
2577 if (C->getZExtValue() >= VTBits || // Bad shift.
2629 return VTBits;
2635 return VTBits;
2640 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
2644 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2666 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
2667 return VTBits;
2690 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
2691 return VTBits;
2736 return VTBits-Tmp+1;
2739 return VTBits-Tmp;
2771 Mask <<= Mask.getBitWidth()-VTBits;
2774 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));