Home
last modified time | relevance | path

Searched refs:LowBits (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCJITInfo.cpp447 unsigned LowBits = (*RelocPos + ResultPtr) & 65535; in relocate() local
449 *RelocPos = LowBits | HighBits; // Slam into low 16-bits in relocate()
456 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC; in relocate() local
458 *RelocPos = LowBits | HighBits; // Slam into low 14-bits. in relocate()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp696 APInt LowBits = RA - 1; in SimplifyDemandedUseBits() local
697 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth); in SimplifyDemandedUseBits()
703 KnownZero = LHSKnownZero & LowBits; in SimplifyDemandedUseBits()
704 KnownOne = LHSKnownOne & LowBits; in SimplifyDemandedUseBits()
708 if (LHSKnownZero[BitWidth-1] || ((LHSKnownZero & LowBits) == LowBits)) in SimplifyDemandedUseBits()
709 KnownZero |= ~LowBits; in SimplifyDemandedUseBits()
713 if (LHSKnownOne[BitWidth-1] && ((LHSKnownOne & LowBits) != 0)) in SimplifyDemandedUseBits()
714 KnownOne |= ~LowBits; in SimplifyDemandedUseBits()
DInstCombineShifts.cpp130 unsigned LowBits = TypeWidth - CI->getZExtValue(); in CanEvaluateShifted() local
132 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits)) in CanEvaluateShifted()
154 unsigned LowBits = CI->getZExtValue() - NumBits; in CanEvaluateShifted() local
156 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits)) in CanEvaluateShifted()
/external/llvm/lib/Analysis/
DValueTracking.cpp471 APInt LowBits = RA - 1; in ComputeMaskedBits() local
472 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth); in ComputeMaskedBits()
477 KnownZero = KnownZero2 & LowBits; in ComputeMaskedBits()
478 KnownOne = KnownOne2 & LowBits; in ComputeMaskedBits()
482 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits)) in ComputeMaskedBits()
483 KnownZero |= ~LowBits; in ComputeMaskedBits()
487 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0)) in ComputeMaskedBits()
488 KnownOne |= ~LowBits; in ComputeMaskedBits()
514 APInt LowBits = (RA - 1); in ComputeMaskedBits() local
515 APInt Mask2 = LowBits & Mask; in ComputeMaskedBits()
[all …]
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1832 unsigned LowBits = Log2_32(BitWidth)+1; in ComputeMaskedBits() local
1833 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits); in ComputeMaskedBits()
1991 APInt LowBits = RA - 1; in ComputeMaskedBits() local
1992 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth); in ComputeMaskedBits()
1996 KnownZero = KnownZero2 & LowBits; in ComputeMaskedBits()
1997 KnownOne = KnownOne2 & LowBits; in ComputeMaskedBits()
2001 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits)) in ComputeMaskedBits()
2002 KnownZero |= ~LowBits; in ComputeMaskedBits()
2006 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0)) in ComputeMaskedBits()
2007 KnownOne |= ~LowBits; in ComputeMaskedBits()
[all …]
DDAGCombiner.cpp3397 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue(); in visitSRA() local
3398 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits); in visitSRA()