Lines Matching refs:RelocPos
415 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4; in relocate() local
421 ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2; in relocate()
424 *RelocPos |= (ResultPtr & ((1 << 24)-1)) << 2; in relocate()
429 ResultPtr = (ResultPtr-(intptr_t)RelocPos) >> 2; in relocate()
432 *RelocPos |= (ResultPtr & ((1 << 14)-1)) << 2; in relocate()
449 unsigned LowBits = (*RelocPos + ResultPtr) & 65535; in relocate()
450 unsigned HighBits = *RelocPos & ~65535; in relocate()
451 *RelocPos = LowBits | HighBits; // Slam into low 16-bits in relocate()
458 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC; in relocate()
459 unsigned HighBits = *RelocPos & 0xFFFF0003; in relocate()
460 *RelocPos = LowBits | HighBits; // Slam into low 14-bits. in relocate()