df21e8696ce71c207ef32be7c46546e6d88e4b10
[oota-llvm.git] / include / llvm / Object / RelocVisitor.h
1 //===-- RelocVisitor.h - Visitor for object file relocations -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
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.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_OBJECT_RELOCVISITOR_H
17 #define LLVM_OBJECT_RELOCVISITOR_H
18
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Object/ObjectFile.h"
21 #include "llvm/Object/ELF.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/Support/ELF.h"
24 #include "llvm/Support/raw_ostream.h"
25
26 namespace llvm {
27 namespace object {
28
29 struct RelocToApply {
30   // The computed value after applying the relevant relocations.
31   int64_t Value;
32
33   // The width of the value; how many bytes to touch when applying the
34   // relocation.
35   char Width;
36   RelocToApply(const RelocToApply &In) : Value(In.Value), Width(In.Width) {}
37   RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {}
38   RelocToApply() : Value(0), Width(0) {}
39 };
40
41 /// @brief Base class for object file relocation visitors.
42 class RelocVisitor {
43 public:
44   explicit RelocVisitor(StringRef FileFormat)
45     : FileFormat(FileFormat), HasError(false) {}
46
47   // TODO: Should handle multiple applied relocations via either passing in the
48   // previously computed value or just count paired relocations as a single
49   // visit.
50   RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0,
51                      uint64_t Value = 0) {
52     if (FileFormat == "ELF64-x86-64") {
53       switch (RelocType) {
54         case llvm::ELF::R_X86_64_NONE:
55           return visitELF_X86_64_NONE(R);
56         case llvm::ELF::R_X86_64_64:
57           return visitELF_X86_64_64(R, Value);
58         case llvm::ELF::R_X86_64_PC32:
59           return visitELF_X86_64_PC32(R, Value, SecAddr);
60         case llvm::ELF::R_X86_64_32:
61           return visitELF_X86_64_32(R, Value);
62         case llvm::ELF::R_X86_64_32S:
63           return visitELF_X86_64_32S(R, Value);
64         default:
65           HasError = true;
66           return RelocToApply();
67       }
68     } else if (FileFormat == "ELF32-i386") {
69       switch (RelocType) {
70       case llvm::ELF::R_386_NONE:
71         return visitELF_386_NONE(R);
72       case llvm::ELF::R_386_32:
73         return visitELF_386_32(R, Value);
74       case llvm::ELF::R_386_PC32:
75         return visitELF_386_PC32(R, Value, SecAddr);
76       default:
77         HasError = true;
78         return RelocToApply();
79       }
80     } else if (FileFormat == "ELF64-ppc64") {
81       switch (RelocType) {
82       case llvm::ELF::R_PPC64_ADDR32:
83         return visitELF_PPC64_ADDR32(R, Value);
84       default:
85         HasError = true;
86         return RelocToApply();
87       }
88     } else if (FileFormat == "ELF32-mips") {
89       switch (RelocType) {
90       case llvm::ELF::R_MIPS_32:
91         return visitELF_MIPS_32(R, Value);
92       default:
93         HasError = true;
94         return RelocToApply();
95       }
96     } else if (FileFormat == "ELF64-aarch64") {
97       switch (RelocType) {
98       case llvm::ELF::R_AARCH64_ABS32:
99         return visitELF_AARCH64_ABS32(R, Value);
100       case llvm::ELF::R_AARCH64_ABS64:
101         return visitELF_AARCH64_ABS64(R, Value);
102       default:
103         HasError = true;
104         return RelocToApply();
105       }
106     } else if (FileFormat == "ELF64-s390") {
107       switch (RelocType) {
108       case llvm::ELF::R_390_32:
109         return visitELF_390_32(R, Value);
110       case llvm::ELF::R_390_64:
111         return visitELF_390_64(R, Value);
112       default:
113         HasError = true;
114         return RelocToApply();
115       }
116     }
117     HasError = true;
118     return RelocToApply();
119   }
120
121   bool error() { return HasError; }
122
123 private:
124   StringRef FileFormat;
125   bool HasError;
126
127   int64_t getAddend(RelocationRef R) {
128     int64_t Addend;
129     getELFRelocationAddend(R, Addend);
130     return Addend;
131   }
132
133   /// Operations
134
135   /// 386-ELF
136   RelocToApply visitELF_386_NONE(RelocationRef R) {
137     return RelocToApply(0, 0);
138   }
139
140   // Ideally the Addend here will be the addend in the data for
141   // the relocation. It's not actually the case for Rel relocations.
142   RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) {
143     int64_t Addend = getAddend(R);
144     return RelocToApply(Value + Addend, 4);
145   }
146
147   RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value,
148                                  uint64_t SecAddr) {
149     int64_t Addend = getAddend(R);
150     uint64_t Address;
151     R.getOffset(Address);
152     return RelocToApply(Value + Addend - Address, 4);
153   }
154
155   /// X86-64 ELF
156   RelocToApply visitELF_X86_64_NONE(RelocationRef R) {
157     return RelocToApply(0, 0);
158   }
159   RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) {
160     int64_t Addend = getAddend(R);
161     return RelocToApply(Value + Addend, 8);
162   }
163   RelocToApply visitELF_X86_64_PC32(RelocationRef R, uint64_t Value,
164                                     uint64_t SecAddr) {
165     int64_t Addend = getAddend(R);
166     uint64_t Address;
167     R.getOffset(Address);
168     return RelocToApply(Value + Addend - Address, 4);
169   }
170   RelocToApply visitELF_X86_64_32(RelocationRef R, uint64_t Value) {
171     int64_t Addend = getAddend(R);
172     uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
173     return RelocToApply(Res, 4);
174   }
175   RelocToApply visitELF_X86_64_32S(RelocationRef R, uint64_t Value) {
176     int64_t Addend = getAddend(R);
177     int32_t Res = (Value + Addend) & 0xFFFFFFFF;
178     return RelocToApply(Res, 4);
179   }
180
181   /// PPC64 ELF
182   RelocToApply visitELF_PPC64_ADDR32(RelocationRef R, uint64_t Value) {
183     int64_t Addend = getAddend(R);
184     uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
185     return RelocToApply(Res, 4);
186   }
187
188   /// MIPS ELF
189   RelocToApply visitELF_MIPS_32(RelocationRef R, uint64_t Value) {
190     int64_t Addend = getAddend(R);
191     uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
192     return RelocToApply(Res, 4);
193   }
194
195   // AArch64 ELF
196   RelocToApply visitELF_AARCH64_ABS32(RelocationRef R, uint64_t Value) {
197     int64_t Addend = getAddend(R);
198     int64_t Res =  Value + Addend;
199
200     // Overflow check allows for both signed and unsigned interpretation.
201     if (Res < INT32_MIN || Res > UINT32_MAX)
202       HasError = true;
203
204     return RelocToApply(static_cast<uint32_t>(Res), 4);
205   }
206
207   RelocToApply visitELF_AARCH64_ABS64(RelocationRef R, uint64_t Value) {
208     int64_t Addend = getAddend(R);
209     return RelocToApply(Value + Addend, 8);
210   }
211
212   // SystemZ ELF
213   RelocToApply visitELF_390_32(RelocationRef R, uint64_t Value) {
214     int64_t Addend = getAddend(R);
215     int64_t Res = Value + Addend;
216
217     // Overflow check allows for both signed and unsigned interpretation.
218     if (Res < INT32_MIN || Res > UINT32_MAX)
219       HasError = true;
220
221     return RelocToApply(static_cast<uint32_t>(Res), 4);
222   }
223
224   RelocToApply visitELF_390_64(RelocationRef R, uint64_t Value) {
225     int64_t Addend = getAddend(R);
226     return RelocToApply(Value + Addend, 8);
227   }
228 };
229
230 }
231 }
232 #endif