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

  /external/llvm/unittests/Transforms/IPO/
WholeProgramDevirt.cpp 80 uint64_t OffsetBit;
84 setBeforeReturnValues(Targets, 32, 1, OffsetByte, OffsetBit);
86 EXPECT_EQ(0ull, OffsetBit);
94 setBeforeReturnValues(Targets, 39, 1, OffsetByte, OffsetBit);
96 EXPECT_EQ(7ull, OffsetBit);
104 setBeforeReturnValues(Targets, 40, 8, OffsetByte, OffsetBit);
106 EXPECT_EQ(0ull, OffsetBit);
114 setBeforeReturnValues(Targets, 48, 16, OffsetByte, OffsetBit);
116 EXPECT_EQ(0ull, OffsetBit);
126 setAfterReturnValues(Targets, 32, 1, OffsetByte, OffsetBit);
    [all...]
  /external/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 135 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
140 OffsetBit = AllocBefore % 8;
152 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
157 OffsetBit = AllocAfter % 8;
585 uint64_t OffsetBit;
588 OffsetBit);
591 OffsetBit);
593 // Rewrite each call to a load from OffsetByte/OffsetBit.
599 Value *Bit = ConstantInt::get(Int8Ty, 1ULL << OffsetBit);

Completed in 185 milliseconds