Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:NumBits

2268     unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
2269 if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
3234 /// SplatByte - Distribute ByteVal over NumBits bits.
3235 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
3236 APInt Val = APInt(NumBits, ByteVal);
3238 for (unsigned i = NumBits; i > 8; i >>= 1) {
3251 unsigned NumBits = VT.getScalarType().getSizeInBits();
3253 APInt Val = SplatByte(NumBits, C->getZExtValue() & 255);
3260 if (NumBits > 8) {
3263 APInt Magic = SplatByte(NumBits, 0x01);
4508 unsigned NumBits = VT.getScalarType().getSizeInBits()*2;
4509 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)