blob: 5476a46b71a026eff18d5a5e45d2957413e95b89 [file] [log] [blame]
Rafael Espindola76097852011-12-22 01:06:53 +00001//===-- ARMELFObjectWriter.cpp - ARM ELF Writer ---------------------------===//
Rafael Espindola69bbda02011-12-22 00:37:50 +00002//
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#include "MCTargetDesc/ARMFixupKinds.h"
11#include "MCTargetDesc/ARMMCTargetDesc.h"
12#include "llvm/Support/Debug.h"
13#include "llvm/Support/ErrorHandling.h"
14#include "llvm/ADT/Statistic.h"
15#include "llvm/ADT/StringSwitch.h"
16#include "llvm/MC/MCELFObjectWriter.h"
17#include "llvm/MC/MCExpr.h"
18#include "llvm/MC/MCSectionELF.h"
19#include "llvm/MC/MCValue.h"
20
21using namespace llvm;
22
23namespace {
24 class ARMELFObjectWriter : public MCELFObjectTargetWriter {
25 enum { DefaultEABIVersion = 0x05000000U };
Rafael Espindola69bbda02011-12-22 00:37:50 +000026 unsigned GetRelocTypeInner(const MCValue &Target,
27 const MCFixup &Fixup,
28 bool IsPCRel) const;
29
30
31 public:
32 ARMELFObjectWriter(uint8_t OSABI);
33
34 virtual ~ARMELFObjectWriter();
Rafael Espindola6db2d9262011-12-22 02:58:12 +000035
Rafael Espindola69bbda02011-12-22 00:37:50 +000036 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
37 bool IsPCRel, bool IsRelocWithSymbol,
38 int64_t Addend) const;
39 virtual unsigned getEFlags() const;
Rafael Espindola6db2d9262011-12-22 02:58:12 +000040 virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
41 const MCValue &Target,
42 const MCFragment &F,
43 const MCFixup &Fixup,
44 bool IsPCRel) const;
Rafael Espindola69bbda02011-12-22 00:37:50 +000045 };
46}
47
48ARMELFObjectWriter::ARMELFObjectWriter(uint8_t OSABI)
49 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSABI,
50 ELF::EM_ARM,
51 /*HasRelocationAddend*/ false) {}
52
53ARMELFObjectWriter::~ARMELFObjectWriter() {}
54
55// FIXME: get the real EABI Version from the Triple.
56unsigned ARMELFObjectWriter::getEFlags() const {
57 return ELF::EF_ARM_EABIMASK & DefaultEABIVersion;
58}
59
60// In ARM, _MergedGlobals and other most symbols get emitted directly.
61// I.e. not as an offset to a section symbol.
62// This code is an approximation of what ARM/gcc does.
63
64STATISTIC(PCRelCount, "Total number of PIC Relocations");
65STATISTIC(NonPCRelCount, "Total number of non-PIC relocations");
66
67const MCSymbol *ARMELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
68 const MCValue &Target,
69 const MCFragment &F,
70 const MCFixup &Fixup,
71 bool IsPCRel) const {
James Molloy2d8955a2012-01-28 15:58:32 +000072 const MCSymbol &Symbol = Target.getSymA()->getSymbol().AliasedSymbol();
Rafael Espindola69bbda02011-12-22 00:37:50 +000073 bool EmitThisSym = false;
74
75 const MCSectionELF &Section =
76 static_cast<const MCSectionELF&>(Symbol.getSection());
77 bool InNormalSection = true;
78 unsigned RelocType = 0;
79 RelocType = GetRelocTypeInner(Target, Fixup, IsPCRel);
80
81 DEBUG(
82 const MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
83 MCSymbolRefExpr::VariantKind Kind2;
84 Kind2 = Target.getSymB() ? Target.getSymB()->getKind() :
85 MCSymbolRefExpr::VK_None;
86 dbgs() << "considering symbol "
87 << Section.getSectionName() << "/"
88 << Symbol.getName() << "/"
89 << " Rel:" << (unsigned)RelocType
90 << " Kind: " << (int)Kind << "/" << (int)Kind2
91 << " Tmp:"
92 << Symbol.isAbsolute() << "/" << Symbol.isDefined() << "/"
93 << Symbol.isVariable() << "/" << Symbol.isTemporary()
94 << " Counts:" << PCRelCount << "/" << NonPCRelCount << "\n");
95
96 if (IsPCRel) { ++PCRelCount;
97 switch (RelocType) {
98 default:
99 // Most relocation types are emitted as explicit symbols
100 InNormalSection =
101 StringSwitch<bool>(Section.getSectionName())
102 .Case(".data.rel.ro.local", false)
103 .Case(".data.rel", false)
104 .Case(".bss", false)
105 .Default(true);
106 EmitThisSym = true;
107 break;
108 case ELF::R_ARM_ABS32:
109 // But things get strange with R_ARM_ABS32
110 // In this case, most things that go in .rodata show up
111 // as section relative relocations
112 InNormalSection =
113 StringSwitch<bool>(Section.getSectionName())
114 .Case(".data.rel.ro.local", false)
115 .Case(".data.rel", false)
116 .Case(".rodata", false)
117 .Case(".bss", false)
118 .Default(true);
119 EmitThisSym = false;
120 break;
121 }
122 } else {
123 NonPCRelCount++;
124 InNormalSection =
125 StringSwitch<bool>(Section.getSectionName())
126 .Case(".data.rel.ro.local", false)
127 .Case(".rodata", false)
128 .Case(".data.rel", false)
129 .Case(".bss", false)
130 .Default(true);
131
132 switch (RelocType) {
133 default: EmitThisSym = true; break;
134 case ELF::R_ARM_ABS32: EmitThisSym = false; break;
135 }
136 }
137
138 if (EmitThisSym)
139 return &Symbol;
140 if (! Symbol.isTemporary() && InNormalSection) {
141 return &Symbol;
142 }
143 return NULL;
144}
145
146// Need to examine the Fixup when determining whether to
147// emit the relocation as an explicit symbol or as a section relative
148// offset
149unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target,
150 const MCFixup &Fixup,
151 bool IsPCRel,
152 bool IsRelocWithSymbol,
153 int64_t Addend) const {
154 return GetRelocTypeInner(Target, Fixup, IsPCRel);
155}
156
157unsigned ARMELFObjectWriter::GetRelocTypeInner(const MCValue &Target,
158 const MCFixup &Fixup,
159 bool IsPCRel) const {
160 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
161 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
162
163 unsigned Type = 0;
164 if (IsPCRel) {
165 switch ((unsigned)Fixup.getKind()) {
Craig Topperbc219812012-02-07 02:50:20 +0000166 default: llvm_unreachable("Unimplemented");
Rafael Espindola69bbda02011-12-22 00:37:50 +0000167 case FK_Data_4:
168 switch (Modifier) {
169 default: llvm_unreachable("Unsupported Modifier");
170 case MCSymbolRefExpr::VK_None:
171 Type = ELF::R_ARM_REL32;
172 break;
173 case MCSymbolRefExpr::VK_ARM_TLSGD:
Craig Topperbc219812012-02-07 02:50:20 +0000174 llvm_unreachable("unimplemented");
Rafael Espindola69bbda02011-12-22 00:37:50 +0000175 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
176 Type = ELF::R_ARM_TLS_IE32;
177 break;
178 }
179 break;
Jim Grosbach7b25ecf2012-02-27 21:36:23 +0000180 case ARM::fixup_arm_bl:
181 case ARM::fixup_arm_blx:
Rafael Espindola69bbda02011-12-22 00:37:50 +0000182 case ARM::fixup_arm_uncondbranch:
183 switch (Modifier) {
184 case MCSymbolRefExpr::VK_ARM_PLT:
185 Type = ELF::R_ARM_PLT32;
186 break;
187 default:
188 Type = ELF::R_ARM_CALL;
189 break;
190 }
191 break;
192 case ARM::fixup_arm_condbranch:
193 Type = ELF::R_ARM_JUMP24;
194 break;
195 case ARM::fixup_arm_movt_hi16:
196 case ARM::fixup_arm_movt_hi16_pcrel:
197 Type = ELF::R_ARM_MOVT_PREL;
198 break;
199 case ARM::fixup_arm_movw_lo16:
200 case ARM::fixup_arm_movw_lo16_pcrel:
201 Type = ELF::R_ARM_MOVW_PREL_NC;
202 break;
203 case ARM::fixup_t2_movt_hi16:
204 case ARM::fixup_t2_movt_hi16_pcrel:
205 Type = ELF::R_ARM_THM_MOVT_PREL;
206 break;
207 case ARM::fixup_t2_movw_lo16:
208 case ARM::fixup_t2_movw_lo16_pcrel:
209 Type = ELF::R_ARM_THM_MOVW_PREL_NC;
210 break;
211 case ARM::fixup_arm_thumb_bl:
212 case ARM::fixup_arm_thumb_blx:
Rafael Espindolab975c272011-12-22 21:36:43 +0000213 Type = ELF::R_ARM_THM_CALL;
Rafael Espindola69bbda02011-12-22 00:37:50 +0000214 break;
215 }
216 } else {
217 switch ((unsigned)Fixup.getKind()) {
218 default: llvm_unreachable("invalid fixup kind!");
219 case FK_Data_4:
220 switch (Modifier) {
David Blaikie4d6ccb52012-01-20 21:51:11 +0000221 default: llvm_unreachable("Unsupported Modifier");
Rafael Espindola69bbda02011-12-22 00:37:50 +0000222 case MCSymbolRefExpr::VK_ARM_GOT:
223 Type = ELF::R_ARM_GOT_BREL;
224 break;
225 case MCSymbolRefExpr::VK_ARM_TLSGD:
226 Type = ELF::R_ARM_TLS_GD32;
227 break;
228 case MCSymbolRefExpr::VK_ARM_TPOFF:
229 Type = ELF::R_ARM_TLS_LE32;
230 break;
231 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
232 Type = ELF::R_ARM_TLS_IE32;
233 break;
234 case MCSymbolRefExpr::VK_None:
235 Type = ELF::R_ARM_ABS32;
236 break;
237 case MCSymbolRefExpr::VK_ARM_GOTOFF:
238 Type = ELF::R_ARM_GOTOFF32;
239 break;
James Molloy34982572012-01-26 09:25:43 +0000240 case MCSymbolRefExpr::VK_ARM_TARGET1:
241 Type = ELF::R_ARM_TARGET1;
242 break;
243 }
Rafael Espindola69bbda02011-12-22 00:37:50 +0000244 break;
245 case ARM::fixup_arm_ldst_pcrel_12:
246 case ARM::fixup_arm_pcrel_10:
247 case ARM::fixup_arm_adr_pcrel_12:
248 case ARM::fixup_arm_thumb_bl:
249 case ARM::fixup_arm_thumb_cb:
250 case ARM::fixup_arm_thumb_cp:
251 case ARM::fixup_arm_thumb_br:
Craig Topperbc219812012-02-07 02:50:20 +0000252 llvm_unreachable("Unimplemented");
Rafael Espindola69bbda02011-12-22 00:37:50 +0000253 case ARM::fixup_arm_uncondbranch:
254 Type = ELF::R_ARM_CALL;
255 break;
256 case ARM::fixup_arm_condbranch:
257 Type = ELF::R_ARM_JUMP24;
258 break;
259 case ARM::fixup_arm_movt_hi16:
260 Type = ELF::R_ARM_MOVT_ABS;
261 break;
262 case ARM::fixup_arm_movw_lo16:
263 Type = ELF::R_ARM_MOVW_ABS_NC;
264 break;
265 case ARM::fixup_t2_movt_hi16:
266 Type = ELF::R_ARM_THM_MOVT_ABS;
267 break;
268 case ARM::fixup_t2_movw_lo16:
269 Type = ELF::R_ARM_THM_MOVW_ABS_NC;
270 break;
271 }
272 }
273
274 return Type;
275}
276
277MCObjectWriter *llvm::createARMELFObjectWriter(raw_ostream &OS,
278 uint8_t OSABI) {
279 MCELFObjectTargetWriter *MOTW = new ARMELFObjectWriter(OSABI);
280 return createELFObjectWriter(MOTW, OS, /*IsLittleEndian=*/true);
281}