1 /* -*- mode: C++; c-basic-offset: 4; tab-width: 4 -*-*
3 * Copyright (c) 2009 Apple Inc. All rights reserved.
5 * @APPLE_LICENSE_HEADER_START@
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
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.
22 * @APPLE_LICENSE_HEADER_END@
25 #ifndef __RESOLVER_H__
26 #define __RESOLVER_H__
29 #include <sys/types.h>
32 #include <sys/sysctl.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>
42 #include <mach-o/dyld.h>
48 #include "SymbolTable.h"
57 class Resolver
: public ld::File::AtomHandler
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) {}
67 virtual void doAtom(const ld::Atom
&);
68 virtual void doFile(const class File
&);
74 struct WhyLiveBackChain
76 WhyLiveBackChain
* previous
;
77 const ld::Atom
* referer
;
80 void initializeState();
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*>&);
97 static unsigned int ppcSubTypeIndex(uint32_t subtype
);
98 bool printReferencedBy(const char* name
, SymbolTable::IndirectBindingSlot slot
);
101 class CStringEquals
{
103 bool operator()(const char* left
, const char* right
) const { return (strcmp(left
, right
) == 0); }
105 typedef __gnu_cxx::hash_set
<const char*, __gnu_cxx::hash
<const char*>, CStringEquals
> StringSet
;
109 bool operator()(const ld::Atom
* atom
) const {
110 return ! (atom
->live() || atom
->dontDeadStrip());
114 class AtomCoalescedAway
{
116 bool operator()(const ld::Atom
* atom
) const {
117 return atom
->coalescedAway();
121 const Options
& _options
;
122 const InputFiles
& _inputFiles
;
123 ld::Internal
& _internal
;
124 std::vector
<const ld::Atom
*> _atoms
;
125 std::set
<const ld::Atom
*> _deadStripRoots
;
126 std::vector
<const ld::Atom
*> _atomsWithUnresolvedReferences
;
127 SymbolTable _symbolTable
;
129 bool _addToFinalSection
;
130 bool _completedInitialObjectFiles
;
134 class DeadStripResolver
148 #endif // __RESOLVER_H__