HomeSort by relevance Sort by last modified time
    Searched refs:LowBits (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 450 unsigned LowBits = (*RelocPos + ResultPtr) & 65535;
452 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
459 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC;
461 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 726 APInt LowBits = RA - 1;
727 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
733 KnownZero = LHSKnownZero & LowBits;
734 KnownOne = LHSKnownOne & LowBits;
    [all...]
InstCombineShifts.cpp 131 unsigned LowBits = TypeWidth - CI->getZExtValue();
133 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
155 unsigned LowBits = CI->getZExtValue() - NumBits;
157 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
  /external/llvm/lib/Analysis/
ValueTracking.cpp 550 APInt LowBits = RA - 1;
554 KnownZero = KnownZero2 & LowBits;
555 KnownOne = KnownOne2 & LowBits;
559 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
560 KnownZero |= ~LowBits;
564 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
565 KnownOne |= ~LowBits;
587 APInt LowBits = (RA - 1);
591 KnownZero |= ~LowBits;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]

Completed in 554 milliseconds