blob: eeee26bf7c3df4fd1fd839843ed8e9cf43b9e1ad (
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
|
//===- 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"
namespace lld {
namespace elf {
typedef llvm::object::ELFType<llvm::support::little, 4, false> X86ELFType;
class X86TargetInfo;
class X86TargetRelocationHandler LLVM_FINAL
: public TargetRelocationHandler<X86ELFType> {
public:
X86TargetRelocationHandler(const X86TargetInfo &ti) : _targetInfo(ti) {}
virtual ErrorOr<void> applyRelocation(ELFWriter &, llvm::FileOutputBuffer &,
const AtomLayout &,
const Reference &)const;
private:
const X86TargetInfo &_targetInfo;
};
class X86TargetHandler LLVM_FINAL
: public DefaultTargetHandler<X86ELFType> {
public:
X86TargetHandler(X86TargetInfo &targetInfo);
virtual TargetLayout<X86ELFType> &targetLayout() {
return _targetLayout;
}
virtual const X86TargetRelocationHandler &getRelocationHandler() const {
return _relocationHandler;
}
private:
X86TargetRelocationHandler _relocationHandler;
TargetLayout<X86ELFType> _targetLayout;
};
} // end namespace elf
} // end namespace lld
#endif
|