blob: aa0178e92eccb4824da2c803bd9eac356ab30fab [file] [log] [blame]
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001//===- lib/MC/MachObjectWriter.cpp - Mach-O File 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
Daniel Dunbarae5abd52010-12-16 16:09:19 +000010#include "llvm/MC/MCMachObjectWriter.h"
11#include "llvm/ADT/OwningPtr.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000012#include "llvm/ADT/StringMap.h"
13#include "llvm/ADT/Twine.h"
14#include "llvm/MC/MCAssembler.h"
Daniel Dunbar207e06e2010-03-24 03:43:40 +000015#include "llvm/MC/MCAsmLayout.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000016#include "llvm/MC/MCExpr.h"
17#include "llvm/MC/MCObjectWriter.h"
18#include "llvm/MC/MCSectionMachO.h"
19#include "llvm/MC/MCSymbol.h"
Kevin Enderbya6eeb6e2010-05-07 21:44:23 +000020#include "llvm/MC/MCMachOSymbolFlags.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000021#include "llvm/MC/MCValue.h"
Daniel Dunbar821ecd72010-11-27 04:19:38 +000022#include "llvm/Object/MachOFormat.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000023#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000024#include "llvm/Target/TargetAsmBackend.h"
25
26// FIXME: Gross.
Daniel Dunbar294e6782010-12-22 16:19:24 +000027#include "../Target/ARM/ARMFixupKinds.h"
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000028#include "../Target/X86/X86FixupKinds.h"
29
30#include <vector>
31using namespace llvm;
Daniel Dunbar821ecd72010-11-27 04:19:38 +000032using namespace llvm::object;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000033
Rafael Espindolaa8c02c32010-09-30 03:11:42 +000034// FIXME: this has been copied from (or to) X86AsmBackend.cpp
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000035static unsigned getFixupKindLog2Size(unsigned Kind) {
36 switch (Kind) {
Daniel Dunbar5cc63902010-12-22 16:32:41 +000037 default:
38 llvm_unreachable("invalid fixup kind!");
Rafael Espindolae04ed7e2010-11-28 14:17:56 +000039 case FK_PCRel_1:
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000040 case FK_Data_1: return 0;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +000041 case FK_PCRel_2:
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000042 case FK_Data_2: return 1;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +000043 case FK_PCRel_4:
Daniel Dunbar5cc63902010-12-22 16:32:41 +000044 // FIXME: Remove these!!!
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000045 case X86::reloc_riprel_4byte:
Daniel Dunbar602b40f2010-03-19 18:07:55 +000046 case X86::reloc_riprel_4byte_movq_load:
Rafael Espindolaa8c02c32010-09-30 03:11:42 +000047 case X86::reloc_signed_4byte:
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000048 case FK_Data_4: return 2;
49 case FK_Data_8: return 3;
50 }
51}
52
Daniel Dunbare9460ec2010-05-10 23:15:13 +000053static bool doesSymbolRequireExternRelocation(MCSymbolData *SD) {
54 // Undefined symbols are always extern.
55 if (SD->Symbol->isUndefined())
56 return true;
57
58 // References to weak definitions require external relocation entries; the
59 // definition may not always be the one in the same object file.
60 if (SD->getFlags() & SF_WeakDefinition)
61 return true;
62
63 // Otherwise, we can use an internal relocation.
64 return false;
65}
66
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000067namespace {
68
Daniel Dunbar115a3dd2010-11-13 07:33:40 +000069class MachObjectWriter : public MCObjectWriter {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000070 /// MachSymbolData - Helper struct for containing some precomputed information
71 /// on symbols.
72 struct MachSymbolData {
73 MCSymbolData *SymbolData;
74 uint64_t StringIndex;
75 uint8_t SectionIndex;
76
77 // Support lexicographic sorting.
78 bool operator<(const MachSymbolData &RHS) const {
Benjamin Kramerc37791e2010-05-20 14:14:22 +000079 return SymbolData->getSymbol().getName() <
80 RHS.SymbolData->getSymbol().getName();
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000081 }
82 };
83
Daniel Dunbarae5abd52010-12-16 16:09:19 +000084 /// The target specific Mach-O writer instance.
85 llvm::OwningPtr<MCMachObjectTargetWriter> TargetObjectWriter;
Daniel Dunbar7e06af82010-12-16 15:42:31 +000086
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000087 /// @name Relocation Data
88 /// @{
89
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000090 llvm::DenseMap<const MCSectionData*,
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +000091 std::vector<macho::RelocationEntry> > Relocations;
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +000092 llvm::DenseMap<const MCSectionData*, unsigned> IndirectSymBase;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +000093
94 /// @}
95 /// @name Symbol Table Data
96 /// @{
97
98 SmallString<256> StringTable;
99 std::vector<MachSymbolData> LocalSymbolData;
100 std::vector<MachSymbolData> ExternalSymbolData;
101 std::vector<MachSymbolData> UndefinedSymbolData;
102
103 /// @}
104
Daniel Dunbarae5abd52010-12-16 16:09:19 +0000105private:
106 /// @name Utility Methods
107 /// @{
108
109 bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
110 const MCFixupKindInfo &FKI = Asm.getBackend().getFixupKindInfo(
111 (MCFixupKind) Kind);
112
113 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
114 }
115
116 /// @}
117
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000118 SectionAddrMap SectionAddress;
119 uint64_t getSectionAddress(const MCSectionData* SD) const {
120 return SectionAddress.lookup(SD);
121 }
122 uint64_t getSymbolAddress(const MCSymbolData* SD,
123 const MCAsmLayout &Layout) const {
124 return getSectionAddress(SD->getFragment()->getParent()) +
125 Layout.getSymbolOffset(SD);
126 }
127 uint64_t getFragmentAddress(const MCFragment *Fragment,
128 const MCAsmLayout &Layout) const {
129 return getSectionAddress(Fragment->getParent()) +
130 Layout.getFragmentOffset(Fragment);
131 }
132
133 uint64_t getPaddingSize(const MCSectionData *SD,
134 const MCAsmLayout &Layout) const {
135 uint64_t EndAddr = getSectionAddress(SD) + Layout.getSectionAddressSize(SD);
136 unsigned Next = SD->getLayoutOrder() + 1;
137 if (Next >= Layout.getSectionOrder().size())
138 return 0;
139
140 const MCSectionData &NextSD = *Layout.getSectionOrder()[Next];
141 if (NextSD.getSection().isVirtualSection())
142 return 0;
143 return OffsetToAlignment(EndAddr, NextSD.getAlignment());
144 }
145
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000146public:
Daniel Dunbarae5abd52010-12-16 16:09:19 +0000147 MachObjectWriter(MCMachObjectTargetWriter *MOTW, raw_ostream &_OS,
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000148 bool _IsLittleEndian)
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000149 : MCObjectWriter(_OS, _IsLittleEndian), TargetObjectWriter(MOTW) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000150 }
151
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000152 /// @name Target Writer Proxy Accessors
153 /// @{
154
155 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
Daniel Dunbar532c4562010-12-22 13:49:43 +0000156 bool isARM() const {
Daniel Dunbarfdfbc6a2010-12-22 16:19:20 +0000157 uint32_t CPUType = TargetObjectWriter->getCPUType() & ~mach::CTFM_ArchMask;
Daniel Dunbar532c4562010-12-22 13:49:43 +0000158 return CPUType == mach::CTM_ARM;
159 }
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000160
161 /// @}
162
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000163 void WriteHeader(unsigned NumLoadCommands, unsigned LoadCommandsSize,
164 bool SubsectionsViaSymbols) {
165 uint32_t Flags = 0;
166
167 if (SubsectionsViaSymbols)
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000168 Flags |= macho::HF_SubsectionsViaSymbols;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000169
170 // struct mach_header (28 bytes) or
171 // struct mach_header_64 (32 bytes)
172
173 uint64_t Start = OS.tell();
174 (void) Start;
175
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000176 Write32(is64Bit() ? macho::HM_Object64 : macho::HM_Object32);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000177
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000178 Write32(TargetObjectWriter->getCPUType());
179 Write32(TargetObjectWriter->getCPUSubtype());
Jim Grosbachc9d14392010-11-05 18:48:58 +0000180
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000181 Write32(macho::HFT_Object);
Daniel Dunbar590956f2010-11-27 07:39:37 +0000182 Write32(NumLoadCommands);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000183 Write32(LoadCommandsSize);
184 Write32(Flags);
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000185 if (is64Bit())
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000186 Write32(0); // reserved
187
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000188 assert(OS.tell() - Start == is64Bit() ?
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000189 macho::Header64Size : macho::Header32Size);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000190 }
191
192 /// WriteSegmentLoadCommand - Write a segment load command.
193 ///
194 /// \arg NumSections - The number of sections in this segment.
195 /// \arg SectionDataSize - The total size of the sections.
196 void WriteSegmentLoadCommand(unsigned NumSections,
197 uint64_t VMSize,
198 uint64_t SectionDataStartOffset,
199 uint64_t SectionDataSize) {
200 // struct segment_command (56 bytes) or
201 // struct segment_command_64 (72 bytes)
202
203 uint64_t Start = OS.tell();
204 (void) Start;
205
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000206 unsigned SegmentLoadCommandSize =
207 is64Bit() ? macho::SegmentLoadCommand64Size:
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000208 macho::SegmentLoadCommand32Size;
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000209 Write32(is64Bit() ? macho::LCT_Segment64 : macho::LCT_Segment);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000210 Write32(SegmentLoadCommandSize +
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000211 NumSections * (is64Bit() ? macho::Section64Size :
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000212 macho::Section32Size));
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000213
214 WriteBytes("", 16);
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000215 if (is64Bit()) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000216 Write64(0); // vmaddr
217 Write64(VMSize); // vmsize
218 Write64(SectionDataStartOffset); // file offset
219 Write64(SectionDataSize); // file size
220 } else {
221 Write32(0); // vmaddr
222 Write32(VMSize); // vmsize
223 Write32(SectionDataStartOffset); // file offset
224 Write32(SectionDataSize); // file size
225 }
226 Write32(0x7); // maxprot
227 Write32(0x7); // initprot
228 Write32(NumSections);
229 Write32(0); // flags
230
231 assert(OS.tell() - Start == SegmentLoadCommandSize);
232 }
233
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000234 void WriteSection(const MCAssembler &Asm, const MCAsmLayout &Layout,
235 const MCSectionData &SD, uint64_t FileOffset,
236 uint64_t RelocationsStart, unsigned NumRelocations) {
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000237 uint64_t SectionSize = Layout.getSectionAddressSize(&SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +0000238
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000239 // The offset is unused for virtual sections.
Rafael Espindolaf2dc4aa2010-11-17 20:03:54 +0000240 if (SD.getSection().isVirtualSection()) {
Daniel Dunbarb026d642010-03-25 07:10:05 +0000241 assert(Layout.getSectionFileSize(&SD) == 0 && "Invalid file size!");
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000242 FileOffset = 0;
243 }
244
245 // struct section (68 bytes) or
246 // struct section_64 (80 bytes)
247
248 uint64_t Start = OS.tell();
249 (void) Start;
250
Daniel Dunbar56279f42010-05-18 17:28:20 +0000251 const MCSectionMachO &Section = cast<MCSectionMachO>(SD.getSection());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000252 WriteBytes(Section.getSectionName(), 16);
253 WriteBytes(Section.getSegmentName(), 16);
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000254 if (is64Bit()) {
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000255 Write64(getSectionAddress(&SD)); // address
Daniel Dunbar5d428512010-03-25 02:00:07 +0000256 Write64(SectionSize); // size
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000257 } else {
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000258 Write32(getSectionAddress(&SD)); // address
Daniel Dunbar5d428512010-03-25 02:00:07 +0000259 Write32(SectionSize); // size
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000260 }
261 Write32(FileOffset);
262
263 unsigned Flags = Section.getTypeAndAttributes();
264 if (SD.hasInstructions())
265 Flags |= MCSectionMachO::S_ATTR_SOME_INSTRUCTIONS;
266
267 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
268 Write32(Log2_32(SD.getAlignment()));
269 Write32(NumRelocations ? RelocationsStart : 0);
270 Write32(NumRelocations);
271 Write32(Flags);
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +0000272 Write32(IndirectSymBase.lookup(&SD)); // reserved1
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000273 Write32(Section.getStubSize()); // reserved2
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000274 if (is64Bit())
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000275 Write32(0); // reserved3
276
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000277 assert(OS.tell() - Start == is64Bit() ? macho::Section64Size :
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000278 macho::Section32Size);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000279 }
280
281 void WriteSymtabLoadCommand(uint32_t SymbolOffset, uint32_t NumSymbols,
282 uint32_t StringTableOffset,
283 uint32_t StringTableSize) {
284 // struct symtab_command (24 bytes)
285
286 uint64_t Start = OS.tell();
287 (void) Start;
288
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000289 Write32(macho::LCT_Symtab);
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000290 Write32(macho::SymtabLoadCommandSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000291 Write32(SymbolOffset);
292 Write32(NumSymbols);
293 Write32(StringTableOffset);
294 Write32(StringTableSize);
295
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000296 assert(OS.tell() - Start == macho::SymtabLoadCommandSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000297 }
298
299 void WriteDysymtabLoadCommand(uint32_t FirstLocalSymbol,
300 uint32_t NumLocalSymbols,
301 uint32_t FirstExternalSymbol,
302 uint32_t NumExternalSymbols,
303 uint32_t FirstUndefinedSymbol,
304 uint32_t NumUndefinedSymbols,
305 uint32_t IndirectSymbolOffset,
306 uint32_t NumIndirectSymbols) {
307 // struct dysymtab_command (80 bytes)
308
309 uint64_t Start = OS.tell();
310 (void) Start;
311
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000312 Write32(macho::LCT_Dysymtab);
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000313 Write32(macho::DysymtabLoadCommandSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000314 Write32(FirstLocalSymbol);
315 Write32(NumLocalSymbols);
316 Write32(FirstExternalSymbol);
317 Write32(NumExternalSymbols);
318 Write32(FirstUndefinedSymbol);
319 Write32(NumUndefinedSymbols);
320 Write32(0); // tocoff
321 Write32(0); // ntoc
322 Write32(0); // modtaboff
323 Write32(0); // nmodtab
324 Write32(0); // extrefsymoff
325 Write32(0); // nextrefsyms
326 Write32(IndirectSymbolOffset);
327 Write32(NumIndirectSymbols);
328 Write32(0); // extreloff
329 Write32(0); // nextrel
330 Write32(0); // locreloff
331 Write32(0); // nlocrel
332
Daniel Dunbar821ecd72010-11-27 04:19:38 +0000333 assert(OS.tell() - Start == macho::DysymtabLoadCommandSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000334 }
335
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000336 void WriteNlist(MachSymbolData &MSD, const MCAsmLayout &Layout) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000337 MCSymbolData &Data = *MSD.SymbolData;
338 const MCSymbol &Symbol = Data.getSymbol();
339 uint8_t Type = 0;
340 uint16_t Flags = Data.getFlags();
341 uint32_t Address = 0;
342
343 // Set the N_TYPE bits. See <mach-o/nlist.h>.
344 //
345 // FIXME: Are the prebound or indirect fields possible here?
346 if (Symbol.isUndefined())
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000347 Type = macho::STT_Undefined;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000348 else if (Symbol.isAbsolute())
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000349 Type = macho::STT_Absolute;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000350 else
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000351 Type = macho::STT_Section;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000352
353 // FIXME: Set STAB bits.
354
355 if (Data.isPrivateExtern())
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000356 Type |= macho::STF_PrivateExtern;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000357
358 // Set external bit.
359 if (Data.isExternal() || Symbol.isUndefined())
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000360 Type |= macho::STF_External;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000361
362 // Compute the symbol address.
363 if (Symbol.isDefined()) {
364 if (Symbol.isAbsolute()) {
Daniel Dunbar2d7fd612010-05-05 19:01:05 +0000365 Address = cast<MCConstantExpr>(Symbol.getVariableValue())->getValue();
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000366 } else {
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000367 Address = getSymbolAddress(&Data, Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000368 }
369 } else if (Data.isCommon()) {
370 // Common symbols are encoded with the size in the address
371 // field, and their alignment in the flags.
372 Address = Data.getCommonSize();
373
374 // Common alignment is packed into the 'desc' bits.
375 if (unsigned Align = Data.getCommonAlignment()) {
376 unsigned Log2Size = Log2_32(Align);
377 assert((1U << Log2Size) == Align && "Invalid 'common' alignment!");
378 if (Log2Size > 15)
Chris Lattner75361b62010-04-07 22:58:41 +0000379 report_fatal_error("invalid 'common' alignment '" +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000380 Twine(Align) + "'");
381 // FIXME: Keep this mask with the SymbolFlags enumeration.
382 Flags = (Flags & 0xF0FF) | (Log2Size << 8);
383 }
384 }
385
386 // struct nlist (12 bytes)
387
388 Write32(MSD.StringIndex);
389 Write8(Type);
390 Write8(MSD.SectionIndex);
391
392 // The Mach-O streamer uses the lowest 16-bits of the flags for the 'desc'
393 // value.
394 Write16(Flags);
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000395 if (is64Bit())
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000396 Write64(Address);
397 else
398 Write32(Address);
399 }
400
Daniel Dunbar35b06572010-03-22 23:16:43 +0000401 // FIXME: We really need to improve the relocation validation. Basically, we
402 // want to implement a separate computation which evaluates the relocation
403 // entry as the linker would, and verifies that the resultant fixup value is
404 // exactly what the encoder wanted. This will catch several classes of
405 // problems:
406 //
407 // - Relocation entry bugs, the two algorithms are unlikely to have the same
408 // exact bug.
409 //
410 // - Relaxation issues, where we forget to relax something.
411 //
412 // - Input errors, where something cannot be correctly encoded. 'as' allows
413 // these through in many cases.
414
Daniel Dunbar7e06af82010-12-16 15:42:31 +0000415 static bool isFixupKindRIPRel(unsigned Kind) {
416 return Kind == X86::reloc_riprel_4byte ||
417 Kind == X86::reloc_riprel_4byte_movq_load;
418 }
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000419 void RecordX86_64Relocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +0000420 const MCFragment *Fragment,
Daniel Dunbarc90e30a2010-05-26 15:18:56 +0000421 const MCFixup &Fixup, MCValue Target,
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000422 uint64_t &FixedValue) {
Daniel Dunbar7e06af82010-12-16 15:42:31 +0000423 unsigned IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Daniel Dunbar482ad802010-05-26 15:18:31 +0000424 unsigned IsRIPRel = isFixupKindRIPRel(Fixup.getKind());
425 unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind());
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000426
427 // See <reloc.h>.
Daniel Dunbar482ad802010-05-26 15:18:31 +0000428 uint32_t FixupOffset =
429 Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
430 uint32_t FixupAddress =
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000431 getFragmentAddress(Fragment, Layout) + Fixup.getOffset();
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000432 int64_t Value = 0;
433 unsigned Index = 0;
434 unsigned IsExtern = 0;
435 unsigned Type = 0;
436
437 Value = Target.getConstant();
438
439 if (IsPCRel) {
440 // Compensate for the relocation offset, Darwin x86_64 relocations only
441 // have the addend and appear to have attempted to define it to be the
442 // actual expression addend without the PCrel bias. However, instructions
443 // with data following the relocation are not accomodated for (see comment
444 // below regarding SIGNED{1,2,4}), so it isn't exactly that either.
Benjamin Kramer454c4ce2010-04-08 15:25:57 +0000445 Value += 1LL << Log2Size;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000446 }
447
448 if (Target.isAbsolute()) { // constant
449 // SymbolNum of 0 indicates the absolute section.
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000450 Type = macho::RIT_X86_64_Unsigned;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000451 Index = 0;
452
453 // FIXME: I believe this is broken, I don't think the linker can
454 // understand it. I think it would require a local relocation, but I'm not
455 // sure if that would work either. The official way to get an absolute
456 // PCrel relocation is to use an absolute symbol (which we don't support
457 // yet).
458 if (IsPCRel) {
459 IsExtern = 1;
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000460 Type = macho::RIT_X86_64_Branch;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000461 }
462 } else if (Target.getSymB()) { // A - B + constant
463 const MCSymbol *A = &Target.getSymA()->getSymbol();
464 MCSymbolData &A_SD = Asm.getSymbolData(*A);
Rafael Espindolab8141102010-09-27 18:13:03 +0000465 const MCSymbolData *A_Base = Asm.getAtom(&A_SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000466
467 const MCSymbol *B = &Target.getSymB()->getSymbol();
468 MCSymbolData &B_SD = Asm.getSymbolData(*B);
Rafael Espindolab8141102010-09-27 18:13:03 +0000469 const MCSymbolData *B_Base = Asm.getAtom(&B_SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000470
471 // Neither symbol can be modified.
472 if (Target.getSymA()->getKind() != MCSymbolRefExpr::VK_None ||
473 Target.getSymB()->getKind() != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000474 report_fatal_error("unsupported relocation of modified symbol");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000475
476 // We don't support PCrel relocations of differences. Darwin 'as' doesn't
477 // implement most of these correctly.
478 if (IsPCRel)
Chris Lattner75361b62010-04-07 22:58:41 +0000479 report_fatal_error("unsupported pc-relative relocation of difference");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000480
Kevin Enderby8c9aa922010-10-02 00:13:41 +0000481 // The support for the situation where one or both of the symbols would
482 // require a local relocation is handled just like if the symbols were
483 // external. This is certainly used in the case of debug sections where
484 // the section has only temporary symbols and thus the symbols don't have
485 // base symbols. This is encoded using the section ordinal and
486 // non-extern relocation entries.
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000487
488 // Darwin 'as' doesn't emit correct relocations for this (it ends up with
Kevin Enderby8c9aa922010-10-02 00:13:41 +0000489 // a single SIGNED relocation); reject it for now. Except the case where
490 // both symbols don't have a base, equal but both NULL.
491 if (A_Base == B_Base && A_Base)
Chris Lattner75361b62010-04-07 22:58:41 +0000492 report_fatal_error("unsupported relocation with identical base");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000493
Rafael Espindolaf10d2be2010-12-07 01:09:54 +0000494 Value += getSymbolAddress(&A_SD, Layout) -
495 (A_Base == NULL ? 0 : getSymbolAddress(A_Base, Layout));
496 Value -= getSymbolAddress(&B_SD, Layout) -
497 (B_Base == NULL ? 0 : getSymbolAddress(B_Base, Layout));
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000498
Kevin Enderby8c9aa922010-10-02 00:13:41 +0000499 if (A_Base) {
500 Index = A_Base->getIndex();
501 IsExtern = 1;
502 }
503 else {
504 Index = A_SD.getFragment()->getParent()->getOrdinal() + 1;
505 IsExtern = 0;
506 }
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000507 Type = macho::RIT_X86_64_Unsigned;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000508
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +0000509 macho::RelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000510 MRE.Word0 = FixupOffset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000511 MRE.Word1 = ((Index << 0) |
512 (IsPCRel << 24) |
513 (Log2Size << 25) |
514 (IsExtern << 27) |
515 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000516 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000517
Kevin Enderby8c9aa922010-10-02 00:13:41 +0000518 if (B_Base) {
519 Index = B_Base->getIndex();
520 IsExtern = 1;
521 }
522 else {
523 Index = B_SD.getFragment()->getParent()->getOrdinal() + 1;
524 IsExtern = 0;
525 }
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000526 Type = macho::RIT_X86_64_Subtractor;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000527 } else {
528 const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
529 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
Rafael Espindolab8141102010-09-27 18:13:03 +0000530 const MCSymbolData *Base = Asm.getAtom(&SD);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000531
Daniel Dunbarae7fb0b2010-05-05 17:22:39 +0000532 // Relocations inside debug sections always use local relocations when
533 // possible. This seems to be done because the debugger doesn't fully
534 // understand x86_64 relocation entries, and expects to find values that
535 // have already been fixed up.
Daniel Dunbar2d7fd612010-05-05 19:01:05 +0000536 if (Symbol->isInSection()) {
Daniel Dunbarae7fb0b2010-05-05 17:22:39 +0000537 const MCSectionMachO &Section = static_cast<const MCSectionMachO&>(
538 Fragment->getParent()->getSection());
539 if (Section.hasAttribute(MCSectionMachO::S_ATTR_DEBUG))
540 Base = 0;
541 }
542
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000543 // x86_64 almost always uses external relocations, except when there is no
544 // symbol to use as a base address (a local symbol with no preceeding
545 // non-local symbol).
546 if (Base) {
547 Index = Base->getIndex();
548 IsExtern = 1;
549
550 // Add the local offset, if needed.
551 if (Base != &SD)
Rafael Espindola1dda29b2010-12-06 21:51:55 +0000552 Value += Layout.getSymbolOffset(&SD) - Layout.getSymbolOffset(Base);
Daniel Dunbaref4591e2010-05-11 23:53:05 +0000553 } else if (Symbol->isInSection()) {
Daniel Dunbar8fb04032010-03-25 08:08:54 +0000554 // The index is the section ordinal (1-based).
555 Index = SD.getFragment()->getParent()->getOrdinal() + 1;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000556 IsExtern = 0;
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000557 Value += getSymbolAddress(&SD, Layout);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000558
559 if (IsPCRel)
Daniel Dunbardb4c7e62010-05-11 23:53:11 +0000560 Value -= FixupAddress + (1 << Log2Size);
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000561 } else if (Symbol->isVariable()) {
562 const MCExpr *Value = Symbol->getVariableValue();
563 int64_t Res;
564 bool isAbs = Value->EvaluateAsAbsolute(Res, Layout, SectionAddress);
565 if (isAbs) {
566 FixedValue = Res;
567 return;
568 } else {
569 report_fatal_error("unsupported relocation of variable '" +
570 Symbol->getName() + "'");
571 }
Daniel Dunbaref4591e2010-05-11 23:53:05 +0000572 } else {
573 report_fatal_error("unsupported relocation of undefined symbol '" +
574 Symbol->getName() + "'");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000575 }
576
577 MCSymbolRefExpr::VariantKind Modifier = Target.getSymA()->getKind();
578 if (IsPCRel) {
579 if (IsRIPRel) {
580 if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
581 // x86_64 distinguishes movq foo@GOTPCREL so that the linker can
582 // rewrite the movq to an leaq at link time if the symbol ends up in
583 // the same linkage unit.
Daniel Dunbar482ad802010-05-26 15:18:31 +0000584 if (unsigned(Fixup.getKind()) == X86::reloc_riprel_4byte_movq_load)
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000585 Type = macho::RIT_X86_64_GOTLoad;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000586 else
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000587 Type = macho::RIT_X86_64_GOT;
Eric Christopheraeed4d82010-05-27 00:52:31 +0000588 } else if (Modifier == MCSymbolRefExpr::VK_TLVP) {
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000589 Type = macho::RIT_X86_64_TLV;
Eric Christopheraeed4d82010-05-27 00:52:31 +0000590 } else if (Modifier != MCSymbolRefExpr::VK_None) {
591 report_fatal_error("unsupported symbol modifier in relocation");
Daniel Dunbarf0f6cdb2010-05-14 18:53:40 +0000592 } else {
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000593 Type = macho::RIT_X86_64_Signed;
Daniel Dunbarf0f6cdb2010-05-14 18:53:40 +0000594
595 // The Darwin x86_64 relocation format has a problem where it cannot
596 // encode an address (L<foo> + <constant>) which is outside the atom
597 // containing L<foo>. Generally, this shouldn't occur but it does
598 // happen when we have a RIPrel instruction with data following the
599 // relocation entry (e.g., movb $012, L0(%rip)). Even with the PCrel
600 // adjustment Darwin x86_64 uses, the offset is still negative and
601 // the linker has no way to recognize this.
602 //
603 // To work around this, Darwin uses several special relocation types
604 // to indicate the offsets. However, the specification or
605 // implementation of these seems to also be incomplete; they should
606 // adjust the addend as well based on the actual encoded instruction
607 // (the additional bias), but instead appear to just look at the
608 // final offset.
609 switch (-(Target.getConstant() + (1LL << Log2Size))) {
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000610 case 1: Type = macho::RIT_X86_64_Signed1; break;
611 case 2: Type = macho::RIT_X86_64_Signed2; break;
612 case 4: Type = macho::RIT_X86_64_Signed4; break;
Daniel Dunbarf0f6cdb2010-05-14 18:53:40 +0000613 }
614 }
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000615 } else {
616 if (Modifier != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000617 report_fatal_error("unsupported symbol modifier in branch "
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000618 "relocation");
619
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000620 Type = macho::RIT_X86_64_Branch;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000621 }
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000622 } else {
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000623 if (Modifier == MCSymbolRefExpr::VK_GOT) {
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000624 Type = macho::RIT_X86_64_GOT;
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000625 } else if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
626 // GOTPCREL is allowed as a modifier on non-PCrel instructions, in
627 // which case all we do is set the PCrel bit in the relocation entry;
628 // this is used with exception handling, for example. The source is
629 // required to include any necessary offset directly.
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000630 Type = macho::RIT_X86_64_GOT;
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000631 IsPCRel = 1;
Eric Christopher96ac5152010-05-26 00:02:12 +0000632 } else if (Modifier == MCSymbolRefExpr::VK_TLVP) {
633 report_fatal_error("TLVP symbol modifier should have been rip-rel");
Daniel Dunbar1de558b2010-03-29 23:56:40 +0000634 } else if (Modifier != MCSymbolRefExpr::VK_None)
Chris Lattner75361b62010-04-07 22:58:41 +0000635 report_fatal_error("unsupported symbol modifier in relocation");
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000636 else
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000637 Type = macho::RIT_X86_64_Unsigned;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000638 }
639 }
640
641 // x86_64 always writes custom values into the fixups.
642 FixedValue = Value;
643
644 // struct relocation_info (8 bytes)
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +0000645 macho::RelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000646 MRE.Word0 = FixupOffset;
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000647 MRE.Word1 = ((Index << 0) |
648 (IsPCRel << 24) |
649 (Log2Size << 25) |
650 (IsExtern << 27) |
651 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +0000652 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar602b40f2010-03-19 18:07:55 +0000653 }
654
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000655 void RecordScatteredRelocation(const MCAssembler &Asm,
Daniel Dunbar207e06e2010-03-24 03:43:40 +0000656 const MCAsmLayout &Layout,
Daniel Dunbarb7514182010-03-22 20:35:50 +0000657 const MCFragment *Fragment,
Daniel Dunbarc90e30a2010-05-26 15:18:56 +0000658 const MCFixup &Fixup, MCValue Target,
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000659 unsigned Log2Size,
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000660 uint64_t &FixedValue) {
Daniel Dunbar482ad802010-05-26 15:18:31 +0000661 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
Daniel Dunbar7e06af82010-12-16 15:42:31 +0000662 unsigned IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000663 unsigned Type = macho::RIT_Vanilla;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000664
665 // See <reloc.h>.
666 const MCSymbol *A = &Target.getSymA()->getSymbol();
667 MCSymbolData *A_SD = &Asm.getSymbolData(*A);
668
669 if (!A_SD->getFragment())
Chris Lattner75361b62010-04-07 22:58:41 +0000670 report_fatal_error("symbol '" + A->getName() +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000671 "' can not be undefined in a subtraction expression");
672
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000673 uint32_t Value = getSymbolAddress(A_SD, Layout);
674 uint64_t SecAddr = getSectionAddress(A_SD->getFragment()->getParent());
675 FixedValue += SecAddr;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000676 uint32_t Value2 = 0;
677
678 if (const MCSymbolRefExpr *B = Target.getSymB()) {
679 MCSymbolData *B_SD = &Asm.getSymbolData(B->getSymbol());
680
681 if (!B_SD->getFragment())
Chris Lattner75361b62010-04-07 22:58:41 +0000682 report_fatal_error("symbol '" + B->getSymbol().getName() +
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000683 "' can not be undefined in a subtraction expression");
684
685 // Select the appropriate difference relocation type.
686 //
687 // Note that there is no longer any semantic difference between these two
688 // relocation types from the linkers point of view, this is done solely
689 // for pedantic compatibility with 'as'.
Matt Beaumont-Gaye733cf82010-12-21 23:43:23 +0000690 Type = A_SD->isExternal() ? (unsigned)macho::RIT_Difference :
691 (unsigned)macho::RIT_Generic_LocalDifference;
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000692 Value2 = getSymbolAddress(B_SD, Layout);
693 FixedValue -= getSectionAddress(B_SD->getFragment()->getParent());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000694 }
695
696 // Relocations are written out in reverse order, so the PAIR comes first.
Daniel Dunbare1feeb92010-12-21 15:26:45 +0000697 if (Type == macho::RIT_Difference ||
698 Type == macho::RIT_Generic_LocalDifference) {
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +0000699 macho::RelocationEntry MRE;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000700 MRE.Word0 = ((0 << 0) |
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000701 (macho::RIT_Pair << 24) |
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000702 (Log2Size << 28) |
703 (IsPCRel << 30) |
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000704 macho::RF_Scattered);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000705 MRE.Word1 = Value2;
Daniel Dunbarb7514182010-03-22 20:35:50 +0000706 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000707 }
708
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +0000709 macho::RelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +0000710 MRE.Word0 = ((FixupOffset << 0) |
711 (Type << 24) |
712 (Log2Size << 28) |
713 (IsPCRel << 30) |
Daniel Dunbarf52788f2010-11-27 04:59:14 +0000714 macho::RF_Scattered);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000715 MRE.Word1 = Value;
Daniel Dunbarb7514182010-03-22 20:35:50 +0000716 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +0000717 }
718
Daniel Dunbar25bcc9c2010-12-22 16:45:29 +0000719 void RecordARMScatteredRelocation(const MCAssembler &Asm,
720 const MCAsmLayout &Layout,
721 const MCFragment *Fragment,
722 const MCFixup &Fixup, MCValue Target,
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000723 unsigned Log2Size,
Daniel Dunbar25bcc9c2010-12-22 16:45:29 +0000724 uint64_t &FixedValue) {
725 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
726 unsigned IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Daniel Dunbar25bcc9c2010-12-22 16:45:29 +0000727 unsigned Type = macho::RIT_Vanilla;
728
729 // See <reloc.h>.
730 const MCSymbol *A = &Target.getSymA()->getSymbol();
731 MCSymbolData *A_SD = &Asm.getSymbolData(*A);
732
733 if (!A_SD->getFragment())
734 report_fatal_error("symbol '" + A->getName() +
735 "' can not be undefined in a subtraction expression");
736
737 uint32_t Value = getSymbolAddress(A_SD, Layout);
738 uint64_t SecAddr = getSectionAddress(A_SD->getFragment()->getParent());
739 FixedValue += SecAddr;
740 uint32_t Value2 = 0;
741
742 if (const MCSymbolRefExpr *B = Target.getSymB()) {
743 MCSymbolData *B_SD = &Asm.getSymbolData(B->getSymbol());
744
745 if (!B_SD->getFragment())
746 report_fatal_error("symbol '" + B->getSymbol().getName() +
747 "' can not be undefined in a subtraction expression");
748
749 // Select the appropriate difference relocation type.
Daniel Dunbardf561e02010-12-22 16:52:19 +0000750 Type = macho::RIT_Difference;
Daniel Dunbar25bcc9c2010-12-22 16:45:29 +0000751 Value2 = getSymbolAddress(B_SD, Layout);
752 FixedValue -= getSectionAddress(B_SD->getFragment()->getParent());
753 }
754
755 // Relocations are written out in reverse order, so the PAIR comes first.
756 if (Type == macho::RIT_Difference ||
757 Type == macho::RIT_Generic_LocalDifference) {
758 macho::RelocationEntry MRE;
759 MRE.Word0 = ((0 << 0) |
760 (macho::RIT_Pair << 24) |
761 (Log2Size << 28) |
762 (IsPCRel << 30) |
763 macho::RF_Scattered);
764 MRE.Word1 = Value2;
765 Relocations[Fragment->getParent()].push_back(MRE);
766 }
767
768 macho::RelocationEntry MRE;
769 MRE.Word0 = ((FixupOffset << 0) |
770 (Type << 24) |
771 (Log2Size << 28) |
772 (IsPCRel << 30) |
773 macho::RF_Scattered);
774 MRE.Word1 = Value;
775 Relocations[Fragment->getParent()].push_back(MRE);
776 }
777
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000778 void RecordARMMovwMovtRelocation(const MCAssembler &Asm,
779 const MCAsmLayout &Layout,
780 const MCFragment *Fragment,
781 const MCFixup &Fixup, MCValue Target,
782 uint64_t &FixedValue) {
783 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
784 unsigned IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
785 unsigned Type = macho::RIT_ARM_Half;
786
787 // See <reloc.h>.
788 const MCSymbol *A = &Target.getSymA()->getSymbol();
789 MCSymbolData *A_SD = &Asm.getSymbolData(*A);
790
791 if (!A_SD->getFragment())
792 report_fatal_error("symbol '" + A->getName() +
793 "' can not be undefined in a subtraction expression");
794
795 uint32_t Value = getSymbolAddress(A_SD, Layout);
796 uint32_t Value2 = 0;
797 uint64_t SecAddr = getSectionAddress(A_SD->getFragment()->getParent());
798 FixedValue += SecAddr;
799
800 if (const MCSymbolRefExpr *B = Target.getSymB()) {
801 MCSymbolData *B_SD = &Asm.getSymbolData(B->getSymbol());
802
803 if (!B_SD->getFragment())
804 report_fatal_error("symbol '" + B->getSymbol().getName() +
805 "' can not be undefined in a subtraction expression");
806
807 // Select the appropriate difference relocation type.
808 Type = macho::RIT_ARM_HalfDifference;
809 Value2 = getSymbolAddress(B_SD, Layout);
810 FixedValue -= getSectionAddress(B_SD->getFragment()->getParent());
811 }
812
813 // Relocations are written out in reverse order, so the PAIR comes first.
814 // ARM_RELOC_HALF and ARM_RELOC_HALF_SECTDIFF abuse the r_length field:
815 //
816 // For these two r_type relocations they always have a pair following them
817 // and the r_length bits are used differently. The encoding of the
818 // r_length is as follows:
819 // low bit of r_length:
820 // 0 - :lower16: for movw instructions
821 // 1 - :upper16: for movt instructions
822 // high bit of r_length:
823 // 0 - arm instructions
824 // 1 - thumb instructions
825 // the other half of the relocated expression is in the following pair
826 // relocation entry in the the low 16 bits of r_address field.
827 unsigned ThumbBit = 0;
828 unsigned MovtBit = 0;
829 switch (Fixup.getKind()) {
830 default: break;
831 case ARM::fixup_arm_movt_hi16:
832 case ARM::fixup_arm_movt_hi16_pcrel:
833 MovtBit = 1;
834 break;
835 case ARM::fixup_t2_movt_hi16:
836 case ARM::fixup_t2_movt_hi16_pcrel:
837 MovtBit = 1;
838 // Fallthrough
839 case ARM::fixup_t2_movw_lo16:
840 case ARM::fixup_t2_movw_lo16_pcrel:
841 ThumbBit = 1;
842 break;
843 }
844
845
846 if (Type == macho::RIT_ARM_HalfDifference) {
847 uint32_t OtherHalf = MovtBit
848 ? (FixedValue & 0xffff) : ((FixedValue & 0xffff0000) >> 16);
849
850 macho::RelocationEntry MRE;
851 MRE.Word0 = ((OtherHalf << 0) |
852 (macho::RIT_Pair << 24) |
853 (MovtBit << 28) |
854 (ThumbBit << 29) |
855 (IsPCRel << 30) |
856 macho::RF_Scattered);
857 MRE.Word1 = Value2;
858 Relocations[Fragment->getParent()].push_back(MRE);
859 }
860
861 macho::RelocationEntry MRE;
862 MRE.Word0 = ((FixupOffset << 0) |
863 (Type << 24) |
864 (MovtBit << 28) |
865 (ThumbBit << 29) |
866 (IsPCRel << 30) |
867 macho::RF_Scattered);
868 MRE.Word1 = Value;
869 Relocations[Fragment->getParent()].push_back(MRE);
870 }
871
Eric Christopherc9ada472010-06-15 22:59:05 +0000872 void RecordTLVPRelocation(const MCAssembler &Asm,
Eric Christophere48dbf82010-06-16 00:26:36 +0000873 const MCAsmLayout &Layout,
874 const MCFragment *Fragment,
875 const MCFixup &Fixup, MCValue Target,
876 uint64_t &FixedValue) {
Eric Christopherc9ada472010-06-15 22:59:05 +0000877 assert(Target.getSymA()->getKind() == MCSymbolRefExpr::VK_TLVP &&
Daniel Dunbar5d05d972010-12-16 17:21:02 +0000878 !is64Bit() &&
Eric Christopherc9ada472010-06-15 22:59:05 +0000879 "Should only be called with a 32-bit TLVP relocation!");
880
Eric Christopherc9ada472010-06-15 22:59:05 +0000881 unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind());
882 uint32_t Value = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
883 unsigned IsPCRel = 0;
884
885 // Get the symbol data.
886 MCSymbolData *SD_A = &Asm.getSymbolData(Target.getSymA()->getSymbol());
887 unsigned Index = SD_A->getIndex();
888
Eric Christopherbc067372010-06-16 21:32:38 +0000889 // We're only going to have a second symbol in pic mode and it'll be a
890 // subtraction from the picbase. For 32-bit pic the addend is the difference
Eric Christopher04b8d3c2010-06-17 00:49:46 +0000891 // between the picbase and the next address. For 32-bit static the addend
892 // is zero.
Eric Christopherbc067372010-06-16 21:32:38 +0000893 if (Target.getSymB()) {
Eric Christopher1008d352010-06-22 23:51:47 +0000894 // If this is a subtraction then we're pcrel.
895 uint32_t FixupAddress =
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000896 getFragmentAddress(Fragment, Layout) + Fixup.getOffset();
Eric Christopher1008d352010-06-22 23:51:47 +0000897 MCSymbolData *SD_B = &Asm.getSymbolData(Target.getSymB()->getSymbol());
Eric Christopherc9ada472010-06-15 22:59:05 +0000898 IsPCRel = 1;
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000899 FixedValue = (FixupAddress - getSymbolAddress(SD_B, Layout) +
Eric Christopher1008d352010-06-22 23:51:47 +0000900 Target.getConstant());
Chris Lattnerabf8f9c2010-08-16 16:35:20 +0000901 FixedValue += 1ULL << Log2Size;
Eric Christopherbc067372010-06-16 21:32:38 +0000902 } else {
903 FixedValue = 0;
904 }
Jim Grosbach3c384922010-11-11 20:16:23 +0000905
Eric Christopherc9ada472010-06-15 22:59:05 +0000906 // struct relocation_info (8 bytes)
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +0000907 macho::RelocationEntry MRE;
Eric Christopherc9ada472010-06-15 22:59:05 +0000908 MRE.Word0 = Value;
Daniel Dunbare1feeb92010-12-21 15:26:45 +0000909 MRE.Word1 = ((Index << 0) |
910 (IsPCRel << 24) |
911 (Log2Size << 25) |
912 (1 << 27) | // Extern
913 (macho::RIT_Generic_TLV << 28)); // Type
Eric Christopherc9ada472010-06-15 22:59:05 +0000914 Relocations[Fragment->getParent()].push_back(MRE);
915 }
Jim Grosbach3c384922010-11-11 20:16:23 +0000916
Daniel Dunbare8624532010-12-27 14:49:49 +0000917 static bool getARMFixupKindMachOInfo(unsigned Kind, unsigned &RelocType,
Daniel Dunbar294e6782010-12-22 16:19:24 +0000918 unsigned &Log2Size) {
Daniel Dunbare8624532010-12-27 14:49:49 +0000919 RelocType = unsigned(macho::RIT_Vanilla);
Daniel Dunbar36645642010-12-22 16:32:37 +0000920 Log2Size = ~0U;
921
Daniel Dunbar294e6782010-12-22 16:19:24 +0000922 switch (Kind) {
923 default:
924 return false;
925
Daniel Dunbar36645642010-12-22 16:32:37 +0000926 case FK_Data_1:
927 Log2Size = llvm::Log2_32(1);
928 return true;
929 case FK_Data_2:
930 Log2Size = llvm::Log2_32(2);
931 return true;
932 case FK_Data_4:
933 Log2Size = llvm::Log2_32(4);
934 return true;
935 case FK_Data_8:
936 Log2Size = llvm::Log2_32(8);
937 return true;
938
Daniel Dunbar294e6782010-12-22 16:19:24 +0000939 // Handle 24-bit branch kinds.
940 case ARM::fixup_arm_ldst_pcrel_12:
941 case ARM::fixup_arm_pcrel_10:
942 case ARM::fixup_arm_adr_pcrel_12:
943 case ARM::fixup_arm_branch:
Daniel Dunbare8624532010-12-27 14:49:49 +0000944 RelocType = unsigned(macho::RIT_ARM_Branch24Bit);
Daniel Dunbar294e6782010-12-22 16:19:24 +0000945 // Report as 'long', even though that is not quite accurate.
946 Log2Size = llvm::Log2_32(4);
947 return true;
Daniel Dunbar4010dd72010-12-24 16:41:46 +0000948
949 // Handle Thumb branches.
950 case ARM::fixup_arm_thumb_br:
Daniel Dunbare8624532010-12-27 14:49:49 +0000951 RelocType = unsigned(macho::RIT_ARM_ThumbBranch22Bit);
Daniel Dunbar4010dd72010-12-24 16:41:46 +0000952 Log2Size = llvm::Log2_32(2);
953 return true;
954
955 case ARM::fixup_arm_thumb_bl:
Daniel Dunbare8624532010-12-27 14:49:49 +0000956 RelocType = unsigned(macho::RIT_ARM_ThumbBranch32Bit);
Daniel Dunbar4010dd72010-12-24 16:41:46 +0000957 Log2Size = llvm::Log2_32(4);
958 return true;
959
960 case ARM::fixup_arm_thumb_blx:
Daniel Dunbare8624532010-12-27 14:49:49 +0000961 RelocType = unsigned(macho::RIT_ARM_ThumbBranch22Bit);
Daniel Dunbar4010dd72010-12-24 16:41:46 +0000962 // Report as 'long', even though that is not quite accurate.
963 Log2Size = llvm::Log2_32(4);
964 return true;
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000965
966 case ARM::fixup_arm_movt_hi16:
967 case ARM::fixup_arm_movt_hi16_pcrel:
968 case ARM::fixup_t2_movt_hi16:
969 case ARM::fixup_t2_movt_hi16_pcrel:
970 RelocType = unsigned(macho::RIT_ARM_HalfDifference);
971 // Report as 'long', even though that is not quite accurate.
972 Log2Size = llvm::Log2_32(4);
973 return true;
974
975 case ARM::fixup_arm_movw_lo16:
976 case ARM::fixup_arm_movw_lo16_pcrel:
977 case ARM::fixup_t2_movw_lo16:
978 case ARM::fixup_t2_movw_lo16_pcrel:
979 RelocType = unsigned(macho::RIT_ARM_Half);
980 // Report as 'long', even though that is not quite accurate.
981 Log2Size = llvm::Log2_32(4);
982 return true;
Daniel Dunbar294e6782010-12-22 16:19:24 +0000983 }
984 }
Daniel Dunbar532c4562010-12-22 13:49:43 +0000985 void RecordARMRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
986 const MCFragment *Fragment, const MCFixup &Fixup,
987 MCValue Target, uint64_t &FixedValue) {
Daniel Dunbar4d743052010-12-22 13:50:05 +0000988 unsigned IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Daniel Dunbar294e6782010-12-22 16:19:24 +0000989 unsigned Log2Size;
Daniel Dunbare8624532010-12-27 14:49:49 +0000990 unsigned RelocType = macho::RIT_Vanilla;
991 if (!getARMFixupKindMachOInfo(Fixup.getKind(), RelocType, Log2Size)) {
Daniel Dunbar294e6782010-12-22 16:19:24 +0000992 report_fatal_error("unknown ARM fixup kind!");
993 return;
994 }
Daniel Dunbar4d743052010-12-22 13:50:05 +0000995
996 // If this is a difference or a defined symbol plus an offset, then we need
997 // a scattered relocation entry. Differences always require scattered
998 // relocations.
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000999 if (Target.getSymB()) {
1000 if (RelocType == macho::RIT_ARM_Half ||
1001 RelocType == macho::RIT_ARM_HalfDifference)
1002 return RecordARMMovwMovtRelocation(Asm, Layout, Fragment, Fixup,
1003 Target, FixedValue);
1004 return RecordARMScatteredRelocation(Asm, Layout, Fragment, Fixup,
1005 Target, Log2Size, FixedValue);
1006 }
Daniel Dunbar4d743052010-12-22 13:50:05 +00001007
1008 // Get the symbol data, if any.
1009 MCSymbolData *SD = 0;
1010 if (Target.getSymA())
1011 SD = &Asm.getSymbolData(Target.getSymA()->getSymbol());
1012
1013 // FIXME: For other platforms, we need to use scattered relocations for
1014 // internal relocations with offsets. If this is an internal relocation
1015 // with an offset, it also needs a scattered relocation entry.
1016 //
1017 // Is this right for ARM?
1018 uint32_t Offset = Target.getConstant();
Daniel Dunbare8624532010-12-27 14:49:49 +00001019 if (IsPCRel && RelocType == macho::RIT_Vanilla)
Daniel Dunbar4d743052010-12-22 13:50:05 +00001020 Offset += 1 << Log2Size;
1021 if (Offset && SD && !doesSymbolRequireExternRelocation(SD))
Evan Chengf3eb3bb2011-01-14 02:38:49 +00001022 return RecordARMScatteredRelocation(Asm, Layout, Fragment, Fixup, Target,
1023 Log2Size, FixedValue);
Daniel Dunbar4d743052010-12-22 13:50:05 +00001024
1025 // See <reloc.h>.
1026 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
1027 unsigned Index = 0;
1028 unsigned IsExtern = 0;
1029 unsigned Type = 0;
1030
1031 if (Target.isAbsolute()) { // constant
1032 // FIXME!
1033 report_fatal_error("FIXME: relocations to absolute targets "
1034 "not yet implemented");
1035 } else if (SD->getSymbol().isVariable()) {
1036 int64_t Res;
1037 if (SD->getSymbol().getVariableValue()->EvaluateAsAbsolute(
1038 Res, Layout, SectionAddress)) {
1039 FixedValue = Res;
1040 return;
1041 }
1042
1043 report_fatal_error("unsupported relocation of variable '" +
1044 SD->getSymbol().getName() + "'");
1045 } else {
1046 // Check whether we need an external or internal relocation.
1047 if (doesSymbolRequireExternRelocation(SD)) {
1048 IsExtern = 1;
1049 Index = SD->getIndex();
1050 // For external relocations, make sure to offset the fixup value to
1051 // compensate for the addend of the symbol address, if it was
1052 // undefined. This occurs with weak definitions, for example.
1053 if (!SD->Symbol->isUndefined())
1054 FixedValue -= Layout.getSymbolOffset(SD);
1055 } else {
1056 // The index is the section ordinal (1-based).
1057 Index = SD->getFragment()->getParent()->getOrdinal() + 1;
1058 FixedValue += getSectionAddress(SD->getFragment()->getParent());
1059 }
1060 if (IsPCRel)
1061 FixedValue -= getSectionAddress(Fragment->getParent());
1062
Daniel Dunbare8624532010-12-27 14:49:49 +00001063 // The type is determined by the fixup kind.
1064 Type = RelocType;
Daniel Dunbar4d743052010-12-22 13:50:05 +00001065 }
1066
1067 // struct relocation_info (8 bytes)
1068 macho::RelocationEntry MRE;
1069 MRE.Word0 = FixupOffset;
1070 MRE.Word1 = ((Index << 0) |
1071 (IsPCRel << 24) |
1072 (Log2Size << 25) |
1073 (IsExtern << 27) |
1074 (Type << 28));
1075 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar532c4562010-12-22 13:49:43 +00001076 }
1077
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001078 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
Daniel Dunbarc90e30a2010-05-26 15:18:56 +00001079 const MCFragment *Fragment, const MCFixup &Fixup,
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001080 MCValue Target, uint64_t &FixedValue) {
Daniel Dunbar532c4562010-12-22 13:49:43 +00001081 // FIXME: These needs to be factored into the target Mach-O writer.
1082 if (isARM()) {
1083 RecordARMRelocation(Asm, Layout, Fragment, Fixup, Target, FixedValue);
1084 return;
1085 }
Daniel Dunbar5d05d972010-12-16 17:21:02 +00001086 if (is64Bit()) {
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001087 RecordX86_64Relocation(Asm, Layout, Fragment, Fixup, Target, FixedValue);
Daniel Dunbar602b40f2010-03-19 18:07:55 +00001088 return;
1089 }
1090
Daniel Dunbar7e06af82010-12-16 15:42:31 +00001091 unsigned IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Daniel Dunbar482ad802010-05-26 15:18:31 +00001092 unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001093
Eric Christopherc9ada472010-06-15 22:59:05 +00001094 // If this is a 32-bit TLVP reloc it's handled a bit differently.
Daniel Dunbar23bea412010-09-17 15:21:50 +00001095 if (Target.getSymA() &&
1096 Target.getSymA()->getKind() == MCSymbolRefExpr::VK_TLVP) {
Eric Christopherc9ada472010-06-15 22:59:05 +00001097 RecordTLVPRelocation(Asm, Layout, Fragment, Fixup, Target, FixedValue);
1098 return;
1099 }
Jim Grosbach3c384922010-11-11 20:16:23 +00001100
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001101 // If this is a difference or a defined symbol plus an offset, then we need
1102 // a scattered relocation entry.
Daniel Dunbara8251fa2010-05-10 23:15:20 +00001103 // Differences always require scattered relocations.
1104 if (Target.getSymB())
1105 return RecordScatteredRelocation(Asm, Layout, Fragment, Fixup,
Evan Chengf3eb3bb2011-01-14 02:38:49 +00001106 Target, Log2Size, FixedValue);
Daniel Dunbara8251fa2010-05-10 23:15:20 +00001107
1108 // Get the symbol data, if any.
1109 MCSymbolData *SD = 0;
1110 if (Target.getSymA())
1111 SD = &Asm.getSymbolData(Target.getSymA()->getSymbol());
1112
1113 // If this is an internal relocation with an offset, it also needs a
1114 // scattered relocation entry.
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001115 uint32_t Offset = Target.getConstant();
1116 if (IsPCRel)
1117 Offset += 1 << Log2Size;
Daniel Dunbara8251fa2010-05-10 23:15:20 +00001118 if (Offset && SD && !doesSymbolRequireExternRelocation(SD))
1119 return RecordScatteredRelocation(Asm, Layout, Fragment, Fixup,
Evan Chengf3eb3bb2011-01-14 02:38:49 +00001120 Target, Log2Size, FixedValue);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001121
1122 // See <reloc.h>.
Daniel Dunbar482ad802010-05-26 15:18:31 +00001123 uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001124 unsigned Index = 0;
1125 unsigned IsExtern = 0;
1126 unsigned Type = 0;
1127
1128 if (Target.isAbsolute()) { // constant
1129 // SymbolNum of 0 indicates the absolute section.
1130 //
1131 // FIXME: Currently, these are never generated (see code below). I cannot
1132 // find a case where they are actually emitted.
Daniel Dunbarf52788f2010-11-27 04:59:14 +00001133 Type = macho::RIT_Vanilla;
Rafael Espindola545b77e2010-12-07 17:12:32 +00001134 } else if (SD->getSymbol().isVariable()) {
Rafael Espindola545b77e2010-12-07 17:12:32 +00001135 int64_t Res;
Daniel Dunbar42b52862010-12-22 13:49:56 +00001136 if (SD->getSymbol().getVariableValue()->EvaluateAsAbsolute(
1137 Res, Layout, SectionAddress)) {
Rafael Espindola545b77e2010-12-07 17:12:32 +00001138 FixedValue = Res;
1139 return;
Rafael Espindola545b77e2010-12-07 17:12:32 +00001140 }
Daniel Dunbar42b52862010-12-22 13:49:56 +00001141
1142 report_fatal_error("unsupported relocation of variable '" +
1143 SD->getSymbol().getName() + "'");
Michael J. Spencerb0f3b3e2010-08-10 16:00:49 +00001144 } else {
Daniel Dunbare9460ec2010-05-10 23:15:13 +00001145 // Check whether we need an external or internal relocation.
1146 if (doesSymbolRequireExternRelocation(SD)) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001147 IsExtern = 1;
1148 Index = SD->getIndex();
Daniel Dunbare9460ec2010-05-10 23:15:13 +00001149 // For external relocations, make sure to offset the fixup value to
1150 // compensate for the addend of the symbol address, if it was
1151 // undefined. This occurs with weak definitions, for example.
1152 if (!SD->Symbol->isUndefined())
Rafael Espindola3b3148f2010-12-07 05:57:28 +00001153 FixedValue -= Layout.getSymbolOffset(SD);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001154 } else {
Daniel Dunbar8fb04032010-03-25 08:08:54 +00001155 // The index is the section ordinal (1-based).
1156 Index = SD->getFragment()->getParent()->getOrdinal() + 1;
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001157 FixedValue += getSectionAddress(SD->getFragment()->getParent());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001158 }
Rafael Espindolabf60dad2010-12-07 03:50:14 +00001159 if (IsPCRel)
1160 FixedValue -= getSectionAddress(Fragment->getParent());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001161
Daniel Dunbarf52788f2010-11-27 04:59:14 +00001162 Type = macho::RIT_Vanilla;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001163 }
1164
1165 // struct relocation_info (8 bytes)
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +00001166 macho::RelocationEntry MRE;
Daniel Dunbar640e9482010-05-11 23:53:07 +00001167 MRE.Word0 = FixupOffset;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001168 MRE.Word1 = ((Index << 0) |
1169 (IsPCRel << 24) |
1170 (Log2Size << 25) |
1171 (IsExtern << 27) |
1172 (Type << 28));
Daniel Dunbarb7514182010-03-22 20:35:50 +00001173 Relocations[Fragment->getParent()].push_back(MRE);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001174 }
1175
1176 void BindIndirectSymbols(MCAssembler &Asm) {
1177 // This is the point where 'as' creates actual symbols for indirect symbols
1178 // (in the following two passes). It would be easier for us to do this
1179 // sooner when we see the attribute, but that makes getting the order in the
1180 // symbol table much more complicated than it is worth.
1181 //
1182 // FIXME: Revisit this when the dust settles.
1183
1184 // Bind non lazy symbol pointers first.
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +00001185 unsigned IndirectIndex = 0;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001186 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +00001187 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001188 const MCSectionMachO &Section =
Daniel Dunbar56279f42010-05-18 17:28:20 +00001189 cast<MCSectionMachO>(it->SectionData->getSection());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001190
1191 if (Section.getType() != MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS)
1192 continue;
1193
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +00001194 // Initialize the section indirect symbol base, if necessary.
1195 if (!IndirectSymBase.count(it->SectionData))
1196 IndirectSymBase[it->SectionData] = IndirectIndex;
Jim Grosbach3c384922010-11-11 20:16:23 +00001197
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001198 Asm.getOrCreateSymbolData(*it->Symbol);
1199 }
1200
1201 // Then lazy symbol pointers and symbol stubs.
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +00001202 IndirectIndex = 0;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001203 for (MCAssembler::indirect_symbol_iterator it = Asm.indirect_symbol_begin(),
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +00001204 ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001205 const MCSectionMachO &Section =
Daniel Dunbar56279f42010-05-18 17:28:20 +00001206 cast<MCSectionMachO>(it->SectionData->getSection());
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001207
1208 if (Section.getType() != MCSectionMachO::S_LAZY_SYMBOL_POINTERS &&
1209 Section.getType() != MCSectionMachO::S_SYMBOL_STUBS)
1210 continue;
1211
Daniel Dunbar2ae4bfd2010-05-18 17:28:24 +00001212 // Initialize the section indirect symbol base, if necessary.
1213 if (!IndirectSymBase.count(it->SectionData))
1214 IndirectSymBase[it->SectionData] = IndirectIndex;
1215
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001216 // Set the symbol type to undefined lazy, but only on construction.
1217 //
1218 // FIXME: Do not hardcode.
1219 bool Created;
1220 MCSymbolData &Entry = Asm.getOrCreateSymbolData(*it->Symbol, &Created);
1221 if (Created)
1222 Entry.setFlags(Entry.getFlags() | 0x0001);
1223 }
1224 }
1225
1226 /// ComputeSymbolTable - Compute the symbol table data
1227 ///
1228 /// \param StringTable [out] - The string table data.
1229 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
1230 /// string table.
1231 void ComputeSymbolTable(MCAssembler &Asm, SmallString<256> &StringTable,
1232 std::vector<MachSymbolData> &LocalSymbolData,
1233 std::vector<MachSymbolData> &ExternalSymbolData,
1234 std::vector<MachSymbolData> &UndefinedSymbolData) {
1235 // Build section lookup table.
1236 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
1237 unsigned Index = 1;
1238 for (MCAssembler::iterator it = Asm.begin(),
1239 ie = Asm.end(); it != ie; ++it, ++Index)
1240 SectionIndexMap[&it->getSection()] = Index;
1241 assert(Index <= 256 && "Too many sections!");
1242
1243 // Index 0 is always the empty string.
1244 StringMap<uint64_t> StringIndexMap;
1245 StringTable += '\x00';
1246
1247 // Build the symbol arrays and the string table, but only for non-local
1248 // symbols.
1249 //
1250 // The particular order that we collect the symbols and create the string
1251 // table, then sort the symbols is chosen to match 'as'. Even though it
1252 // doesn't matter for correctness, this is important for letting us diff .o
1253 // files.
1254 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
1255 ie = Asm.symbol_end(); it != ie; ++it) {
1256 const MCSymbol &Symbol = it->getSymbol();
1257
1258 // Ignore non-linker visible symbols.
Daniel Dunbar843aa1f2010-06-16 20:04:29 +00001259 if (!Asm.isSymbolLinkerVisible(it->getSymbol()))
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001260 continue;
1261
1262 if (!it->isExternal() && !Symbol.isUndefined())
1263 continue;
1264
1265 uint64_t &Entry = StringIndexMap[Symbol.getName()];
1266 if (!Entry) {
1267 Entry = StringTable.size();
1268 StringTable += Symbol.getName();
1269 StringTable += '\x00';
1270 }
1271
1272 MachSymbolData MSD;
1273 MSD.SymbolData = it;
1274 MSD.StringIndex = Entry;
1275
1276 if (Symbol.isUndefined()) {
1277 MSD.SectionIndex = 0;
1278 UndefinedSymbolData.push_back(MSD);
1279 } else if (Symbol.isAbsolute()) {
1280 MSD.SectionIndex = 0;
1281 ExternalSymbolData.push_back(MSD);
1282 } else {
1283 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
1284 assert(MSD.SectionIndex && "Invalid section index!");
1285 ExternalSymbolData.push_back(MSD);
1286 }
1287 }
1288
1289 // Now add the data for local symbols.
1290 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
1291 ie = Asm.symbol_end(); it != ie; ++it) {
1292 const MCSymbol &Symbol = it->getSymbol();
1293
1294 // Ignore non-linker visible symbols.
Daniel Dunbar843aa1f2010-06-16 20:04:29 +00001295 if (!Asm.isSymbolLinkerVisible(it->getSymbol()))
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001296 continue;
1297
1298 if (it->isExternal() || Symbol.isUndefined())
1299 continue;
1300
1301 uint64_t &Entry = StringIndexMap[Symbol.getName()];
1302 if (!Entry) {
1303 Entry = StringTable.size();
1304 StringTable += Symbol.getName();
1305 StringTable += '\x00';
1306 }
1307
1308 MachSymbolData MSD;
1309 MSD.SymbolData = it;
1310 MSD.StringIndex = Entry;
1311
1312 if (Symbol.isAbsolute()) {
1313 MSD.SectionIndex = 0;
1314 LocalSymbolData.push_back(MSD);
1315 } else {
1316 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
1317 assert(MSD.SectionIndex && "Invalid section index!");
1318 LocalSymbolData.push_back(MSD);
1319 }
1320 }
1321
1322 // External and undefined symbols are required to be in lexicographic order.
1323 std::sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
1324 std::sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
1325
1326 // Set the symbol indices.
1327 Index = 0;
1328 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
1329 LocalSymbolData[i].SymbolData->setIndex(Index++);
1330 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
1331 ExternalSymbolData[i].SymbolData->setIndex(Index++);
1332 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
1333 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
1334
1335 // The string table is padded to a multiple of 4.
1336 while (StringTable.size() % 4)
1337 StringTable += '\x00';
1338 }
1339
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001340 void computeSectionAddresses(const MCAssembler &Asm,
1341 const MCAsmLayout &Layout) {
1342 uint64_t StartAddress = 0;
1343 const SmallVectorImpl<MCSectionData*> &Order = Layout.getSectionOrder();
1344 for (int i = 0, n = Order.size(); i != n ; ++i) {
1345 const MCSectionData *SD = Order[i];
1346 StartAddress = RoundUpToAlignment(StartAddress, SD->getAlignment());
1347 SectionAddress[SD] = StartAddress;
1348 StartAddress += Layout.getSectionAddressSize(SD);
1349 // Explicitly pad the section to match the alignment requirements of the
1350 // following one. This is for 'gas' compatibility, it shouldn't
1351 /// strictly be necessary.
1352 StartAddress += getPaddingSize(SD, Layout);
1353 }
1354 }
1355
1356 void ExecutePostLayoutBinding(MCAssembler &Asm, const MCAsmLayout &Layout) {
1357 computeSectionAddresses(Asm, Layout);
1358
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001359 // Create symbol data for any indirect symbols.
1360 BindIndirectSymbols(Asm);
1361
1362 // Compute symbol table information and bind symbol indices.
1363 ComputeSymbolTable(Asm, StringTable, LocalSymbolData, ExternalSymbolData,
1364 UndefinedSymbolData);
1365 }
1366
Rafael Espindolafea753b2010-12-24 21:22:02 +00001367 virtual bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
1368 const MCSymbolData &DataA,
1369 const MCFragment &FB,
1370 bool InSet,
1371 bool IsPCRel) const {
Rafael Espindola31327802010-12-18 06:27:54 +00001372 if (InSet)
1373 return true;
1374
Daniel Dunbar32c1c5a2010-12-17 04:54:58 +00001375 // The effective address is
1376 // addr(atom(A)) + offset(A)
1377 // - addr(atom(B)) - offset(B)
1378 // and the offsets are not relocatable, so the fixup is fully resolved when
1379 // addr(atom(A)) - addr(atom(B)) == 0.
1380 const MCSymbolData *A_Base = 0, *B_Base = 0;
1381
Rafael Espindolafea753b2010-12-24 21:22:02 +00001382 const MCSymbol &SA = DataA.getSymbol().AliasedSymbol();
1383 const MCSection &SecA = SA.getSection();
1384 const MCSection &SecB = FB.getParent()->getSection();
Daniel Dunbar32c1c5a2010-12-17 04:54:58 +00001385
Rafael Espindolafea753b2010-12-24 21:22:02 +00001386 if (IsPCRel) {
1387 // The simple (Darwin, except on x86_64) way of dealing with this was to
1388 // assume that any reference to a temporary symbol *must* be a temporary
1389 // symbol in the same atom, unless the sections differ. Therefore, any
1390 // PCrel relocation to a temporary symbol (in the same section) is fully
1391 // resolved. This also works in conjunction with absolutized .set, which
1392 // requires the compiler to use .set to absolutize the differences between
1393 // symbols which the compiler knows to be assembly time constants, so we
1394 // don't need to worry about considering symbol differences fully
1395 // resolved.
1396
1397 if (!Asm.getBackend().hasReliableSymbolDifference()) {
1398 if (!SA.isTemporary() || !SA.isInSection() || &SecA != &SecB)
1399 return false;
1400 return true;
1401 }
1402 } else {
1403 if (!TargetObjectWriter->useAggressiveSymbolFolding())
1404 return false;
1405 }
1406
1407 const MCFragment &FA = *Asm.getSymbolData(SA).getFragment();
1408
1409 A_Base = FA.getAtom();
Daniel Dunbar32c1c5a2010-12-17 04:54:58 +00001410 if (!A_Base)
1411 return false;
1412
Rafael Espindolafea753b2010-12-24 21:22:02 +00001413 B_Base = FB.getAtom();
Daniel Dunbar32c1c5a2010-12-17 04:54:58 +00001414 if (!B_Base)
1415 return false;
1416
1417 // If the atoms are the same, they are guaranteed to have the same address.
1418 if (A_Base == B_Base)
1419 return true;
1420
1421 // Otherwise, we can't prove this is fully resolved.
Daniel Dunbar1f3662a2010-12-17 04:54:54 +00001422 return false;
1423 }
1424
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001425 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) {
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001426 unsigned NumSections = Asm.size();
1427
1428 // The section data starts after the header, the segment load command (and
1429 // section headers) and the symbol table.
1430 unsigned NumLoadCommands = 1;
Daniel Dunbar5d05d972010-12-16 17:21:02 +00001431 uint64_t LoadCommandsSize = is64Bit() ?
Daniel Dunbar821ecd72010-11-27 04:19:38 +00001432 macho::SegmentLoadCommand64Size + NumSections * macho::Section64Size :
1433 macho::SegmentLoadCommand32Size + NumSections * macho::Section32Size;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001434
1435 // Add the symbol table load command sizes, if used.
1436 unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() +
1437 UndefinedSymbolData.size();
1438 if (NumSymbols) {
1439 NumLoadCommands += 2;
Daniel Dunbar821ecd72010-11-27 04:19:38 +00001440 LoadCommandsSize += (macho::SymtabLoadCommandSize +
1441 macho::DysymtabLoadCommandSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001442 }
1443
1444 // Compute the total size of the section data, as well as its file size and
1445 // vm size.
Daniel Dunbar5d05d972010-12-16 17:21:02 +00001446 uint64_t SectionDataStart = (is64Bit() ? macho::Header64Size :
Daniel Dunbar821ecd72010-11-27 04:19:38 +00001447 macho::Header32Size) + LoadCommandsSize;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001448 uint64_t SectionDataSize = 0;
1449 uint64_t SectionDataFileSize = 0;
1450 uint64_t VMSize = 0;
1451 for (MCAssembler::const_iterator it = Asm.begin(),
1452 ie = Asm.end(); it != ie; ++it) {
1453 const MCSectionData &SD = *it;
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001454 uint64_t Address = getSectionAddress(&SD);
1455 uint64_t Size = Layout.getSectionAddressSize(&SD);
Daniel Dunbar5d428512010-03-25 02:00:07 +00001456 uint64_t FileSize = Layout.getSectionFileSize(&SD);
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001457 FileSize += getPaddingSize(&SD, Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001458
Daniel Dunbar5d428512010-03-25 02:00:07 +00001459 VMSize = std::max(VMSize, Address + Size);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001460
Rafael Espindolaf2dc4aa2010-11-17 20:03:54 +00001461 if (SD.getSection().isVirtualSection())
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001462 continue;
1463
Daniel Dunbar5d428512010-03-25 02:00:07 +00001464 SectionDataSize = std::max(SectionDataSize, Address + Size);
1465 SectionDataFileSize = std::max(SectionDataFileSize, Address + FileSize);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001466 }
1467
1468 // The section data is padded to 4 bytes.
1469 //
1470 // FIXME: Is this machine dependent?
1471 unsigned SectionDataPadding = OffsetToAlignment(SectionDataFileSize, 4);
1472 SectionDataFileSize += SectionDataPadding;
1473
1474 // Write the prolog, starting with the header and load command...
1475 WriteHeader(NumLoadCommands, LoadCommandsSize,
1476 Asm.getSubsectionsViaSymbols());
1477 WriteSegmentLoadCommand(NumSections, VMSize,
1478 SectionDataStart, SectionDataSize);
1479
1480 // ... and then the section headers.
1481 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
1482 for (MCAssembler::const_iterator it = Asm.begin(),
1483 ie = Asm.end(); it != ie; ++it) {
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +00001484 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001485 unsigned NumRelocs = Relocs.size();
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001486 uint64_t SectionStart = SectionDataStart + getSectionAddress(it);
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001487 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs);
Daniel Dunbar821ecd72010-11-27 04:19:38 +00001488 RelocTableEnd += NumRelocs * macho::RelocationInfoSize;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001489 }
1490
1491 // Write the symbol table load command, if used.
1492 if (NumSymbols) {
1493 unsigned FirstLocalSymbol = 0;
1494 unsigned NumLocalSymbols = LocalSymbolData.size();
1495 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
1496 unsigned NumExternalSymbols = ExternalSymbolData.size();
1497 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
1498 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
1499 unsigned NumIndirectSymbols = Asm.indirect_symbol_size();
1500 unsigned NumSymTabSymbols =
1501 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
1502 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
1503 uint64_t IndirectSymbolOffset = 0;
1504
1505 // If used, the indirect symbols are written after the section data.
1506 if (NumIndirectSymbols)
1507 IndirectSymbolOffset = RelocTableEnd;
1508
1509 // The symbol table is written after the indirect symbol data.
1510 uint64_t SymbolTableOffset = RelocTableEnd + IndirectSymbolSize;
1511
1512 // The string table is written after symbol table.
1513 uint64_t StringTableOffset =
Daniel Dunbar5d05d972010-12-16 17:21:02 +00001514 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ? macho::Nlist64Size :
Daniel Dunbar821ecd72010-11-27 04:19:38 +00001515 macho::Nlist32Size);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001516 WriteSymtabLoadCommand(SymbolTableOffset, NumSymTabSymbols,
1517 StringTableOffset, StringTable.size());
1518
1519 WriteDysymtabLoadCommand(FirstLocalSymbol, NumLocalSymbols,
1520 FirstExternalSymbol, NumExternalSymbols,
1521 FirstUndefinedSymbol, NumUndefinedSymbols,
1522 IndirectSymbolOffset, NumIndirectSymbols);
1523 }
1524
1525 // Write the actual section data.
1526 for (MCAssembler::const_iterator it = Asm.begin(),
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001527 ie = Asm.end(); it != ie; ++it) {
Daniel Dunbar5d2477c2010-12-17 02:45:59 +00001528 Asm.WriteSectionData(it, Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001529
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001530 uint64_t Pad = getPaddingSize(it, Layout);
1531 for (unsigned int i = 0; i < Pad; ++i)
1532 Write8(0);
1533 }
1534
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001535 // Write the extra padding.
1536 WriteZeros(SectionDataPadding);
1537
1538 // Write the relocation entries.
1539 for (MCAssembler::const_iterator it = Asm.begin(),
1540 ie = Asm.end(); it != ie; ++it) {
1541 // Write the section relocation entries, in reverse order to match 'as'
1542 // (approximately, the exact algorithm is more complicated than this).
Daniel Dunbar90e3e3a2010-11-27 13:39:48 +00001543 std::vector<macho::RelocationEntry> &Relocs = Relocations[it];
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001544 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1545 Write32(Relocs[e - i - 1].Word0);
1546 Write32(Relocs[e - i - 1].Word1);
1547 }
1548 }
1549
1550 // Write the symbol table data, if used.
1551 if (NumSymbols) {
1552 // Write the indirect symbol entries.
1553 for (MCAssembler::const_indirect_symbol_iterator
1554 it = Asm.indirect_symbol_begin(),
1555 ie = Asm.indirect_symbol_end(); it != ie; ++it) {
1556 // Indirect symbols in the non lazy symbol pointer section have some
1557 // special handling.
1558 const MCSectionMachO &Section =
1559 static_cast<const MCSectionMachO&>(it->SectionData->getSection());
1560 if (Section.getType() == MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS) {
1561 // If this symbol is defined and internal, mark it as such.
1562 if (it->Symbol->isDefined() &&
1563 !Asm.getSymbolData(*it->Symbol).isExternal()) {
Daniel Dunbarf52788f2010-11-27 04:59:14 +00001564 uint32_t Flags = macho::ISF_Local;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001565 if (it->Symbol->isAbsolute())
Daniel Dunbarf52788f2010-11-27 04:59:14 +00001566 Flags |= macho::ISF_Absolute;
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001567 Write32(Flags);
1568 continue;
1569 }
1570 }
1571
1572 Write32(Asm.getSymbolData(*it->Symbol).getIndex());
1573 }
1574
1575 // FIXME: Check that offsets match computed ones.
1576
1577 // Write the symbol table entries.
1578 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001579 WriteNlist(LocalSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001580 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001581 WriteNlist(ExternalSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001582 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
Daniel Dunbar207e06e2010-03-24 03:43:40 +00001583 WriteNlist(UndefinedSymbolData[i], Layout);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001584
1585 // Write the string table.
1586 OS << StringTable.str();
1587 }
1588 }
1589};
1590
1591}
1592
Daniel Dunbarae5abd52010-12-16 16:09:19 +00001593MCObjectWriter *llvm::createMachObjectWriter(MCMachObjectTargetWriter *MOTW,
Daniel Dunbar5d05d972010-12-16 17:21:02 +00001594 raw_ostream &OS,
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001595 bool IsLittleEndian) {
Daniel Dunbar5d05d972010-12-16 17:21:02 +00001596 return new MachObjectWriter(MOTW, OS, IsLittleEndian);
Daniel Dunbar2df4ceb2010-03-19 10:43:15 +00001597}