]> git.saurik.com Git - apple/ld64.git/blame - src/ld/Resolver.h
ld64-128.2.tar.gz
[apple/ld64.git] / src / ld / Resolver.h
CommitLineData
a645023d
A
1/* -*- mode: C++; c-basic-offset: 4; tab-width: 4 -*-*
2 *
3 * Copyright (c) 2009 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#ifndef __RESOLVER_H__
26#define __RESOLVER_H__
27
28#include <stdlib.h>
29#include <sys/types.h>
30#include <sys/stat.h>
31#include <sys/mman.h>
32#include <sys/sysctl.h>
33#include <fcntl.h>
34#include <errno.h>
35#include <limits.h>
36#include <unistd.h>
37#include <mach/mach_time.h>
38#include <mach/vm_statistics.h>
39#include <mach/mach_init.h>
40#include <mach/mach_host.h>
41#include <dlfcn.h>
42#include <mach-o/dyld.h>
43
44#include <vector>
45
46#include "Options.h"
47#include "ld.hpp"
48#include "SymbolTable.h"
49
50
51namespace ld {
52namespace tool {
53
54
55
56
57class Resolver : public ld::File::AtomHandler
58{
59public:
60 Resolver(const Options& opts, const InputFiles& inputs, ld::Internal& state)
61 : _options(opts), _inputFiles(inputs), _internal(state),
62 _symbolTable(opts, state.indirectBindingTable),
63 _haveLLVMObjs(false), _addToFinalSection(false),
64 _completedInitialObjectFiles(false) {}
65
66
67 virtual void doAtom(const ld::Atom&);
68 virtual void doFile(const class File&);
69
70 void resolve();
71
72
73private:
74 struct WhyLiveBackChain
75 {
76 WhyLiveBackChain* previous;
77 const ld::Atom* referer;
78 };
79
80 void initializeState();
81 void buildAtomList();
82 void addInitialUndefines();
83 void deadStripOptimize();
84 void resolveUndefines();
85 void checkUndefines(bool force=false);
86 void checkDylibSymbolCollisions();
87 void tentativeOverrideOfDylib(ld::Atom&);
88 void fillInInternalState();
89 void fillInHelpersInInternalState();
90 void removeCoalescedAwayAtoms();
91 void linkTimeOptimize();
92 void convertReferencesToIndirect(const ld::Atom& atom);
93 const ld::Atom* entryPoint(bool searchArchives);
94 void markLive(const ld::Atom& atom, WhyLiveBackChain* previous);
95 bool isDtraceProbe(ld::Fixup::Kind kind);
96 void liveUndefines(std::vector<const char*>&);
a645023d
A
97 bool printReferencedBy(const char* name, SymbolTable::IndirectBindingSlot slot);
98
99
100 class CStringEquals {
101 public:
102 bool operator()(const char* left, const char* right) const { return (strcmp(left, right) == 0); }
103 };
104 typedef __gnu_cxx::hash_set<const char*, __gnu_cxx::hash<const char*>, CStringEquals> StringSet;
105
106 class NotLive {
107 public:
108 bool operator()(const ld::Atom* atom) const {
109 return ! (atom->live() || atom->dontDeadStrip());
110 }
111 };
112
113 class AtomCoalescedAway {
114 public:
115 bool operator()(const ld::Atom* atom) const {
116 return atom->coalescedAway();
117 }
118 };
119
120 const Options& _options;
121 const InputFiles& _inputFiles;
122 ld::Internal& _internal;
123 std::vector<const ld::Atom*> _atoms;
124 std::set<const ld::Atom*> _deadStripRoots;
125 std::vector<const ld::Atom*> _atomsWithUnresolvedReferences;
126 SymbolTable _symbolTable;
127 bool _haveLLVMObjs;
128 bool _addToFinalSection;
129 bool _completedInitialObjectFiles;
130};
131
132
133class DeadStripResolver
134{
135public:
136
137
138private:
139
140};
141
142} // namespace tool
143} // namespace ld
144
145
146
147#endif // __RESOLVER_H__