36 static const unsigned PCRelFlagVal =
42 AArch64AsmBackend(
const Target &
T,
const Triple &TT,
bool IsLittleEndian)
59 {
"fixup_aarch64_pcrel_adr_imm21", 0, 32, PCRelFlagVal},
60 {
"fixup_aarch64_pcrel_adrp_imm21", 0, 32, PCRelFlagVal},
61 {
"fixup_aarch64_add_imm12", 10, 12, 0},
62 {
"fixup_aarch64_ldst_imm12_scale1", 10, 12, 0},
63 {
"fixup_aarch64_ldst_imm12_scale2", 10, 12, 0},
64 {
"fixup_aarch64_ldst_imm12_scale4", 10, 12, 0},
65 {
"fixup_aarch64_ldst_imm12_scale8", 10, 12, 0},
66 {
"fixup_aarch64_ldst_imm12_scale16", 10, 12, 0},
67 {
"fixup_aarch64_ldr_pcrel_imm19", 5, 19, PCRelFlagVal},
68 {
"fixup_aarch64_movw", 5, 16, 0},
69 {
"fixup_aarch64_pcrel_branch14", 5, 14, PCRelFlagVal},
70 {
"fixup_aarch64_pcrel_branch16", 5, 16, PCRelFlagVal},
71 {
"fixup_aarch64_pcrel_branch19", 5, 19, PCRelFlagVal},
72 {
"fixup_aarch64_pcrel_branch26", 0, 26, PCRelFlagVal},
73 {
"fixup_aarch64_pcrel_call26", 0, 26, PCRelFlagVal}};
100 unsigned getFixupKindContainereSizeInBytes(
unsigned Kind)
const;
149 unsigned lo2 =
Value & 0x3;
150 unsigned hi19 = (
Value & 0x1ffffc) >> 2;
151 return (hi19 << 5) | (lo2 << 29);
156 const Triple &TheTriple,
bool IsResolved) {
157 int64_t SignedValue =
static_cast<int64_t
>(
Value);
158 switch (
Fixup.getTargetKind()) {
162 if (!isInt<21>(SignedValue))
168 if (!isInt<21>(SignedValue))
176 if (!isInt<21>(SignedValue))
181 return (
Value >> 2) & 0x7ffff;
187 if (!isUInt<12>(
Value))
194 if (!isUInt<13>(
Value))
203 if (!isUInt<14>(
Value))
212 if (!isUInt<15>(
Value))
221 if (!isUInt<16>(
Value))
233 if (SignedValue > 0xFFFF || SignedValue < -0xFFFF)
235 "fixup value out of range [-0xFFFF, 0xFFFF]");
239 SignedValue = ~SignedValue;
245 "relocation for a thread-local variable points to an "
263 SignedValue = SignedValue >> 16;
266 SignedValue = SignedValue >> 32;
269 SignedValue = SignedValue >> 48;
297 if (SignedValue > 0xFFFF || SignedValue < -0xFFFF)
302 SignedValue = ~SignedValue;
305 else if (
Value > 0xFFFF) {
312 if (!isInt<16>(SignedValue))
317 return (
Value >> 2) & 0x3fff;
320 SignedValue = -SignedValue;
323 if (SignedValue < 0 || SignedValue > ((1 << 18) - 1))
328 return (
Value >> 2) & 0xffff;
335 "cannot perform a PC-relative fixup with a non-zero "
339 if (!isInt<28>(SignedValue))
344 return (
Value >> 2) & 0x3ffffff;
355std::optional<MCFixupKind>
361#define ELF_RELOC(X, Y) .Case(#X, Y)
362#include "llvm/BinaryFormat/ELFRelocs/AArch64.def"
364 .
Case(
"BFD_RELOC_NONE", ELF::R_AARCH64_NONE)
365 .
Case(
"BFD_RELOC_16", ELF::R_AARCH64_ABS16)
366 .
Case(
"BFD_RELOC_32", ELF::R_AARCH64_ABS32)
367 .
Case(
"BFD_RELOC_64", ELF::R_AARCH64_ABS64)
376unsigned AArch64AsmBackend::getFixupKindContainereSizeInBytes(
unsigned Kind)
const {
421 if (SymLoc == AArch64AuthMCExpr::VK_AUTH ||
422 SymLoc == AArch64AuthMCExpr::VK_AUTHADDR) {
424 const auto *Expr = cast<AArch64AuthMCExpr>(
Fixup.getValue());
427 (
uint64_t(Expr->hasAddressDiversity()) << 63);
439 int64_t SignedValue =
static_cast<int64_t
>(
Value);
447 assert(
Offset + NumBytes <= Data.size() &&
"Invalid fixup offset!");
450 unsigned FulleSizeInBytes = getFixupKindContainereSizeInBytes(
Fixup.getKind());
454 if (FulleSizeInBytes == 0) {
456 for (
unsigned i = 0; i != NumBytes; ++i) {
457 Data[
Offset + i] |= uint8_t((
Value >> (i * 8)) & 0xff);
461 assert((
Offset + FulleSizeInBytes) <= Data.size() &&
"Invalid fixup size!");
462 assert(NumBytes <= FulleSizeInBytes &&
"Invalid fixup size!");
463 for (
unsigned i = 0; i != NumBytes; ++i) {
464 unsigned Idx = FulleSizeInBytes - 1 - i;
478 Data[
Offset + 3] &= ~(1 << 6);
480 Data[
Offset + 3] |= (1 << 6);
484bool AArch64AsmBackend::fixupNeedsRelaxation(
const MCFixup &
Fixup,
490 return int64_t(
Value) != int64_t(int8_t(
Value));
493void AArch64AsmBackend::relaxInstruction(
MCInst &Inst,
507 for (
uint64_t i = 0; i != Count; ++i)
508 OS.
write(
"\x1f\x20\x03\xd5", 4);
512bool AArch64AsmBackend::shouldForceRelocation(
const MCAssembler &Asm,
546 UNWIND_ARM64_MODE_FRAMELESS = 0x02000000,
553 UNWIND_ARM64_MODE_DWARF = 0x03000000,
561 UNWIND_ARM64_MODE_FRAME = 0x04000000,
564 UNWIND_ARM64_FRAME_X19_X20_PAIR = 0x00000001,
565 UNWIND_ARM64_FRAME_X21_X22_PAIR = 0x00000002,
566 UNWIND_ARM64_FRAME_X23_X24_PAIR = 0x00000004,
567 UNWIND_ARM64_FRAME_X25_X26_PAIR = 0x00000008,
568 UNWIND_ARM64_FRAME_X27_X28_PAIR = 0x00000010,
569 UNWIND_ARM64_FRAME_D8_D9_PAIR = 0x00000100,
570 UNWIND_ARM64_FRAME_D10_D11_PAIR = 0x00000200,
571 UNWIND_ARM64_FRAME_D12_D13_PAIR = 0x00000400,
572 UNWIND_ARM64_FRAME_D14_D15_PAIR = 0x00000800
578class DarwinAArch64AsmBackend :
public AArch64AsmBackend {
585 return (StackSize / 16) << 12;
593 std::unique_ptr<MCObjectTargetWriter>
594 createObjectTargetWriter()
const override {
606 return CU::UNWIND_ARM64_MODE_FRAMELESS;
607 if (!isDarwinCanonicalPersonality(FI->
Personality) &&
609 return CU::UNWIND_ARM64_MODE_DWARF;
615 int64_t CurOffset = 0;
616 for (
size_t i = 0, e = Instrs.
size(); i != e; ++i) {
622 return CU::UNWIND_ARM64_MODE_DWARF;
632 if (XReg != AArch64::FP)
633 return CU::UNWIND_ARM64_MODE_DWARF;
636 return CU::UNWIND_ARM64_MODE_DWARF;
640 return CU::UNWIND_ARM64_MODE_DWARF;
643 return CU::UNWIND_ARM64_MODE_DWARF;
646 return CU::UNWIND_ARM64_MODE_DWARF;
655 if (LRReg != AArch64::LR || FPReg != AArch64::FP)
656 return CU::UNWIND_ARM64_MODE_DWARF;
659 CompactUnwindEncoding |= CU::UNWIND_ARM64_MODE_FRAME;
665 return CU::UNWIND_ARM64_MODE_DWARF;
674 return CU::UNWIND_ARM64_MODE_DWARF;
676 if (CurOffset != 0 && Inst.
getOffset() != CurOffset - 8)
677 return CU::UNWIND_ARM64_MODE_DWARF;
682 return CU::UNWIND_ARM64_MODE_DWARF;
686 return CU::UNWIND_ARM64_MODE_DWARF;
700 if (Reg1 == AArch64::X19 && Reg2 == AArch64::X20 &&
701 (CompactUnwindEncoding & 0xF1E) == 0)
702 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_X19_X20_PAIR;
703 else if (Reg1 == AArch64::X21 && Reg2 == AArch64::X22 &&
704 (CompactUnwindEncoding & 0xF1C) == 0)
705 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_X21_X22_PAIR;
706 else if (Reg1 == AArch64::X23 && Reg2 == AArch64::X24 &&
707 (CompactUnwindEncoding & 0xF18) == 0)
708 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_X23_X24_PAIR;
709 else if (Reg1 == AArch64::X25 && Reg2 == AArch64::X26 &&
710 (CompactUnwindEncoding & 0xF10) == 0)
711 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_X25_X26_PAIR;
712 else if (Reg1 == AArch64::X27 && Reg2 == AArch64::X28 &&
713 (CompactUnwindEncoding & 0xF00) == 0)
714 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_X27_X28_PAIR;
723 if (Reg1 == AArch64::D8 && Reg2 == AArch64::D9 &&
724 (CompactUnwindEncoding & 0xE00) == 0)
725 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_D8_D9_PAIR;
726 else if (Reg1 == AArch64::D10 && Reg2 == AArch64::D11 &&
727 (CompactUnwindEncoding & 0xC00) == 0)
728 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_D10_D11_PAIR;
729 else if (Reg1 == AArch64::D12 && Reg2 == AArch64::D13 &&
730 (CompactUnwindEncoding & 0x800) == 0)
731 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_D12_D13_PAIR;
732 else if (Reg1 == AArch64::D14 && Reg2 == AArch64::D15)
733 CompactUnwindEncoding |= CU::UNWIND_ARM64_FRAME_D14_D15_PAIR;
736 return CU::UNWIND_ARM64_MODE_DWARF;
747 if (StackSize > 65520)
748 return CU::UNWIND_ARM64_MODE_DWARF;
750 CompactUnwindEncoding |= CU::UNWIND_ARM64_MODE_FRAMELESS;
751 CompactUnwindEncoding |= encodeStackAdjustment(StackSize);
754 return CompactUnwindEncoding;
762class ELFAArch64AsmBackend :
public AArch64AsmBackend {
767 ELFAArch64AsmBackend(
const Target &
T,
const Triple &TT, uint8_t OSABI,
768 bool IsLittleEndian,
bool IsILP32)
769 : AArch64AsmBackend(
T,
TT, IsLittleEndian), OSABI(OSABI),
772 std::unique_ptr<MCObjectTargetWriter>
773 createObjectTargetWriter()
const override {
781class COFFAArch64AsmBackend :
public AArch64AsmBackend {
783 COFFAArch64AsmBackend(
const Target &
T,
const Triple &TheTriple)
784 : AArch64AsmBackend(
T, TheTriple,
true) {}
786 std::unique_ptr<MCObjectTargetWriter>
787 createObjectTargetWriter()
const override {
799 return new DarwinAArch64AsmBackend(
T, TheTriple,
MRI);
803 return new COFFAArch64AsmBackend(
T, TheTriple);
809 return new ELFAArch64AsmBackend(
T, TheTriple, OSABI,
true,
819 "Big endian is only supported for ELF targets!");
822 return new ELFAArch64AsmBackend(
T, TheTriple, OSABI,
false,
unsigned const MachineRegisterInfo * MRI
static unsigned AdrImmBits(unsigned Value)
static unsigned getFixupKindNumBytes(unsigned Kind)
The number of bytes the fixup may change.
static uint64_t adjustFixupValue(const MCFixup &Fixup, const MCValue &Target, uint64_t Value, MCContext &Ctx, const Triple &TheTriple, bool IsResolved)
Analysis containing CSE Info
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
PowerPC TLS Dynamic Call Fixup
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static VariantKind getSymbolLoc(VariantKind Kind)
static VariantKind getAddressFrag(VariantKind Kind)
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
Generic interface to target specific assembler backends.
virtual bool writeNopData(raw_ostream &OS, uint64_t Count, const MCSubtargetInfo *STI) const =0
Write an (optimal) nop sequence of Count bytes to the given output.
virtual void relaxInstruction(MCInst &Inst, const MCSubtargetInfo &STI) const
Relax the instruction in the given fragment to the next wider instruction.
virtual bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value) const
Simple predicate for targets where !Resolved implies requiring relaxation.
virtual bool shouldForceRelocation(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, const MCSubtargetInfo *STI)
Hook to check if a relocation is needed for some target specific reason.
virtual unsigned getNumFixupKinds() const =0
Get the number of target specific fixup kinds.
virtual const MCFixupKindInfo & getFixupKindInfo(MCFixupKind Kind) const
Get information on a fixup kind.
virtual std::optional< MCFixupKind > getFixupKind(StringRef Name) const
Map a relocation name used in .reloc to a fixup kind.
virtual void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef< char > Data, uint64_t Value, bool IsResolved, const MCSubtargetInfo *STI) const =0
Apply the Value for given Fixup into the provided data fragment, at the offset specified by the fixup...
unsigned getRegister() const
OpType getOperation() const
int64_t getOffset() const
Context object for machine code objects.
bool emitCompactUnwindNonCanonical() const
void reportError(SMLoc L, const Twine &Msg)
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
Instances of this class represent a single low-level machine instruction.
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Generic base class for all target subtargets.
const Triple & getTargetTriple() const
This represents an "assembler immediate".
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
StringRef - Represent a constant reference to a string, i.e.
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
bool isOSBinFormatMachO() const
Tests whether the environment is MachO.
OSType getOS() const
Get the parsed operating system type of this triple.
bool isOSBinFormatCOFF() const
Tests whether the OS uses the COFF binary format.
EnvironmentType getEnvironment() const
Get the parsed environment type of this triple.
bool isArch32Bit() const
Test whether the architecture is 32-bit.
bool isOSBinFormatELF() const
Tests whether the OS uses the ELF binary format.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
This class implements an extremely fast bulk output stream that can only output to a stream.
raw_ostream & write_zeros(unsigned NumZeros)
write_zeros - Insert 'NumZeros' nulls.
raw_ostream & write(unsigned char C)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
CompactUnwindEncodings
Compact unwind encoding values.
@ fixup_aarch64_pcrel_branch16
@ fixup_aarch64_ldst_imm12_scale4
@ fixup_aarch64_pcrel_call26
@ fixup_aarch64_pcrel_branch26
@ fixup_aarch64_pcrel_branch19
@ fixup_aarch64_ldr_pcrel_imm19
@ fixup_aarch64_pcrel_adr_imm21
@ fixup_aarch64_pcrel_branch14
@ fixup_aarch64_ldst_imm12_scale2
@ fixup_aarch64_ldst_imm12_scale16
@ fixup_aarch64_pcrel_adrp_imm21
@ fixup_aarch64_add_imm12
@ fixup_aarch64_ldst_imm12_scale8
@ fixup_aarch64_ldst_imm12_scale1
Expected< uint32_t > getCPUSubType(const Triple &T)
Expected< uint32_t > getCPUType(const Triple &T)
This is an optimization pass for GlobalISel generic memory operations.
std::unique_ptr< MCObjectTargetWriter > createAArch64WinCOFFObjectWriter(const Triple &TheTriple)
static unsigned getXRegFromWReg(unsigned Reg)
MCAsmBackend * createAArch64leAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
static unsigned getDRegFromBReg(unsigned Reg)
MCFixupKind
Extensible enumeration to represent the type of a fixup.
@ FK_SecRel_2
A two-byte section relative fixup.
@ FirstLiteralRelocationKind
The range [FirstLiteralRelocationKind, MaxTargetFixupKind) is used for relocations coming from ....
@ FK_Data_8
A eight-byte fixup.
@ FK_Data_1
A one-byte fixup.
@ FK_Data_4
A four-byte fixup.
@ FK_SecRel_4
A four-byte section relative fixup.
@ FK_Data_2
A two-byte fixup.
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
std::unique_ptr< MCObjectTargetWriter > createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, bool IsILP32)
MCAsmBackend * createAArch64beAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
std::unique_ptr< MCObjectTargetWriter > createAArch64ELFObjectWriter(uint8_t OSABI, bool IsILP32)
const MCSymbol * Personality
std::vector< MCCFIInstruction > Instructions
Target independent information on a fixup kind.
@ FKF_IsAlignedDownTo32Bits
Should this fixup kind force a 4-byte aligned effective PC value?
@ FKF_IsPCRel
Is this fixup kind PCrelative? This is used by the assembler backend to evaluate fixup values in a ta...