24 RISCVELFObjectWriter(uint8_t OSABI,
bool Is64Bit);
26 ~RISCVELFObjectWriter()
override;
31 unsigned Type)
const override {
43RISCVELFObjectWriter::RISCVELFObjectWriter(uint8_t OSABI,
bool Is64Bit)
47RISCVELFObjectWriter::~RISCVELFObjectWriter() =
default;
49unsigned RISCVELFObjectWriter::getRelocType(
MCContext &Ctx,
62 return ELF::R_RISCV_NONE;
67 : ELF::R_RISCV_32_PCREL;
69 return ELF::R_RISCV_PCREL_HI20;
71 return ELF::R_RISCV_PCREL_LO12_I;
73 return ELF::R_RISCV_PCREL_LO12_S;
75 return ELF::R_RISCV_GOT_HI20;
77 return ELF::R_RISCV_TLS_GOT_HI20;
79 return ELF::R_RISCV_TLS_GD_HI20;
81 return ELF::R_RISCV_JAL;
83 return ELF::R_RISCV_BRANCH;
85 return ELF::R_RISCV_RVC_JUMP;
87 return ELF::R_RISCV_RVC_BRANCH;
89 return ELF::R_RISCV_CALL_PLT;
91 return ELF::R_RISCV_CALL_PLT;
93 return ELF::R_RISCV_ADD8;
95 return ELF::R_RISCV_SUB8;
97 return ELF::R_RISCV_ADD16;
99 return ELF::R_RISCV_SUB16;
101 return ELF::R_RISCV_ADD32;
103 return ELF::R_RISCV_SUB32;
105 return ELF::R_RISCV_ADD64;
107 return ELF::R_RISCV_SUB64;
114 return ELF::R_RISCV_NONE;
117 return ELF::R_RISCV_NONE;
120 return ELF::R_RISCV_NONE;
124 return ELF::R_RISCV_32_PCREL;
125 return ELF::R_RISCV_32;
127 return ELF::R_RISCV_64;
129 return ELF::R_RISCV_HI20;
131 return ELF::R_RISCV_LO12_I;
133 return ELF::R_RISCV_LO12_S;
135 return ELF::R_RISCV_TPREL_HI20;
137 return ELF::R_RISCV_TPREL_LO12_I;
139 return ELF::R_RISCV_TPREL_LO12_S;
141 return ELF::R_RISCV_TPREL_ADD;
143 return ELF::R_RISCV_RELAX;
145 return ELF::R_RISCV_ALIGN;
147 return ELF::R_RISCV_SET6;
149 return ELF::R_RISCV_SUB6;
151 return ELF::R_RISCV_ADD8;
153 return ELF::R_RISCV_SET8;
155 return ELF::R_RISCV_SUB8;
157 return ELF::R_RISCV_SET16;
159 return ELF::R_RISCV_ADD16;
161 return ELF::R_RISCV_SUB16;
163 return ELF::R_RISCV_SET32;
165 return ELF::R_RISCV_ADD32;
167 return ELF::R_RISCV_SUB32;
169 return ELF::R_RISCV_ADD64;
171 return ELF::R_RISCV_SUB64;
175std::unique_ptr<MCObjectTargetWriter>
177 return std::make_unique<RISCVELFObjectWriter>(OSABI, Is64Bit);
PowerPC TLS Dynamic Call Fixup
Context object for machine code objects.
void reportError(SMLoc L, const Twine &Msg)
virtual bool needsRelocateWithSymbol(const MCSymbol &Sym, unsigned Type) const
virtual unsigned getRelocType(MCContext &Ctx, const MCValue &Target, const MCFixup &Fixup, bool IsPCRel) const =0
Base class for the full range of assembler expressions which are needed for parsing.
@ Target
Target specific expression.
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
This represents an "assembler immediate".
Target - Wrapper for Target specific information.
The instances of the Type class are immutable: once they are created, they are never changed.
@ fixup_riscv_tprel_lo12_s
@ fixup_riscv_tls_got_hi20
@ fixup_riscv_tls_gd_hi20
@ fixup_riscv_pcrel_lo12_i
@ fixup_riscv_pcrel_lo12_s
@ fixup_riscv_tprel_lo12_i
This is an optimization pass for GlobalISel generic memory operations.
std::unique_ptr< MCObjectTargetWriter > createRISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit)
@ FK_PCRel_4
A four-byte pc 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_Data_2
A two-byte fixup.