[MCJIT] Make RuntimeDyld dump section contents in -debug mode.
[oota-llvm.git] / lib / ExecutionEngine / RuntimeDyld / RuntimeDyldMachO.cpp
1 //===-- RuntimeDyldMachO.cpp - 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 // Implementation of the MC-JIT runtime dynamic linker.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "RuntimeDyldMachO.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/StringRef.h"
17
18 #include "Targets/RuntimeDyldMachOARM.h"
19 #include "Targets/RuntimeDyldMachOAArch64.h"
20 #include "Targets/RuntimeDyldMachOI386.h"
21 #include "Targets/RuntimeDyldMachOX86_64.h"
22
23 using namespace llvm;
24 using namespace llvm::object;
25
26 #define DEBUG_TYPE "dyld"
27
28 namespace llvm {
29
30 int64_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;
34   int64_t Addend = 0;
35   memcpy(&Addend, LocalAddress, NumBytes);
36   return Addend;
37 }
38
39 RelocationValueRef 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
82 void RuntimeDyldMachO::makeValueAddendPCRel(RelocationValueRef &Value,
83                                             ObjectImage &ObjImg,
84                                             const relocation_iterator &RI,
85                                             unsigned OffsetToNextPC) {
86   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);
95     Value.Addend += RelocAddr + OffsetToNextPC;
96   }
97 }
98
99 void 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("0x%x", FinalAddress)
108          << " Value: " << format("0x%x", Value) << " Addend: " << RE.Addend
109          << " isPCRel: " << RE.IsPCRel << " MachoType: " << RE.RelType
110          << " Size: " << (1 << RE.Size) << "\n";
111 }
112
113 bool RuntimeDyldMachO::writeBytesUnaligned(uint8_t *Dst, uint64_t Value,
114                                            unsigned Size) {
115
116
117   // If host and target endianness match use memcpy, otherwise copy in reverse
118   // order.
119   if (IsTargetLittleEndian == sys::IsLittleEndianHost)
120     memcpy(Dst, &Value, Size);
121   else {
122     uint8_t *Src = reinterpret_cast<uint8_t*>(&Value) + Size - 1;
123     for (unsigned i = 0; i < Size; ++i)
124       *Dst++ = *Src--;
125   }
126
127   return false;
128 }
129
130 bool
131 RuntimeDyldMachO::isCompatibleFormat(const ObjectBuffer *InputBuffer) const {
132   if (InputBuffer->getBufferSize() < 4)
133     return false;
134   StringRef Magic(InputBuffer->getBufferStart(), 4);
135   if (Magic == "\xFE\xED\xFA\xCE")
136     return true;
137   if (Magic == "\xCE\xFA\xED\xFE")
138     return true;
139   if (Magic == "\xFE\xED\xFA\xCF")
140     return true;
141   if (Magic == "\xCF\xFA\xED\xFE")
142     return true;
143   return false;
144 }
145
146 bool RuntimeDyldMachO::isCompatibleFile(const object::ObjectFile *Obj) const {
147   return Obj->isMachO();
148 }
149
150 static unsigned char *processFDE(unsigned char *P, intptr_t DeltaForText,
151                                  intptr_t DeltaForEH) {
152   DEBUG(dbgs() << "Processing FDE: Delta for text: " << DeltaForText
153                << ", Delta for EH: " << DeltaForEH << "\n");
154   uint32_t Length = *((uint32_t *)P);
155   P += 4;
156   unsigned char *Ret = P + Length;
157   uint32_t Offset = *((uint32_t *)P);
158   if (Offset == 0) // is a CIE
159     return Ret;
160
161   P += 4;
162   intptr_t FDELocation = *((intptr_t *)P);
163   intptr_t NewLocation = FDELocation - DeltaForText;
164   *((intptr_t *)P) = NewLocation;
165   P += sizeof(intptr_t);
166
167   // Skip the FDE address range
168   P += sizeof(intptr_t);
169
170   uint8_t Augmentationsize = *P;
171   P += 1;
172   if (Augmentationsize != 0) {
173     intptr_t LSDA = *((intptr_t *)P);
174     intptr_t NewLSDA = LSDA - DeltaForEH;
175     *((intptr_t *)P) = NewLSDA;
176   }
177
178   return Ret;
179 }
180
181 static intptr_t computeDelta(SectionEntry *A, SectionEntry *B) {
182   intptr_t ObjDistance = A->ObjAddress - B->ObjAddress;
183   intptr_t MemDistance = A->LoadAddress - B->LoadAddress;
184   return ObjDistance - MemDistance;
185 }
186
187 void RuntimeDyldMachO::registerEHFrames() {
188
189   if (!MemMgr)
190     return;
191   for (int i = 0, e = UnregisteredEHFrameSections.size(); i != e; ++i) {
192     EHFrameRelatedSections &SectionInfo = UnregisteredEHFrameSections[i];
193     if (SectionInfo.EHFrameSID == RTDYLD_INVALID_SECTION_ID ||
194         SectionInfo.TextSID == RTDYLD_INVALID_SECTION_ID)
195       continue;
196     SectionEntry *Text = &Sections[SectionInfo.TextSID];
197     SectionEntry *EHFrame = &Sections[SectionInfo.EHFrameSID];
198     SectionEntry *ExceptTab = nullptr;
199     if (SectionInfo.ExceptTabSID != RTDYLD_INVALID_SECTION_ID)
200       ExceptTab = &Sections[SectionInfo.ExceptTabSID];
201
202     intptr_t DeltaForText = computeDelta(Text, EHFrame);
203     intptr_t DeltaForEH = 0;
204     if (ExceptTab)
205       DeltaForEH = computeDelta(ExceptTab, EHFrame);
206
207     unsigned char *P = EHFrame->Address;
208     unsigned char *End = P + EHFrame->Size;
209     do {
210       P = processFDE(P, DeltaForText, DeltaForEH);
211     } while (P != End);
212
213     MemMgr->registerEHFrames(EHFrame->Address, EHFrame->LoadAddress,
214                              EHFrame->Size);
215   }
216   UnregisteredEHFrameSections.clear();
217 }
218
219 std::unique_ptr<RuntimeDyldMachO>
220 llvm::RuntimeDyldMachO::create(Triple::ArchType Arch, RTDyldMemoryManager *MM) {
221   switch (Arch) {
222   default:
223     llvm_unreachable("Unsupported target for RuntimeDyldMachO.");
224     break;
225   case Triple::arm: return make_unique<RuntimeDyldMachOARM>(MM);
226   case Triple::aarch64: return make_unique<RuntimeDyldMachOAArch64>(MM);
227   case Triple::x86: return make_unique<RuntimeDyldMachOI386>(MM);
228   case Triple::x86_64: return make_unique<RuntimeDyldMachOX86_64>(MM);
229   }
230 }
231
232 } // end namespace llvm