13#ifndef LLVM_EXECUTIONENGINE_JITLINK_AARCH64_H
14#define LLVM_EXECUTIONENGINE_JITLINK_AARCH64_H
395 constexpr uint32_t LoadStoreImm12Mask = 0x3b000000;
396 return (Instr & LoadStoreImm12Mask) == 0x39000000;
400 constexpr uint32_t TestAndBranchImm14Mask = 0x7e000000;
401 return (Instr & TestAndBranchImm14Mask) == 0x36000000;
405 constexpr uint32_t CondBranchImm19Mask = 0xfe000000;
406 return (Instr & CondBranchImm19Mask) == 0x54000000;
410 constexpr uint32_t CompAndBranchImm19Mask = 0x7e000000;
411 return (Instr & CompAndBranchImm19Mask) == 0x34000000;
415 constexpr uint32_t ADRMask = 0x9f000000;
416 return (Instr & ADRMask) == 0x10000000;
420 constexpr uint32_t LDRLitMask = 0x3b000000;
421 return (Instr & LDRLitMask) == 0x18000000;
431 constexpr uint32_t Vec128Mask = 0x04800000;
434 uint32_t ImplicitShift = Instr >> 30;
435 if (ImplicitShift == 0)
436 if ((Instr & Vec128Mask) == Vec128Mask)
439 return ImplicitShift;
447 constexpr uint32_t MoveWideImm16Mask = 0x5f9fffe0;
448 return (Instr & MoveWideImm16Mask) == 0x52800000;
457 uint32_t ImplicitShift = (Instr >> 21) & 0b11;
458 return ImplicitShift << 4;
466 const Symbol *GOTSymbol) {
467 using namespace support;
469 char *BlockWorkingMem =
B.getAlreadyMutableContent().data();
470 char *FixupPtr = BlockWorkingMem +
E.getOffset();
473 switch (
E.getKind()) {
475 uint64_t Value =
E.getTarget().getAddress().getValue() +
E.getAddend();
476 *(ulittle64_t *)FixupPtr =
Value;
480 uint64_t Value =
E.getTarget().getAddress().getValue() +
E.getAddend();
481 if (
Value > std::numeric_limits<uint32_t>::max())
483 *(ulittle32_t *)FixupPtr =
Value;
492 Value =
E.getTarget().getAddress() - FixupAddress +
E.getAddend();
494 Value = FixupAddress -
E.getTarget().getAddress() +
E.getAddend();
497 if (
Value < std::numeric_limits<int32_t>::min() ||
498 Value > std::numeric_limits<int32_t>::max())
500 *(little32_t *)FixupPtr =
Value;
502 *(little64_t *)FixupPtr =
Value;
507 "Branch-inst is not 32-bit aligned");
509 int64_t
Value =
E.getTarget().getAddress() - FixupAddress +
E.getAddend();
512 return make_error<JITLinkError>(
"BranchPCRel26 target is not 32-bit "
515 if (
Value < -(1 << 27) ||
Value > ((1 << 27) - 1))
518 uint32_t RawInstr = *(little32_t *)FixupPtr;
519 assert((RawInstr & 0x7fffffff) == 0x14000000 &&
520 "RawInstr isn't a B or BR immediate instruction");
522 uint32_t FixedInstr = RawInstr | Imm;
523 *(little32_t *)FixupPtr = FixedInstr;
528 (
E.getTarget().getAddress() +
E.getAddend()).getValue();
530 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
532 "RawInstr isn't a MOVK/MOVZ instruction");
535 uint32_t Imm = (TargetOffset >> ImmShift) & 0xffff;
536 uint32_t FixedInstr = RawInstr | (Imm << 5);
537 *(ulittle32_t *)FixupPtr = FixedInstr;
541 assert((FixupAddress.
getValue() & 0x3) == 0 &&
"LDR is not 32-bit aligned");
542 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
544 int64_t Delta =
E.getTarget().getAddress() +
E.getAddend() - FixupAddress;
546 return make_error<JITLinkError>(
"LDR literal target is not 32-bit "
548 if (!isInt<21>(Delta))
551 uint32_t FixedInstr = RawInstr | EncodedImm;
552 *(ulittle32_t *)FixupPtr = FixedInstr;
556 assert((FixupAddress.
getValue() & 0x3) == 0 &&
"ADR is not 32-bit aligned");
557 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
558 assert(
isADR(RawInstr) &&
"RawInstr is not an ADR");
559 int64_t Delta =
E.getTarget().getAddress() +
E.getAddend() - FixupAddress;
560 if (!isInt<21>(Delta))
562 auto UDelta =
static_cast<uint32_t>(Delta);
563 uint32_t EncodedImmHi = ((UDelta >> 2) & 0x7ffff) << 5;
564 uint32_t EncodedImmLo = (UDelta & 0x3) << 29;
565 uint32_t FixedInstr = RawInstr | EncodedImmHi | EncodedImmLo;
566 *(ulittle32_t *)FixupPtr = FixedInstr;
571 "Test and branch is not 32-bit aligned");
572 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
574 "RawInstr is not a test and branch");
575 int64_t Delta =
E.getTarget().getAddress() +
E.getAddend() - FixupAddress;
577 return make_error<JITLinkError>(
578 "Test and branch literal target is not 32-bit aligned");
579 if (!isInt<16>(Delta))
582 uint32_t FixedInstr = RawInstr | EncodedImm;
583 *(ulittle32_t *)FixupPtr = FixedInstr;
588 "Conditional branch is not 32-bit aligned");
589 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
591 "RawInstr is not a conditional branch");
592 int64_t Delta =
E.getTarget().getAddress() +
E.getAddend() - FixupAddress;
594 return make_error<JITLinkError>(
595 "Conditional branch literal target is not 32-bit "
597 if (!isInt<21>(Delta))
600 uint32_t FixedInstr = RawInstr | EncodedImm;
601 *(ulittle32_t *)FixupPtr = FixedInstr;
606 (
E.getTarget().getAddress().getValue() +
E.getAddend()) &
609 FixupAddress.
getValue() & ~static_cast<uint64_t>(4096 - 1);
611 int64_t PageDelta = TargetPage - PCPage;
612 if (!isInt<33>(PageDelta))
615 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
616 assert((RawInstr & 0xffffffe0) == 0x90000000 &&
617 "RawInstr isn't an ADRP instruction");
620 uint32_t FixedInstr = RawInstr | (ImmLo << 29) | (ImmHi << 5);
621 *(ulittle32_t *)FixupPtr = FixedInstr;
626 (
E.getTarget().getAddress() +
E.getAddend()).getValue() & 0xfff;
628 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
631 if (TargetOffset & ((1 << ImmShift) - 1))
632 return make_error<JITLinkError>(
"PAGEOFF12 target is not aligned");
634 uint32_t EncodedImm = (TargetOffset >> ImmShift) << 10;
635 uint32_t FixedInstr = RawInstr | EncodedImm;
636 *(ulittle32_t *)FixupPtr = FixedInstr;
640 assert(GOTSymbol &&
"No GOT section symbol");
642 (
E.getTarget().getAddress() +
E.getAddend()).getValue() -
644 if (TargetOffset > 0x7fff)
645 return make_error<JITLinkError>(
"PAGEOFF15 target is out of range");
647 uint32_t RawInstr = *(ulittle32_t *)FixupPtr;
648 const unsigned ImmShift = 3;
649 if (TargetOffset & ((1 << ImmShift) - 1))
650 return make_error<JITLinkError>(
"PAGEOFF15 target is not aligned");
652 uint32_t EncodedImm = (TargetOffset >> ImmShift) << 10;
653 uint32_t FixedInstr = RawInstr | EncodedImm;
654 *(ulittle32_t *)FixupPtr = FixedInstr;
658 return make_error<JITLinkError>(
659 "In graph " +
G.getName() +
", section " +
B.getSection().getName() +
692 Symbol *InitialTarget =
nullptr,
697 B.addEdge(
Pointer64, 0, *InitialTarget, InitialAddend);
698 return G.addAnonymousSymbol(
B, 0, 8,
false,
false);
711 B.addEdge(
Page21, 0, PointerSymbol, 0);
723 return G.addAnonymousSymbol(
735 const char *BlockWorkingMem =
B->getContent().data();
736 const char *FixupPtr = BlockWorkingMem +
E.getOffset();
738 switch (
E.getKind()) {
750 "GOTPageOffset12/TLVPageOffset12 with non-zero addend");
751 assert((RawInstr & 0xfffffc00) == 0xf9400000 &&
752 "RawInstr isn't a 64-bit LDR immediate");
759 assert(
E.getAddend() == 0 &&
"GOTPageOffset15 with non-zero addend");
760 assert((RawInstr & 0xfffffc00) == 0xf9400000 &&
761 "RawInstr isn't a 64-bit LDR immediate");
772 "Fell through switch, but no new kind to set");
774 dbgs() <<
" Fixing " <<
G.getEdgeKindName(
E.getKind()) <<
" edge at "
775 <<
B->getFixupAddress(
E) <<
" (" <<
B->getAddress() <<
" + "
776 <<
formatv(
"{0:x}",
E.getOffset()) <<
")\n";
778 E.setKind(KindToSet);
808 dbgs() <<
" Fixing " <<
G.getEdgeKindName(
E.getKind()) <<
" edge at "
809 <<
B->getFixupAddress(
E) <<
" (" <<
B->getAddress() <<
" + "
810 <<
formatv(
"{0:x}",
E.getOffset()) <<
")\n";
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define DEBUG_WITH_TYPE(TYPE, X)
DEBUG_WITH_TYPE macro - This macro should be used by passes to emit debug information.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
StringRef - Represent a constant reference to a string, i.e.
Target - Wrapper for Target specific information.
LLVM Value Representation.
An Addressable with content and edges.
Represents fixups and constraints in the LinkGraph.
Represents an object file section.
orc::ExecutorAddr getAddress() const
Returns the address of this symbol.
A CRTP base for tables that are built on demand, e.g.
Symbol & getEntryForTarget(LinkGraph &G, Symbol &Target)
Return the constructed entry.
Global Offset Table Builder.
Symbol & createEntry(LinkGraph &G, Symbol &Target)
bool visitEdge(LinkGraph &G, Block *B, Edge &E)
static StringRef getSectionName()
Procedure Linkage Table Builder.
static StringRef getSectionName()
bool visitEdge(LinkGraph &G, Block *B, Edge &E)
PLTTableManager(GOTTableManager &GOT)
Symbol & createEntry(LinkGraph &G, Symbol &Target)
Section & getStubsSection(LinkGraph &G)
Represents an address in the executor process.
uint64_t getValue() const
const char NullPointerContent[PointerSize]
AArch64 null pointer content.
bool isLDRLiteral(uint32_t Instr)
bool isADR(uint32_t Instr)
bool isCondBranchImm19(uint32_t Instr)
constexpr uint64_t PointerSize
aarch64 pointer size.
Error applyFixup(LinkGraph &G, Block &B, const Edge &E, const Symbol *GOTSymbol)
Apply fixup expression for edge to block content.
bool isMoveWideImm16(uint32_t Instr)
bool isCompAndBranchImm19(uint32_t Instr)
const char PointerJumpStubContent[12]
bool isLoadStoreImm12(uint32_t Instr)
const char * getEdgeKindName(Edge::Kind K)
Returns a string name for the given aarch64 edge.
Block & createPointerJumpStubBlock(LinkGraph &G, Section &StubSection, Symbol &PointerSymbol)
Create a jump stub block that jumps via the pointer at the given symbol.
Symbol & createAnonymousPointer(LinkGraph &G, Section &PointerSection, Symbol *InitialTarget=nullptr, uint64_t InitialAddend=0)
Creates a new pointer block in the given section and returns an Anonymous symbol pointing to it.
EdgeKind_aarch64
Represents aarch64 fixups and other aarch64-specific edge kinds.
@ LDRLiteral19
The signed 21-bit delta from the fixup to the target.
@ RequestGOTAndTransformToPageOffset15
A GOT entry getter/constructor, transformed to Pageoffset15 pointing at the GOT entry for the origina...
@ CondBranch19PCRel
A 19-bit PC-relative conditional branch.
@ RequestTLVPAndTransformToPageOffset12
A TLVP entry getter/constructor, transformed to PageOffset12.
@ RequestTLSDescEntryAndTransformToPageOffset12
A TLSDesc entry getter/constructor, transformed to PageOffset12.
@ Page21
The signed 21-bit delta from the fixup page to the page containing the target.
@ Branch26PCRel
A 26-bit PC-relative branch.
@ Pointer64
A plain 64-bit pointer value relocation.
@ Pointer32
A plain 32-bit pointer value relocation.
@ RequestTLVPAndTransformToPage21
A TLVP entry getter/constructor, transformed to Page21.
@ GotPageOffset15
The 15-bit offset of the GOT entry from the GOT table.
@ MoveWide16
A 16-bit slice of the target address (which slice depends on the instruction at the fixup location).
@ TestAndBranch14PCRel
A 14-bit PC-relative test and branch.
@ RequestGOTAndTransformToPage21
A GOT entry getter/constructor, transformed to Page21 pointing at the GOT entry for the original targ...
@ ADRLiteral21
The signed 21-bit delta from the fixup to the target.
@ RequestGOTAndTransformToPageOffset12
A GOT entry getter/constructor, transformed to Pageoffset12 pointing at the GOT entry for the origina...
@ NegDelta32
A 32-bit negative delta.
@ NegDelta64
A 64-bit negative delta.
@ RequestGOTAndTransformToDelta32
A GOT entry getter/constructor, transformed to Delta32 pointing at the GOT entry for the original tar...
@ PageOffset12
The 12-bit (potentially shifted) offset of the target within its page.
@ RequestTLSDescEntryAndTransformToPage21
A TLSDesc entry getter/constructor, transformed to Page21.
bool isTestAndBranchImm14(uint32_t Instr)
unsigned getPageOffset12Shift(uint32_t Instr)
unsigned getMoveWide16Shift(uint32_t Instr)
Symbol & createAnonymousPointerJumpStub(LinkGraph &G, Section &StubSection, Symbol &PointerSymbol)
Create a jump stub that jumps via the pointer at the given symbol and an anonymous symbol pointing to...
Error makeTargetOutOfRangeError(const LinkGraph &G, const Block &B, const Edge &E)
Create an out of range error for the given edge in the given block.
This is an optimization pass for GlobalISel generic memory operations.
auto formatv(const char *Fmt, Ts &&...Vals) -> formatv_object< decltype(std::make_tuple(support::detail::build_format_adapter(std::forward< Ts >(Vals))...))>
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.