Searched defs:LowBits (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp450 unsigned LowBits = (*RelocPos + ResultPtr) & 65535; local
452 *RelocPos = LowBits | HighBits; // Slam into low 16-bits
459 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC; local
461 *RelocPos = LowBits | HighBits; // Slam into low 14-bits.
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp131 unsigned LowBits = TypeWidth - CI->getZExtValue(); local
133 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
155 unsigned LowBits = CI->getZExtValue() - NumBits; local
157 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits))
/external/llvm/lib/Analysis/
H A DValueTracking.cpp550 APInt LowBits = RA - 1; local
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); local
591 KnownZero |= ~LowBits;
740 unsigned LowBits = Log2_32(BitWidth)+1; local
748 unsigned LowBits = Log2_32(BitWidth)+1; local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1913 unsigned LowBits = Log2_32(BitWidth)+1; local
1914 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
2056 APInt LowBits = RA - 1; local
2057 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
2061 KnownZero = KnownZero2 & LowBits;
2062 KnownOne = KnownOne2 & LowBits;
2066 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
2067 KnownZero |= ~LowBits;
2071 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) !
2081 APInt LowBits = (RA - 1); local
[all...]
H A DDAGCombiner.cpp3771 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue(); local
3772 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);

Completed in 177 milliseconds