blob: 986daef8a907f97b8ddb5262abb7c3b486f57c37 [file] [log] [blame]
Jim Grosbach06594e12012-01-16 23:50:58 +00001//===-- RuntimeDyldMachO.cpp - Run-time dynamic linker for MC-JIT -*- C++ -*-=//
Danil Malyshev72510f22011-07-13 07:57:58 +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 the MC-JIT runtime dynamic linker.
11//
12//===----------------------------------------------------------------------===//
13
Eli Bendersky058d6472012-01-22 07:05:02 +000014#include "RuntimeDyldMachO.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/StringRef.h"
Lang Hamesa5216882014-07-17 18:54:50 +000017
18#include "Targets/RuntimeDyldMachOARM.h"
19#include "Targets/RuntimeDyldMachOAArch64.h"
20#include "Targets/RuntimeDyldMachOI386.h"
21#include "Targets/RuntimeDyldMachOX86_64.h"
22
Danil Malyshev72510f22011-07-13 07:57:58 +000023using namespace llvm;
24using namespace llvm::object;
25
Chandler Carruthf58e3762014-04-22 03:04:17 +000026#define DEBUG_TYPE "dyld"
27
Danil Malyshev72510f22011-07-13 07:57:58 +000028namespace llvm {
29
Lang Hames25d93092014-08-08 23:12:22 +000030int64_t RuntimeDyldMachO::memcpyAddend(const RelocationEntry &RE) const {
31 const SectionEntry &Section = Sections[RE.SectionID];
32 uint8_t *LocalAddress = Section.Address + RE.Offset;
33 unsigned NumBytes = 1 << RE.Size;
Juergen Ributzka175b78b2014-07-22 21:42:46 +000034 int64_t Addend = 0;
Lang Hamesa5216882014-07-17 18:54:50 +000035 memcpy(&Addend, LocalAddress, NumBytes);
Lang Hames3fda7d82014-07-19 00:19:17 +000036 return Addend;
Lang Hamesa5216882014-07-17 18:54:50 +000037}
38
39RelocationValueRef RuntimeDyldMachO::getRelocationValueRef(
40 ObjectImage &ObjImg, const relocation_iterator &RI,
41 const RelocationEntry &RE, ObjSectionToIDMap &ObjSectionToID,
42 const SymbolTableMap &Symbols) {
43
44 const MachOObjectFile &Obj =
45 static_cast<const MachOObjectFile &>(*ObjImg.getObjectFile());
46 MachO::any_relocation_info RelInfo =
47 Obj.getRelocation(RI->getRawDataRefImpl());
48 RelocationValueRef Value;
49
50 bool IsExternal = Obj.getPlainRelocationExternal(RelInfo);
51 if (IsExternal) {
52 symbol_iterator Symbol = RI->getSymbol();
53 StringRef TargetName;
54 Symbol->getName(TargetName);
55 SymbolTableMap::const_iterator SI = Symbols.find(TargetName.data());
56 if (SI != Symbols.end()) {
57 Value.SectionID = SI->second.first;
58 Value.Addend = SI->second.second + RE.Addend;
59 } else {
60 SI = GlobalSymbolTable.find(TargetName.data());
61 if (SI != GlobalSymbolTable.end()) {
62 Value.SectionID = SI->second.first;
63 Value.Addend = SI->second.second + RE.Addend;
64 } else {
65 Value.SymbolName = TargetName.data();
66 Value.Addend = RE.Addend;
67 }
68 }
69 } else {
70 SectionRef Sec = Obj.getRelocationSection(RelInfo);
71 bool IsCode = false;
72 Sec.isText(IsCode);
73 Value.SectionID = findOrEmitSection(ObjImg, Sec, IsCode, ObjSectionToID);
74 uint64_t Addr;
75 Sec.getAddress(Addr);
76 Value.Addend = RE.Addend - Addr;
77 }
78
79 return Value;
80}
81
82void RuntimeDyldMachO::makeValueAddendPCRel(RelocationValueRef &Value,
83 ObjectImage &ObjImg,
Lang Hames13163652014-07-30 03:35:05 +000084 const relocation_iterator &RI,
85 unsigned OffsetToNextPC) {
Lang Hamesa5216882014-07-17 18:54:50 +000086 const MachOObjectFile &Obj =
87 static_cast<const MachOObjectFile &>(*ObjImg.getObjectFile());
88 MachO::any_relocation_info RelInfo =
89 Obj.getRelocation(RI->getRawDataRefImpl());
90
91 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo);
92 if (IsPCRel) {
93 uint64_t RelocAddr = 0;
94 RI->getAddress(RelocAddr);
Lang Hames13163652014-07-30 03:35:05 +000095 Value.Addend += RelocAddr + OffsetToNextPC;
Lang Hamesa5216882014-07-17 18:54:50 +000096 }
97}
98
99void RuntimeDyldMachO::dumpRelocationToResolve(const RelocationEntry &RE,
100 uint64_t Value) const {
101 const SectionEntry &Section = Sections[RE.SectionID];
102 uint8_t *LocalAddress = Section.Address + RE.Offset;
103 uint64_t FinalAddress = Section.LoadAddress + RE.Offset;
104
105 dbgs() << "resolveRelocation Section: " << RE.SectionID
106 << " LocalAddress: " << format("%p", LocalAddress)
107 << " FinalAddress: " << format("%p", FinalAddress)
108 << " Value: " << format("%p", Value) << " Addend: " << RE.Addend
109 << " isPCRel: " << RE.IsPCRel << " MachoType: " << RE.RelType
110 << " Size: " << (1 << RE.Size) << "\n";
111}
112
113bool RuntimeDyldMachO::writeBytesUnaligned(uint8_t *Addr, uint64_t Value,
114 unsigned Size) {
115 for (unsigned i = 0; i < Size; ++i) {
116 *Addr++ = (uint8_t)Value;
117 Value >>= 8;
118 }
119
120 return false;
121}
122
123bool
124RuntimeDyldMachO::isCompatibleFormat(const ObjectBuffer *InputBuffer) const {
125 if (InputBuffer->getBufferSize() < 4)
126 return false;
127 StringRef Magic(InputBuffer->getBufferStart(), 4);
128 if (Magic == "\xFE\xED\xFA\xCE")
129 return true;
130 if (Magic == "\xCE\xFA\xED\xFE")
131 return true;
132 if (Magic == "\xFE\xED\xFA\xCF")
133 return true;
134 if (Magic == "\xCF\xFA\xED\xFE")
135 return true;
136 return false;
137}
138
139bool RuntimeDyldMachO::isCompatibleFile(const object::ObjectFile *Obj) const {
140 return Obj->isMachO();
141}
142
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000143static unsigned char *processFDE(unsigned char *P, intptr_t DeltaForText,
144 intptr_t DeltaForEH) {
Lang Hames36072da2014-05-12 21:39:59 +0000145 DEBUG(dbgs() << "Processing FDE: Delta for text: " << DeltaForText
146 << ", Delta for EH: " << DeltaForEH << "\n");
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000147 uint32_t Length = *((uint32_t *)P);
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000148 P += 4;
149 unsigned char *Ret = P + Length;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000150 uint32_t Offset = *((uint32_t *)P);
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000151 if (Offset == 0) // is a CIE
152 return Ret;
153
154 P += 4;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000155 intptr_t FDELocation = *((intptr_t *)P);
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000156 intptr_t NewLocation = FDELocation - DeltaForText;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000157 *((intptr_t *)P) = NewLocation;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000158 P += sizeof(intptr_t);
159
160 // Skip the FDE address range
161 P += sizeof(intptr_t);
162
163 uint8_t Augmentationsize = *P;
164 P += 1;
165 if (Augmentationsize != 0) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000166 intptr_t LSDA = *((intptr_t *)P);
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000167 intptr_t NewLSDA = LSDA - DeltaForEH;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000168 *((intptr_t *)P) = NewLSDA;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000169 }
170
171 return Ret;
172}
173
174static intptr_t computeDelta(SectionEntry *A, SectionEntry *B) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000175 intptr_t ObjDistance = A->ObjAddress - B->ObjAddress;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000176 intptr_t MemDistance = A->LoadAddress - B->LoadAddress;
177 return ObjDistance - MemDistance;
178}
179
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000180void RuntimeDyldMachO::registerEHFrames() {
181
182 if (!MemMgr)
183 return;
184 for (int i = 0, e = UnregisteredEHFrameSections.size(); i != e; ++i) {
185 EHFrameRelatedSections &SectionInfo = UnregisteredEHFrameSections[i];
186 if (SectionInfo.EHFrameSID == RTDYLD_INVALID_SECTION_ID ||
187 SectionInfo.TextSID == RTDYLD_INVALID_SECTION_ID)
188 continue;
189 SectionEntry *Text = &Sections[SectionInfo.TextSID];
190 SectionEntry *EHFrame = &Sections[SectionInfo.EHFrameSID];
Craig Topper353eda42014-04-24 06:44:33 +0000191 SectionEntry *ExceptTab = nullptr;
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000192 if (SectionInfo.ExceptTabSID != RTDYLD_INVALID_SECTION_ID)
193 ExceptTab = &Sections[SectionInfo.ExceptTabSID];
194
195 intptr_t DeltaForText = computeDelta(Text, EHFrame);
196 intptr_t DeltaForEH = 0;
197 if (ExceptTab)
198 DeltaForEH = computeDelta(ExceptTab, EHFrame);
199
200 unsigned char *P = EHFrame->Address;
201 unsigned char *End = P + EHFrame->Size;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000202 do {
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000203 P = processFDE(P, DeltaForText, DeltaForEH);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000204 } while (P != End);
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000205
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000206 MemMgr->registerEHFrames(EHFrame->Address, EHFrame->LoadAddress,
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000207 EHFrame->Size);
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000208 }
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000209 UnregisteredEHFrameSections.clear();
210}
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000211
Lang Hamesa5216882014-07-17 18:54:50 +0000212std::unique_ptr<RuntimeDyldMachO>
213llvm::RuntimeDyldMachO::create(Triple::ArchType Arch, RTDyldMemoryManager *MM) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000214 switch (Arch) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000215 default:
Lang Hamesa5216882014-07-17 18:54:50 +0000216 llvm_unreachable("Unsupported target for RuntimeDyldMachO.");
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000217 break;
Lang Hamesa5216882014-07-17 18:54:50 +0000218 case Triple::arm: return make_unique<RuntimeDyldMachOARM>(MM);
Tim Northovere19bed72014-07-23 12:32:47 +0000219 case Triple::aarch64: return make_unique<RuntimeDyldMachOAArch64>(MM);
Lang Hamesa5216882014-07-17 18:54:50 +0000220 case Triple::x86: return make_unique<RuntimeDyldMachOI386>(MM);
221 case Triple::x86_64: return make_unique<RuntimeDyldMachOX86_64>(MM);
Danil Malyshev72510f22011-07-13 07:57:58 +0000222 }
Danil Malyshev72510f22011-07-13 07:57:58 +0000223}
224
Danil Malyshev72510f22011-07-13 07:57:58 +0000225} // end namespace llvm