Home | History | Annotate | Download | only in IPO

Lines Matching refs:OffsetByte

135     unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
137 OffsetByte = -(AllocBefore / 8 + 1);
139 OffsetByte = -((AllocBefore + 7) / 8 + (BitWidth + 7) / 8);
152 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
154 OffsetByte = AllocAfter / 8;
156 OffsetByte = (AllocAfter + 7) / 8;
584 int64_t OffsetByte;
587 setBeforeReturnValues(TargetsForSlot, AllocBefore, BitWidth, OffsetByte,
590 setAfterReturnValues(TargetsForSlot, AllocAfter, BitWidth, OffsetByte,
593 // Rewrite each call to a load from OffsetByte/OffsetBit.
596 Value *Addr = B.CreateConstGEP1_64(Call.VTable, OffsetByte);