Lines Matching refs:BitOffset
53 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2; in containsGlobalOffset() local
54 if (BitOffset >= BitSize) in containsGlobalOffset()
57 return Bits.count(BitOffset); in containsGlobalOffset()
217 Value *BitOffset);
292 Value *BitOffset) { in createMaskedBitTest() argument
296 BitOffset = B.CreateZExtOrTrunc(BitOffset, BitsType); in createMaskedBitTest()
298 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1)); in createMaskedBitTest()
377 ByteArrayInfo *&BAI, Value *BitOffset) { in createBitSetTest() argument
391 return createMaskedBitTest(B, BitsConst, BitOffset); in createBitSetTest()
409 Value *ByteAddr = B.CreateGEP(Ty, ByteArray, BitOffset); in createBitSetTest()
444 Value *BitOffset; in lowerBitSetCall() local
446 BitOffset = PtrOffset; in lowerBitSetCall()
461 BitOffset = B.CreateOr(OffsetSHR, OffsetSHL); in lowerBitSetCall()
465 Value *OffsetInRange = B.CreateICmpULT(BitOffset, BitSizeConst); in lowerBitSetCall()
476 Value *Bit = createBitSetTest(ThenB, BSI, BAI, BitOffset); in lowerBitSetCall()