1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
//===- lib/ReaderWriter/MachO/StubsPass.hpp -------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_READER_WRITER_MACHO_STUBS_PASS_H_
#define LLD_READER_WRITER_MACHO_STUBS_PASS_H_
#include "llvm/ADT/DenseMap.h"
#include "lld/Core/DefinedAtom.h"
#include "lld/Core/LinkerOptions.h"
#include "lld/Core/SharedLibraryAtom.h"
#include "lld/Core/File.h"
#include "lld/Core/Reference.h"
#include "lld/Core/Pass.h"
#include "lld/ReaderWriter/Simple.h"
#include "ReferenceKinds.h"
#include "StubAtoms.hpp"
namespace lld {
namespace mach_o {
class StubsPass : public lld::StubsPass {
public:
StubsPass(const MachOTargetInfo &ti)
: _targetInfo(ti),
_kindHandler(KindHandler::makeHandler(_targetInfo.getTriple().getArch())),
_helperCommonAtom(nullptr),
_helperCacheAtom(nullptr),
_helperBinderAtom(nullptr) {
}
virtual bool noTextRelocs() {
return !_targetInfo.getLinkerOptions()._textRelocations;
}
virtual bool isCallSite(int32_t kind) {
return _kindHandler->isCallSite(kind);
}
virtual const DefinedAtom* getStub(const Atom& target) {
auto pos = _targetToStub.find(&target);
if ( pos != _targetToStub.end() ) {
// Reuse an existing stub.
assert(pos->second != nullptr);
return pos->second;
}
else {
// There is no existing stub, so create a new one.
return this->makeStub(target);
}
}
const DefinedAtom* makeStub(const Atom& target) {
switch (_targetInfo.getTriple().getArch()) {
case llvm::Triple::x86_64:
return makeStub_x86_64(target);
case llvm::Triple::x86:
return makeStub_x86(target);
case llvm::Triple::arm:
return makeStub_arm(target);
default:
llvm_unreachable("Unknown arch");
}
}
const DefinedAtom* makeStub_x86_64(const Atom& target) {
if ( _helperCommonAtom == nullptr ) {
// Lazily create common helper code and data.
_helperCacheAtom = new X86_64NonLazyPointerAtom(_file);
_binderAtom = new StubBinderAtom(_file);
_helperBinderAtom = new X86_64NonLazyPointerAtom(_file, *_binderAtom);
_helperCommonAtom = new X86_64StubHelperCommonAtom(_file,
*_helperCacheAtom, *_helperBinderAtom);
}
const DefinedAtom* helper = new X86_64StubHelperAtom(_file,
*_helperCommonAtom);
_stubHelperAtoms.push_back(helper);
const DefinedAtom* lp = new X86_64LazyPointerAtom(_file, *helper, target);
assert(lp->contentType() == DefinedAtom::typeLazyPointer);
_lazyPointers.push_back(lp);
const DefinedAtom* stub = new X86_64StubAtom(_file, *lp);
assert(stub->contentType() == DefinedAtom::typeStub);
_targetToStub[&target] = stub;
return stub;
}
const DefinedAtom* makeStub_x86(const Atom& target) {
if ( _helperCommonAtom == nullptr ) {
// Lazily create common helper code and data.
_helperCacheAtom = new X86NonLazyPointerAtom(_file);
_binderAtom = new StubBinderAtom(_file);
_helperBinderAtom = new X86NonLazyPointerAtom(_file, *_binderAtom);
_helperCommonAtom = new X86StubHelperCommonAtom(_file,
*_helperCacheAtom, *_helperBinderAtom);
}
const DefinedAtom* helper = new X86StubHelperAtom(_file,
*_helperCommonAtom);
_stubHelperAtoms.push_back(helper);
const DefinedAtom* lp = new X86LazyPointerAtom(_file, *helper, target);
assert(lp->contentType() == DefinedAtom::typeLazyPointer);
_lazyPointers.push_back(lp);
const DefinedAtom* stub = new X86StubAtom(_file, *lp);
assert(stub->contentType() == DefinedAtom::typeStub);
_targetToStub[&target] = stub;
return stub;
}
const DefinedAtom* makeStub_arm(const Atom& target) {
assert(0 && "stubs not yet implemented for arm");
return nullptr;
}
virtual void addStubAtoms(MutableFile &mergedFile) {
// Exit early if no stubs needed.
if ( _targetToStub.size() == 0 )
return;
// Add all stubs to master file.
for (auto it : _targetToStub) {
mergedFile.addAtom(*it.second);
}
// Add helper code atoms.
mergedFile.addAtom(*_helperCommonAtom);
for (const DefinedAtom *lp : _stubHelperAtoms) {
mergedFile.addAtom(*lp);
}
// Add GOT slots used for lazy binding.
mergedFile.addAtom(*_helperBinderAtom);
mergedFile.addAtom(*_helperCacheAtom);
// Add all lazy pointers to master file.
for (const DefinedAtom *lp : _lazyPointers) {
mergedFile.addAtom(*lp);
}
// Add sharedlibrary atom
mergedFile.addAtom(*_binderAtom);
}
private:
class File : public SimpleFile {
public:
File() : SimpleFile("MachO Stubs pass") {
}
};
const MachOTargetInfo &_targetInfo;
KindHandler *_kindHandler;
File _file;
llvm::DenseMap<const Atom*, const DefinedAtom*> _targetToStub;
std::vector<const DefinedAtom*> _lazyPointers;
std::vector<const DefinedAtom*> _stubHelperAtoms;
const SharedLibraryAtom *_binderAtom;
const DefinedAtom* _helperCommonAtom;
const DefinedAtom* _helperCacheAtom;
const DefinedAtom* _helperBinderAtom;
};
} // namespace mach_o
} // namespace lld
#endif // LLD_READER_WRITER_MACHO_STUBS_PASS_H_
|