blob: b77181f29b2d09f5b47f54f60e9abae806ea5bcb [file] [log] [blame]
Jim Grosbach2354f872011-06-22 20:14:52 +00001//===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===//
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
Chandler Carruthed0881b2012-12-03 16:50:05 +000010#include "MCTargetDesc/ARMMCTargetDesc.h"
Evan Chengad5f4852011-07-23 00:00:19 +000011#include "MCTargetDesc/ARMBaseInfo.h"
12#include "MCTargetDesc/ARMFixupKinds.h"
Jim Grosbach28fcafb2011-06-24 23:44:37 +000013#include "llvm/ADT/Twine.h"
Jim Grosbach28fcafb2011-06-24 23:44:37 +000014#include "llvm/MC/MCAsmLayout.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/MC/MCAssembler.h"
Jim Grosbach5e5eabb2012-01-26 23:20:15 +000016#include "llvm/MC/MCContext.h"
Jim Grosbach28fcafb2011-06-24 23:44:37 +000017#include "llvm/MC/MCExpr.h"
18#include "llvm/MC/MCFixup.h"
19#include "llvm/MC/MCFixupKindInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/MC/MCMachObjectWriter.h"
Rafael Espindola6e6820a2015-05-25 14:12:48 +000021#include "llvm/MC/MCSection.h"
Jim Grosbach28fcafb2011-06-24 23:44:37 +000022#include "llvm/MC/MCValue.h"
Jim Grosbach28fcafb2011-06-24 23:44:37 +000023#include "llvm/Support/ErrorHandling.h"
Charles Davis8bdfafd2013-09-01 04:28:48 +000024#include "llvm/Support/MachO.h"
Jim Grosbach2354f872011-06-22 20:14:52 +000025using namespace llvm;
26
27namespace {
28class ARMMachObjectWriter : public MCMachObjectTargetWriter {
Jim Grosbach28fcafb2011-06-24 23:44:37 +000029 void RecordARMScatteredRelocation(MachObjectWriter *Writer,
30 const MCAssembler &Asm,
31 const MCAsmLayout &Layout,
32 const MCFragment *Fragment,
33 const MCFixup &Fixup,
34 MCValue Target,
Tim Northover1bc367a2014-07-04 10:58:05 +000035 unsigned Type,
Jim Grosbach28fcafb2011-06-24 23:44:37 +000036 unsigned Log2Size,
37 uint64_t &FixedValue);
Jim Grosbach997614f2012-03-20 17:25:45 +000038 void RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
39 const MCAssembler &Asm,
40 const MCAsmLayout &Layout,
41 const MCFragment *Fragment,
42 const MCFixup &Fixup, MCValue Target,
43 uint64_t &FixedValue);
Jim Grosbach28fcafb2011-06-24 23:44:37 +000044
Jim Grosbachdf8ed712012-09-25 18:07:17 +000045 bool requiresExternRelocation(MachObjectWriter *Writer,
46 const MCAssembler &Asm,
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +000047 const MCFragment &Fragment, unsigned RelocType,
48 const MCSymbol &S, uint64_t FixedValue);
Jim Grosbachdf8ed712012-09-25 18:07:17 +000049
Jim Grosbach2354f872011-06-22 20:14:52 +000050public:
Jim Grosbach7c76b4c2015-06-04 20:27:42 +000051 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype)
52 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
Jim Grosbach28fcafb2011-06-24 23:44:37 +000053
Jim Grosbach36e60e92015-06-04 22:24:41 +000054 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
Rafael Espindola26585542015-01-19 21:11:14 +000055 const MCAsmLayout &Layout, const MCFragment *Fragment,
56 const MCFixup &Fixup, MCValue Target,
57 uint64_t &FixedValue) override;
Jim Grosbach2354f872011-06-22 20:14:52 +000058};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000059}
Jim Grosbach2354f872011-06-22 20:14:52 +000060
Jim Grosbach28fcafb2011-06-24 23:44:37 +000061static bool getARMFixupKindMachOInfo(unsigned Kind, unsigned &RelocType,
62 unsigned &Log2Size) {
Charles Davis8bdfafd2013-09-01 04:28:48 +000063 RelocType = unsigned(MachO::ARM_RELOC_VANILLA);
Jim Grosbach28fcafb2011-06-24 23:44:37 +000064 Log2Size = ~0U;
65
66 switch (Kind) {
67 default:
68 return false;
69
70 case FK_Data_1:
71 Log2Size = llvm::Log2_32(1);
72 return true;
73 case FK_Data_2:
74 Log2Size = llvm::Log2_32(2);
75 return true;
76 case FK_Data_4:
77 Log2Size = llvm::Log2_32(4);
78 return true;
79 case FK_Data_8:
80 Log2Size = llvm::Log2_32(8);
81 return true;
82
Kevin Enderby651898c2013-12-13 22:46:54 +000083 // These fixups are expected to always be resolvable at assembly time and
84 // have no relocations supported.
Jim Grosbach28fcafb2011-06-24 23:44:37 +000085 case ARM::fixup_arm_ldst_pcrel_12:
86 case ARM::fixup_arm_pcrel_10:
87 case ARM::fixup_arm_adr_pcrel_12:
Tim Northover42335572015-04-06 18:44:42 +000088 case ARM::fixup_arm_thumb_br:
Kevin Enderby651898c2013-12-13 22:46:54 +000089 return false;
90
91 // Handle 24-bit branch kinds.
Jim Grosbach28fcafb2011-06-24 23:44:37 +000092 case ARM::fixup_arm_condbranch:
93 case ARM::fixup_arm_uncondbranch:
James Molloyfb5cd602012-03-30 09:15:32 +000094 case ARM::fixup_arm_uncondbl:
95 case ARM::fixup_arm_condbl:
Jim Grosbach7b811d32012-02-27 21:36:23 +000096 case ARM::fixup_arm_blx:
Charles Davis8bdfafd2013-09-01 04:28:48 +000097 RelocType = unsigned(MachO::ARM_RELOC_BR24);
Jim Grosbach28fcafb2011-06-24 23:44:37 +000098 // Report as 'long', even though that is not quite accurate.
99 Log2Size = llvm::Log2_32(4);
100 return true;
101
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000102 case ARM::fixup_t2_uncondbranch:
103 case ARM::fixup_arm_thumb_bl:
104 case ARM::fixup_arm_thumb_blx:
Charles Davis8bdfafd2013-09-01 04:28:48 +0000105 RelocType = unsigned(MachO::ARM_THUMB_RELOC_BR22);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000106 Log2Size = llvm::Log2_32(4);
107 return true;
108
Jim Grosbach997614f2012-03-20 17:25:45 +0000109 // For movw/movt r_type relocations they always have a pair following them and
110 // the r_length bits are used differently. The encoding of the r_length is as
111 // follows:
112 // low bit of r_length:
113 // 0 - :lower16: for movw instructions
114 // 1 - :upper16: for movt instructions
115 // high bit of r_length:
116 // 0 - arm instructions
117 // 1 - thumb instructions
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000118 case ARM::fixup_arm_movt_hi16:
Charles Davis8bdfafd2013-09-01 04:28:48 +0000119 RelocType = unsigned(MachO::ARM_RELOC_HALF);
Jim Grosbach997614f2012-03-20 17:25:45 +0000120 Log2Size = 1;
121 return true;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000122 case ARM::fixup_t2_movt_hi16:
Charles Davis8bdfafd2013-09-01 04:28:48 +0000123 RelocType = unsigned(MachO::ARM_RELOC_HALF);
Jim Grosbach997614f2012-03-20 17:25:45 +0000124 Log2Size = 3;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000125 return true;
126
127 case ARM::fixup_arm_movw_lo16:
Charles Davis8bdfafd2013-09-01 04:28:48 +0000128 RelocType = unsigned(MachO::ARM_RELOC_HALF);
Jim Grosbach997614f2012-03-20 17:25:45 +0000129 Log2Size = 0;
130 return true;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000131 case ARM::fixup_t2_movw_lo16:
Charles Davis8bdfafd2013-09-01 04:28:48 +0000132 RelocType = unsigned(MachO::ARM_RELOC_HALF);
Jim Grosbach997614f2012-03-20 17:25:45 +0000133 Log2Size = 2;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000134 return true;
135 }
136}
137
138void ARMMachObjectWriter::
Jim Grosbach997614f2012-03-20 17:25:45 +0000139RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
140 const MCAssembler &Asm,
141 const MCAsmLayout &Layout,
142 const MCFragment *Fragment,
143 const MCFixup &Fixup,
144 MCValue Target,
145 uint64_t &FixedValue) {
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000146 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
147 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
Charles Davis8bdfafd2013-09-01 04:28:48 +0000148 unsigned Type = MachO::ARM_RELOC_HALF;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000149
150 // See <reloc.h>.
151 const MCSymbol *A = &Target.getSymA()->getSymbol();
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000152
Oliver Stannard9be59af2015-11-17 10:00:43 +0000153 if (!A->getFragment()) {
154 Asm.getContext().reportError(Fixup.getLoc(),
Jim Grosbach20275a82012-01-27 00:37:12 +0000155 "symbol '" + A->getName() +
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000156 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000157 return;
158 }
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000159
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000160 uint32_t Value = Writer->getSymbolAddress(*A, Layout);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000161 uint32_t Value2 = 0;
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000162 uint64_t SecAddr = Writer->getSectionAddress(A->getFragment()->getParent());
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000163 FixedValue += SecAddr;
164
165 if (const MCSymbolRefExpr *B = Target.getSymB()) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000166 const MCSymbol *SB = &B->getSymbol();
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000167
Oliver Stannard9be59af2015-11-17 10:00:43 +0000168 if (!SB->getFragment()) {
169 Asm.getContext().reportError(Fixup.getLoc(),
Jim Grosbach20275a82012-01-27 00:37:12 +0000170 "symbol '" + B->getSymbol().getName() +
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000171 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000172 return;
173 }
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000174
175 // Select the appropriate difference relocation type.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000176 Type = MachO::ARM_RELOC_HALF_SECTDIFF;
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000177 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout);
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000178 FixedValue -= Writer->getSectionAddress(SB->getFragment()->getParent());
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000179 }
180
181 // Relocations are written out in reverse order, so the PAIR comes first.
182 // ARM_RELOC_HALF and ARM_RELOC_HALF_SECTDIFF abuse the r_length field:
183 //
184 // For these two r_type relocations they always have a pair following them and
185 // the r_length bits are used differently. The encoding of the r_length is as
186 // follows:
187 // low bit of r_length:
188 // 0 - :lower16: for movw instructions
189 // 1 - :upper16: for movt instructions
190 // high bit of r_length:
191 // 0 - arm instructions
192 // 1 - thumb instructions
193 // the other half of the relocated expression is in the following pair
Sylvestre Ledru35521e22012-07-23 08:51:15 +0000194 // relocation entry in the low 16 bits of r_address field.
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000195 unsigned ThumbBit = 0;
196 unsigned MovtBit = 0;
197 switch ((unsigned)Fixup.getKind()) {
198 default: break;
199 case ARM::fixup_arm_movt_hi16:
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000200 MovtBit = 1;
Jim Grosbachae913222011-11-29 01:15:25 +0000201 // The thumb bit shouldn't be set in the 'other-half' bit of the
202 // relocation, but it will be set in FixedValue if the base symbol
203 // is a thumb function. Clear it out here.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000204 if (Asm.isThumbFunc(A))
Jim Grosbachae913222011-11-29 01:15:25 +0000205 FixedValue &= 0xfffffffe;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000206 break;
207 case ARM::fixup_t2_movt_hi16:
Rafael Espindolab60c8292014-04-29 12:46:50 +0000208 if (Asm.isThumbFunc(A))
Jim Grosbachae913222011-11-29 01:15:25 +0000209 FixedValue &= 0xfffffffe;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000210 MovtBit = 1;
Justin Bognerb03fd122016-08-17 05:10:15 +0000211 LLVM_FALLTHROUGH;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000212 case ARM::fixup_t2_movw_lo16:
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000213 ThumbBit = 1;
214 break;
215 }
216
Charles Davis8bdfafd2013-09-01 04:28:48 +0000217 if (Type == MachO::ARM_RELOC_HALF_SECTDIFF) {
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000218 uint32_t OtherHalf = MovtBit
219 ? (FixedValue & 0xffff) : ((FixedValue & 0xffff0000) >> 16);
220
Charles Davis8bdfafd2013-09-01 04:28:48 +0000221 MachO::any_relocation_info MRE;
222 MRE.r_word0 = ((OtherHalf << 0) |
223 (MachO::ARM_RELOC_PAIR << 24) |
224 (MovtBit << 28) |
225 (ThumbBit << 29) |
226 (IsPCRel << 30) |
227 MachO::R_SCATTERED);
228 MRE.r_word1 = Value2;
Rafael Espindola61e724a2015-05-26 01:15:30 +0000229 Writer->addRelocation(nullptr, Fragment->getParent(), MRE);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000230 }
231
Charles Davis8bdfafd2013-09-01 04:28:48 +0000232 MachO::any_relocation_info MRE;
233 MRE.r_word0 = ((FixupOffset << 0) |
234 (Type << 24) |
235 (MovtBit << 28) |
236 (ThumbBit << 29) |
237 (IsPCRel << 30) |
238 MachO::R_SCATTERED);
239 MRE.r_word1 = Value;
Rafael Espindola61e724a2015-05-26 01:15:30 +0000240 Writer->addRelocation(nullptr, Fragment->getParent(), MRE);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000241}
242
243void ARMMachObjectWriter::RecordARMScatteredRelocation(MachObjectWriter *Writer,
244 const MCAssembler &Asm,
245 const MCAsmLayout &Layout,
246 const MCFragment *Fragment,
247 const MCFixup &Fixup,
248 MCValue Target,
Tim Northover1bc367a2014-07-04 10:58:05 +0000249 unsigned Type,
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000250 unsigned Log2Size,
251 uint64_t &FixedValue) {
252 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
253 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000254
255 // See <reloc.h>.
256 const MCSymbol *A = &Target.getSymA()->getSymbol();
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000257
Oliver Stannard9be59af2015-11-17 10:00:43 +0000258 if (!A->getFragment()) {
259 Asm.getContext().reportError(Fixup.getLoc(),
Jim Grosbach20275a82012-01-27 00:37:12 +0000260 "symbol '" + A->getName() +
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000261 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000262 return;
263 }
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000264
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000265 uint32_t Value = Writer->getSymbolAddress(*A, Layout);
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000266 uint64_t SecAddr = Writer->getSectionAddress(A->getFragment()->getParent());
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000267 FixedValue += SecAddr;
268 uint32_t Value2 = 0;
269
270 if (const MCSymbolRefExpr *B = Target.getSymB()) {
Tim Northover1bc367a2014-07-04 10:58:05 +0000271 assert(Type == MachO::ARM_RELOC_VANILLA && "invalid reloc for 2 symbols");
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000272 const MCSymbol *SB = &B->getSymbol();
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000273
Oliver Stannard9be59af2015-11-17 10:00:43 +0000274 if (!SB->getFragment()) {
275 Asm.getContext().reportError(Fixup.getLoc(),
Jim Grosbach20275a82012-01-27 00:37:12 +0000276 "symbol '" + B->getSymbol().getName() +
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000277 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000278 return;
279 }
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000280
281 // Select the appropriate difference relocation type.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000282 Type = MachO::ARM_RELOC_SECTDIFF;
Duncan P. N. Exon Smith99d8a8e2015-05-20 00:02:39 +0000283 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout);
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000284 FixedValue -= Writer->getSectionAddress(SB->getFragment()->getParent());
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000285 }
286
287 // Relocations are written out in reverse order, so the PAIR comes first.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000288 if (Type == MachO::ARM_RELOC_SECTDIFF ||
289 Type == MachO::ARM_RELOC_LOCAL_SECTDIFF) {
290 MachO::any_relocation_info MRE;
291 MRE.r_word0 = ((0 << 0) |
292 (MachO::ARM_RELOC_PAIR << 24) |
293 (Log2Size << 28) |
294 (IsPCRel << 30) |
295 MachO::R_SCATTERED);
296 MRE.r_word1 = Value2;
Rafael Espindola61e724a2015-05-26 01:15:30 +0000297 Writer->addRelocation(nullptr, Fragment->getParent(), MRE);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000298 }
299
Charles Davis8bdfafd2013-09-01 04:28:48 +0000300 MachO::any_relocation_info MRE;
301 MRE.r_word0 = ((FixupOffset << 0) |
302 (Type << 24) |
303 (Log2Size << 28) |
304 (IsPCRel << 30) |
305 MachO::R_SCATTERED);
306 MRE.r_word1 = Value;
Rafael Espindola61e724a2015-05-26 01:15:30 +0000307 Writer->addRelocation(nullptr, Fragment->getParent(), MRE);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000308}
309
Jim Grosbachdf8ed712012-09-25 18:07:17 +0000310bool ARMMachObjectWriter::requiresExternRelocation(MachObjectWriter *Writer,
311 const MCAssembler &Asm,
312 const MCFragment &Fragment,
313 unsigned RelocType,
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000314 const MCSymbol &S,
Jim Grosbachdf8ed712012-09-25 18:07:17 +0000315 uint64_t FixedValue) {
316 // Most cases can be identified purely from the symbol.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000317 if (Writer->doesSymbolRequireExternRelocation(S))
Jim Grosbachdf8ed712012-09-25 18:07:17 +0000318 return true;
319 int64_t Value = (int64_t)FixedValue; // The displacement is signed.
320 int64_t Range;
321 switch (RelocType) {
322 default:
323 return false;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000324 case MachO::ARM_RELOC_BR24:
Jim Grosbachdf8ed712012-09-25 18:07:17 +0000325 // PC pre-adjustment of 8 for these instructions.
326 Value -= 8;
327 // ARM BL/BLX has a 25-bit offset.
328 Range = 0x1ffffff;
329 break;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000330 case MachO::ARM_THUMB_RELOC_BR22:
Jim Grosbachdf8ed712012-09-25 18:07:17 +0000331 // PC pre-adjustment of 4 for these instructions.
332 Value -= 4;
333 // Thumb BL/BLX has a 24-bit offset.
334 Range = 0xffffff;
335 }
336 // BL/BLX also use external relocations when an internal relocation
337 // would result in the target being out of range. This gives the linker
338 // enough information to generate a branch island.
Rafael Espindola079027e2015-05-26 00:52:18 +0000339 Value += Writer->getSectionAddress(&S.getSection());
340 Value -= Writer->getSectionAddress(Fragment.getParent());
Jim Grosbachdf8ed712012-09-25 18:07:17 +0000341 // If the resultant value would be out of range for an internal relocation,
342 // use an external instead.
343 if (Value > Range || Value < -(Range + 1))
344 return true;
345 return false;
346}
347
Jim Grosbach36e60e92015-06-04 22:24:41 +0000348void ARMMachObjectWriter::recordRelocation(MachObjectWriter *Writer,
Rafael Espindola26585542015-01-19 21:11:14 +0000349 MCAssembler &Asm,
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000350 const MCAsmLayout &Layout,
351 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000352 const MCFixup &Fixup, MCValue Target,
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000353 uint64_t &FixedValue) {
354 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
355 unsigned Log2Size;
Charles Davis8bdfafd2013-09-01 04:28:48 +0000356 unsigned RelocType = MachO::ARM_RELOC_VANILLA;
Oliver Stannard9be59af2015-11-17 10:00:43 +0000357 if (!getARMFixupKindMachOInfo(Fixup.getKind(), RelocType, Log2Size)) {
Jim Grosbach5e5eabb2012-01-26 23:20:15 +0000358 // If we failed to get fixup kind info, it's because there's no legal
359 // relocation type for the fixup kind. This happens when it's a fixup that's
360 // expected to always be resolvable at assembly time and not have any
361 // relocations needed.
Oliver Stannard9be59af2015-11-17 10:00:43 +0000362 Asm.getContext().reportError(Fixup.getLoc(),
363 "unsupported relocation on symbol");
364 return;
365 }
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000366
367 // If this is a difference or a defined symbol plus an offset, then we need a
368 // scattered relocation entry. Differences always require scattered
369 // relocations.
370 if (Target.getSymB()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000371 if (RelocType == MachO::ARM_RELOC_HALF)
Jim Grosbach997614f2012-03-20 17:25:45 +0000372 return RecordARMScatteredHalfRelocation(Writer, Asm, Layout, Fragment,
373 Fixup, Target, FixedValue);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000374 return RecordARMScatteredRelocation(Writer, Asm, Layout, Fragment, Fixup,
Tim Northover1bc367a2014-07-04 10:58:05 +0000375 Target, RelocType, Log2Size,
376 FixedValue);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000377 }
378
379 // Get the symbol data, if any.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000380 const MCSymbol *A = nullptr;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000381 if (Target.getSymA())
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000382 A = &Target.getSymA()->getSymbol();
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000383
384 // FIXME: For other platforms, we need to use scattered relocations for
385 // internal relocations with offsets. If this is an internal relocation with
386 // an offset, it also needs a scattered relocation entry.
387 //
388 // Is this right for ARM?
389 uint32_t Offset = Target.getConstant();
Charles Davis8bdfafd2013-09-01 04:28:48 +0000390 if (IsPCRel && RelocType == MachO::ARM_RELOC_VANILLA)
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000391 Offset += 1 << Log2Size;
Tim Northoverb9edc5c2016-02-23 20:20:23 +0000392 if (Offset && A && !Writer->doesSymbolRequireExternRelocation(*A) &&
393 RelocType != MachO::ARM_RELOC_HALF)
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000394 return RecordARMScatteredRelocation(Writer, Asm, Layout, Fragment, Fixup,
Tim Northover1bc367a2014-07-04 10:58:05 +0000395 Target, RelocType, Log2Size,
396 FixedValue);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000397
398 // See <reloc.h>.
399 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
400 unsigned Index = 0;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000401 unsigned Type = 0;
Duncan P. N. Exon Smith6e23e5a2015-05-16 01:14:19 +0000402 const MCSymbol *RelSymbol = nullptr;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000403
404 if (Target.isAbsolute()) { // constant
405 // FIXME!
406 report_fatal_error("FIXME: relocations to absolute targets "
407 "not yet implemented");
408 } else {
409 // Resolve constant variables.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000410 if (A->isVariable()) {
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000411 int64_t Res;
Jim Grosbach13760bd2015-05-30 01:25:56 +0000412 if (A->getVariableValue()->evaluateAsAbsolute(
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000413 Res, Layout, Writer->getSectionAddressMap())) {
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000414 FixedValue = Res;
415 return;
416 }
417 }
418
419 // Check whether we need an external or internal relocation.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000420 if (requiresExternRelocation(Writer, Asm, *Fragment, RelocType, *A,
Jim Grosbachdf8ed712012-09-25 18:07:17 +0000421 FixedValue)) {
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000422 RelSymbol = A;
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000423
424 // For external relocations, make sure to offset the fixup value to
425 // compensate for the addend of the symbol address, if it was
426 // undefined. This occurs with weak definitions, for example.
Duncan P. N. Exon Smith08b87262015-05-20 15:16:14 +0000427 if (!A->isUndefined())
428 FixedValue -= Layout.getSymbolOffset(*A);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000429 } else {
430 // The index is the section ordinal (1-based).
Rafael Espindola6e6820a2015-05-25 14:12:48 +0000431 const MCSection &Sec = A->getSection();
Rafael Espindola6e6820a2015-05-25 14:12:48 +0000432 Index = Sec.getOrdinal() + 1;
Rafael Espindola079027e2015-05-26 00:52:18 +0000433 FixedValue += Writer->getSectionAddress(&Sec);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000434 }
435 if (IsPCRel)
Rafael Espindola079027e2015-05-26 00:52:18 +0000436 FixedValue -= Writer->getSectionAddress(Fragment->getParent());
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000437
438 // The type is determined by the fixup kind.
439 Type = RelocType;
440 }
441
442 // struct relocation_info (8 bytes)
Charles Davis8bdfafd2013-09-01 04:28:48 +0000443 MachO::any_relocation_info MRE;
444 MRE.r_word0 = FixupOffset;
Rafael Espindola26585542015-01-19 21:11:14 +0000445 MRE.r_word1 =
446 (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
Jim Grosbach997614f2012-03-20 17:25:45 +0000447
448 // Even when it's not a scattered relocation, movw/movt always uses
449 // a PAIR relocation.
Charles Davis8bdfafd2013-09-01 04:28:48 +0000450 if (Type == MachO::ARM_RELOC_HALF) {
Tim Northoverb9edc5c2016-02-23 20:20:23 +0000451 // The entire addend is needed to correctly apply a relocation. One half is
452 // extracted from the instruction itself, the other comes from this
453 // PAIR. I.e. it's correct that we insert the high bits of the addend in the
454 // MOVW case here. relocation entries.
Dmitri Gribenkoca1e27b2012-09-10 21:26:47 +0000455 uint32_t Value = 0;
Jim Grosbach997614f2012-03-20 17:25:45 +0000456 switch ((unsigned)Fixup.getKind()) {
457 default: break;
Kevin Enderby5c490f12012-07-30 18:46:15 +0000458 case ARM::fixup_arm_movw_lo16:
Kevin Enderby5c490f12012-07-30 18:46:15 +0000459 case ARM::fixup_t2_movw_lo16:
Kevin Enderby5c490f12012-07-30 18:46:15 +0000460 Value = (FixedValue >> 16) & 0xffff;
461 break;
Jim Grosbach997614f2012-03-20 17:25:45 +0000462 case ARM::fixup_arm_movt_hi16:
Jim Grosbach997614f2012-03-20 17:25:45 +0000463 case ARM::fixup_t2_movt_hi16:
Kevin Enderby5c490f12012-07-30 18:46:15 +0000464 Value = FixedValue & 0xffff;
Jim Grosbach997614f2012-03-20 17:25:45 +0000465 break;
466 }
Charles Davis8bdfafd2013-09-01 04:28:48 +0000467 MachO::any_relocation_info MREPair;
468 MREPair.r_word0 = Value;
469 MREPair.r_word1 = ((0xffffff << 0) |
470 (Log2Size << 25) |
471 (MachO::ARM_RELOC_PAIR << 28));
Jim Grosbach997614f2012-03-20 17:25:45 +0000472
Rafael Espindola61e724a2015-05-26 01:15:30 +0000473 Writer->addRelocation(nullptr, Fragment->getParent(), MREPair);
Jim Grosbach997614f2012-03-20 17:25:45 +0000474 }
475
Rafael Espindola61e724a2015-05-26 01:15:30 +0000476 Writer->addRelocation(RelSymbol, Fragment->getParent(), MRE);
Jim Grosbach28fcafb2011-06-24 23:44:37 +0000477}
478
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000479MCObjectWriter *llvm::createARMMachObjectWriter(raw_pwrite_stream &OS,
480 bool Is64Bit, uint32_t CPUType,
Jim Grosbach2354f872011-06-22 20:14:52 +0000481 uint32_t CPUSubtype) {
482 return createMachObjectWriter(new ARMMachObjectWriter(Is64Bit,
483 CPUType,
484 CPUSubtype),
485 OS, /*IsLittleEndian=*/true);
486}