Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:VTBits

2131   unsigned VTBits = VT.getScalarType().getSizeInBits();
2142 return VTBits-Tmp+1;
2145 return VTBits-Tmp;
2153 Tmp = VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits();
2160 Tmp = VTBits-Tmp+1;
2170 if (Tmp > VTBits) Tmp = VTBits;
2177 if (C->getZExtValue() >= VTBits || // Bad shift.
2215 return VTBits;
2220 unsigned RotAmt = C->getZExtValue() & (VTBits-1);
2224 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2246 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
2247 return VTBits;
2270 if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue())
2271 return VTBits;
2301 return VTBits-Tmp+1;
2304 return VTBits-Tmp;
2336 Mask <<= Mask.getBitWidth()-VTBits;
2339 return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));