LLVM  8.0.1
RISCVELFObjectWriter.cpp
Go to the documentation of this file.
1 //===-- RISCVELFObjectWriter.cpp - RISCV ELF Writer -----------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
13 #include "llvm/MC/MCFixup.h"
14 #include "llvm/MC/MCObjectWriter.h"
16 
17 using namespace llvm;
18 
19 namespace {
20 class RISCVELFObjectWriter : public MCELFObjectTargetWriter {
21 public:
22  RISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit);
23 
24  ~RISCVELFObjectWriter() override;
25 
26  // Return true if the given relocation must be with a symbol rather than
27  // section plus offset.
28  bool needsRelocateWithSymbol(const MCSymbol &Sym,
29  unsigned Type) const override {
30  // TODO: this is very conservative, update once RISC-V psABI requirements
31  // are clarified.
32  return true;
33  }
34 
35 protected:
36  unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
37  const MCFixup &Fixup, bool IsPCRel) const override;
38 };
39 }
40 
41 RISCVELFObjectWriter::RISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit)
42  : MCELFObjectTargetWriter(Is64Bit, OSABI, ELF::EM_RISCV,
43  /*HasRelocationAddend*/ true) {}
44 
45 RISCVELFObjectWriter::~RISCVELFObjectWriter() {}
46 
48  const MCValue &Target,
49  const MCFixup &Fixup,
50  bool IsPCRel) const {
51  // Determine the type of the relocation
52  switch ((unsigned)Fixup.getKind()) {
53  default:
54  llvm_unreachable("invalid fixup kind!");
55  case FK_Data_4:
56  return ELF::R_RISCV_32;
57  case FK_Data_8:
58  return ELF::R_RISCV_64;
59  case FK_Data_Add_1:
60  return ELF::R_RISCV_ADD8;
61  case FK_Data_Add_2:
62  return ELF::R_RISCV_ADD16;
63  case FK_Data_Add_4:
64  return ELF::R_RISCV_ADD32;
65  case FK_Data_Add_8:
66  return ELF::R_RISCV_ADD64;
67  case FK_Data_Sub_1:
68  return ELF::R_RISCV_SUB8;
69  case FK_Data_Sub_2:
70  return ELF::R_RISCV_SUB16;
71  case FK_Data_Sub_4:
72  return ELF::R_RISCV_SUB32;
73  case FK_Data_Sub_8:
74  return ELF::R_RISCV_SUB64;
76  return ELF::R_RISCV_HI20;
78  return ELF::R_RISCV_LO12_I;
80  return ELF::R_RISCV_LO12_S;
82  return ELF::R_RISCV_PCREL_HI20;
84  return ELF::R_RISCV_PCREL_LO12_I;
86  return ELF::R_RISCV_PCREL_LO12_S;
88  return ELF::R_RISCV_JAL;
90  return ELF::R_RISCV_BRANCH;
92  return ELF::R_RISCV_RVC_JUMP;
94  return ELF::R_RISCV_RVC_BRANCH;
96  return ELF::R_RISCV_CALL;
98  return ELF::R_RISCV_RELAX;
99  }
100 }
101 
102 std::unique_ptr<MCObjectTargetWriter>
103 llvm::createRISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit) {
104  return llvm::make_unique<RISCVELFObjectWriter>(OSABI, Is64Bit);
105 }
std::unique_ptr< MCObjectTargetWriter > createRISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
This represents an "assembler immediate".
Definition: MCValue.h:40
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:42
A eight-byte sub fixup.
Definition: MCFixup.h:51
block Block Frequency true
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
Definition: MCFixup.h:74
A eight-byte add fixup.
Definition: MCFixup.h:47
static unsigned getRelocType(const MCValue &Target, const MCFixupKind FixupKind, const bool IsPCRel)
Translates generic PPC fixup kind to Mach-O/PPC relocation type enum.
A four-byte fixup.
Definition: MCFixup.h:26
Context object for machine code objects.
Definition: MCContext.h:63
A one-byte add fixup.
Definition: MCFixup.h:44
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
A four-byte add fixup.
Definition: MCFixup.h:46
Target - Wrapper for Target specific information.
A two-byte sub fixup.
Definition: MCFixup.h:49
A eight-byte fixup.
Definition: MCFixup.h:27
A one-byte sub fixup.
Definition: MCFixup.h:48
A four-byte sub fixup.
Definition: MCFixup.h:50
A two-byte add fixup.
Definition: MCFixup.h:45
MCFixupKind getKind() const
Definition: MCFixup.h:123