blob: 9c180a51d45528d5f249bef48f18a32517b2f850 [file] [log] [blame]
Alex Bradbury6b2cca72016-11-01 23:47:30 +00001//===-- RISCVELFObjectWriter.cpp - RISCV ELF Writer -----------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Alex Bradbury6b2cca72016-11-01 23:47:30 +00006//
7//===----------------------------------------------------------------------===//
8
Alex Bradbury9d3f1252017-09-28 08:26:24 +00009#include "MCTargetDesc/RISCVFixupKinds.h"
Alex Bradbury6b2cca72016-11-01 23:47:30 +000010#include "MCTargetDesc/RISCVMCTargetDesc.h"
11#include "llvm/MC/MCELFObjectWriter.h"
12#include "llvm/MC/MCFixup.h"
Alex Bradbury5c1eef42017-10-11 12:09:06 +000013#include "llvm/MC/MCObjectWriter.h"
Alex Bradbury6b2cca72016-11-01 23:47:30 +000014#include "llvm/Support/ErrorHandling.h"
15
16using namespace llvm;
17
18namespace {
19class RISCVELFObjectWriter : public MCELFObjectTargetWriter {
20public:
21 RISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit);
22
23 ~RISCVELFObjectWriter() override;
24
Shiva Chen98f93892018-04-25 14:18:55 +000025 // Return true if the given relocation must be with a symbol rather than
26 // section plus offset.
27 bool needsRelocateWithSymbol(const MCSymbol &Sym,
28 unsigned Type) const override {
29 // TODO: this is very conservative, update once RISC-V psABI requirements
30 // are clarified.
31 return true;
32 }
33
Alex Bradbury6b2cca72016-11-01 23:47:30 +000034protected:
35 unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
36 const MCFixup &Fixup, bool IsPCRel) const override;
37};
38}
39
40RISCVELFObjectWriter::RISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit)
41 : MCELFObjectTargetWriter(Is64Bit, OSABI, ELF::EM_RISCV,
Alex Bradburydd834842017-08-20 06:55:14 +000042 /*HasRelocationAddend*/ true) {}
Alex Bradbury6b2cca72016-11-01 23:47:30 +000043
44RISCVELFObjectWriter::~RISCVELFObjectWriter() {}
45
46unsigned RISCVELFObjectWriter::getRelocType(MCContext &Ctx,
47 const MCValue &Target,
48 const MCFixup &Fixup,
49 bool IsPCRel) const {
Alex Bradbury9d3f1252017-09-28 08:26:24 +000050 // Determine the type of the relocation
Alex Bradbury4ac0b9b2019-07-16 03:47:34 +000051 unsigned Kind = Fixup.getKind();
52 if (IsPCRel) {
53 switch (Kind) {
54 default:
55 llvm_unreachable("invalid fixup kind!");
56 case FK_Data_4:
57 case FK_PCRel_4:
58 return ELF::R_RISCV_32_PCREL;
59 case RISCV::fixup_riscv_pcrel_hi20:
60 return ELF::R_RISCV_PCREL_HI20;
61 case RISCV::fixup_riscv_pcrel_lo12_i:
62 return ELF::R_RISCV_PCREL_LO12_I;
63 case RISCV::fixup_riscv_pcrel_lo12_s:
64 return ELF::R_RISCV_PCREL_LO12_S;
65 case RISCV::fixup_riscv_got_hi20:
66 return ELF::R_RISCV_GOT_HI20;
67 case RISCV::fixup_riscv_tls_got_hi20:
68 return ELF::R_RISCV_TLS_GOT_HI20;
69 case RISCV::fixup_riscv_tls_gd_hi20:
70 return ELF::R_RISCV_TLS_GD_HI20;
71 case RISCV::fixup_riscv_jal:
72 return ELF::R_RISCV_JAL;
73 case RISCV::fixup_riscv_branch:
74 return ELF::R_RISCV_BRANCH;
75 case RISCV::fixup_riscv_rvc_jump:
76 return ELF::R_RISCV_RVC_JUMP;
77 case RISCV::fixup_riscv_rvc_branch:
78 return ELF::R_RISCV_RVC_BRANCH;
79 case RISCV::fixup_riscv_call:
80 return ELF::R_RISCV_CALL;
81 case RISCV::fixup_riscv_call_plt:
82 return ELF::R_RISCV_CALL_PLT;
83 }
84 }
85
86 switch (Kind) {
Alex Bradbury9d3f1252017-09-28 08:26:24 +000087 default:
88 llvm_unreachable("invalid fixup kind!");
89 case FK_Data_4:
90 return ELF::R_RISCV_32;
91 case FK_Data_8:
92 return ELF::R_RISCV_64;
Alex Bradbury257d5b52018-05-23 12:36:18 +000093 case FK_Data_Add_1:
94 return ELF::R_RISCV_ADD8;
95 case FK_Data_Add_2:
96 return ELF::R_RISCV_ADD16;
97 case FK_Data_Add_4:
98 return ELF::R_RISCV_ADD32;
99 case FK_Data_Add_8:
100 return ELF::R_RISCV_ADD64;
Hsiangkai Wang18ccfad2019-07-19 02:03:34 +0000101 case FK_Data_Add_6b:
102 return ELF::R_RISCV_SET6;
Alex Bradbury257d5b52018-05-23 12:36:18 +0000103 case FK_Data_Sub_1:
104 return ELF::R_RISCV_SUB8;
105 case FK_Data_Sub_2:
106 return ELF::R_RISCV_SUB16;
107 case FK_Data_Sub_4:
108 return ELF::R_RISCV_SUB32;
109 case FK_Data_Sub_8:
110 return ELF::R_RISCV_SUB64;
Hsiangkai Wang18ccfad2019-07-19 02:03:34 +0000111 case FK_Data_Sub_6b:
112 return ELF::R_RISCV_SUB6;
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000113 case RISCV::fixup_riscv_hi20:
114 return ELF::R_RISCV_HI20;
115 case RISCV::fixup_riscv_lo12_i:
116 return ELF::R_RISCV_LO12_I;
117 case RISCV::fixup_riscv_lo12_s:
118 return ELF::R_RISCV_LO12_S;
Lewis Revillaa79a3f2019-04-04 14:13:37 +0000119 case RISCV::fixup_riscv_tprel_hi20:
120 return ELF::R_RISCV_TPREL_HI20;
121 case RISCV::fixup_riscv_tprel_lo12_i:
122 return ELF::R_RISCV_TPREL_LO12_I;
123 case RISCV::fixup_riscv_tprel_lo12_s:
124 return ELF::R_RISCV_TPREL_LO12_S;
125 case RISCV::fixup_riscv_tprel_add:
126 return ELF::R_RISCV_TPREL_ADD;
Shiva Chen43bfe842018-05-24 06:21:23 +0000127 case RISCV::fixup_riscv_relax:
128 return ELF::R_RISCV_RELAX;
Shiva Chen5af037f2019-01-30 11:16:59 +0000129 case RISCV::fixup_riscv_align:
130 return ELF::R_RISCV_ALIGN;
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000131 }
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000132}
133
Peter Collingbournedcd7d6c2018-05-21 19:20:29 +0000134std::unique_ptr<MCObjectTargetWriter>
135llvm::createRISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit) {
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000136 return std::make_unique<RISCVELFObjectWriter>(OSABI, Is64Bit);
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000137}