Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:VTBits

2526   unsigned VTBits = VT.getScalarType().getSizeInBits();
2537 return VTBits-Tmp+1;
2540 return VTBits-Tmp;
2549 VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
2556 Tmp = VTBits-Tmp+1;
2566 if (Tmp > VTBits) Tmp = VTBits;
2573 if (C->getZExtValue() >= VTBits || // Bad shift.
2625 return VTBits;
2631 return VTBits;
2636 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
2640 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2662 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
2663 return VTBits;
2686 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
2687 return VTBits;
2732 return VTBits-Tmp+1;
2735 return VTBits-Tmp;
2767 Mask <<= Mask.getBitWidth()-VTBits;
2770 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));