blob: f3530aff5526c9d4ceaa982e0517d400af70cf01 (
plain)
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
|
//===- lib/ReaderWriter/ELF/X86/X86TargetHandler.h ------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_READER_WRITER_ELF_X86_TARGET_HANDLER_H
#define LLD_READER_WRITER_ELF_X86_TARGET_HANDLER_H
#include "DefaultTargetHandler.h"
#include "TargetLayout.h"
#include "X86ELFFile.h"
#include "X86ELFReader.h"
#include "X86RelocationHandler.h"
namespace lld {
namespace elf {
class X86LinkingContext;
template <class ELFT> class X86TargetLayout : public TargetLayout<ELFT> {
public:
X86TargetLayout(X86LinkingContext &ctx) : TargetLayout<ELFT>(ctx) {}
};
class X86TargetHandler final
: public DefaultTargetHandler<X86ELFType> {
public:
X86TargetHandler(X86LinkingContext &ctx);
void registerRelocationNames(Registry ®istry) override;
const X86TargetRelocationHandler &getRelocationHandler() const override {
return *_x86RelocationHandler;
}
std::unique_ptr<Reader> getObjReader() override {
return llvm::make_unique<X86ELFObjectReader>(_ctx);
}
std::unique_ptr<Reader> getDSOReader() override {
return llvm::make_unique<X86ELFDSOReader>(_ctx);
}
std::unique_ptr<Writer> getWriter() override;
protected:
static const Registry::KindStrings kindStrings[];
X86LinkingContext &_ctx;
std::unique_ptr<X86TargetLayout<X86ELFType>> _x86TargetLayout;
std::unique_ptr<X86TargetRelocationHandler> _x86RelocationHandler;
};
} // end namespace elf
} // end namespace lld
#endif
|