1 //===-- RelocVisitor.h - Visitor for object file relocations -*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file provides a wrapper around all the different types of relocations
11 // in different file formats, such that a client can handle them in a unified
12 // manner by only implementing a minimal number of functions.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_OBJECT_RELOCVISITOR_H
17 #define LLVM_OBJECT_RELOCVISITOR_H
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Object/ObjectFile.h"
21 #include "llvm/Support/Debug.h"
22 #include "llvm/Support/ELF.h"
23 #include "llvm/Support/raw_ostream.h"
29 // The computed value after applying the relevant relocations.
32 // The width of the value; how many bytes to touch when applying the
35 RelocToApply(const RelocToApply &In) : Value(In.Value), Width(In.Width) {}
36 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {}
37 RelocToApply() : Value(0), Width(0) {}
40 /// @brief Base class for object file relocation visitors.
43 explicit RelocVisitor(StringRef FileFormat)
44 : FileFormat(FileFormat), HasError(false) {}
46 // TODO: Should handle multiple applied relocations via either passing in the
47 // previously computed value or just count paired relocations as a single
49 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0,
51 if (FileFormat == "ELF64-x86-64") {
53 case llvm::ELF::R_X86_64_NONE:
54 return visitELF_X86_64_NONE(R);
55 case llvm::ELF::R_X86_64_64:
56 return visitELF_X86_64_64(R, Value);
57 case llvm::ELF::R_X86_64_PC32:
58 return visitELF_X86_64_PC32(R, Value, SecAddr);
59 case llvm::ELF::R_X86_64_32:
60 return visitELF_X86_64_32(R, Value);
61 case llvm::ELF::R_X86_64_32S:
62 return visitELF_X86_64_32S(R, Value);
65 return RelocToApply();
67 } else if (FileFormat == "ELF32-i386") {
69 case llvm::ELF::R_386_NONE:
70 return visitELF_386_NONE(R);
71 case llvm::ELF::R_386_32:
72 return visitELF_386_32(R, Value);
73 case llvm::ELF::R_386_PC32:
74 return visitELF_386_PC32(R, Value, SecAddr);
77 return RelocToApply();
80 return RelocToApply();
83 bool error() { return HasError; }
92 RelocToApply visitELF_386_NONE(RelocationRef R) {
93 return RelocToApply(0, 0);
96 // Ideally the Addend here will be the addend in the data for
97 // the relocation. It's not actually the case for Rel relocations.
98 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) {
100 R.getAdditionalInfo(Addend);
101 return RelocToApply(Value + Addend, 4);
104 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value,
107 R.getAdditionalInfo(Addend);
109 R.getAddress(Address);
110 return RelocToApply(Value + Addend - Address, 4);
114 RelocToApply visitELF_X86_64_NONE(RelocationRef R) {
115 return RelocToApply(0, 0);
117 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) {
119 R.getAdditionalInfo(Addend);
120 return RelocToApply(Value + Addend, 8);
122 RelocToApply visitELF_X86_64_PC32(RelocationRef R, uint64_t Value,
125 R.getAdditionalInfo(Addend);
127 R.getAddress(Address);
128 return RelocToApply(Value + Addend - Address, 4);
130 RelocToApply visitELF_X86_64_32(RelocationRef R, uint64_t Value) {
132 R.getAdditionalInfo(Addend);
133 uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
134 return RelocToApply(Res, 4);
136 RelocToApply visitELF_X86_64_32S(RelocationRef R, uint64_t Value) {
138 R.getAdditionalInfo(Addend);
139 int32_t Res = (Value + Addend) & 0xFFFFFFFF;
140 return RelocToApply(Res, 4);