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

  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 461 unsigned LowBits = (*RelocPos + ResultPtr) & 65535;
463 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
470 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC;
472 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
  /art/compiler/utils/x86_64/
constants_x86_64.h 37 uint8_t LowBits() const {
54 uint8_t LowBits() const {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 133 unsigned LowBits = TypeWidth - CI->getZExtValue();
135 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
157 unsigned LowBits = CI->getZExtValue() - NumBits;
159 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 538 APInt LowBits = RA - 1;
542 KnownZero = KnownZero2 & LowBits;
543 KnownOne = KnownOne2 & LowBits;
547 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
548 KnownZero |= ~LowBits;
552 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0))
553 KnownOne |= ~LowBits;
575 APInt LowBits = (RA - 1);
578 KnownZero |= ~LowBits;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]

Completed in 716 milliseconds