Lines Matching defs:Reloc
425 uint32_t Reloc;
449 Reloc = (((Value >> 2) & 0x1f) << 8) | // Value 6-2 = Target 12-8
459 Reloc = (((Value >> 7) & 0x3) << 20) | // Value 8-7 = Target 21-20
471 Reloc = (((Value >> 12) & 0x1) << 21) | // Value 12 = Target 21
482 Reloc = (((Value >> 13) & 0x3) << 22) | // Value 14-13 = Target 23-22
494 Reloc = (((Value >> 13) & 0x1ff) << 16) | // Value 21-13 = Target 24-16
500 Reloc = (((Value >> 14) & 0xfff) << 16) | // Value 25-14 = Target 27-16
509 Reloc = Value;
521 dbgs().write_hex(OldData) << ": Reloc=0x"; dbgs().write_hex(Reloc););
528 InstAddr[i] |= uint8_t(Reloc >> (i * 8)) & 0xff; // Apply new reloc