2012-06-01 06:34:00 +08:00
|
|
|
//===- 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/SharedLibraryAtom.h"
|
|
|
|
#include "lld/Core/File.h"
|
|
|
|
#include "lld/Core/Reference.h"
|
|
|
|
#include "lld/Core/Pass.h"
|
2013-01-25 06:52:25 +08:00
|
|
|
#include "lld/ReaderWriter/Simple.h"
|
2012-06-01 06:34:00 +08:00
|
|
|
|
|
|
|
#include "ReferenceKinds.h"
|
|
|
|
#include "StubAtoms.hpp"
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace mach_o {
|
|
|
|
|
|
|
|
|
|
|
|
class StubsPass : public lld::StubsPass {
|
|
|
|
public:
|
2013-01-23 09:18:43 +08:00
|
|
|
StubsPass(const MachOTargetInfo &ti)
|
2013-01-25 15:39:18 +08:00
|
|
|
: _targetInfo(ti)
|
2013-04-05 02:59:24 +08:00
|
|
|
, _kindHandler(_targetInfo.kindHandler())
|
2013-01-25 15:39:18 +08:00
|
|
|
, _file(ti)
|
|
|
|
, _helperCommonAtom(nullptr)
|
|
|
|
, _helperCacheAtom(nullptr)
|
|
|
|
, _helperBinderAtom(nullptr) {
|
2012-06-01 06:34:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool noTextRelocs() {
|
2013-04-05 02:59:24 +08:00
|
|
|
return true;
|
2012-06-01 06:34:00 +08:00
|
|
|
}
|
|
|
|
|
2013-01-23 09:18:43 +08:00
|
|
|
virtual bool isCallSite(int32_t kind) {
|
2013-04-05 02:59:24 +08:00
|
|
|
return _kindHandler.isCallSite(kind);
|
2012-06-01 06:34:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2013-04-05 02:59:24 +08:00
|
|
|
switch (_targetInfo.arch()) {
|
|
|
|
case MachOTargetInfo::arch_x86_64:
|
2012-06-01 06:34:00 +08:00
|
|
|
return makeStub_x86_64(target);
|
2013-04-05 02:59:24 +08:00
|
|
|
case MachOTargetInfo::arch_x86:
|
2012-06-01 06:34:00 +08:00
|
|
|
return makeStub_x86(target);
|
2013-04-05 02:59:24 +08:00
|
|
|
case MachOTargetInfo::arch_armv6:
|
|
|
|
case MachOTargetInfo::arch_armv7:
|
|
|
|
case MachOTargetInfo::arch_armv7s:
|
2012-06-01 06:34:00 +08:00
|
|
|
return makeStub_arm(target);
|
2013-01-23 09:18:43 +08:00
|
|
|
default:
|
2013-04-05 02:59:24 +08:00
|
|
|
llvm_unreachable("Unknown mach-o arch");
|
2012-06-01 06:34:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2012-06-12 06:53:15 +08:00
|
|
|
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;
|
2012-06-01 06:34:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const DefinedAtom* makeStub_arm(const Atom& target) {
|
|
|
|
assert(0 && "stubs not yet implemented for arm");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-12 10:45:54 +08:00
|
|
|
virtual void addStubAtoms(MutableFile &mergedFile) {
|
2012-07-31 04:10:46 +08:00
|
|
|
// Exit early if no stubs needed.
|
|
|
|
if ( _targetToStub.size() == 0 )
|
|
|
|
return;
|
2012-06-01 06:34:00 +08:00
|
|
|
// 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:
|
2013-01-25 15:39:18 +08:00
|
|
|
File(const MachOTargetInfo &ti) : SimpleFile(ti, "MachO Stubs pass") {
|
|
|
|
}
|
2012-06-01 06:34:00 +08:00
|
|
|
};
|
|
|
|
|
2013-01-23 09:18:43 +08:00
|
|
|
const MachOTargetInfo &_targetInfo;
|
2013-04-05 02:59:24 +08:00
|
|
|
mach_o::KindHandler &_kindHandler;
|
2012-06-01 06:34:00 +08:00
|
|
|
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_
|