Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:EVTBits

5010   unsigned EVTBits = ExtVT.getSizeInBits();
5022 if ((ShAmt & (EVTBits-1)) == 0) {
5025 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
5061 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
5122 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
5129 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
5144 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5150 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
5159 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
5169 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
5173 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
5215 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5308 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))