21 static constexpr uint8_t SignBitMask = 0x80;
24 PPCXCOFFObjectWriter(
bool Is64Bit);
26 std::pair<uint8_t, uint8_t>
28 bool IsPCRel)
const override;
32PPCXCOFFObjectWriter::PPCXCOFFObjectWriter(
bool Is64Bit)
35std::unique_ptr<MCObjectTargetWriter>
37 return std::make_unique<PPCXCOFFObjectWriter>(Is64Bit);
40std::pair<uint8_t, uint8_t> PPCXCOFFObjectWriter::getRelocTypeAndSignSize(
44 :
Target.getSymA()->getKind();
51 const uint8_t EncodedSignednessIndicator = IsPCRel ? SignBitMask : 0u;
57 switch ((
unsigned)
Fixup.getKind()) {
61 const uint8_t SignAndSizeForHalf16 = EncodedSignednessIndicator | 15;
66 return {XCOFF::RelocationType::R_TOC, SignAndSizeForHalf16};
68 return {XCOFF::RelocationType::R_TOCU, SignAndSizeForHalf16};
70 return {XCOFF::RelocationType::R_TOCL, SignAndSizeForHalf16};
72 return {XCOFF::RelocationType::R_TLS_LE, SignAndSizeForHalf16};
74 return {XCOFF::RelocationType::R_TLS_LD, SignAndSizeForHalf16};
85 return {XCOFF::RelocationType::R_TOC, 15};
87 return {XCOFF::RelocationType::R_TOCL, 15};
89 return {XCOFF::RelocationType::R_TLS_LE, 15};
91 return {XCOFF::RelocationType::R_TLS_LD, 15};
97 return {XCOFF::RelocationType::R_RBR, EncodedSignednessIndicator | 25};
99 return {XCOFF::RelocationType::R_RBA, EncodedSignednessIndicator | 25};
102 return {XCOFF::RelocationType::R_REF, 0};
108 const uint8_t SignAndSizeForFKData =
109 EncodedSignednessIndicator |
115 return {XCOFF::RelocationType::R_TLS, SignAndSizeForFKData};
117 return {XCOFF::RelocationType::R_TLSM, SignAndSizeForFKData};
119 return {XCOFF::RelocationType::R_TLS_IE, SignAndSizeForFKData};
121 return {XCOFF::RelocationType::R_TLS_LE, SignAndSizeForFKData};
123 return {XCOFF::RelocationType::R_TLS_LD, SignAndSizeForFKData};
125 return {XCOFF::RelocationType::R_TLSML, SignAndSizeForFKData};
127 return {XCOFF::RelocationType::R_POS, SignAndSizeForFKData};
PowerPC TLS Dynamic Call Fixup
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
This represents an "assembler immediate".
virtual std::pair< uint8_t, uint8_t > getRelocTypeAndSignSize(const MCValue &Target, const MCFixup &Fixup, bool IsPCRel) const =0
Target - Wrapper for Target specific information.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ fixup_ppc_half16
A 16-bit fixup corresponding to lo16(_foo) or ha16(_foo) for instrs like 'li' or 'addis'.
@ fixup_ppc_half16dq
A 16-bit fixup corresponding to lo16(_foo) with implied 3 zero bits for instrs like 'lxv'.
@ fixup_ppc_half16ds
A 14-bit fixup corresponding to lo16(_foo) with implied 2 zero bits for instrs like 'std'.
@ fixup_ppc_nofixup
Not a true fixup, but ties a symbol to a call to __tls_get_addr for the TLS general and local dynamic...
@ fixup_ppc_br24abs
24-bit absolute relocation for direct branches like 'ba' and 'bla'.
This is an optimization pass for GlobalISel generic memory operations.
std::unique_ptr< MCObjectTargetWriter > createPPCXCOFFObjectWriter(bool Is64Bit)
Construct a PPC XCOFF object writer.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
@ FK_Data_8
A eight-byte fixup.
@ FK_Data_4
A four-byte fixup.