1 //===- PPC64.cpp ----------------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "Symbols.h" 10 #include "SyntheticSections.h" 11 #include "Target.h" 12 #include "lld/Common/ErrorHandler.h" 13 #include "llvm/Support/Endian.h" 14 15 using namespace llvm; 16 using namespace llvm::object; 17 using namespace llvm::support::endian; 18 using namespace llvm::ELF; 19 using namespace lld; 20 using namespace lld::elf; 21 22 static uint64_t ppc64TocOffset = 0x8000; 23 static uint64_t dynamicThreadPointerOffset = 0x8000; 24 25 // The instruction encoding of bits 21-30 from the ISA for the Xform and Dform 26 // instructions that can be used as part of the initial exec TLS sequence. 27 enum XFormOpcd { 28 LBZX = 87, 29 LHZX = 279, 30 LWZX = 23, 31 LDX = 21, 32 STBX = 215, 33 STHX = 407, 34 STWX = 151, 35 STDX = 149, 36 ADD = 266, 37 }; 38 39 enum DFormOpcd { 40 LBZ = 34, 41 LBZU = 35, 42 LHZ = 40, 43 LHZU = 41, 44 LHAU = 43, 45 LWZ = 32, 46 LWZU = 33, 47 LFSU = 49, 48 LD = 58, 49 LFDU = 51, 50 STB = 38, 51 STBU = 39, 52 STH = 44, 53 STHU = 45, 54 STW = 36, 55 STWU = 37, 56 STFSU = 53, 57 STFDU = 55, 58 STD = 62, 59 ADDI = 14 60 }; 61 62 uint64_t elf::getPPC64TocBase() { 63 // The TOC consists of sections .got, .toc, .tocbss, .plt in that order. The 64 // TOC starts where the first of these sections starts. We always create a 65 // .got when we see a relocation that uses it, so for us the start is always 66 // the .got. 67 uint64_t tocVA = in.got->getVA(); 68 69 // Per the ppc64-elf-linux ABI, The TOC base is TOC value plus 0x8000 70 // thus permitting a full 64 Kbytes segment. Note that the glibc startup 71 // code (crt1.o) assumes that you can get from the TOC base to the 72 // start of the .toc section with only a single (signed) 16-bit relocation. 73 return tocVA + ppc64TocOffset; 74 } 75 76 unsigned elf::getPPC64GlobalEntryToLocalEntryOffset(uint8_t stOther) { 77 // The offset is encoded into the 3 most significant bits of the st_other 78 // field, with some special values described in section 3.4.1 of the ABI: 79 // 0 --> Zero offset between the GEP and LEP, and the function does NOT use 80 // the TOC pointer (r2). r2 will hold the same value on returning from 81 // the function as it did on entering the function. 82 // 1 --> Zero offset between the GEP and LEP, and r2 should be treated as a 83 // caller-saved register for all callers. 84 // 2-6 --> The binary logarithm of the offset eg: 85 // 2 --> 2^2 = 4 bytes --> 1 instruction. 86 // 6 --> 2^6 = 64 bytes --> 16 instructions. 87 // 7 --> Reserved. 88 uint8_t gepToLep = (stOther >> 5) & 7; 89 if (gepToLep < 2) 90 return 0; 91 92 // The value encoded in the st_other bits is the 93 // log-base-2(offset). 94 if (gepToLep < 7) 95 return 1 << gepToLep; 96 97 error("reserved value of 7 in the 3 most-significant-bits of st_other"); 98 return 0; 99 } 100 101 bool elf::isPPC64SmallCodeModelTocReloc(RelType type) { 102 // The only small code model relocations that access the .toc section. 103 return type == R_PPC64_TOC16 || type == R_PPC64_TOC16_DS; 104 } 105 106 // Find the R_PPC64_ADDR64 in .rela.toc with matching offset. 107 template <typename ELFT> 108 static std::pair<Defined *, int64_t> 109 getRelaTocSymAndAddend(InputSectionBase *tocSec, uint64_t offset) { 110 if (tocSec->numRelocations == 0) 111 return {}; 112 113 // .rela.toc contains exclusively R_PPC64_ADDR64 relocations sorted by 114 // r_offset: 0, 8, 16, etc. For a given Offset, Offset / 8 gives us the 115 // relocation index in most cases. 116 // 117 // In rare cases a TOC entry may store a constant that doesn't need an 118 // R_PPC64_ADDR64, the corresponding r_offset is therefore missing. Offset / 8 119 // points to a relocation with larger r_offset. Do a linear probe then. 120 // Constants are extremely uncommon in .toc and the extra number of array 121 // accesses can be seen as a small constant. 122 ArrayRef<typename ELFT::Rela> relas = tocSec->template relas<ELFT>(); 123 uint64_t index = std::min<uint64_t>(offset / 8, relas.size() - 1); 124 for (;;) { 125 if (relas[index].r_offset == offset) { 126 Symbol &sym = tocSec->getFile<ELFT>()->getRelocTargetSym(relas[index]); 127 return {dyn_cast<Defined>(&sym), getAddend<ELFT>(relas[index])}; 128 } 129 if (relas[index].r_offset < offset || index == 0) 130 break; 131 --index; 132 } 133 return {}; 134 } 135 136 // When accessing a symbol defined in another translation unit, compilers 137 // reserve a .toc entry, allocate a local label and generate toc-indirect 138 // instuctions: 139 // 140 // addis 3, 2, .LC0@toc@ha # R_PPC64_TOC16_HA 141 // ld 3, .LC0@toc@l(3) # R_PPC64_TOC16_LO_DS, load the address from a .toc entry 142 // ld/lwa 3, 0(3) # load the value from the address 143 // 144 // .section .toc,"aw",@progbits 145 // .LC0: .tc var[TC],var 146 // 147 // If var is defined, non-preemptable and addressable with a 32-bit signed 148 // offset from the toc base, the address of var can be computed by adding an 149 // offset to the toc base, saving a load. 150 // 151 // addis 3,2,var@toc@ha # this may be relaxed to a nop, 152 // addi 3,3,var@toc@l # then this becomes addi 3,2,var@toc 153 // ld/lwa 3, 0(3) # load the value from the address 154 // 155 // Returns true if the relaxation is performed. 156 bool elf::tryRelaxPPC64TocIndirection(RelType type, const Relocation &rel, 157 uint8_t *bufLoc) { 158 assert(config->tocOptimize); 159 if (rel.addend < 0) 160 return false; 161 162 // If the symbol is not the .toc section, this isn't a toc-indirection. 163 Defined *defSym = dyn_cast<Defined>(rel.sym); 164 if (!defSym || !defSym->isSection() || defSym->section->name != ".toc") 165 return false; 166 167 Defined *d; 168 int64_t addend; 169 auto *tocISB = cast<InputSectionBase>(defSym->section); 170 std::tie(d, addend) = 171 config->isLE ? getRelaTocSymAndAddend<ELF64LE>(tocISB, rel.addend) 172 : getRelaTocSymAndAddend<ELF64BE>(tocISB, rel.addend); 173 174 // Only non-preemptable defined symbols can be relaxed. 175 if (!d || d->isPreemptible) 176 return false; 177 178 // R_PPC64_ADDR64 should have created a canonical PLT for the non-preemptable 179 // ifunc and changed its type to STT_FUNC. 180 assert(!d->isGnuIFunc()); 181 182 // Two instructions can materialize a 32-bit signed offset from the toc base. 183 uint64_t tocRelative = d->getVA(addend) - getPPC64TocBase(); 184 if (!isInt<32>(tocRelative)) 185 return false; 186 187 // Add PPC64TocOffset that will be subtracted by relocateOne(). 188 target->relaxGot(bufLoc, type, tocRelative + ppc64TocOffset); 189 return true; 190 } 191 192 namespace { 193 class PPC64 final : public TargetInfo { 194 public: 195 PPC64(); 196 int getTlsGdRelaxSkip(RelType type) const override; 197 uint32_t calcEFlags() const override; 198 RelExpr getRelExpr(RelType type, const Symbol &s, 199 const uint8_t *loc) const override; 200 RelType getDynRel(RelType type) const override; 201 void writePltHeader(uint8_t *buf) const override; 202 void writePlt(uint8_t *buf, uint64_t gotPltEntryAddr, uint64_t pltEntryAddr, 203 int32_t index, unsigned relOff) const override; 204 void relocateOne(uint8_t *loc, RelType type, uint64_t val) const override; 205 void writeGotHeader(uint8_t *buf) const override; 206 bool needsThunk(RelExpr expr, RelType type, const InputFile *file, 207 uint64_t branchAddr, const Symbol &s) const override; 208 uint32_t getThunkSectionSpacing() const override; 209 bool inBranchRange(RelType type, uint64_t src, uint64_t dst) const override; 210 RelExpr adjustRelaxExpr(RelType type, const uint8_t *data, 211 RelExpr expr) const override; 212 void relaxGot(uint8_t *loc, RelType type, uint64_t val) const override; 213 void relaxTlsGdToIe(uint8_t *loc, RelType type, uint64_t val) const override; 214 void relaxTlsGdToLe(uint8_t *loc, RelType type, uint64_t val) const override; 215 void relaxTlsLdToLe(uint8_t *loc, RelType type, uint64_t val) const override; 216 void relaxTlsIeToLe(uint8_t *loc, RelType type, uint64_t val) const override; 217 218 bool adjustPrologueForCrossSplitStack(uint8_t *loc, uint8_t *end, 219 uint8_t stOther) const override; 220 }; 221 } // namespace 222 223 // Relocation masks following the #lo(value), #hi(value), #ha(value), 224 // #higher(value), #highera(value), #highest(value), and #highesta(value) 225 // macros defined in section 4.5.1. Relocation Types of the PPC-elf64abi 226 // document. 227 static uint16_t lo(uint64_t v) { return v; } 228 static uint16_t hi(uint64_t v) { return v >> 16; } 229 static uint16_t ha(uint64_t v) { return (v + 0x8000) >> 16; } 230 static uint16_t higher(uint64_t v) { return v >> 32; } 231 static uint16_t highera(uint64_t v) { return (v + 0x8000) >> 32; } 232 static uint16_t highest(uint64_t v) { return v >> 48; } 233 static uint16_t highesta(uint64_t v) { return (v + 0x8000) >> 48; } 234 235 // Extracts the 'PO' field of an instruction encoding. 236 static uint8_t getPrimaryOpCode(uint32_t encoding) { return (encoding >> 26); } 237 238 static bool isDQFormInstruction(uint32_t encoding) { 239 switch (getPrimaryOpCode(encoding)) { 240 default: 241 return false; 242 case 56: 243 // The only instruction with a primary opcode of 56 is `lq`. 244 return true; 245 case 61: 246 // There are both DS and DQ instruction forms with this primary opcode. 247 // Namely `lxv` and `stxv` are the DQ-forms that use it. 248 // The DS 'XO' bits being set to 01 is restricted to DQ form. 249 return (encoding & 3) == 0x1; 250 } 251 } 252 253 static bool isInstructionUpdateForm(uint32_t encoding) { 254 switch (getPrimaryOpCode(encoding)) { 255 default: 256 return false; 257 case LBZU: 258 case LHAU: 259 case LHZU: 260 case LWZU: 261 case LFSU: 262 case LFDU: 263 case STBU: 264 case STHU: 265 case STWU: 266 case STFSU: 267 case STFDU: 268 return true; 269 // LWA has the same opcode as LD, and the DS bits is what differentiates 270 // between LD/LDU/LWA 271 case LD: 272 case STD: 273 return (encoding & 3) == 1; 274 } 275 } 276 277 // There are a number of places when we either want to read or write an 278 // instruction when handling a half16 relocation type. On big-endian the buffer 279 // pointer is pointing into the middle of the word we want to extract, and on 280 // little-endian it is pointing to the start of the word. These 2 helpers are to 281 // simplify reading and writing in that context. 282 static void writeFromHalf16(uint8_t *loc, uint32_t insn) { 283 write32(config->isLE ? loc : loc - 2, insn); 284 } 285 286 static uint32_t readFromHalf16(const uint8_t *loc) { 287 return read32(config->isLE ? loc : loc - 2); 288 } 289 290 PPC64::PPC64() { 291 gotRel = R_PPC64_GLOB_DAT; 292 noneRel = R_PPC64_NONE; 293 pltRel = R_PPC64_JMP_SLOT; 294 relativeRel = R_PPC64_RELATIVE; 295 iRelativeRel = R_PPC64_IRELATIVE; 296 symbolicRel = R_PPC64_ADDR64; 297 pltEntrySize = 4; 298 gotBaseSymInGotPlt = false; 299 gotHeaderEntriesNum = 1; 300 gotPltHeaderEntriesNum = 2; 301 pltHeaderSize = 60; 302 needsThunks = true; 303 304 tlsModuleIndexRel = R_PPC64_DTPMOD64; 305 tlsOffsetRel = R_PPC64_DTPREL64; 306 307 tlsGotRel = R_PPC64_TPREL64; 308 309 needsMoreStackNonSplit = false; 310 311 // We need 64K pages (at least under glibc/Linux, the loader won't 312 // set different permissions on a finer granularity than that). 313 defaultMaxPageSize = 65536; 314 315 // The PPC64 ELF ABI v1 spec, says: 316 // 317 // It is normally desirable to put segments with different characteristics 318 // in separate 256 Mbyte portions of the address space, to give the 319 // operating system full paging flexibility in the 64-bit address space. 320 // 321 // And because the lowest non-zero 256M boundary is 0x10000000, PPC64 linkers 322 // use 0x10000000 as the starting address. 323 defaultImageBase = 0x10000000; 324 325 write32(trapInstr.data(), 0x7fe00008); 326 } 327 328 int PPC64::getTlsGdRelaxSkip(RelType type) const { 329 // A __tls_get_addr call instruction is marked with 2 relocations: 330 // 331 // R_PPC64_TLSGD / R_PPC64_TLSLD: marker relocation 332 // R_PPC64_REL24: __tls_get_addr 333 // 334 // After the relaxation we no longer call __tls_get_addr and should skip both 335 // relocations to not create a false dependence on __tls_get_addr being 336 // defined. 337 if (type == R_PPC64_TLSGD || type == R_PPC64_TLSLD) 338 return 2; 339 return 1; 340 } 341 342 static uint32_t getEFlags(InputFile *file) { 343 if (config->ekind == ELF64BEKind) 344 return cast<ObjFile<ELF64BE>>(file)->getObj().getHeader()->e_flags; 345 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader()->e_flags; 346 } 347 348 // This file implements v2 ABI. This function makes sure that all 349 // object files have v2 or an unspecified version as an ABI version. 350 uint32_t PPC64::calcEFlags() const { 351 for (InputFile *f : objectFiles) { 352 uint32_t flag = getEFlags(f); 353 if (flag == 1) 354 error(toString(f) + ": ABI version 1 is not supported"); 355 else if (flag > 2) 356 error(toString(f) + ": unrecognized e_flags: " + Twine(flag)); 357 } 358 return 2; 359 } 360 361 void PPC64::relaxGot(uint8_t *loc, RelType type, uint64_t val) const { 362 switch (type) { 363 case R_PPC64_TOC16_HA: 364 // Convert "addis reg, 2, .LC0@toc@h" to "addis reg, 2, var@toc@h" or "nop". 365 relocateOne(loc, type, val); 366 break; 367 case R_PPC64_TOC16_LO_DS: { 368 // Convert "ld reg, .LC0@toc@l(reg)" to "addi reg, reg, var@toc@l" or 369 // "addi reg, 2, var@toc". 370 uint32_t insn = readFromHalf16(loc); 371 if (getPrimaryOpCode(insn) != LD) 372 error("expected a 'ld' for got-indirect to toc-relative relaxing"); 373 writeFromHalf16(loc, (insn & 0x03ffffff) | 0x38000000); 374 relocateOne(loc, R_PPC64_TOC16_LO, val); 375 break; 376 } 377 default: 378 llvm_unreachable("unexpected relocation type"); 379 } 380 } 381 382 void PPC64::relaxTlsGdToLe(uint8_t *loc, RelType type, uint64_t val) const { 383 // Reference: 3.7.4.2 of the 64-bit ELF V2 abi supplement. 384 // The general dynamic code sequence for a global `x` will look like: 385 // Instruction Relocation Symbol 386 // addis r3, r2, x@got@tlsgd@ha R_PPC64_GOT_TLSGD16_HA x 387 // addi r3, r3, x@got@tlsgd@l R_PPC64_GOT_TLSGD16_LO x 388 // bl __tls_get_addr(x@tlsgd) R_PPC64_TLSGD x 389 // R_PPC64_REL24 __tls_get_addr 390 // nop None None 391 392 // Relaxing to local exec entails converting: 393 // addis r3, r2, x@got@tlsgd@ha into nop 394 // addi r3, r3, x@got@tlsgd@l into addis r3, r13, x@tprel@ha 395 // bl __tls_get_addr(x@tlsgd) into nop 396 // nop into addi r3, r3, x@tprel@l 397 398 switch (type) { 399 case R_PPC64_GOT_TLSGD16_HA: 400 writeFromHalf16(loc, 0x60000000); // nop 401 break; 402 case R_PPC64_GOT_TLSGD16: 403 case R_PPC64_GOT_TLSGD16_LO: 404 writeFromHalf16(loc, 0x3c6d0000); // addis r3, r13 405 relocateOne(loc, R_PPC64_TPREL16_HA, val); 406 break; 407 case R_PPC64_TLSGD: 408 write32(loc, 0x60000000); // nop 409 write32(loc + 4, 0x38630000); // addi r3, r3 410 // Since we are relocating a half16 type relocation and Loc + 4 points to 411 // the start of an instruction we need to advance the buffer by an extra 412 // 2 bytes on BE. 413 relocateOne(loc + 4 + (config->ekind == ELF64BEKind ? 2 : 0), 414 R_PPC64_TPREL16_LO, val); 415 break; 416 default: 417 llvm_unreachable("unsupported relocation for TLS GD to LE relaxation"); 418 } 419 } 420 421 void PPC64::relaxTlsLdToLe(uint8_t *loc, RelType type, uint64_t val) const { 422 // Reference: 3.7.4.3 of the 64-bit ELF V2 abi supplement. 423 // The local dynamic code sequence for a global `x` will look like: 424 // Instruction Relocation Symbol 425 // addis r3, r2, x@got@tlsld@ha R_PPC64_GOT_TLSLD16_HA x 426 // addi r3, r3, x@got@tlsld@l R_PPC64_GOT_TLSLD16_LO x 427 // bl __tls_get_addr(x@tlsgd) R_PPC64_TLSLD x 428 // R_PPC64_REL24 __tls_get_addr 429 // nop None None 430 431 // Relaxing to local exec entails converting: 432 // addis r3, r2, x@got@tlsld@ha into nop 433 // addi r3, r3, x@got@tlsld@l into addis r3, r13, 0 434 // bl __tls_get_addr(x@tlsgd) into nop 435 // nop into addi r3, r3, 4096 436 437 switch (type) { 438 case R_PPC64_GOT_TLSLD16_HA: 439 writeFromHalf16(loc, 0x60000000); // nop 440 break; 441 case R_PPC64_GOT_TLSLD16_LO: 442 writeFromHalf16(loc, 0x3c6d0000); // addis r3, r13, 0 443 break; 444 case R_PPC64_TLSLD: 445 write32(loc, 0x60000000); // nop 446 write32(loc + 4, 0x38631000); // addi r3, r3, 4096 447 break; 448 case R_PPC64_DTPREL16: 449 case R_PPC64_DTPREL16_HA: 450 case R_PPC64_DTPREL16_HI: 451 case R_PPC64_DTPREL16_DS: 452 case R_PPC64_DTPREL16_LO: 453 case R_PPC64_DTPREL16_LO_DS: 454 relocateOne(loc, type, val); 455 break; 456 default: 457 llvm_unreachable("unsupported relocation for TLS LD to LE relaxation"); 458 } 459 } 460 461 unsigned elf::getPPCDFormOp(unsigned secondaryOp) { 462 switch (secondaryOp) { 463 case LBZX: 464 return LBZ; 465 case LHZX: 466 return LHZ; 467 case LWZX: 468 return LWZ; 469 case LDX: 470 return LD; 471 case STBX: 472 return STB; 473 case STHX: 474 return STH; 475 case STWX: 476 return STW; 477 case STDX: 478 return STD; 479 case ADD: 480 return ADDI; 481 default: 482 return 0; 483 } 484 } 485 486 void PPC64::relaxTlsIeToLe(uint8_t *loc, RelType type, uint64_t val) const { 487 // The initial exec code sequence for a global `x` will look like: 488 // Instruction Relocation Symbol 489 // addis r9, r2, x@got@tprel@ha R_PPC64_GOT_TPREL16_HA x 490 // ld r9, x@got@tprel@l(r9) R_PPC64_GOT_TPREL16_LO_DS x 491 // add r9, r9, x@tls R_PPC64_TLS x 492 493 // Relaxing to local exec entails converting: 494 // addis r9, r2, x@got@tprel@ha into nop 495 // ld r9, x@got@tprel@l(r9) into addis r9, r13, x@tprel@ha 496 // add r9, r9, x@tls into addi r9, r9, x@tprel@l 497 498 // x@tls R_PPC64_TLS is a relocation which does not compute anything, 499 // it is replaced with r13 (thread pointer). 500 501 // The add instruction in the initial exec sequence has multiple variations 502 // that need to be handled. If we are building an address it will use an add 503 // instruction, if we are accessing memory it will use any of the X-form 504 // indexed load or store instructions. 505 506 unsigned offset = (config->ekind == ELF64BEKind) ? 2 : 0; 507 switch (type) { 508 case R_PPC64_GOT_TPREL16_HA: 509 write32(loc - offset, 0x60000000); // nop 510 break; 511 case R_PPC64_GOT_TPREL16_LO_DS: 512 case R_PPC64_GOT_TPREL16_DS: { 513 uint32_t regNo = read32(loc - offset) & 0x03E00000; // bits 6-10 514 write32(loc - offset, 0x3C0D0000 | regNo); // addis RegNo, r13 515 relocateOne(loc, R_PPC64_TPREL16_HA, val); 516 break; 517 } 518 case R_PPC64_TLS: { 519 uint32_t primaryOp = getPrimaryOpCode(read32(loc)); 520 if (primaryOp != 31) 521 error("unrecognized instruction for IE to LE R_PPC64_TLS"); 522 uint32_t secondaryOp = (read32(loc) & 0x000007FE) >> 1; // bits 21-30 523 uint32_t dFormOp = getPPCDFormOp(secondaryOp); 524 if (dFormOp == 0) 525 error("unrecognized instruction for IE to LE R_PPC64_TLS"); 526 write32(loc, ((dFormOp << 26) | (read32(loc) & 0x03FFFFFF))); 527 relocateOne(loc + offset, R_PPC64_TPREL16_LO, val); 528 break; 529 } 530 default: 531 llvm_unreachable("unknown relocation for IE to LE"); 532 break; 533 } 534 } 535 536 RelExpr PPC64::getRelExpr(RelType type, const Symbol &s, 537 const uint8_t *loc) const { 538 switch (type) { 539 case R_PPC64_NONE: 540 return R_NONE; 541 case R_PPC64_ADDR16: 542 case R_PPC64_ADDR16_DS: 543 case R_PPC64_ADDR16_HA: 544 case R_PPC64_ADDR16_HI: 545 case R_PPC64_ADDR16_HIGHER: 546 case R_PPC64_ADDR16_HIGHERA: 547 case R_PPC64_ADDR16_HIGHEST: 548 case R_PPC64_ADDR16_HIGHESTA: 549 case R_PPC64_ADDR16_LO: 550 case R_PPC64_ADDR16_LO_DS: 551 case R_PPC64_ADDR32: 552 case R_PPC64_ADDR64: 553 return R_ABS; 554 case R_PPC64_GOT16: 555 case R_PPC64_GOT16_DS: 556 case R_PPC64_GOT16_HA: 557 case R_PPC64_GOT16_HI: 558 case R_PPC64_GOT16_LO: 559 case R_PPC64_GOT16_LO_DS: 560 return R_GOT_OFF; 561 case R_PPC64_TOC16: 562 case R_PPC64_TOC16_DS: 563 case R_PPC64_TOC16_HI: 564 case R_PPC64_TOC16_LO: 565 return R_GOTREL; 566 case R_PPC64_TOC16_HA: 567 case R_PPC64_TOC16_LO_DS: 568 return config->tocOptimize ? R_PPC64_RELAX_TOC : R_GOTREL; 569 case R_PPC64_TOC: 570 return R_PPC64_TOCBASE; 571 case R_PPC64_REL14: 572 case R_PPC64_REL24: 573 return R_PPC64_CALL_PLT; 574 case R_PPC64_REL16_LO: 575 case R_PPC64_REL16_HA: 576 case R_PPC64_REL32: 577 case R_PPC64_REL64: 578 return R_PC; 579 case R_PPC64_GOT_TLSGD16: 580 case R_PPC64_GOT_TLSGD16_HA: 581 case R_PPC64_GOT_TLSGD16_HI: 582 case R_PPC64_GOT_TLSGD16_LO: 583 return R_TLSGD_GOT; 584 case R_PPC64_GOT_TLSLD16: 585 case R_PPC64_GOT_TLSLD16_HA: 586 case R_PPC64_GOT_TLSLD16_HI: 587 case R_PPC64_GOT_TLSLD16_LO: 588 return R_TLSLD_GOT; 589 case R_PPC64_GOT_TPREL16_HA: 590 case R_PPC64_GOT_TPREL16_LO_DS: 591 case R_PPC64_GOT_TPREL16_DS: 592 case R_PPC64_GOT_TPREL16_HI: 593 return R_GOT_OFF; 594 case R_PPC64_GOT_DTPREL16_HA: 595 case R_PPC64_GOT_DTPREL16_LO_DS: 596 case R_PPC64_GOT_DTPREL16_DS: 597 case R_PPC64_GOT_DTPREL16_HI: 598 return R_TLSLD_GOT_OFF; 599 case R_PPC64_TPREL16: 600 case R_PPC64_TPREL16_HA: 601 case R_PPC64_TPREL16_LO: 602 case R_PPC64_TPREL16_HI: 603 case R_PPC64_TPREL16_DS: 604 case R_PPC64_TPREL16_LO_DS: 605 case R_PPC64_TPREL16_HIGHER: 606 case R_PPC64_TPREL16_HIGHERA: 607 case R_PPC64_TPREL16_HIGHEST: 608 case R_PPC64_TPREL16_HIGHESTA: 609 return R_TLS; 610 case R_PPC64_DTPREL16: 611 case R_PPC64_DTPREL16_DS: 612 case R_PPC64_DTPREL16_HA: 613 case R_PPC64_DTPREL16_HI: 614 case R_PPC64_DTPREL16_HIGHER: 615 case R_PPC64_DTPREL16_HIGHERA: 616 case R_PPC64_DTPREL16_HIGHEST: 617 case R_PPC64_DTPREL16_HIGHESTA: 618 case R_PPC64_DTPREL16_LO: 619 case R_PPC64_DTPREL16_LO_DS: 620 case R_PPC64_DTPREL64: 621 return R_DTPREL; 622 case R_PPC64_TLSGD: 623 return R_TLSDESC_CALL; 624 case R_PPC64_TLSLD: 625 return R_TLSLD_HINT; 626 case R_PPC64_TLS: 627 return R_TLSIE_HINT; 628 default: 629 error(getErrorLocation(loc) + "unknown relocation (" + Twine(type) + 630 ") against symbol " + toString(s)); 631 return R_NONE; 632 } 633 } 634 635 RelType PPC64::getDynRel(RelType type) const { 636 if (type == R_PPC64_ADDR64 || type == R_PPC64_TOC) 637 return R_PPC64_ADDR64; 638 return R_PPC64_NONE; 639 } 640 641 void PPC64::writeGotHeader(uint8_t *buf) const { 642 write64(buf, getPPC64TocBase()); 643 } 644 645 void PPC64::writePltHeader(uint8_t *buf) const { 646 // The generic resolver stub goes first. 647 write32(buf + 0, 0x7c0802a6); // mflr r0 648 write32(buf + 4, 0x429f0005); // bcl 20,4*cr7+so,8 <_glink+0x8> 649 write32(buf + 8, 0x7d6802a6); // mflr r11 650 write32(buf + 12, 0x7c0803a6); // mtlr r0 651 write32(buf + 16, 0x7d8b6050); // subf r12, r11, r12 652 write32(buf + 20, 0x380cffcc); // subi r0,r12,52 653 write32(buf + 24, 0x7800f082); // srdi r0,r0,62,2 654 write32(buf + 28, 0xe98b002c); // ld r12,44(r11) 655 write32(buf + 32, 0x7d6c5a14); // add r11,r12,r11 656 write32(buf + 36, 0xe98b0000); // ld r12,0(r11) 657 write32(buf + 40, 0xe96b0008); // ld r11,8(r11) 658 write32(buf + 44, 0x7d8903a6); // mtctr r12 659 write32(buf + 48, 0x4e800420); // bctr 660 661 // The 'bcl' instruction will set the link register to the address of the 662 // following instruction ('mflr r11'). Here we store the offset from that 663 // instruction to the first entry in the GotPlt section. 664 int64_t gotPltOffset = in.gotPlt->getVA() - (in.plt->getVA() + 8); 665 write64(buf + 52, gotPltOffset); 666 } 667 668 void PPC64::writePlt(uint8_t *buf, uint64_t gotPltEntryAddr, 669 uint64_t pltEntryAddr, int32_t index, 670 unsigned relOff) const { 671 int32_t offset = pltHeaderSize + index * pltEntrySize; 672 // bl __glink_PLTresolve 673 write32(buf, 0x48000000 | ((-offset) & 0x03FFFFFc)); 674 } 675 676 static std::pair<RelType, uint64_t> toAddr16Rel(RelType type, uint64_t val) { 677 // Relocations relative to the toc-base need to be adjusted by the Toc offset. 678 uint64_t tocBiasedVal = val - ppc64TocOffset; 679 // Relocations relative to dtv[dtpmod] need to be adjusted by the DTP offset. 680 uint64_t dtpBiasedVal = val - dynamicThreadPointerOffset; 681 682 switch (type) { 683 // TOC biased relocation. 684 case R_PPC64_GOT16: 685 case R_PPC64_GOT_TLSGD16: 686 case R_PPC64_GOT_TLSLD16: 687 case R_PPC64_TOC16: 688 return {R_PPC64_ADDR16, tocBiasedVal}; 689 case R_PPC64_GOT16_DS: 690 case R_PPC64_TOC16_DS: 691 case R_PPC64_GOT_TPREL16_DS: 692 case R_PPC64_GOT_DTPREL16_DS: 693 return {R_PPC64_ADDR16_DS, tocBiasedVal}; 694 case R_PPC64_GOT16_HA: 695 case R_PPC64_GOT_TLSGD16_HA: 696 case R_PPC64_GOT_TLSLD16_HA: 697 case R_PPC64_GOT_TPREL16_HA: 698 case R_PPC64_GOT_DTPREL16_HA: 699 case R_PPC64_TOC16_HA: 700 return {R_PPC64_ADDR16_HA, tocBiasedVal}; 701 case R_PPC64_GOT16_HI: 702 case R_PPC64_GOT_TLSGD16_HI: 703 case R_PPC64_GOT_TLSLD16_HI: 704 case R_PPC64_GOT_TPREL16_HI: 705 case R_PPC64_GOT_DTPREL16_HI: 706 case R_PPC64_TOC16_HI: 707 return {R_PPC64_ADDR16_HI, tocBiasedVal}; 708 case R_PPC64_GOT16_LO: 709 case R_PPC64_GOT_TLSGD16_LO: 710 case R_PPC64_GOT_TLSLD16_LO: 711 case R_PPC64_TOC16_LO: 712 return {R_PPC64_ADDR16_LO, tocBiasedVal}; 713 case R_PPC64_GOT16_LO_DS: 714 case R_PPC64_TOC16_LO_DS: 715 case R_PPC64_GOT_TPREL16_LO_DS: 716 case R_PPC64_GOT_DTPREL16_LO_DS: 717 return {R_PPC64_ADDR16_LO_DS, tocBiasedVal}; 718 719 // Dynamic Thread pointer biased relocation types. 720 case R_PPC64_DTPREL16: 721 return {R_PPC64_ADDR16, dtpBiasedVal}; 722 case R_PPC64_DTPREL16_DS: 723 return {R_PPC64_ADDR16_DS, dtpBiasedVal}; 724 case R_PPC64_DTPREL16_HA: 725 return {R_PPC64_ADDR16_HA, dtpBiasedVal}; 726 case R_PPC64_DTPREL16_HI: 727 return {R_PPC64_ADDR16_HI, dtpBiasedVal}; 728 case R_PPC64_DTPREL16_HIGHER: 729 return {R_PPC64_ADDR16_HIGHER, dtpBiasedVal}; 730 case R_PPC64_DTPREL16_HIGHERA: 731 return {R_PPC64_ADDR16_HIGHERA, dtpBiasedVal}; 732 case R_PPC64_DTPREL16_HIGHEST: 733 return {R_PPC64_ADDR16_HIGHEST, dtpBiasedVal}; 734 case R_PPC64_DTPREL16_HIGHESTA: 735 return {R_PPC64_ADDR16_HIGHESTA, dtpBiasedVal}; 736 case R_PPC64_DTPREL16_LO: 737 return {R_PPC64_ADDR16_LO, dtpBiasedVal}; 738 case R_PPC64_DTPREL16_LO_DS: 739 return {R_PPC64_ADDR16_LO_DS, dtpBiasedVal}; 740 case R_PPC64_DTPREL64: 741 return {R_PPC64_ADDR64, dtpBiasedVal}; 742 743 default: 744 return {type, val}; 745 } 746 } 747 748 static bool isTocOptType(RelType type) { 749 switch (type) { 750 case R_PPC64_GOT16_HA: 751 case R_PPC64_GOT16_LO_DS: 752 case R_PPC64_TOC16_HA: 753 case R_PPC64_TOC16_LO_DS: 754 case R_PPC64_TOC16_LO: 755 return true; 756 default: 757 return false; 758 } 759 } 760 761 void PPC64::relocateOne(uint8_t *loc, RelType type, uint64_t val) const { 762 // We need to save the original relocation type to use in diagnostics, and 763 // use the original type to determine if we should toc-optimize the 764 // instructions being relocated. 765 RelType originalType = type; 766 bool shouldTocOptimize = isTocOptType(type); 767 // For dynamic thread pointer relative, toc-relative, and got-indirect 768 // relocations, proceed in terms of the corresponding ADDR16 relocation type. 769 std::tie(type, val) = toAddr16Rel(type, val); 770 771 switch (type) { 772 case R_PPC64_ADDR14: { 773 checkAlignment(loc, val, 4, type); 774 // Preserve the AA/LK bits in the branch instruction 775 uint8_t aalk = loc[3]; 776 write16(loc + 2, (aalk & 3) | (val & 0xfffc)); 777 break; 778 } 779 case R_PPC64_ADDR16: 780 checkIntUInt(loc, val, 16, originalType); 781 write16(loc, val); 782 break; 783 case R_PPC64_ADDR32: 784 checkIntUInt(loc, val, 32, originalType); 785 write32(loc, val); 786 break; 787 case R_PPC64_ADDR16_DS: 788 case R_PPC64_TPREL16_DS: { 789 checkInt(loc, val, 16, originalType); 790 // DQ-form instructions use bits 28-31 as part of the instruction encoding 791 // DS-form instructions only use bits 30-31. 792 uint16_t mask = isDQFormInstruction(readFromHalf16(loc)) ? 0xf : 0x3; 793 checkAlignment(loc, lo(val), mask + 1, originalType); 794 write16(loc, (read16(loc) & mask) | lo(val)); 795 } break; 796 case R_PPC64_ADDR16_HA: 797 case R_PPC64_REL16_HA: 798 case R_PPC64_TPREL16_HA: 799 if (config->tocOptimize && shouldTocOptimize && ha(val) == 0) 800 writeFromHalf16(loc, 0x60000000); 801 else 802 write16(loc, ha(val)); 803 break; 804 case R_PPC64_ADDR16_HI: 805 case R_PPC64_REL16_HI: 806 case R_PPC64_TPREL16_HI: 807 write16(loc, hi(val)); 808 break; 809 case R_PPC64_ADDR16_HIGHER: 810 case R_PPC64_TPREL16_HIGHER: 811 write16(loc, higher(val)); 812 break; 813 case R_PPC64_ADDR16_HIGHERA: 814 case R_PPC64_TPREL16_HIGHERA: 815 write16(loc, highera(val)); 816 break; 817 case R_PPC64_ADDR16_HIGHEST: 818 case R_PPC64_TPREL16_HIGHEST: 819 write16(loc, highest(val)); 820 break; 821 case R_PPC64_ADDR16_HIGHESTA: 822 case R_PPC64_TPREL16_HIGHESTA: 823 write16(loc, highesta(val)); 824 break; 825 case R_PPC64_ADDR16_LO: 826 case R_PPC64_REL16_LO: 827 case R_PPC64_TPREL16_LO: 828 // When the high-adjusted part of a toc relocation evalutes to 0, it is 829 // changed into a nop. The lo part then needs to be updated to use the 830 // toc-pointer register r2, as the base register. 831 if (config->tocOptimize && shouldTocOptimize && ha(val) == 0) { 832 uint32_t insn = readFromHalf16(loc); 833 if (isInstructionUpdateForm(insn)) 834 error(getErrorLocation(loc) + 835 "can't toc-optimize an update instruction: 0x" + 836 utohexstr(insn)); 837 writeFromHalf16(loc, (insn & 0xffe00000) | 0x00020000 | lo(val)); 838 } else { 839 write16(loc, lo(val)); 840 } 841 break; 842 case R_PPC64_ADDR16_LO_DS: 843 case R_PPC64_TPREL16_LO_DS: { 844 // DQ-form instructions use bits 28-31 as part of the instruction encoding 845 // DS-form instructions only use bits 30-31. 846 uint32_t insn = readFromHalf16(loc); 847 uint16_t mask = isDQFormInstruction(insn) ? 0xf : 0x3; 848 checkAlignment(loc, lo(val), mask + 1, originalType); 849 if (config->tocOptimize && shouldTocOptimize && ha(val) == 0) { 850 // When the high-adjusted part of a toc relocation evalutes to 0, it is 851 // changed into a nop. The lo part then needs to be updated to use the toc 852 // pointer register r2, as the base register. 853 if (isInstructionUpdateForm(insn)) 854 error(getErrorLocation(loc) + 855 "Can't toc-optimize an update instruction: 0x" + 856 Twine::utohexstr(insn)); 857 insn &= 0xffe00000 | mask; 858 writeFromHalf16(loc, insn | 0x00020000 | lo(val)); 859 } else { 860 write16(loc, (read16(loc) & mask) | lo(val)); 861 } 862 } break; 863 case R_PPC64_TPREL16: 864 checkInt(loc, val, 16, originalType); 865 write16(loc, val); 866 break; 867 case R_PPC64_REL32: 868 checkInt(loc, val, 32, type); 869 write32(loc, val); 870 break; 871 case R_PPC64_ADDR64: 872 case R_PPC64_REL64: 873 case R_PPC64_TOC: 874 write64(loc, val); 875 break; 876 case R_PPC64_REL14: { 877 uint32_t mask = 0x0000FFFC; 878 checkInt(loc, val, 16, type); 879 checkAlignment(loc, val, 4, type); 880 write32(loc, (read32(loc) & ~mask) | (val & mask)); 881 break; 882 } 883 case R_PPC64_REL24: { 884 uint32_t mask = 0x03FFFFFC; 885 checkInt(loc, val, 26, type); 886 checkAlignment(loc, val, 4, type); 887 write32(loc, (read32(loc) & ~mask) | (val & mask)); 888 break; 889 } 890 case R_PPC64_DTPREL64: 891 write64(loc, val - dynamicThreadPointerOffset); 892 break; 893 default: 894 llvm_unreachable("unknown relocation"); 895 } 896 } 897 898 bool PPC64::needsThunk(RelExpr expr, RelType type, const InputFile *file, 899 uint64_t branchAddr, const Symbol &s) const { 900 if (type != R_PPC64_REL14 && type != R_PPC64_REL24) 901 return false; 902 903 // If a function is in the Plt it needs to be called with a call-stub. 904 if (s.isInPlt()) 905 return true; 906 907 // If a symbol is a weak undefined and we are compiling an executable 908 // it doesn't need a range-extending thunk since it can't be called. 909 if (s.isUndefWeak() && !config->shared) 910 return false; 911 912 // If the offset exceeds the range of the branch type then it will need 913 // a range-extending thunk. 914 // See the comment in getRelocTargetVA() about R_PPC64_CALL. 915 return !inBranchRange(type, branchAddr, 916 s.getVA() + 917 getPPC64GlobalEntryToLocalEntryOffset(s.stOther)); 918 } 919 920 uint32_t PPC64::getThunkSectionSpacing() const { 921 // See comment in Arch/ARM.cpp for a more detailed explanation of 922 // getThunkSectionSpacing(). For PPC64 we pick the constant here based on 923 // R_PPC64_REL24, which is used by unconditional branch instructions. 924 // 0x2000000 = (1 << 24-1) * 4 925 return 0x2000000; 926 } 927 928 bool PPC64::inBranchRange(RelType type, uint64_t src, uint64_t dst) const { 929 int64_t offset = dst - src; 930 if (type == R_PPC64_REL14) 931 return isInt<16>(offset); 932 if (type == R_PPC64_REL24) 933 return isInt<26>(offset); 934 llvm_unreachable("unsupported relocation type used in branch"); 935 } 936 937 RelExpr PPC64::adjustRelaxExpr(RelType type, const uint8_t *data, 938 RelExpr expr) const { 939 if (expr == R_RELAX_TLS_GD_TO_IE) 940 return R_RELAX_TLS_GD_TO_IE_GOT_OFF; 941 if (expr == R_RELAX_TLS_LD_TO_LE) 942 return R_RELAX_TLS_LD_TO_LE_ABS; 943 return expr; 944 } 945 946 // Reference: 3.7.4.1 of the 64-bit ELF V2 abi supplement. 947 // The general dynamic code sequence for a global `x` uses 4 instructions. 948 // Instruction Relocation Symbol 949 // addis r3, r2, x@got@tlsgd@ha R_PPC64_GOT_TLSGD16_HA x 950 // addi r3, r3, x@got@tlsgd@l R_PPC64_GOT_TLSGD16_LO x 951 // bl __tls_get_addr(x@tlsgd) R_PPC64_TLSGD x 952 // R_PPC64_REL24 __tls_get_addr 953 // nop None None 954 // 955 // Relaxing to initial-exec entails: 956 // 1) Convert the addis/addi pair that builds the address of the tls_index 957 // struct for 'x' to an addis/ld pair that loads an offset from a got-entry. 958 // 2) Convert the call to __tls_get_addr to a nop. 959 // 3) Convert the nop following the call to an add of the loaded offset to the 960 // thread pointer. 961 // Since the nop must directly follow the call, the R_PPC64_TLSGD relocation is 962 // used as the relaxation hint for both steps 2 and 3. 963 void PPC64::relaxTlsGdToIe(uint8_t *loc, RelType type, uint64_t val) const { 964 switch (type) { 965 case R_PPC64_GOT_TLSGD16_HA: 966 // This is relaxed from addis rT, r2, sym@got@tlsgd@ha to 967 // addis rT, r2, sym@got@tprel@ha. 968 relocateOne(loc, R_PPC64_GOT_TPREL16_HA, val); 969 return; 970 case R_PPC64_GOT_TLSGD16: 971 case R_PPC64_GOT_TLSGD16_LO: { 972 // Relax from addi r3, rA, sym@got@tlsgd@l to 973 // ld r3, sym@got@tprel@l(rA) 974 uint32_t ra = (readFromHalf16(loc) & (0x1f << 16)); 975 writeFromHalf16(loc, 0xe8600000 | ra); 976 relocateOne(loc, R_PPC64_GOT_TPREL16_LO_DS, val); 977 return; 978 } 979 case R_PPC64_TLSGD: 980 write32(loc, 0x60000000); // bl __tls_get_addr(sym@tlsgd) --> nop 981 write32(loc + 4, 0x7c636A14); // nop --> add r3, r3, r13 982 return; 983 default: 984 llvm_unreachable("unsupported relocation for TLS GD to IE relaxation"); 985 } 986 } 987 988 // The prologue for a split-stack function is expected to look roughly 989 // like this: 990 // .Lglobal_entry_point: 991 // # TOC pointer initalization. 992 // ... 993 // .Llocal_entry_point: 994 // # load the __private_ss member of the threads tcbhead. 995 // ld r0,-0x7000-64(r13) 996 // # subtract the functions stack size from the stack pointer. 997 // addis r12, r1, ha(-stack-frame size) 998 // addi r12, r12, l(-stack-frame size) 999 // # compare needed to actual and branch to allocate_more_stack if more 1000 // # space is needed, otherwise fallthrough to 'normal' function body. 1001 // cmpld cr7,r12,r0 1002 // blt- cr7, .Lallocate_more_stack 1003 // 1004 // -) The allocate_more_stack block might be placed after the split-stack 1005 // prologue and the `blt-` replaced with a `bge+ .Lnormal_func_body` 1006 // instead. 1007 // -) If either the addis or addi is not needed due to the stack size being 1008 // smaller then 32K or a multiple of 64K they will be replaced with a nop, 1009 // but there will always be 2 instructions the linker can overwrite for the 1010 // adjusted stack size. 1011 // 1012 // The linkers job here is to increase the stack size used in the addis/addi 1013 // pair by split-stack-size-adjust. 1014 // addis r12, r1, ha(-stack-frame size - split-stack-adjust-size) 1015 // addi r12, r12, l(-stack-frame size - split-stack-adjust-size) 1016 bool PPC64::adjustPrologueForCrossSplitStack(uint8_t *loc, uint8_t *end, 1017 uint8_t stOther) const { 1018 // If the caller has a global entry point adjust the buffer past it. The start 1019 // of the split-stack prologue will be at the local entry point. 1020 loc += getPPC64GlobalEntryToLocalEntryOffset(stOther); 1021 1022 // At the very least we expect to see a load of some split-stack data from the 1023 // tcb, and 2 instructions that calculate the ending stack address this 1024 // function will require. If there is not enough room for at least 3 1025 // instructions it can't be a split-stack prologue. 1026 if (loc + 12 >= end) 1027 return false; 1028 1029 // First instruction must be `ld r0, -0x7000-64(r13)` 1030 if (read32(loc) != 0xe80d8fc0) 1031 return false; 1032 1033 int16_t hiImm = 0; 1034 int16_t loImm = 0; 1035 // First instruction can be either an addis if the frame size is larger then 1036 // 32K, or an addi if the size is less then 32K. 1037 int32_t firstInstr = read32(loc + 4); 1038 if (getPrimaryOpCode(firstInstr) == 15) { 1039 hiImm = firstInstr & 0xFFFF; 1040 } else if (getPrimaryOpCode(firstInstr) == 14) { 1041 loImm = firstInstr & 0xFFFF; 1042 } else { 1043 return false; 1044 } 1045 1046 // Second instruction is either an addi or a nop. If the first instruction was 1047 // an addi then LoImm is set and the second instruction must be a nop. 1048 uint32_t secondInstr = read32(loc + 8); 1049 if (!loImm && getPrimaryOpCode(secondInstr) == 14) { 1050 loImm = secondInstr & 0xFFFF; 1051 } else if (secondInstr != 0x60000000) { 1052 return false; 1053 } 1054 1055 // The register operands of the first instruction should be the stack-pointer 1056 // (r1) as the input (RA) and r12 as the output (RT). If the second 1057 // instruction is not a nop, then it should use r12 as both input and output. 1058 auto checkRegOperands = [](uint32_t instr, uint8_t expectedRT, 1059 uint8_t expectedRA) { 1060 return ((instr & 0x3E00000) >> 21 == expectedRT) && 1061 ((instr & 0x1F0000) >> 16 == expectedRA); 1062 }; 1063 if (!checkRegOperands(firstInstr, 12, 1)) 1064 return false; 1065 if (secondInstr != 0x60000000 && !checkRegOperands(secondInstr, 12, 12)) 1066 return false; 1067 1068 int32_t stackFrameSize = (hiImm * 65536) + loImm; 1069 // Check that the adjusted size doesn't overflow what we can represent with 2 1070 // instructions. 1071 if (stackFrameSize < config->splitStackAdjustSize + INT32_MIN) { 1072 error(getErrorLocation(loc) + "split-stack prologue adjustment overflows"); 1073 return false; 1074 } 1075 1076 int32_t adjustedStackFrameSize = 1077 stackFrameSize - config->splitStackAdjustSize; 1078 1079 loImm = adjustedStackFrameSize & 0xFFFF; 1080 hiImm = (adjustedStackFrameSize + 0x8000) >> 16; 1081 if (hiImm) { 1082 write32(loc + 4, 0x3D810000 | (uint16_t)hiImm); 1083 // If the low immediate is zero the second instruction will be a nop. 1084 secondInstr = loImm ? 0x398C0000 | (uint16_t)loImm : 0x60000000; 1085 write32(loc + 8, secondInstr); 1086 } else { 1087 // addi r12, r1, imm 1088 write32(loc + 4, (0x39810000) | (uint16_t)loImm); 1089 write32(loc + 8, 0x60000000); 1090 } 1091 1092 return true; 1093 } 1094 1095 TargetInfo *elf::getPPC64TargetInfo() { 1096 static PPC64 target; 1097 return ⌖ 1098 } 1099