]>
Commit | Line | Data |
---|---|---|
a645023d A |
1 | /* -*- mode: C++; c-basic-offset: 4; tab-width: 4 -*- |
2 | * | |
3 | * Copyright (c) 2009-2010 Apple Inc. All rights reserved. | |
4 | * | |
5 | * @APPLE_LICENSE_HEADER_START@ | |
6 | * | |
7 | * This file contains Original Code and/or Modifications of Original Code | |
8 | * as defined in and that are subject to the Apple Public Source License | |
9 | * Version 2.0 (the 'License'). You may not use this file except in | |
10 | * compliance with the License. Please obtain a copy of the License at | |
11 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
12 | * file. | |
13 | * | |
14 | * The Original Code and all software distributed under the License are | |
15 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
16 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
17 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
19 | * Please see the License for the specific language governing rights and | |
20 | * limitations under the License. | |
21 | * | |
22 | * @APPLE_LICENSE_HEADER_END@ | |
23 | */ | |
24 | ||
25 | // already in ld::passes::stubs namespace | |
26 | namespace arm { | |
27 | ||
28 | ||
29 | class FastBindingPointerAtom : public ld::Atom { | |
30 | public: | |
31 | FastBindingPointerAtom(ld::passes::stubs::Pass& pass) | |
32 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
33 | ld::Atom::scopeLinkageUnit, ld::Atom::typeNonLazyPointer, | |
34 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
35 | _fixup(0, ld::Fixup::k1of1, ld::Fixup::kindStoreTargetAddressLittleEndian32, pass.internal()->compressedFastBinderProxy) | |
36 | { pass.addAtom(*this); } | |
37 | ||
38 | virtual const ld::File* file() const { return NULL; } | |
a645023d A |
39 | virtual const char* name() const { return "fast binder pointer"; } |
40 | virtual uint64_t size() const { return 4; } | |
41 | virtual uint64_t objectAddress() const { return 0; } | |
42 | virtual void copyRawContent(uint8_t buffer[]) const { } | |
43 | virtual void setScope(Scope) { } | |
44 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup; } | |
45 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup)[1]; } | |
46 | ||
47 | private: | |
48 | ld::Fixup _fixup; | |
49 | ||
50 | static ld::Section _s_section; | |
51 | }; | |
52 | ||
53 | ld::Section FastBindingPointerAtom::_s_section("__DATA", "__nl_symbol_ptr", ld::Section::typeNonLazyPointer); | |
54 | ||
55 | ||
56 | class ImageCachePointerAtom : public ld::Atom { | |
57 | public: | |
58 | ImageCachePointerAtom(ld::passes::stubs::Pass& pass) | |
59 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
60 | ld::Atom::scopeLinkageUnit, ld::Atom::typeNonLazyPointer, | |
61 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)) { pass.addAtom(*this); } | |
62 | ||
63 | virtual const ld::File* file() const { return NULL; } | |
a645023d A |
64 | virtual const char* name() const { return "non-lazy pointer"; } |
65 | virtual uint64_t size() const { return 4; } | |
66 | virtual uint64_t objectAddress() const { return 0; } | |
67 | virtual void copyRawContent(uint8_t buffer[]) const { } | |
68 | virtual void setScope(Scope) { } | |
69 | ||
70 | private: | |
71 | ||
72 | static ld::Section _s_section; | |
73 | }; | |
74 | ||
75 | ld::Section ImageCachePointerAtom::_s_section("__DATA", "__nl_symbol_ptr", ld::Section::typeNonLazyPointer); | |
76 | ||
77 | ||
78 | ||
79 | class StubHelperHelperAtom : public ld::Atom { | |
80 | public: | |
81 | StubHelperHelperAtom(ld::passes::stubs::Pass& pass) | |
82 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
83 | ld::Atom::scopeLinkageUnit, ld::Atom::typeStubHelper, | |
84 | ld::Atom::symbolTableIn, false, false, false, ld::Atom::Alignment(2)), | |
85 | _fixup1(28, ld::Fixup::k1of4, ld::Fixup::kindSetTargetAddress, compressedImageCache(pass)), | |
86 | _fixup2(28, ld::Fixup::k2of4, ld::Fixup::kindSubtractTargetAddress, this), | |
87 | _fixup3(28, ld::Fixup::k3of4, ld::Fixup::kindSubtractAddend, 16), | |
88 | _fixup4(28, ld::Fixup::k4of4, ld::Fixup::kindStoreLittleEndian32), | |
89 | _fixup5(32, ld::Fixup::k1of4, ld::Fixup::kindSetTargetAddress, compressedFastBinder(pass)), | |
90 | _fixup6(32, ld::Fixup::k2of4, ld::Fixup::kindSubtractTargetAddress, this), | |
91 | _fixup7(32, ld::Fixup::k3of4, ld::Fixup::kindSubtractAddend, 28), | |
92 | _fixup8(32, ld::Fixup::k4of4, ld::Fixup::kindStoreLittleEndian32) | |
93 | { pass.addAtom(*this); } | |
94 | ||
95 | virtual ld::File* file() const { return NULL; } | |
a645023d A |
96 | virtual const char* name() const { return " stub helpers"; } |
97 | virtual uint64_t size() const { return 36; } | |
98 | virtual uint64_t objectAddress() const { return 0; } | |
99 | virtual void copyRawContent(uint8_t buffer[]) const { | |
100 | // push lazy-info-offset | |
101 | OSWriteLittleInt32(&buffer[ 0], 0, 0xe52dc004); // str ip, [sp, #-4]! | |
102 | // push address of dyld_mageLoaderCache | |
103 | OSWriteLittleInt32(&buffer[ 4], 0, 0xe59fc010); // ldr ip, L1 | |
104 | OSWriteLittleInt32(&buffer[ 8], 0, 0xe08fc00c); // add ip, pc, ip | |
105 | OSWriteLittleInt32(&buffer[12], 0, 0xe52dc004); // str ip, [sp, #-4]! | |
106 | // jump through _fast_lazy_bind | |
107 | OSWriteLittleInt32(&buffer[16], 0, 0xe59fc008); // ldr ip, L2 | |
108 | OSWriteLittleInt32(&buffer[20], 0, 0xe08fc00c); // add ip, pc, ip | |
109 | OSWriteLittleInt32(&buffer[24], 0, 0xe59cf000); // ldr pc, [ip] | |
110 | OSWriteLittleInt32(&buffer[28], 0, 0x00000000); // L1: .long fFastStubGOTAtom - (helperhelper+16) | |
111 | OSWriteLittleInt32(&buffer[32], 0, 0x00000000); // L2: .long _fast_lazy_bind - (helperhelper+28) | |
112 | } | |
113 | virtual void setScope(Scope) { } | |
114 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup1; } | |
115 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup8)[1]; } | |
116 | ||
117 | private: | |
118 | static ld::Atom* compressedImageCache(ld::passes::stubs::Pass& pass) { | |
119 | if ( pass.compressedImageCache == NULL ) | |
120 | pass.compressedImageCache = new ImageCachePointerAtom(pass); | |
121 | return pass.compressedImageCache; | |
122 | } | |
123 | static ld::Atom* compressedFastBinder(ld::passes::stubs::Pass& pass) { | |
124 | if ( pass.compressedFastBinderPointer == NULL ) | |
125 | pass.compressedFastBinderPointer = new FastBindingPointerAtom(pass); | |
126 | return pass.compressedFastBinderPointer; | |
127 | } | |
128 | ||
129 | ld::Fixup _fixup1; | |
130 | ld::Fixup _fixup2; | |
131 | ld::Fixup _fixup3; | |
132 | ld::Fixup _fixup4; | |
133 | ld::Fixup _fixup5; | |
134 | ld::Fixup _fixup6; | |
135 | ld::Fixup _fixup7; | |
136 | ld::Fixup _fixup8; | |
137 | ||
138 | static ld::Section _s_section; | |
139 | }; | |
140 | ||
141 | ld::Section StubHelperHelperAtom::_s_section("__TEXT", "__stub_helper", ld::Section::typeStubHelper); | |
142 | ||
143 | ||
144 | class StubHelperAtom : public ld::Atom { | |
145 | public: | |
146 | StubHelperAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo, | |
147 | const ld::Atom* lazyPointer) | |
148 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
149 | ld::Atom::scopeLinkageUnit, ld::Atom::typeStubHelper, | |
150 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
151 | _stubTo(stubTo), | |
152 | _fixup1(4, ld::Fixup::k1of1, ld::Fixup::kindStoreTargetAddressARMBranch24, helperHelper(pass)), | |
153 | _fixup2(8, ld::Fixup::k1of2, ld::Fixup::kindSetLazyOffset, lazyPointer), | |
154 | _fixup3(8, ld::Fixup::k2of2, ld::Fixup::kindStoreLittleEndian32) { } | |
155 | ||
156 | virtual const ld::File* file() const { return _stubTo.file(); } | |
a645023d A |
157 | virtual const char* name() const { return _stubTo.name(); } |
158 | virtual uint64_t size() const { return 12; } | |
159 | virtual uint64_t objectAddress() const { return 0; } | |
160 | virtual void copyRawContent(uint8_t buffer[]) const { | |
161 | OSWriteLittleInt32(&buffer[0], 0, 0xe59fc000); // ldr ip, [pc, #0] | |
162 | OSWriteLittleInt32(&buffer[4], 0, 0xea000000); // b _helperhelper | |
163 | OSWriteLittleInt32(&buffer[8], 0, 0); // .long lazy-info-offset | |
164 | } | |
165 | virtual void setScope(Scope) { } | |
166 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup1; } | |
167 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup3)[1]; } | |
168 | ||
169 | private: | |
170 | static ld::Atom* helperHelper(ld::passes::stubs::Pass& pass) { | |
171 | if ( pass.compressedHelperHelper == NULL ) | |
172 | pass.compressedHelperHelper = new StubHelperHelperAtom(pass); | |
173 | return pass.compressedHelperHelper; | |
174 | } | |
175 | const ld::Atom& _stubTo; | |
176 | ld::Fixup _fixup1; | |
177 | ld::Fixup _fixup2; | |
178 | ld::Fixup _fixup3; | |
179 | ||
180 | static ld::Section _s_section; | |
181 | }; | |
182 | ||
183 | ld::Section StubHelperAtom::_s_section("__TEXT", "__stub_helper", ld::Section::typeStubHelper); | |
184 | ||
185 | ||
186 | class ResolverHelperAtom : public ld::Atom { | |
187 | public: | |
188 | ResolverHelperAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo, | |
189 | const ld::Atom* lazyPointer) | |
190 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
191 | ld::Atom::scopeLinkageUnit, ld::Atom::typeStubHelper, | |
192 | ld::Atom::symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
193 | _stubTo(stubTo), | |
194 | _fixup1( 4, ld::Fixup::k1of1, ld::Fixup::kindStoreTargetAddressARMBranch24, &stubTo), | |
195 | _fixup2(32, ld::Fixup::k1of4, ld::Fixup::kindSetTargetAddress, lazyPointer), | |
196 | _fixup3(32, ld::Fixup::k2of4, ld::Fixup::kindSubtractTargetAddress, this), | |
197 | _fixup4(32, ld::Fixup::k3of4, ld::Fixup::kindSubtractAddend, 20), | |
198 | _fixup5(32, ld::Fixup::k4of4, ld::Fixup::kindStoreLittleEndian32) { } | |
199 | ||
200 | virtual const ld::File* file() const { return _stubTo.file(); } | |
a645023d A |
201 | virtual const char* name() const { return _stubTo.name(); } |
202 | virtual uint64_t size() const { return 36; } | |
203 | virtual uint64_t objectAddress() const { return 0; } | |
204 | virtual void copyRawContent(uint8_t buffer[]) const { | |
205 | OSWriteLittleInt32(&buffer[ 0], 0, 0xe92d400f); // push {r0, r1, r2, r3, lr} | |
206 | OSWriteLittleInt32(&buffer[ 4], 0, 0xebfffffd); // bl _foo | |
207 | OSWriteLittleInt32(&buffer[ 8], 0, 0xe59fc010); // ldr ip, [pc, #16] | |
208 | OSWriteLittleInt32(&buffer[12], 0, 0xe08fc00c); // add ip, pc, ip | |
209 | OSWriteLittleInt32(&buffer[16], 0, 0xe58c0000); // str r0, [ip] | |
210 | OSWriteLittleInt32(&buffer[20], 0, 0xe1a0c000); // mov ip, r0 | |
211 | OSWriteLittleInt32(&buffer[24], 0, 0xe8bd400f); // pop {r0, r1, r2, r3, lr} | |
212 | OSWriteLittleInt32(&buffer[28], 0, 0xe12fff1c); // bx ip | |
213 | OSWriteLittleInt32(&buffer[32], 0, 0x00000000); // .long foo$lazyptr - helper + 20 | |
214 | } | |
215 | virtual void setScope(Scope) { } | |
216 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup1; } | |
217 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup5)[1]; } | |
218 | ||
219 | private: | |
220 | const ld::Atom& _stubTo; | |
221 | ld::Fixup _fixup1; | |
222 | ld::Fixup _fixup2; | |
223 | ld::Fixup _fixup3; | |
224 | ld::Fixup _fixup4; | |
225 | ld::Fixup _fixup5; | |
226 | ||
227 | static ld::Section _s_section; | |
228 | }; | |
229 | ||
230 | ld::Section ResolverHelperAtom::_s_section("__TEXT", "__stub_helper", ld::Section::typeStubHelper); | |
231 | ||
232 | ||
233 | class LazyPointerAtom : public ld::Atom { | |
234 | public: | |
235 | LazyPointerAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo, | |
236 | bool stubToGlobalWeakDef, bool stubToResolver, | |
eaf282aa A |
237 | bool weakImport, bool close, bool usingDataConst) |
238 | : ld::Atom(selectSection(close, stubToGlobalWeakDef, stubToResolver, usingDataConst), | |
239 | ld::Atom::definitionRegular, | |
a645023d A |
240 | ld::Atom::combineNever, ld::Atom::scopeLinkageUnit, ld::Atom::typeLazyPointer, |
241 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
242 | _stubTo(stubTo), | |
243 | _helper(pass, stubTo, this), | |
244 | _resolverHelper(pass, stubTo, this), | |
245 | _fixup1(0, ld::Fixup::k1of1, ld::Fixup::kindStoreTargetAddressLittleEndian32, | |
246 | stubToResolver ? &_resolverHelper : (stubToGlobalWeakDef ? &stubTo : &_helper)), | |
eaf282aa | 247 | _fixup2(0, ld::Fixup::k1of1, ld::Fixup::kindLazyTarget, &stubTo) { |
a645023d A |
248 | _fixup2.weakImport = weakImport; pass.addAtom(*this); |
249 | if ( stubToResolver ) | |
250 | pass.addAtom(_resolverHelper); | |
251 | else if ( !stubToGlobalWeakDef ) | |
252 | pass.addAtom(_helper); | |
253 | } | |
254 | ||
255 | virtual const ld::File* file() const { return _stubTo.file(); } | |
a645023d A |
256 | virtual const char* name() const { return _stubTo.name(); } |
257 | virtual uint64_t size() const { return 4; } | |
258 | virtual uint64_t objectAddress() const { return 0; } | |
259 | virtual void copyRawContent(uint8_t buffer[]) const { } | |
260 | virtual void setScope(Scope) { } | |
261 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup1; } | |
262 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup2)[1]; } | |
263 | ||
264 | private: | |
eaf282aa A |
265 | static ld::Section& selectSection(bool close, bool stubToGlobalWeakDef, bool stubToResolver, bool usingDataConst) { |
266 | if ( close ) | |
267 | return _s_sectionClose; | |
268 | else if ( stubToGlobalWeakDef && usingDataConst ) | |
269 | return _s_sectionWeak; | |
270 | else if ( stubToResolver && usingDataConst ) | |
271 | return _s_sectionResolver; | |
272 | else | |
273 | return _s_section; | |
274 | } | |
275 | ||
a645023d A |
276 | const ld::Atom& _stubTo; |
277 | StubHelperAtom _helper; | |
278 | ResolverHelperAtom _resolverHelper; | |
279 | ld::Fixup _fixup1; | |
280 | ld::Fixup _fixup2; | |
281 | ||
282 | static ld::Section _s_section; | |
283 | static ld::Section _s_sectionClose; | |
eaf282aa A |
284 | static ld::Section _s_sectionResolver; |
285 | static ld::Section _s_sectionWeak; | |
a645023d A |
286 | }; |
287 | ||
288 | ld::Section LazyPointerAtom::_s_section("__DATA", "__la_symbol_ptr", ld::Section::typeLazyPointer); | |
289 | ld::Section LazyPointerAtom::_s_sectionClose("__DATA", "__lazy_symbol", ld::Section::typeLazyPointerClose); | |
eaf282aa A |
290 | ld::Section LazyPointerAtom::_s_sectionResolver("__DATA_DIRTY", "__la_resolver", ld::Section::typeLazyPointer); |
291 | ld::Section LazyPointerAtom::_s_sectionWeak("__DATA", "__la_weak_ptr", ld::Section::typeLazyPointer); | |
a645023d A |
292 | |
293 | ||
ebf6f434 A |
294 | class NonLazyPointerAtom : public ld::Atom { |
295 | public: | |
296 | NonLazyPointerAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo) | |
297 | : ld::Atom(_s_section, ld::Atom::definitionRegular, | |
298 | ld::Atom::combineNever, ld::Atom::scopeLinkageUnit, ld::Atom::typeLazyPointer, | |
299 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
300 | _stubTo(stubTo), | |
301 | _fixup1(0, ld::Fixup::k1of1, ld::Fixup::kindStoreTargetAddressLittleEndian32, &stubTo) { | |
302 | pass.addAtom(*this); | |
303 | } | |
304 | ||
305 | virtual const ld::File* file() const { return _stubTo.file(); } | |
ebf6f434 A |
306 | virtual const char* name() const { return _stubTo.name(); } |
307 | virtual uint64_t size() const { return 4; } | |
308 | virtual uint64_t objectAddress() const { return 0; } | |
309 | virtual void copyRawContent(uint8_t buffer[]) const { } | |
310 | virtual void setScope(Scope) { } | |
311 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup1; } | |
312 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup1)[1]; } | |
313 | ||
314 | private: | |
315 | const ld::Atom& _stubTo; | |
316 | ld::Fixup _fixup1; | |
317 | ||
318 | static ld::Section _s_section; | |
319 | static ld::Section _s_sectionClose; | |
320 | }; | |
321 | ||
322 | ld::Section NonLazyPointerAtom::_s_section("__DATA", "__nl_symbol_ptr", ld::Section::typeNonLazyPointer); | |
323 | ||
324 | ||
325 | class StubPICKextAtom : public ld::Atom { | |
326 | public: | |
327 | StubPICKextAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo) | |
328 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
329 | ld::Atom::scopeLinkageUnit, ld::Atom::typeStub, | |
330 | symbolTableIn, false, true, false, ld::Atom::Alignment(2)), | |
331 | _stubTo(stubTo), | |
332 | _nonLazyPointer(pass, stubTo), | |
333 | _fixup1(0, ld::Fixup::k1of4, ld::Fixup::kindSetTargetAddress, &_nonLazyPointer), | |
334 | _fixup2(0, ld::Fixup::k2of4, ld::Fixup::kindSubtractTargetAddress, this), | |
335 | _fixup3(0, ld::Fixup::k3of4, ld::Fixup::kindSubtractAddend, 12), | |
336 | _fixup4(0, ld::Fixup::k4of4, ld::Fixup::kindStoreThumbLow16), | |
337 | _fixup5(4, ld::Fixup::k1of4, ld::Fixup::kindSetTargetAddress, &_nonLazyPointer), | |
338 | _fixup6(4, ld::Fixup::k2of4, ld::Fixup::kindSubtractTargetAddress, this), | |
339 | _fixup7(4, ld::Fixup::k3of4, ld::Fixup::kindSubtractAddend, 12), | |
340 | _fixup8(4, ld::Fixup::k4of4, ld::Fixup::kindStoreThumbHigh16) { | |
341 | pass.addAtom(*this); | |
342 | asprintf((char**)&_name, "%s.stub", _stubTo.name()); | |
343 | } | |
344 | ||
345 | virtual const ld::File* file() const { return _stubTo.file(); } | |
ebf6f434 A |
346 | virtual const char* name() const { return _name; } |
347 | virtual uint64_t size() const { return 16; } | |
348 | virtual uint64_t objectAddress() const { return 0; } | |
349 | virtual void copyRawContent(uint8_t buffer[]) const { | |
350 | OSWriteLittleInt32(&buffer[ 0], 0, 0x0c00f240); // movw ip, #lo(nlp - L1) | |
351 | OSWriteLittleInt32(&buffer[ 4], 0, 0x0c00f2c0); // movt ip, #hi(nlp - L1) | |
352 | OSWriteLittleInt16(&buffer[ 8], 0, 0x44fc); // add ip, pc | |
353 | OSWriteLittleInt32(&buffer[10], 0, 0xc000f8dc); // ldr.w ip, [ip] | |
354 | OSWriteLittleInt16(&buffer[14], 0, 0x4760); // bx ip | |
355 | } | |
356 | virtual void setScope(Scope) { } | |
357 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup1; } | |
358 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup8)[1]; } | |
359 | ||
360 | private: | |
361 | const ld::Atom& _stubTo; | |
362 | const char* _name; | |
363 | NonLazyPointerAtom _nonLazyPointer; | |
364 | ld::Fixup _fixup1; | |
365 | ld::Fixup _fixup2; | |
366 | ld::Fixup _fixup3; | |
367 | ld::Fixup _fixup4; | |
368 | ld::Fixup _fixup5; | |
369 | ld::Fixup _fixup6; | |
370 | ld::Fixup _fixup7; | |
371 | ld::Fixup _fixup8; | |
372 | ||
373 | static ld::Section _s_section; | |
374 | }; | |
375 | ||
376 | ld::Section StubPICKextAtom::_s_section("__TEXT", "__stub", ld::Section::typeCode); | |
377 | ||
378 | ||
a645023d A |
379 | |
380 | class StubPICAtom : public ld::Atom { | |
381 | public: | |
382 | StubPICAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo, | |
eaf282aa | 383 | bool stubToGlobalWeakDef, bool stubToResolver, bool weakImport, bool usingDataConst) |
a645023d A |
384 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, |
385 | ld::Atom::scopeLinkageUnit, ld::Atom::typeStub, | |
386 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
387 | _stubTo(stubTo), | |
eaf282aa | 388 | _lazyPointer(pass, stubTo, stubToGlobalWeakDef, stubToResolver, weakImport, false, usingDataConst), |
a645023d A |
389 | _fixup1(12, ld::Fixup::k1of4, ld::Fixup::kindSetTargetAddress, &_lazyPointer), |
390 | _fixup2(12, ld::Fixup::k2of4, ld::Fixup::kindSubtractTargetAddress, this), | |
391 | _fixup3(12, ld::Fixup::k3of4, ld::Fixup::kindSubtractAddend, 12), | |
392 | _fixup4(12, ld::Fixup::k4of4, ld::Fixup::kindStoreLittleEndian32) | |
393 | { pass.addAtom(*this); } | |
394 | ||
395 | virtual const ld::File* file() const { return _stubTo.file(); } | |
a645023d A |
396 | virtual const char* name() const { return _stubTo.name(); } |
397 | virtual uint64_t size() const { return 16; } | |
398 | virtual uint64_t objectAddress() const { return 0; } | |
399 | virtual void copyRawContent(uint8_t buffer[]) const { | |
400 | OSWriteLittleInt32(&buffer[ 0], 0, 0xe59fc004); // ldr ip, pc + 12 | |
401 | OSWriteLittleInt32(&buffer[ 4], 0, 0xe08fc00c); // add ip, pc, ip | |
402 | OSWriteLittleInt32(&buffer[ 8], 0, 0xe59cf000); // ldr pc, [ip] | |
403 | OSWriteLittleInt32(&buffer[12], 0, 0x00000000); // .long L_foo$lazy_ptr - (L1$scv + 8) | |
404 | } | |
405 | virtual void setScope(Scope) { } | |
406 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup1; } | |
407 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup4)[1]; } | |
408 | ||
409 | private: | |
410 | const ld::Atom& _stubTo; | |
411 | LazyPointerAtom _lazyPointer; | |
412 | ld::Fixup _fixup1; | |
413 | ld::Fixup _fixup2; | |
414 | ld::Fixup _fixup3; | |
415 | ld::Fixup _fixup4; | |
416 | ||
417 | static ld::Section _s_section; | |
418 | }; | |
419 | ||
420 | ld::Section StubPICAtom::_s_section("__TEXT", "__picsymbolstub4", ld::Section::typeStub); | |
421 | ||
422 | ||
423 | ||
424 | class StubNoPICAtom : public ld::Atom { | |
425 | public: | |
426 | StubNoPICAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo, | |
427 | bool stubToGlobalWeakDef, bool stubToResolver, bool weakImport) | |
428 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
429 | ld::Atom::scopeLinkageUnit, ld::Atom::typeStub, | |
430 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
431 | _stubTo(stubTo), | |
eaf282aa | 432 | _lazyPointer(pass, stubTo, stubToGlobalWeakDef, stubToResolver, weakImport, false, false), |
a645023d A |
433 | _fixup(8, ld::Fixup::k1of1, ld::Fixup::kindStoreTargetAddressLittleEndian32, &_lazyPointer) |
434 | { pass.addAtom(*this); } | |
435 | ||
436 | virtual const ld::File* file() const { return _stubTo.file(); } | |
a645023d A |
437 | virtual const char* name() const { return _stubTo.name(); } |
438 | virtual uint64_t size() const { return 12; } | |
439 | virtual uint64_t objectAddress() const { return 0; } | |
440 | virtual void copyRawContent(uint8_t buffer[]) const { | |
441 | OSWriteLittleInt32(&buffer[ 0], 0, 0xe59fc000); // ldr ip, [pc, #0] | |
442 | OSWriteLittleInt32(&buffer[ 4], 0, 0xe59cf000); // ldr pc, [ip] | |
443 | OSWriteLittleInt32(&buffer[ 8], 0, 0x00000000); // .long L_foo$lazy_ptr | |
444 | } | |
445 | virtual void setScope(Scope) { } | |
446 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup; } | |
447 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup)[1]; } | |
448 | ||
449 | private: | |
450 | const ld::Atom& _stubTo; | |
451 | LazyPointerAtom _lazyPointer; | |
452 | ld::Fixup _fixup; | |
453 | ||
454 | static ld::Section _s_section; | |
455 | }; | |
456 | ||
457 | ld::Section StubNoPICAtom::_s_section("__TEXT", "__symbol_stub4", ld::Section::typeStub); | |
458 | ||
459 | ||
460 | ||
461 | ||
462 | class StubCloseAtom : public ld::Atom { | |
463 | public: | |
464 | StubCloseAtom(ld::passes::stubs::Pass& pass, const ld::Atom& stubTo, | |
465 | bool stubToGlobalWeakDef, bool stubToResolver, bool weakImport) | |
466 | : ld::Atom(_s_section, ld::Atom::definitionRegular, ld::Atom::combineNever, | |
467 | ld::Atom::scopeLinkageUnit, ld::Atom::typeStub, | |
468 | symbolTableNotIn, false, false, false, ld::Atom::Alignment(2)), | |
469 | _stubTo(stubTo), | |
eaf282aa | 470 | _lazyPointer(pass, stubTo, stubToGlobalWeakDef, stubToResolver, weakImport, true, false), |
a645023d A |
471 | _fixup(0, ld::Fixup::k1of1, ld::Fixup::kindStoreTargetAddressARMLoad12, &_lazyPointer) |
472 | { pass.addAtom(*this); } | |
473 | ||
474 | virtual const ld::File* file() const { return _stubTo.file(); } | |
a645023d A |
475 | virtual const char* name() const { return _stubTo.name(); } |
476 | virtual uint64_t size() const { return 4; } | |
477 | virtual uint64_t objectAddress() const { return 0; } | |
478 | virtual void copyRawContent(uint8_t buffer[]) const { | |
479 | OSWriteLittleInt32(&buffer[ 0], 0, 0xE59FF000); // ldr pc, [pc, #foo$lazy_ptr] | |
480 | } | |
481 | virtual void setScope(Scope) { } | |
482 | virtual ld::Fixup::iterator fixupsBegin() const { return (ld::Fixup*)&_fixup; } | |
483 | virtual ld::Fixup::iterator fixupsEnd() const { return &((ld::Fixup*)&_fixup)[1]; } | |
484 | ||
485 | private: | |
486 | const ld::Atom& _stubTo; | |
487 | LazyPointerAtom _lazyPointer; | |
488 | ld::Fixup _fixup; | |
489 | ||
490 | static ld::Section _s_section; | |
491 | }; | |
492 | ||
493 | ld::Section StubCloseAtom::_s_section("__TEXT", "__symbolstub1", ld::Section::typeStubClose); | |
494 | ||
495 | ||
496 | ||
497 | ||
498 | } // namespace arm | |
499 |