blob: 49baf750dbbc1dbdac080bd675dea1a61762c6d8 [file] [log] [blame]
Jim Grosbache0934be2012-01-16 23:50:58 +00001//===-- RuntimeDyldELF.cpp - Run-time dynamic linker for MC-JIT -*- C++ -*-===//
Eli Benderskya66a1852012-01-16 08:56:09 +00002//
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// Implementation of ELF support for the MC-JIT runtime dynamic linker.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "dyld"
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000015#include "RuntimeDyldELF.h"
16#include "JITRegistrar.h"
17#include "ObjectImageCommon.h"
Eli Benderskya66a1852012-01-16 08:56:09 +000018#include "llvm/ADT/IntervalMap.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000019#include "llvm/ADT/OwningPtr.h"
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/StringRef.h"
Eli Benderskya66a1852012-01-16 08:56:09 +000022#include "llvm/ADT/Triple.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/ExecutionEngine/ObjectBuffer.h"
24#include "llvm/ExecutionEngine/ObjectImage.h"
Preston Gurd689ff9c2012-04-16 22:12:58 +000025#include "llvm/Object/ELF.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000026#include "llvm/Object/ObjectFile.h"
27#include "llvm/Support/ELF.h"
Eli Benderskya66a1852012-01-16 08:56:09 +000028using namespace llvm;
29using namespace llvm::object;
30
Preston Gurd689ff9c2012-04-16 22:12:58 +000031namespace {
32
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +000033static inline
34error_code check(error_code Err) {
35 if (Err) {
36 report_fatal_error(Err.message());
37 }
38 return Err;
39}
40
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000041template<class ELFT>
Michael J. Spencer4d9c5392013-01-04 20:36:28 +000042class DyldELFObject
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000043 : public ELFObjectFile<ELFT> {
Rafael Espindola43239072013-04-17 21:20:55 +000044 LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
Preston Gurd689ff9c2012-04-16 22:12:58 +000045
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000046 typedef Elf_Shdr_Impl<ELFT> Elf_Shdr;
47 typedef Elf_Sym_Impl<ELFT> Elf_Sym;
Michael J. Spencer4d9c5392013-01-04 20:36:28 +000048 typedef
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000049 Elf_Rel_Impl<ELFT, false> Elf_Rel;
Michael J. Spencer4d9c5392013-01-04 20:36:28 +000050 typedef
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000051 Elf_Rel_Impl<ELFT, true> Elf_Rela;
Preston Gurd689ff9c2012-04-16 22:12:58 +000052
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000053 typedef Elf_Ehdr_Impl<ELFT> Elf_Ehdr;
Preston Gurd689ff9c2012-04-16 22:12:58 +000054
55 typedef typename ELFDataTypeTypedefHelper<
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000056 ELFT>::value_type addr_type;
Preston Gurd689ff9c2012-04-16 22:12:58 +000057
Preston Gurd689ff9c2012-04-16 22:12:58 +000058public:
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000059 DyldELFObject(MemoryBuffer *Wrapper, error_code &ec);
Preston Gurd689ff9c2012-04-16 22:12:58 +000060
61 void updateSectionAddress(const SectionRef &Sec, uint64_t Addr);
62 void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr);
63
Andrew Kaylor2e319872012-07-27 17:52:42 +000064 // Methods for type inquiry through isa, cast and dyn_cast
Preston Gurd689ff9c2012-04-16 22:12:58 +000065 static inline bool classof(const Binary *v) {
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000066 return (isa<ELFObjectFile<ELFT> >(v)
Michael J. Spencer4d9c5392013-01-04 20:36:28 +000067 && classof(cast<ELFObjectFile
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000068 <ELFT> >(v)));
Preston Gurd689ff9c2012-04-16 22:12:58 +000069 }
70 static inline bool classof(
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000071 const ELFObjectFile<ELFT> *v) {
Preston Gurd689ff9c2012-04-16 22:12:58 +000072 return v->isDyldType();
73 }
Preston Gurd689ff9c2012-04-16 22:12:58 +000074};
75
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000076template<class ELFT>
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000077class ELFObjectImage : public ObjectImageCommon {
Preston Gurd689ff9c2012-04-16 22:12:58 +000078 protected:
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000079 DyldELFObject<ELFT> *DyldObj;
Preston Gurd689ff9c2012-04-16 22:12:58 +000080 bool Registered;
81
82 public:
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000083 ELFObjectImage(ObjectBuffer *Input,
Michael J. Spencerac97f5c2013-01-15 07:44:25 +000084 DyldELFObject<ELFT> *Obj)
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000085 : ObjectImageCommon(Input, Obj),
Preston Gurd689ff9c2012-04-16 22:12:58 +000086 DyldObj(Obj),
87 Registered(false) {}
88
89 virtual ~ELFObjectImage() {
90 if (Registered)
91 deregisterWithDebugger();
92 }
93
94 // Subclasses can override these methods to update the image with loaded
95 // addresses for sections and common symbols
96 virtual void updateSectionAddress(const SectionRef &Sec, uint64_t Addr)
97 {
98 DyldObj->updateSectionAddress(Sec, Addr);
99 }
100
101 virtual void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr)
102 {
103 DyldObj->updateSymbolAddress(Sym, Addr);
104 }
105
106 virtual void registerWithDebugger()
107 {
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000108 JITRegistrar::getGDBRegistrar().registerObject(*Buffer);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000109 Registered = true;
110 }
111 virtual void deregisterWithDebugger()
112 {
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000113 JITRegistrar::getGDBRegistrar().deregisterObject(*Buffer);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000114 }
115};
116
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000117// The MemoryBuffer passed into this constructor is just a wrapper around the
118// actual memory. Ultimately, the Binary parent class will take ownership of
119// this MemoryBuffer object but not the underlying memory.
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000120template<class ELFT>
121DyldELFObject<ELFT>::DyldELFObject(MemoryBuffer *Wrapper, error_code &ec)
122 : ELFObjectFile<ELFT>(Wrapper, ec) {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000123 this->isDyldELFObject = true;
124}
125
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000126template<class ELFT>
127void DyldELFObject<ELFT>::updateSectionAddress(const SectionRef &Sec,
128 uint64_t Addr) {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000129 DataRefImpl ShdrRef = Sec.getRawDataRefImpl();
130 Elf_Shdr *shdr = const_cast<Elf_Shdr*>(
131 reinterpret_cast<const Elf_Shdr *>(ShdrRef.p));
132
133 // This assumes the address passed in matches the target address bitness
134 // The template-based type cast handles everything else.
135 shdr->sh_addr = static_cast<addr_type>(Addr);
136}
137
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000138template<class ELFT>
139void DyldELFObject<ELFT>::updateSymbolAddress(const SymbolRef &SymRef,
140 uint64_t Addr) {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000141
142 Elf_Sym *sym = const_cast<Elf_Sym*>(
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000143 ELFObjectFile<ELFT>::getSymbol(SymRef.getRawDataRefImpl()));
Preston Gurd689ff9c2012-04-16 22:12:58 +0000144
145 // This assumes the address passed in matches the target address bitness
146 // The template-based type cast handles everything else.
147 sym->st_value = static_cast<addr_type>(Addr);
148}
149
150} // namespace
151
Eli Benderskya66a1852012-01-16 08:56:09 +0000152namespace llvm {
153
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000154ObjectImage *RuntimeDyldELF::createObjectImage(ObjectBuffer *Buffer) {
155 if (Buffer->getBufferSize() < ELF::EI_NIDENT)
156 llvm_unreachable("Unexpected ELF object size");
157 std::pair<unsigned char, unsigned char> Ident = std::make_pair(
158 (uint8_t)Buffer->getBufferStart()[ELF::EI_CLASS],
159 (uint8_t)Buffer->getBufferStart()[ELF::EI_DATA]);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000160 error_code ec;
161
162 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB) {
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000163 DyldELFObject<ELFType<support::little, 4, false> > *Obj =
164 new DyldELFObject<ELFType<support::little, 4, false> >(
165 Buffer->getMemBuffer(), ec);
166 return new ELFObjectImage<ELFType<support::little, 4, false> >(Buffer, Obj);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000167 }
168 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB) {
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000169 DyldELFObject<ELFType<support::big, 4, false> > *Obj =
170 new DyldELFObject<ELFType<support::big, 4, false> >(
171 Buffer->getMemBuffer(), ec);
172 return new ELFObjectImage<ELFType<support::big, 4, false> >(Buffer, Obj);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000173 }
174 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB) {
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000175 DyldELFObject<ELFType<support::big, 8, true> > *Obj =
176 new DyldELFObject<ELFType<support::big, 8, true> >(
177 Buffer->getMemBuffer(), ec);
178 return new ELFObjectImage<ELFType<support::big, 8, true> >(Buffer, Obj);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000179 }
180 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
Michael J. Spencerac97f5c2013-01-15 07:44:25 +0000181 DyldELFObject<ELFType<support::little, 8, true> > *Obj =
182 new DyldELFObject<ELFType<support::little, 8, true> >(
183 Buffer->getMemBuffer(), ec);
184 return new ELFObjectImage<ELFType<support::little, 8, true> >(Buffer, Obj);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000185 }
186 else
187 llvm_unreachable("Unexpected ELF format");
188}
189
Preston Gurd689ff9c2012-04-16 22:12:58 +0000190RuntimeDyldELF::~RuntimeDyldELF() {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000191}
Eli Benderskya66a1852012-01-16 08:56:09 +0000192
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000193void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section,
194 uint64_t Offset,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000195 uint64_t Value,
196 uint32_t Type,
197 int64_t Addend) {
198 switch (Type) {
199 default:
200 llvm_unreachable("Relocation type not implemented yet!");
201 break;
Eli Benderskya66a1852012-01-16 08:56:09 +0000202 case ELF::R_X86_64_64: {
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000203 uint64_t *Target = reinterpret_cast<uint64_t*>(Section.Address + Offset);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000204 *Target = Value + Addend;
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000205 DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend))
206 << " at " << format("%p\n",Target));
Eli Benderskya66a1852012-01-16 08:56:09 +0000207 break;
208 }
209 case ELF::R_X86_64_32:
210 case ELF::R_X86_64_32S: {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000211 Value += Addend;
Andrew Kaylord83a5472012-07-27 20:30:12 +0000212 assert((Type == ELF::R_X86_64_32 && (Value <= UINT32_MAX)) ||
Michael J. Spencer4d9c5392013-01-04 20:36:28 +0000213 (Type == ELF::R_X86_64_32S &&
Andrew Kaylord83a5472012-07-27 20:30:12 +0000214 ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN)));
Eli Benderskya66a1852012-01-16 08:56:09 +0000215 uint32_t TruncatedAddr = (Value & 0xFFFFFFFF);
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000216 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
Eli Benderskya66a1852012-01-16 08:56:09 +0000217 *Target = TruncatedAddr;
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000218 DEBUG(dbgs() << "Writing " << format("%p", TruncatedAddr)
219 << " at " << format("%p\n",Target));
Eli Benderskya66a1852012-01-16 08:56:09 +0000220 break;
221 }
222 case ELF::R_X86_64_PC32: {
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000223 // Get the placeholder value from the generated object since
224 // a previous relocation attempt may have overwritten the loaded version
225 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
226 + Offset);
227 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
228 uint64_t FinalAddress = Section.LoadAddress + Offset;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000229 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
Andrew Kaylord83a5472012-07-27 20:30:12 +0000230 assert(RealOffset <= INT32_MAX && RealOffset >= INT32_MIN);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000231 int32_t TruncOffset = (RealOffset & 0xFFFFFFFF);
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000232 *Target = TruncOffset;
Eli Benderskya66a1852012-01-16 08:56:09 +0000233 break;
234 }
235 }
236}
237
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000238void RuntimeDyldELF::resolveX86Relocation(const SectionEntry &Section,
239 uint64_t Offset,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000240 uint32_t Value,
241 uint32_t Type,
242 int32_t Addend) {
243 switch (Type) {
Eli Benderskya66a1852012-01-16 08:56:09 +0000244 case ELF::R_386_32: {
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000245 // Get the placeholder value from the generated object since
246 // a previous relocation attempt may have overwritten the loaded version
247 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
248 + Offset);
249 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
250 *Target = *Placeholder + Value + Addend;
Eli Benderskya66a1852012-01-16 08:56:09 +0000251 break;
252 }
253 case ELF::R_386_PC32: {
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000254 // Get the placeholder value from the generated object since
255 // a previous relocation attempt may have overwritten the loaded version
256 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
257 + Offset);
258 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
259 uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000260 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000261 *Target = RealOffset;
Eli Benderskya66a1852012-01-16 08:56:09 +0000262 break;
263 }
264 default:
265 // There are other relocation types, but it appears these are the
Andrew Kaylore2e73bd2012-07-27 18:39:47 +0000266 // only ones currently used by the LLVM ELF object writer
Craig Topper85814382012-02-07 05:05:23 +0000267 llvm_unreachable("Relocation type not implemented yet!");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000268 break;
Eli Benderskya66a1852012-01-16 08:56:09 +0000269 }
270}
271
Tim Northover85829bb2013-05-04 20:13:59 +0000272void RuntimeDyldELF::resolveAArch64Relocation(const SectionEntry &Section,
273 uint64_t Offset,
274 uint64_t Value,
275 uint32_t Type,
276 int64_t Addend) {
277 uint32_t *TargetPtr = reinterpret_cast<uint32_t*>(Section.Address + Offset);
278 uint64_t FinalAddress = Section.LoadAddress + Offset;
279
280 DEBUG(dbgs() << "resolveAArch64Relocation, LocalAddress: 0x"
281 << format("%llx", Section.Address + Offset)
282 << " FinalAddress: 0x" << format("%llx",FinalAddress)
283 << " Value: 0x" << format("%llx",Value)
284 << " Type: 0x" << format("%x",Type)
285 << " Addend: 0x" << format("%llx",Addend)
286 << "\n");
287
288 switch (Type) {
289 default:
290 llvm_unreachable("Relocation type not implemented yet!");
291 break;
292 case ELF::R_AARCH64_PREL32: { // test-shift.ll (.eh_frame)
293 uint64_t Result = Value + Addend - FinalAddress;
294 assert(static_cast<int64_t>(Result) >= INT32_MIN &&
295 static_cast<int64_t>(Result) <= UINT32_MAX);
296 *TargetPtr = static_cast<uint32_t>(Result & 0xffffffffU);
297 break;
298 }
299 }
300}
301
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000302void RuntimeDyldELF::resolveARMRelocation(const SectionEntry &Section,
303 uint64_t Offset,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000304 uint32_t Value,
305 uint32_t Type,
306 int32_t Addend) {
307 // TODO: Add Thumb relocations.
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000308 uint32_t* TargetPtr = (uint32_t*)(Section.Address + Offset);
309 uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000310 Value += Addend;
311
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000312 DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: "
313 << Section.Address + Offset
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000314 << " FinalAddress: " << format("%p",FinalAddress)
315 << " Value: " << format("%x",Value)
316 << " Type: " << format("%x",Type)
317 << " Addend: " << format("%x",Addend)
318 << "\n");
319
320 switch(Type) {
321 default:
322 llvm_unreachable("Not implemented relocation type!");
323
Michael J. Spencer4d9c5392013-01-04 20:36:28 +0000324 // Write a 32bit value to relocation address, taking into account the
Tim Northover565ebde2012-10-03 16:29:42 +0000325 // implicit addend encoded in the target.
Amara Emerson098d6d52012-11-16 11:11:59 +0000326 case ELF::R_ARM_TARGET1 :
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000327 case ELF::R_ARM_ABS32 :
Tim Northover565ebde2012-10-03 16:29:42 +0000328 *TargetPtr += Value;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000329 break;
330
331 // Write first 16 bit of 32 bit value to the mov instruction.
332 // Last 4 bit should be shifted.
333 case ELF::R_ARM_MOVW_ABS_NC :
Tim Northover565ebde2012-10-03 16:29:42 +0000334 // We are not expecting any other addend in the relocation address.
Michael J. Spencer4d9c5392013-01-04 20:36:28 +0000335 // Using 0x000F0FFF because MOVW has its 16 bit immediate split into 2
Tim Northover565ebde2012-10-03 16:29:42 +0000336 // non-contiguous fields.
337 assert((*TargetPtr & 0x000F0FFF) == 0);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000338 Value = Value & 0xFFFF;
339 *TargetPtr |= Value & 0xFFF;
340 *TargetPtr |= ((Value >> 12) & 0xF) << 16;
341 break;
342
343 // Write last 16 bit of 32 bit value to the mov instruction.
344 // Last 4 bit should be shifted.
345 case ELF::R_ARM_MOVT_ABS :
Tim Northover565ebde2012-10-03 16:29:42 +0000346 // We are not expecting any other addend in the relocation address.
347 // Use 0x000F0FFF for the same reason as R_ARM_MOVW_ABS_NC.
348 assert((*TargetPtr & 0x000F0FFF) == 0);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000349 Value = (Value >> 16) & 0xFFFF;
350 *TargetPtr |= Value & 0xFFF;
351 *TargetPtr |= ((Value >> 12) & 0xF) << 16;
352 break;
353
354 // Write 24 bit relative value to the branch instruction.
355 case ELF::R_ARM_PC24 : // Fall through.
356 case ELF::R_ARM_CALL : // Fall through.
357 case ELF::R_ARM_JUMP24 :
358 int32_t RelValue = static_cast<int32_t>(Value - FinalAddress - 8);
359 RelValue = (RelValue & 0x03FFFFFC) >> 2;
360 *TargetPtr &= 0xFF000000;
361 *TargetPtr |= RelValue;
362 break;
363 }
Eli Benderskya66a1852012-01-16 08:56:09 +0000364}
365
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000366void RuntimeDyldELF::resolveMIPSRelocation(const SectionEntry &Section,
367 uint64_t Offset,
Akira Hatanakab862f092012-08-20 17:53:24 +0000368 uint32_t Value,
369 uint32_t Type,
370 int32_t Addend) {
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000371 uint32_t* TargetPtr = (uint32_t*)(Section.Address + Offset);
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000372 Value += Addend;
373
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000374 DEBUG(dbgs() << "resolveMipselocation, LocalAddress: "
375 << Section.Address + Offset
376 << " FinalAddress: "
377 << format("%p",Section.LoadAddress + Offset)
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000378 << " Value: " << format("%x",Value)
379 << " Type: " << format("%x",Type)
380 << " Addend: " << format("%x",Addend)
381 << "\n");
382
383 switch(Type) {
384 default:
385 llvm_unreachable("Not implemented relocation type!");
386 break;
387 case ELF::R_MIPS_32:
388 *TargetPtr = Value + (*TargetPtr);
389 break;
390 case ELF::R_MIPS_26:
391 *TargetPtr = ((*TargetPtr) & 0xfc000000) | (( Value & 0x0fffffff) >> 2);
392 break;
393 case ELF::R_MIPS_HI16:
394 // Get the higher 16-bits. Also add 1 if bit 15 is 1.
395 Value += ((*TargetPtr) & 0x0000ffff) << 16;
396 *TargetPtr = ((*TargetPtr) & 0xffff0000) |
397 (((Value + 0x8000) >> 16) & 0xffff);
398 break;
399 case ELF::R_MIPS_LO16:
400 Value += ((*TargetPtr) & 0x0000ffff);
401 *TargetPtr = ((*TargetPtr) & 0xffff0000) | (Value & 0xffff);
402 break;
403 }
404}
405
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000406// Return the .TOC. section address to R_PPC64_TOC relocations.
407uint64_t RuntimeDyldELF::findPPC64TOC() const {
408 // The TOC consists of sections .got, .toc, .tocbss, .plt in that
409 // order. The TOC starts where the first of these sections starts.
410 SectionList::const_iterator it = Sections.begin();
411 SectionList::const_iterator ite = Sections.end();
412 for (; it != ite; ++it) {
413 if (it->Name == ".got" ||
414 it->Name == ".toc" ||
415 it->Name == ".tocbss" ||
416 it->Name == ".plt")
417 break;
418 }
419 if (it == ite) {
420 // This may happen for
421 // * references to TOC base base (sym@toc, .odp relocation) without
422 // a .toc directive.
423 // In this case just use the first section (which is usually
424 // the .odp) since the code won't reference the .toc base
425 // directly.
426 it = Sections.begin();
427 }
428 assert (it != ite);
429 // Per the ppc64-elf-linux ABI, The TOC base is TOC value plus 0x8000
430 // thus permitting a full 64 Kbytes segment.
431 return it->LoadAddress + 0x8000;
432}
433
434// Returns the sections and offset associated with the ODP entry referenced
435// by Symbol.
436void RuntimeDyldELF::findOPDEntrySection(ObjectImage &Obj,
437 ObjSectionToIDMap &LocalSections,
438 RelocationValueRef &Rel) {
439 // Get the ELF symbol value (st_value) to compare with Relocation offset in
440 // .opd entries
441
442 error_code err;
443 for (section_iterator si = Obj.begin_sections(),
444 se = Obj.end_sections(); si != se; si.increment(err)) {
445 StringRef SectionName;
446 check(si->getName(SectionName));
447 if (SectionName != ".opd")
448 continue;
449
450 for (relocation_iterator i = si->begin_relocations(),
451 e = si->end_relocations(); i != e;) {
452 check(err);
453
454 // The R_PPC64_ADDR64 relocation indicates the first field
455 // of a .opd entry
456 uint64_t TypeFunc;
457 check(i->getType(TypeFunc));
458 if (TypeFunc != ELF::R_PPC64_ADDR64) {
459 i.increment(err);
460 continue;
461 }
462
463 SymbolRef TargetSymbol;
464 uint64_t TargetSymbolOffset;
465 int64_t TargetAdditionalInfo;
466 check(i->getSymbol(TargetSymbol));
467 check(i->getOffset(TargetSymbolOffset));
468 check(i->getAdditionalInfo(TargetAdditionalInfo));
469
470 i = i.increment(err);
471 if (i == e)
472 break;
473 check(err);
474
475 // Just check if following relocation is a R_PPC64_TOC
476 uint64_t TypeTOC;
477 check(i->getType(TypeTOC));
478 if (TypeTOC != ELF::R_PPC64_TOC)
479 continue;
480
481 // Finally compares the Symbol value and the target symbol offset
482 // to check if this .opd entry refers to the symbol the relocation
483 // points to.
484 if (Rel.Addend != (intptr_t)TargetSymbolOffset)
485 continue;
486
487 section_iterator tsi(Obj.end_sections());
488 check(TargetSymbol.getSection(tsi));
489 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections);
490 Rel.Addend = (intptr_t)TargetAdditionalInfo;
491 return;
492 }
493 }
494 llvm_unreachable("Attempting to get address of ODP entry!");
495}
496
497// Relocation masks following the #lo(value), #hi(value), #higher(value),
498// and #highest(value) macros defined in section 4.5.1. Relocation Types
499// in PPC-elf64abi document.
500//
501static inline
502uint16_t applyPPClo (uint64_t value)
503{
504 return value & 0xffff;
505}
506
507static inline
508uint16_t applyPPChi (uint64_t value)
509{
510 return (value >> 16) & 0xffff;
511}
512
513static inline
514uint16_t applyPPChigher (uint64_t value)
515{
516 return (value >> 32) & 0xffff;
517}
518
519static inline
520uint16_t applyPPChighest (uint64_t value)
521{
522 return (value >> 48) & 0xffff;
523}
524
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000525void RuntimeDyldELF::resolvePPC64Relocation(const SectionEntry &Section,
526 uint64_t Offset,
527 uint64_t Value,
528 uint32_t Type,
529 int64_t Addend) {
530 uint8_t* LocalAddress = Section.Address + Offset;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000531 switch (Type) {
532 default:
533 llvm_unreachable("Relocation type not implemented yet!");
534 break;
535 case ELF::R_PPC64_ADDR16_LO :
536 writeInt16BE(LocalAddress, applyPPClo (Value + Addend));
537 break;
538 case ELF::R_PPC64_ADDR16_HI :
539 writeInt16BE(LocalAddress, applyPPChi (Value + Addend));
540 break;
541 case ELF::R_PPC64_ADDR16_HIGHER :
542 writeInt16BE(LocalAddress, applyPPChigher (Value + Addend));
543 break;
544 case ELF::R_PPC64_ADDR16_HIGHEST :
545 writeInt16BE(LocalAddress, applyPPChighest (Value + Addend));
546 break;
547 case ELF::R_PPC64_ADDR14 : {
548 assert(((Value + Addend) & 3) == 0);
549 // Preserve the AA/LK bits in the branch instruction
550 uint8_t aalk = *(LocalAddress+3);
551 writeInt16BE(LocalAddress + 2, (aalk & 3) | ((Value + Addend) & 0xfffc));
552 } break;
Adhemerval Zanella7b449882013-01-04 19:08:13 +0000553 case ELF::R_PPC64_ADDR32 : {
554 int32_t Result = static_cast<int32_t>(Value + Addend);
555 if (SignExtend32<32>(Result) != Result)
Adhemerval Zanellaa1db5de2013-01-09 17:08:15 +0000556 llvm_unreachable("Relocation R_PPC64_ADDR32 overflow");
Adhemerval Zanella7b449882013-01-04 19:08:13 +0000557 writeInt32BE(LocalAddress, Result);
558 } break;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000559 case ELF::R_PPC64_REL24 : {
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000560 uint64_t FinalAddress = (Section.LoadAddress + Offset);
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000561 int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend);
562 if (SignExtend32<24>(delta) != delta)
563 llvm_unreachable("Relocation R_PPC64_REL24 overflow");
564 // Generates a 'bl <address>' instruction
565 writeInt32BE(LocalAddress, 0x48000001 | (delta & 0x03FFFFFC));
566 } break;
Adhemerval Zanellaa1db5de2013-01-09 17:08:15 +0000567 case ELF::R_PPC64_REL32 : {
568 uint64_t FinalAddress = (Section.LoadAddress + Offset);
569 int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend);
570 if (SignExtend32<32>(delta) != delta)
571 llvm_unreachable("Relocation R_PPC64_REL32 overflow");
572 writeInt32BE(LocalAddress, delta);
573 } break;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000574 case ELF::R_PPC64_ADDR64 :
575 writeInt64BE(LocalAddress, Value + Addend);
576 break;
577 case ELF::R_PPC64_TOC :
578 writeInt64BE(LocalAddress, findPPC64TOC());
579 break;
580 case ELF::R_PPC64_TOC16 : {
581 uint64_t TOCStart = findPPC64TOC();
582 Value = applyPPClo((Value + Addend) - TOCStart);
583 writeInt16BE(LocalAddress, applyPPClo(Value));
584 } break;
585 case ELF::R_PPC64_TOC16_DS : {
586 uint64_t TOCStart = findPPC64TOC();
587 Value = ((Value + Addend) - TOCStart);
588 writeInt16BE(LocalAddress, applyPPClo(Value));
589 } break;
590 }
591}
592
Richard Sandiford6fc2ad62013-05-03 14:15:35 +0000593void RuntimeDyldELF::resolveSystemZRelocation(const SectionEntry &Section,
594 uint64_t Offset,
595 uint64_t Value,
596 uint32_t Type,
597 int64_t Addend) {
598 uint8_t *LocalAddress = Section.Address + Offset;
599 switch (Type) {
600 default:
601 llvm_unreachable("Relocation type not implemented yet!");
602 break;
603 case ELF::R_390_PC16DBL:
604 case ELF::R_390_PLT16DBL: {
605 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset);
606 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow");
607 writeInt16BE(LocalAddress, Delta / 2);
608 break;
609 }
610 case ELF::R_390_PC32DBL:
611 case ELF::R_390_PLT32DBL: {
612 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset);
613 assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow");
614 writeInt32BE(LocalAddress, Delta / 2);
615 break;
616 }
617 case ELF::R_390_PC32: {
618 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset);
619 assert(int32_t(Delta) == Delta && "R_390_PC32 overflow");
620 writeInt32BE(LocalAddress, Delta);
621 break;
622 }
623 case ELF::R_390_64:
624 writeInt64BE(LocalAddress, Value + Addend);
625 break;
626 }
627}
628
Rafael Espindola87b50172013-04-29 17:24:34 +0000629void RuntimeDyldELF::resolveRelocation(const RelocationEntry &RE,
630 uint64_t Value) {
631 const SectionEntry &Section = Sections[RE.SectionID];
632 return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend);
633}
634
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000635void RuntimeDyldELF::resolveRelocation(const SectionEntry &Section,
636 uint64_t Offset,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000637 uint64_t Value,
638 uint32_t Type,
639 int64_t Addend) {
Eli Benderskya66a1852012-01-16 08:56:09 +0000640 switch (Arch) {
641 case Triple::x86_64:
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000642 resolveX86_64Relocation(Section, Offset, Value, Type, Addend);
Eli Benderskya66a1852012-01-16 08:56:09 +0000643 break;
644 case Triple::x86:
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000645 resolveX86Relocation(Section, Offset,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000646 (uint32_t)(Value & 0xffffffffL), Type,
647 (uint32_t)(Addend & 0xffffffffL));
Eli Benderskya66a1852012-01-16 08:56:09 +0000648 break;
Tim Northover85829bb2013-05-04 20:13:59 +0000649 case Triple::aarch64:
650 resolveAArch64Relocation(Section, Offset, Value, Type, Addend);
651 break;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000652 case Triple::arm: // Fall through.
653 case Triple::thumb:
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000654 resolveARMRelocation(Section, Offset,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000655 (uint32_t)(Value & 0xffffffffL), Type,
656 (uint32_t)(Addend & 0xffffffffL));
Eli Benderskya66a1852012-01-16 08:56:09 +0000657 break;
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000658 case Triple::mips: // Fall through.
659 case Triple::mipsel:
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000660 resolveMIPSRelocation(Section, Offset,
Akira Hatanakab862f092012-08-20 17:53:24 +0000661 (uint32_t)(Value & 0xffffffffL), Type,
662 (uint32_t)(Addend & 0xffffffffL));
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000663 break;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000664 case Triple::ppc64:
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000665 resolvePPC64Relocation(Section, Offset, Value, Type, Addend);
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000666 break;
Richard Sandiford6fc2ad62013-05-03 14:15:35 +0000667 case Triple::systemz:
668 resolveSystemZRelocation(Section, Offset, Value, Type, Addend);
669 break;
Craig Topper85814382012-02-07 05:05:23 +0000670 default: llvm_unreachable("Unsupported CPU type!");
Eli Benderskya66a1852012-01-16 08:56:09 +0000671 }
672}
673
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000674void RuntimeDyldELF::processRelocationRef(unsigned SectionID,
Rafael Espindolaca0e7362013-04-29 19:03:21 +0000675 RelocationRef RelI,
Preston Gurd689ff9c2012-04-16 22:12:58 +0000676 ObjectImage &Obj,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000677 ObjSectionToIDMap &ObjSectionToID,
Eli Benderskyd98c9e92012-05-01 06:58:59 +0000678 const SymbolTableMap &Symbols,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000679 StubMap &Stubs) {
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000680 uint64_t RelType;
Rafael Espindolaca0e7362013-04-29 19:03:21 +0000681 Check(RelI.getType(RelType));
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000682 int64_t Addend;
Rafael Espindolaca0e7362013-04-29 19:03:21 +0000683 Check(RelI.getAdditionalInfo(Addend));
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000684 SymbolRef Symbol;
Rafael Espindolaca0e7362013-04-29 19:03:21 +0000685 Check(RelI.getSymbol(Symbol));
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000686
687 // Obtain the symbol name which is referenced in the relocation
688 StringRef TargetName;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000689 Symbol.getName(TargetName);
690 DEBUG(dbgs() << "\t\tRelType: " << RelType
691 << " Addend: " << Addend
692 << " TargetName: " << TargetName
693 << "\n");
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000694 RelocationValueRef Value;
695 // First search for the symbol in the local symbol table
Eli Benderskyd98c9e92012-05-01 06:58:59 +0000696 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000697 SymbolRef::Type SymType;
698 Symbol.getType(SymType);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000699 if (lsi != Symbols.end()) {
700 Value.SectionID = lsi->second.first;
Ulrich Weigand03f018a2013-04-05 13:29:04 +0000701 Value.Addend = lsi->second.second + Addend;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000702 } else {
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000703 // Search for the symbol in the global symbol table
Eli Benderskyd98c9e92012-05-01 06:58:59 +0000704 SymbolTableMap::const_iterator gsi =
705 GlobalSymbolTable.find(TargetName.data());
706 if (gsi != GlobalSymbolTable.end()) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000707 Value.SectionID = gsi->second.first;
Ulrich Weigand03f018a2013-04-05 13:29:04 +0000708 Value.Addend = gsi->second.second + Addend;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000709 } else {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000710 switch (SymType) {
711 case SymbolRef::ST_Debug: {
712 // TODO: Now ELF SymbolRef::ST_Debug = STT_SECTION, it's not obviously
713 // and can be changed by another developers. Maybe best way is add
714 // a new symbol type ST_Section to SymbolRef and use it.
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000715 section_iterator si(Obj.end_sections());
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000716 Symbol.getSection(si);
717 if (si == Obj.end_sections())
718 llvm_unreachable("Symbol section not found, bad object file format!");
719 DEBUG(dbgs() << "\t\tThis is section symbol\n");
Andrew Kaylorfa8cd9d2012-10-12 23:53:16 +0000720 // Default to 'true' in case isText fails (though it never does).
721 bool isCode = true;
722 si->isText(isCode);
Michael J. Spencer4d9c5392013-01-04 20:36:28 +0000723 Value.SectionID = findOrEmitSection(Obj,
724 (*si),
725 isCode,
Andrew Kaylorfa8cd9d2012-10-12 23:53:16 +0000726 ObjSectionToID);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000727 Value.Addend = Addend;
728 break;
729 }
730 case SymbolRef::ST_Unknown: {
731 Value.SymbolName = TargetName.data();
732 Value.Addend = Addend;
733 break;
734 }
735 default:
736 llvm_unreachable("Unresolved symbol type!");
737 break;
738 }
739 }
Eli Benderskya66a1852012-01-16 08:56:09 +0000740 }
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000741 uint64_t Offset;
Rafael Espindolaca0e7362013-04-29 19:03:21 +0000742 Check(RelI.getOffset(Offset));
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000743
744 DEBUG(dbgs() << "\t\tSectionID: " << SectionID
745 << " Offset: " << Offset
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000746 << "\n");
747 if (Arch == Triple::arm &&
748 (RelType == ELF::R_ARM_PC24 ||
749 RelType == ELF::R_ARM_CALL ||
750 RelType == ELF::R_ARM_JUMP24)) {
751 // This is an ARM branch relocation, need to use a stub function.
752 DEBUG(dbgs() << "\t\tThis is an ARM branch relocation.");
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000753 SectionEntry &Section = Sections[SectionID];
Eli Benderskya66a1852012-01-16 08:56:09 +0000754
Eric Christopherbf261f12012-10-23 17:19:15 +0000755 // Look for an existing stub.
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000756 StubMap::const_iterator i = Stubs.find(Value);
757 if (i != Stubs.end()) {
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000758 resolveRelocation(Section, Offset,
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000759 (uint64_t)Section.Address + i->second, RelType, 0);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000760 DEBUG(dbgs() << " Stub function found\n");
761 } else {
762 // Create a new stub function.
763 DEBUG(dbgs() << " Create a new stub function\n");
764 Stubs[Value] = Section.StubOffset;
765 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
766 Section.StubOffset);
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000767 RelocationEntry RE(SectionID, StubTargetAddr - Section.Address,
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000768 ELF::R_ARM_ABS32, Value.Addend);
769 if (Value.SymbolName)
770 addRelocationForSymbol(RE, Value.SymbolName);
771 else
772 addRelocationForSection(RE, Value.SectionID);
773
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000774 resolveRelocation(Section, Offset,
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000775 (uint64_t)Section.Address + Section.StubOffset,
776 RelType, 0);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000777 Section.StubOffset += getMaxStubSize();
778 }
Akira Hatanakaade04742012-12-03 23:12:19 +0000779 } else if ((Arch == Triple::mipsel || Arch == Triple::mips) &&
780 RelType == ELF::R_MIPS_26) {
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000781 // This is an Mips branch relocation, need to use a stub function.
782 DEBUG(dbgs() << "\t\tThis is a Mips branch relocation.");
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000783 SectionEntry &Section = Sections[SectionID];
784 uint8_t *Target = Section.Address + Offset;
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000785 uint32_t *TargetAddress = (uint32_t *)Target;
786
787 // Extract the addend from the instruction.
788 uint32_t Addend = ((*TargetAddress) & 0x03ffffff) << 2;
789
790 Value.Addend += Addend;
791
792 // Look up for existing stub.
793 StubMap::const_iterator i = Stubs.find(Value);
794 if (i != Stubs.end()) {
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000795 resolveRelocation(Section, Offset,
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000796 (uint64_t)Section.Address + i->second, RelType, 0);
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000797 DEBUG(dbgs() << " Stub function found\n");
798 } else {
799 // Create a new stub function.
800 DEBUG(dbgs() << " Create a new stub function\n");
801 Stubs[Value] = Section.StubOffset;
802 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
803 Section.StubOffset);
804
805 // Creating Hi and Lo relocations for the filled stub instructions.
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000806 RelocationEntry REHi(SectionID,
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000807 StubTargetAddr - Section.Address,
808 ELF::R_MIPS_HI16, Value.Addend);
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000809 RelocationEntry RELo(SectionID,
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000810 StubTargetAddr - Section.Address + 4,
811 ELF::R_MIPS_LO16, Value.Addend);
812
813 if (Value.SymbolName) {
814 addRelocationForSymbol(REHi, Value.SymbolName);
815 addRelocationForSymbol(RELo, Value.SymbolName);
816 } else {
817 addRelocationForSection(REHi, Value.SectionID);
818 addRelocationForSection(RELo, Value.SectionID);
819 }
820
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000821 resolveRelocation(Section, Offset,
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000822 (uint64_t)Section.Address + Section.StubOffset,
823 RelType, 0);
Akira Hatanakab889e0c2012-08-17 21:28:04 +0000824 Section.StubOffset += getMaxStubSize();
825 }
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000826 } else if (Arch == Triple::ppc64) {
827 if (RelType == ELF::R_PPC64_REL24) {
828 // A PPC branch relocation will need a stub function if the target is
829 // an external symbol (Symbol::ST_Unknown) or if the target address
830 // is not within the signed 24-bits branch address.
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000831 SectionEntry &Section = Sections[SectionID];
832 uint8_t *Target = Section.Address + Offset;
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000833 bool RangeOverflow = false;
834 if (SymType != SymbolRef::ST_Unknown) {
835 // A function call may points to the .opd entry, so the final symbol value
836 // in calculated based in the relocation values in .opd section.
837 findOPDEntrySection(Obj, ObjSectionToID, Value);
838 uint8_t *RelocTarget = Sections[Value.SectionID].Address + Value.Addend;
839 int32_t delta = static_cast<int32_t>(Target - RelocTarget);
840 // If it is within 24-bits branch range, just set the branch target
841 if (SignExtend32<24>(delta) == delta) {
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000842 RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000843 if (Value.SymbolName)
844 addRelocationForSymbol(RE, Value.SymbolName);
845 else
846 addRelocationForSection(RE, Value.SectionID);
847 } else {
848 RangeOverflow = true;
849 }
850 }
851 if (SymType == SymbolRef::ST_Unknown || RangeOverflow == true) {
852 // It is an external symbol (SymbolRef::ST_Unknown) or within a range
853 // larger than 24-bits.
854 StubMap::const_iterator i = Stubs.find(Value);
855 if (i != Stubs.end()) {
856 // Symbol function stub already created, just relocate to it
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000857 resolveRelocation(Section, Offset,
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000858 (uint64_t)Section.Address + i->second, RelType, 0);
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000859 DEBUG(dbgs() << " Stub function found\n");
860 } else {
861 // Create a new stub function.
862 DEBUG(dbgs() << " Create a new stub function\n");
863 Stubs[Value] = Section.StubOffset;
864 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
865 Section.StubOffset);
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000866 RelocationEntry RE(SectionID, StubTargetAddr - Section.Address,
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000867 ELF::R_PPC64_ADDR64, Value.Addend);
868
869 // Generates the 64-bits address loads as exemplified in section
870 // 4.5.1 in PPC64 ELF ABI.
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000871 RelocationEntry REhst(SectionID,
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000872 StubTargetAddr - Section.Address + 2,
873 ELF::R_PPC64_ADDR16_HIGHEST, Value.Addend);
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000874 RelocationEntry REhr(SectionID,
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000875 StubTargetAddr - Section.Address + 6,
876 ELF::R_PPC64_ADDR16_HIGHER, Value.Addend);
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000877 RelocationEntry REh(SectionID,
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000878 StubTargetAddr - Section.Address + 14,
879 ELF::R_PPC64_ADDR16_HI, Value.Addend);
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000880 RelocationEntry REl(SectionID,
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000881 StubTargetAddr - Section.Address + 18,
882 ELF::R_PPC64_ADDR16_LO, Value.Addend);
883
884 if (Value.SymbolName) {
885 addRelocationForSymbol(REhst, Value.SymbolName);
886 addRelocationForSymbol(REhr, Value.SymbolName);
887 addRelocationForSymbol(REh, Value.SymbolName);
888 addRelocationForSymbol(REl, Value.SymbolName);
889 } else {
890 addRelocationForSection(REhst, Value.SectionID);
891 addRelocationForSection(REhr, Value.SectionID);
892 addRelocationForSection(REh, Value.SectionID);
893 addRelocationForSection(REl, Value.SectionID);
894 }
895
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000896 resolveRelocation(Section, Offset,
Andrew Kaylora307a1c2012-11-02 19:45:23 +0000897 (uint64_t)Section.Address + Section.StubOffset,
898 RelType, 0);
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000899 if (SymType == SymbolRef::ST_Unknown)
900 // Restore the TOC for external calls
901 writeInt32BE(Target+4, 0xE8410028); // ld r2,40(r1)
902 Section.StubOffset += getMaxStubSize();
903 }
904 }
905 } else {
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000906 RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
Adhemerval Zanella6e8946c2012-10-25 13:13:48 +0000907 // Extra check to avoid relocation againt empty symbols (usually
908 // the R_PPC64_TOC).
909 if (Value.SymbolName && !TargetName.empty())
910 addRelocationForSymbol(RE, Value.SymbolName);
911 else
912 addRelocationForSection(RE, Value.SectionID);
913 }
Richard Sandiford6fc2ad62013-05-03 14:15:35 +0000914 } else if (Arch == Triple::systemz &&
915 (RelType == ELF::R_390_PLT32DBL ||
916 RelType == ELF::R_390_GOTENT)) {
917 // Create function stubs for both PLT and GOT references, regardless of
918 // whether the GOT reference is to data or code. The stub contains the
919 // full address of the symbol, as needed by GOT references, and the
920 // executable part only adds an overhead of 8 bytes.
921 //
922 // We could try to conserve space by allocating the code and data
923 // parts of the stub separately. However, as things stand, we allocate
924 // a stub for every relocation, so using a GOT in JIT code should be
925 // no less space efficient than using an explicit constant pool.
926 DEBUG(dbgs() << "\t\tThis is a SystemZ indirect relocation.");
927 SectionEntry &Section = Sections[SectionID];
928
929 // Look for an existing stub.
930 StubMap::const_iterator i = Stubs.find(Value);
931 uintptr_t StubAddress;
932 if (i != Stubs.end()) {
933 StubAddress = uintptr_t(Section.Address) + i->second;
934 DEBUG(dbgs() << " Stub function found\n");
935 } else {
936 // Create a new stub function.
937 DEBUG(dbgs() << " Create a new stub function\n");
938
939 uintptr_t BaseAddress = uintptr_t(Section.Address);
940 uintptr_t StubAlignment = getStubAlignment();
941 StubAddress = (BaseAddress + Section.StubOffset +
942 StubAlignment - 1) & -StubAlignment;
943 unsigned StubOffset = StubAddress - BaseAddress;
944
945 Stubs[Value] = StubOffset;
946 createStubFunction((uint8_t *)StubAddress);
947 RelocationEntry RE(SectionID, StubOffset + 8,
948 ELF::R_390_64, Value.Addend - Addend);
949 if (Value.SymbolName)
950 addRelocationForSymbol(RE, Value.SymbolName);
951 else
952 addRelocationForSection(RE, Value.SectionID);
953 Section.StubOffset = StubOffset + getMaxStubSize();
954 }
955
956 if (RelType == ELF::R_390_GOTENT)
957 resolveRelocation(Section, Offset, StubAddress + 8,
958 ELF::R_390_PC32DBL, Addend);
959 else
960 resolveRelocation(Section, Offset, StubAddress, RelType, Addend);
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000961 } else {
Rafael Espindolaefa91f62013-04-29 14:44:23 +0000962 RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
Eli Benderskyc201e6e2012-05-01 10:41:12 +0000963 if (Value.SymbolName)
964 addRelocationForSymbol(RE, Value.SymbolName);
965 else
966 addRelocationForSection(RE, Value.SectionID);
967 }
Jim Grosbach61425c02012-01-16 22:26:39 +0000968}
969
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000970bool RuntimeDyldELF::isCompatibleFormat(const ObjectBuffer *Buffer) const {
971 if (Buffer->getBufferSize() < strlen(ELF::ElfMagic))
972 return false;
973 return (memcmp(Buffer->getBufferStart(), ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
Eli Benderskya66a1852012-01-16 08:56:09 +0000974}
975} // namespace llvm