Home
last modified time | relevance | path

Searched refs:AlignLog2 (Results 1 – 3 of 3) sorted by relevance

/external/llvm/unittests/Transforms/IPO/
DLowerBitSets.cpp21 unsigned AlignLog2; in TEST() member
63 EXPECT_EQ(T.AlignLog2, BSI.AlignLog2); in TEST()
/external/llvm/lib/Transforms/IPO/
DLowerBitSets.cpp54 if ((Offset - ByteOffset) % (uint64_t(1) << AlignLog2) != 0) in containsGlobalOffset()
57 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2; in containsGlobalOffset()
99 << (1 << AlignLog2); in print()
130 BSI.AlignLog2 = 0; in build()
132 BSI.AlignLog2 = countTrailingZeros(Mask, ZB_Undefined); in build()
136 BSI.BitSize = ((Max - Min) >> BSI.AlignLog2) + 1; in build()
138 Offset >>= BSI.AlignLog2; in build()
484 if (BSI.AlignLog2 == 0) { in lowerBitSetCall()
496 B.CreateLShr(PtrOffset, ConstantInt::get(IntPtrTy, BSI.AlignLog2)); in lowerBitSetCall()
499 ConstantInt::get(IntPtrTy, DL.getPointerSizeInBits(0) - BSI.AlignLog2)); in lowerBitSetCall()
/external/llvm/include/llvm/Transforms/IPO/
DLowerBitSets.h46 unsigned AlignLog2; member