blob: 041811d3e285d3023e2106a5d3ae75fe9499c51e [file] [log] [blame]
Eli Bendersky058d6472012-01-22 07:05:02 +00001//===-- RuntimeDyldELF.h - Run-time dynamic linker for MC-JIT ---*- C++ -*-===//
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//
10// ELF support for MC-JIT runtime dynamic linker.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_RUNTIMEDYLDELF_H
15#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_RUNTIMEDYLDELF_H
Eli Bendersky058d6472012-01-22 07:05:02 +000016
17#include "RuntimeDyldImpl.h"
Andrew Kaylor480dcb32013-10-05 01:52:09 +000018#include "llvm/ADT/DenseMap.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000019
20using namespace llvm;
21
Eli Bendersky058d6472012-01-22 07:05:02 +000022namespace llvm {
Tim Northover94bc73d2012-10-29 10:47:04 +000023
Eli Bendersky058d6472012-01-22 07:05:02 +000024class RuntimeDyldELF : public RuntimeDyldImpl {
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000025
Juergen Ributzka7608dc02014-03-21 20:28:42 +000026 void resolveRelocation(const SectionEntry &Section, uint64_t Offset,
27 uint64_t Value, uint32_t Type, int64_t Addend,
Petar Jovanovic97202832015-05-28 13:48:41 +000028 uint64_t SymOffset = 0, SID SectionID = 0);
Rafael Espindolaf1f1c622013-04-29 17:24:34 +000029
Juergen Ributzka7608dc02014-03-21 20:28:42 +000030 void resolveX86_64Relocation(const SectionEntry &Section, uint64_t Offset,
31 uint64_t Value, uint32_t Type, int64_t Addend,
Andrew Kaylor4612fed2013-08-19 23:27:43 +000032 uint64_t SymOffset);
Eli Bendersky058d6472012-01-22 07:05:02 +000033
Juergen Ributzka7608dc02014-03-21 20:28:42 +000034 void resolveX86Relocation(const SectionEntry &Section, uint64_t Offset,
35 uint32_t Value, uint32_t Type, int32_t Addend);
Eli Bendersky058d6472012-01-22 07:05:02 +000036
Juergen Ributzka7608dc02014-03-21 20:28:42 +000037 void resolveAArch64Relocation(const SectionEntry &Section, uint64_t Offset,
38 uint64_t Value, uint32_t Type, int64_t Addend);
Tim Northoverfa1b2f82013-05-04 20:13:59 +000039
Juergen Ributzka7608dc02014-03-21 20:28:42 +000040 void resolveARMRelocation(const SectionEntry &Section, uint64_t Offset,
41 uint32_t Value, uint32_t Type, int32_t Addend);
Eli Bendersky058d6472012-01-22 07:05:02 +000042
Juergen Ributzka7608dc02014-03-21 20:28:42 +000043 void resolveMIPSRelocation(const SectionEntry &Section, uint64_t Offset,
44 uint32_t Value, uint32_t Type, int32_t Addend);
Akira Hatanaka111174b2012-08-17 21:28:04 +000045
Hal Finkel23cdeee2015-08-04 15:29:00 +000046 void resolvePPC32Relocation(const SectionEntry &Section, uint64_t Offset,
47 uint64_t Value, uint32_t Type, int64_t Addend);
48
Juergen Ributzka7608dc02014-03-21 20:28:42 +000049 void resolvePPC64Relocation(const SectionEntry &Section, uint64_t Offset,
50 uint64_t Value, uint32_t Type, int64_t Addend);
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +000051
Juergen Ributzka7608dc02014-03-21 20:28:42 +000052 void resolveSystemZRelocation(const SectionEntry &Section, uint64_t Offset,
53 uint64_t Value, uint32_t Type, int64_t Addend);
Eli Bendersky058d6472012-01-22 07:05:02 +000054
Petar Jovanovic97202832015-05-28 13:48:41 +000055 void resolveMIPS64Relocation(const SectionEntry &Section, uint64_t Offset,
56 uint64_t Value, uint32_t Type, int64_t Addend,
57 uint64_t SymOffset, SID SectionID);
58
59 int64_t evaluateMIPS64Relocation(const SectionEntry &Section,
60 uint64_t Offset, uint64_t Value,
61 uint32_t Type, int64_t Addend,
62 uint64_t SymOffset, SID SectionID);
63
64 void applyMIPS64Relocation(uint8_t *TargetPtr, int64_t CalculatedValue,
65 uint32_t Type);
66
Craig Topperb51ff602014-03-08 07:51:20 +000067 unsigned getMaxStubSize() override {
Tim Northovere19bed72014-07-23 12:32:47 +000068 if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be)
Andrew Kaylor2ba21c52013-10-15 21:32:56 +000069 return 20; // movz; movk; movk; movk; br
70 if (Arch == Triple::arm || Arch == Triple::thumb)
71 return 8; // 32-bit instruction and 32-bit address
Petar Jovanovic97202832015-05-28 13:48:41 +000072 else if (IsMipsO32ABI)
Andrew Kaylor2ba21c52013-10-15 21:32:56 +000073 return 16;
74 else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le)
75 return 44;
76 else if (Arch == Triple::x86_64)
77 return 6; // 2-byte jmp instruction + 32-bit relative address
78 else if (Arch == Triple::systemz)
79 return 16;
80 else
81 return 0;
82 }
83
Craig Topperb51ff602014-03-08 07:51:20 +000084 unsigned getStubAlignment() override {
Andrew Kaylor2ba21c52013-10-15 21:32:56 +000085 if (Arch == Triple::systemz)
86 return 8;
87 else
88 return 1;
89 }
90
Petar Jovanovic97202832015-05-28 13:48:41 +000091 void setMipsABI(const ObjectFile &Obj) override;
92
Rafael Espindola3dc0d052015-06-19 20:58:43 +000093 void findPPC64TOCSection(const ELFObjectFileBase &Obj,
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000094 ObjSectionToIDMap &LocalSections,
Ulrich Weigand8f1f87c2014-06-27 10:32:14 +000095 RelocationValueRef &Rel);
Rafael Espindola3dc0d052015-06-19 20:58:43 +000096 void findOPDEntrySection(const ELFObjectFileBase &Obj,
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000097 ObjSectionToIDMap &LocalSections,
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +000098 RelocationValueRef &Rel);
99
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000100 size_t getGOTEntrySize();
101
Keno Fischer02628de2015-04-14 02:10:35 +0000102 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; }
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000103
Keno Fischer02628de2015-04-14 02:10:35 +0000104 // Allocate no GOT entries for use in the given section.
105 uint64_t allocateGOTEntries(unsigned SectionID, unsigned no);
106
107 // Resolve the relvative address of GOTOffset in Section ID and place
108 // it at the given Offset
109 void resolveGOTOffsetRelocation(unsigned SectionID, uint64_t Offset,
110 uint64_t GOTOffset);
111
112 // For a GOT entry referenced from SectionID, compute a relocation entry
113 // that will place the final resolved value in the GOT slot
114 RelocationEntry computeGOTOffsetRE(unsigned SectionID,
115 uint64_t GOTOffset,
116 uint64_t SymbolOffset,
117 unsigned Type);
118
Keno Fischere6892c82015-05-01 20:21:45 +0000119 // Compute the address in memory where we can find the placeholder
120 void *computePlaceholderAddress(unsigned SectionID, uint64_t Offset) const;
121
122 // Split out common case for createing the RelocationEntry for when the relocation requires
123 // no particular advanced processing.
124 void processSimpleRelocation(unsigned SectionID, uint64_t Offset, unsigned RelType, RelocationValueRef Value);
125
Petar Jovanovicd22164d2015-08-13 15:12:49 +0000126 // Return matching *LO16 relocation (Mips specific)
127 uint32_t getMatchingLoRelocation(uint32_t RelType,
128 bool IsLocal = false) const;
129
Keno Fischer02628de2015-04-14 02:10:35 +0000130 // The tentative ID for the GOT section
131 unsigned GOTSectionID;
132
133 // Records the current number of allocated slots in the GOT
134 // (This would be equivalent to GOTEntries.size() were it not for relocations
135 // that consume more than one slot)
136 unsigned CurrentGOTIndex;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000137
Petar Jovanovic97202832015-05-28 13:48:41 +0000138 // A map from section to a GOT section that has entries for section's GOT
139 // relocations. (Mips64 specific)
140 DenseMap<SID, SID> SectionToGOTMap;
141
142 // A map to avoid duplicate got entries (Mips64 specific)
143 StringMap<uint64_t> GOTSymbolOffsets;
144
Petar Jovanovicd22164d2015-08-13 15:12:49 +0000145 // *HI16 relocations will be added for resolving when we find matching
146 // *LO16 part. (Mips specific)
147 SmallVector<std::pair<RelocationValueRef, RelocationEntry>, 8> PendingRelocs;
148
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000149 // When a module is loaded we save the SectionID of the EH frame section
150 // in a table until we receive a request to register all unregistered
151 // EH frame sections with the memory manager.
152 SmallVector<SID, 2> UnregisteredEHFrameSections;
Andrew Kaylorc442a762013-10-16 00:14:21 +0000153 SmallVector<SID, 2> RegisteredEHFrameSections;
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000154
Sanjoy Dasd5658b02015-11-23 21:47:51 +0000155 bool relocationNeedsStub(const RelocationRef &R) const override;
156
Eli Bendersky058d6472012-01-22 07:05:02 +0000157public:
Lang Hames633fe142015-03-30 03:37:06 +0000158 RuntimeDyldELF(RuntimeDyld::MemoryManager &MemMgr,
159 RuntimeDyld::SymbolResolver &Resolver);
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000160 ~RuntimeDyldELF() override;
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000161
162 std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
163 loadObject(const object::ObjectFile &O) override;
Preston Gurdcc31af92012-04-16 22:12:58 +0000164
Craig Topperb51ff602014-03-08 07:51:20 +0000165 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override;
Juergen Ributzka046709f2014-03-21 07:26:41 +0000166 relocation_iterator
167 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000168 const ObjectFile &Obj,
169 ObjSectionToIDMap &ObjSectionToID,
Lang Hamesa5cd9502014-11-27 05:40:13 +0000170 StubMap &Stubs) override;
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000171 bool isCompatibleFile(const object::ObjectFile &Obj) const override;
Craig Topperb51ff602014-03-08 07:51:20 +0000172 void registerEHFrames() override;
173 void deregisterEHFrames() override;
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000174 void finalizeLoad(const ObjectFile &Obj,
Lang Hames36072da2014-05-12 21:39:59 +0000175 ObjSectionToIDMap &SectionMap) override;
Eli Bendersky058d6472012-01-22 07:05:02 +0000176};
177
178} // end namespace llvm
179
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000180#endif