5dadbd2797e111cc697b41174d80337cc3c7bca3
[oota-llvm.git] / lib / Target / X86 / MCTargetDesc / X86MachObjectWriter.cpp
1 //===-- X86MachObjectWriter.cpp - X86 Mach-O 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
10 #include "MCTargetDesc/X86MCTargetDesc.h"
11 #include "MCTargetDesc/X86FixupKinds.h"
12 #include "llvm/ADT/Twine.h"
13 #include "llvm/MC/MCAsmInfo.h"
14 #include "llvm/MC/MCAsmLayout.h"
15 #include "llvm/MC/MCAssembler.h"
16 #include "llvm/MC/MCContext.h"
17 #include "llvm/MC/MCMachObjectWriter.h"
18 #include "llvm/MC/MCSectionMachO.h"
19 #include "llvm/MC/MCValue.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/Format.h"
22 #include "llvm/Support/MachO.h"
23
24 using namespace llvm;
25
26 namespace {
27 class X86MachObjectWriter : public MCMachObjectTargetWriter {
28   bool RecordScatteredRelocation(MachObjectWriter *Writer,
29                                  const MCAssembler &Asm,
30                                  const MCAsmLayout &Layout,
31                                  const MCFragment *Fragment,
32                                  const MCFixup &Fixup,
33                                  MCValue Target,
34                                  unsigned Log2Size,
35                                  uint64_t &FixedValue);
36   void RecordTLVPRelocation(MachObjectWriter *Writer,
37                             const MCAssembler &Asm,
38                             const MCAsmLayout &Layout,
39                             const MCFragment *Fragment,
40                             const MCFixup &Fixup,
41                             MCValue Target,
42                             uint64_t &FixedValue);
43
44   void RecordX86Relocation(MachObjectWriter *Writer,
45                               const MCAssembler &Asm,
46                               const MCAsmLayout &Layout,
47                               const MCFragment *Fragment,
48                               const MCFixup &Fixup,
49                               MCValue Target,
50                               uint64_t &FixedValue);
51   void RecordX86_64Relocation(MachObjectWriter *Writer, MCAssembler &Asm,
52                               const MCAsmLayout &Layout,
53                               const MCFragment *Fragment, const MCFixup &Fixup,
54                               MCValue Target, uint64_t &FixedValue);
55
56 public:
57   X86MachObjectWriter(bool Is64Bit, uint32_t CPUType,
58                       uint32_t CPUSubtype)
59     : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype,
60                                /*UseAggressiveSymbolFolding=*/Is64Bit) {}
61
62   void RecordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
63                         const MCAsmLayout &Layout, const MCFragment *Fragment,
64                         const MCFixup &Fixup, MCValue Target,
65                         uint64_t &FixedValue) override {
66     if (Writer->is64Bit())
67       RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
68                              FixedValue);
69     else
70       RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
71                           FixedValue);
72   }
73 };
74 }
75
76 static bool isFixupKindRIPRel(unsigned Kind) {
77   return Kind == X86::reloc_riprel_4byte ||
78     Kind == X86::reloc_riprel_4byte_movq_load;
79 }
80
81 static unsigned getFixupKindLog2Size(unsigned Kind) {
82   switch (Kind) {
83   default:
84     llvm_unreachable("invalid fixup kind!");
85   case FK_PCRel_1:
86   case FK_Data_1: return 0;
87   case FK_PCRel_2:
88   case FK_Data_2: return 1;
89   case FK_PCRel_4:
90     // FIXME: Remove these!!!
91   case X86::reloc_riprel_4byte:
92   case X86::reloc_riprel_4byte_movq_load:
93   case X86::reloc_signed_4byte:
94   case FK_Data_4: return 2;
95   case FK_Data_8: return 3;
96   }
97 }
98
99 void X86MachObjectWriter::RecordX86_64Relocation(
100     MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout,
101     const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target,
102     uint64_t &FixedValue) {
103   unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
104   unsigned IsRIPRel = isFixupKindRIPRel(Fixup.getKind());
105   unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind());
106
107   // See <reloc.h>.
108   uint32_t FixupOffset =
109     Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
110   uint32_t FixupAddress =
111     Writer->getFragmentAddress(Fragment, Layout) + Fixup.getOffset();
112   int64_t Value = 0;
113   unsigned Index = 0;
114   unsigned IsExtern = 0;
115   unsigned Type = 0;
116   const MCSymbol *RelSymbol = nullptr;
117
118   Value = Target.getConstant();
119
120   if (IsPCRel) {
121     // Compensate for the relocation offset, Darwin x86_64 relocations only have
122     // the addend and appear to have attempted to define it to be the actual
123     // expression addend without the PCrel bias. However, instructions with data
124     // following the relocation are not accommodated for (see comment below
125     // regarding SIGNED{1,2,4}), so it isn't exactly that either.
126     Value += 1LL << Log2Size;
127   }
128
129   if (Target.isAbsolute()) { // constant
130     // SymbolNum of 0 indicates the absolute section.
131     Type = MachO::X86_64_RELOC_UNSIGNED;
132
133     // FIXME: I believe this is broken, I don't think the linker can understand
134     // it. I think it would require a local relocation, but I'm not sure if that
135     // would work either. The official way to get an absolute PCrel relocation
136     // is to use an absolute symbol (which we don't support yet).
137     if (IsPCRel) {
138       IsExtern = 1;
139       Type = MachO::X86_64_RELOC_BRANCH;
140     }
141   } else if (Target.getSymB()) { // A - B + constant
142     const MCSymbol *A = &Target.getSymA()->getSymbol();
143     if (A->isTemporary())
144       A = &Writer->findAliasedSymbol(*A);
145     const MCSymbolData &A_SD = A->getData();
146     const MCSymbol *A_Base = Asm.getAtom(*A);
147
148     const MCSymbol *B = &Target.getSymB()->getSymbol();
149     if (B->isTemporary())
150       B = &Writer->findAliasedSymbol(*B);
151     const MCSymbolData &B_SD = B->getData();
152     const MCSymbol *B_Base = Asm.getAtom(*B);
153
154     // Neither symbol can be modified.
155     if (Target.getSymA()->getKind() != MCSymbolRefExpr::VK_None ||
156         Target.getSymB()->getKind() != MCSymbolRefExpr::VK_None)
157       report_fatal_error("unsupported relocation of modified symbol", false);
158
159     // We don't support PCrel relocations of differences. Darwin 'as' doesn't
160     // implement most of these correctly.
161     if (IsPCRel)
162       report_fatal_error("unsupported pc-relative relocation of difference",
163                          false);
164
165     // The support for the situation where one or both of the symbols would
166     // require a local relocation is handled just like if the symbols were
167     // external.  This is certainly used in the case of debug sections where the
168     // section has only temporary symbols and thus the symbols don't have base
169     // symbols.  This is encoded using the section ordinal and non-extern
170     // relocation entries.
171
172     // Darwin 'as' doesn't emit correct relocations for this (it ends up with a
173     // single SIGNED relocation); reject it for now.  Except the case where both
174     // symbols don't have a base, equal but both NULL.
175     if (A_Base == B_Base && A_Base)
176       report_fatal_error("unsupported relocation with identical base", false);
177
178     // A subtraction expression where either symbol is undefined is a
179     // non-relocatable expression.
180     if (A->isUndefined() || B->isUndefined()) {
181       StringRef Name = A->isUndefined() ? A->getName() : B->getName();
182       Asm.getContext().reportFatalError(Fixup.getLoc(),
183         "unsupported relocation with subtraction expression, symbol '" +
184         Name + "' can not be undefined in a subtraction expression");
185     }
186
187     Value += Writer->getSymbolAddress(*A, Layout) -
188              (!A_Base ? 0 : Writer->getSymbolAddress(*A_Base, Layout));
189     Value -= Writer->getSymbolAddress(*B, Layout) -
190              (!B_Base ? 0 : Writer->getSymbolAddress(*B_Base, Layout));
191
192     if (!A_Base)
193       Index = A_SD.getFragment()->getParent()->getOrdinal() + 1;
194     Type = MachO::X86_64_RELOC_UNSIGNED;
195
196     MachO::any_relocation_info MRE;
197     MRE.r_word0 = FixupOffset;
198     MRE.r_word1 =
199         (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
200     Writer->addRelocation(A_Base, Fragment->getParent(), MRE);
201
202     if (B_Base)
203       RelSymbol = B_Base;
204     else
205       Index = B_SD.getFragment()->getParent()->getOrdinal() + 1;
206     Type = MachO::X86_64_RELOC_SUBTRACTOR;
207   } else {
208     const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
209     if (Symbol->isTemporary() && Value) {
210       const MCSection &Sec = Symbol->getSection();
211       if (!Asm.getContext().getAsmInfo()->isSectionAtomizableBySymbols(Sec))
212         Asm.addLocalUsedInReloc(*Symbol);
213     }
214     const MCSymbolData &SD = Symbol->getData();
215     RelSymbol = Asm.getAtom(*Symbol);
216
217     // Relocations inside debug sections always use local relocations when
218     // possible. This seems to be done because the debugger doesn't fully
219     // understand x86_64 relocation entries, and expects to find values that
220     // have already been fixed up.
221     if (Symbol->isInSection()) {
222       const MCSectionMachO &Section =
223           static_cast<const MCSectionMachO &>(*Fragment->getParent());
224       if (Section.hasAttribute(MachO::S_ATTR_DEBUG))
225         RelSymbol = nullptr;
226     }
227
228     // x86_64 almost always uses external relocations, except when there is no
229     // symbol to use as a base address (a local symbol with no preceding
230     // non-local symbol).
231     if (RelSymbol) {
232       // Add the local offset, if needed.
233       if (RelSymbol != Symbol)
234         Value += Layout.getSymbolOffset(*Symbol) -
235                  Layout.getSymbolOffset(*RelSymbol);
236     } else if (Symbol->isInSection() && !Symbol->isVariable()) {
237       // The index is the section ordinal (1-based).
238       Index = SD.getFragment()->getParent()->getOrdinal() + 1;
239       Value += Writer->getSymbolAddress(*Symbol, Layout);
240
241       if (IsPCRel)
242         Value -= FixupAddress + (1 << Log2Size);
243     } else if (Symbol->isVariable()) {
244       const MCExpr *Value = Symbol->getVariableValue();
245       int64_t Res;
246       bool isAbs = Value->EvaluateAsAbsolute(Res, Layout,
247                                              Writer->getSectionAddressMap());
248       if (isAbs) {
249         FixedValue = Res;
250         return;
251       } else {
252         report_fatal_error("unsupported relocation of variable '" +
253                            Symbol->getName() + "'", false);
254       }
255     } else {
256       report_fatal_error("unsupported relocation of undefined symbol '" +
257                          Symbol->getName() + "'", false);
258     }
259
260     MCSymbolRefExpr::VariantKind Modifier = Target.getSymA()->getKind();
261     if (IsPCRel) {
262       if (IsRIPRel) {
263         if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
264           // x86_64 distinguishes movq foo@GOTPCREL so that the linker can
265           // rewrite the movq to an leaq at link time if the symbol ends up in
266           // the same linkage unit.
267           if (unsigned(Fixup.getKind()) == X86::reloc_riprel_4byte_movq_load)
268             Type = MachO::X86_64_RELOC_GOT_LOAD;
269           else
270             Type = MachO::X86_64_RELOC_GOT;
271         }  else if (Modifier == MCSymbolRefExpr::VK_TLVP) {
272           Type = MachO::X86_64_RELOC_TLV;
273         }  else if (Modifier != MCSymbolRefExpr::VK_None) {
274           report_fatal_error("unsupported symbol modifier in relocation",
275                              false);
276         } else {
277           Type = MachO::X86_64_RELOC_SIGNED;
278
279           // The Darwin x86_64 relocation format has a problem where it cannot
280           // encode an address (L<foo> + <constant>) which is outside the atom
281           // containing L<foo>. Generally, this shouldn't occur but it does
282           // happen when we have a RIPrel instruction with data following the
283           // relocation entry (e.g., movb $012, L0(%rip)). Even with the PCrel
284           // adjustment Darwin x86_64 uses, the offset is still negative and the
285           // linker has no way to recognize this.
286           //
287           // To work around this, Darwin uses several special relocation types
288           // to indicate the offsets. However, the specification or
289           // implementation of these seems to also be incomplete; they should
290           // adjust the addend as well based on the actual encoded instruction
291           // (the additional bias), but instead appear to just look at the final
292           // offset.
293           switch (-(Target.getConstant() + (1LL << Log2Size))) {
294           case 1: Type = MachO::X86_64_RELOC_SIGNED_1; break;
295           case 2: Type = MachO::X86_64_RELOC_SIGNED_2; break;
296           case 4: Type = MachO::X86_64_RELOC_SIGNED_4; break;
297           }
298         }
299       } else {
300         if (Modifier != MCSymbolRefExpr::VK_None)
301           report_fatal_error("unsupported symbol modifier in branch "
302                              "relocation", false);
303
304         Type = MachO::X86_64_RELOC_BRANCH;
305       }
306     } else {
307       if (Modifier == MCSymbolRefExpr::VK_GOT) {
308         Type = MachO::X86_64_RELOC_GOT;
309       } else if (Modifier == MCSymbolRefExpr::VK_GOTPCREL) {
310         // GOTPCREL is allowed as a modifier on non-PCrel instructions, in which
311         // case all we do is set the PCrel bit in the relocation entry; this is
312         // used with exception handling, for example. The source is required to
313         // include any necessary offset directly.
314         Type = MachO::X86_64_RELOC_GOT;
315         IsPCRel = 1;
316       } else if (Modifier == MCSymbolRefExpr::VK_TLVP) {
317         report_fatal_error("TLVP symbol modifier should have been rip-rel",
318                            false);
319       } else if (Modifier != MCSymbolRefExpr::VK_None)
320         report_fatal_error("unsupported symbol modifier in relocation", false);
321       else {
322         Type = MachO::X86_64_RELOC_UNSIGNED;
323         unsigned Kind = Fixup.getKind();
324         if (Kind == X86::reloc_signed_4byte)
325           report_fatal_error("32-bit absolute addressing is not supported in "
326                              "64-bit mode", false);
327       }
328     }
329   }
330
331   // x86_64 always writes custom values into the fixups.
332   FixedValue = Value;
333
334   // struct relocation_info (8 bytes)
335   MachO::any_relocation_info MRE;
336   MRE.r_word0 = FixupOffset;
337   MRE.r_word1 = (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
338                 (IsExtern << 27) | (Type << 28);
339   Writer->addRelocation(RelSymbol, Fragment->getParent(), MRE);
340 }
341
342 bool X86MachObjectWriter::RecordScatteredRelocation(MachObjectWriter *Writer,
343                                                     const MCAssembler &Asm,
344                                                     const MCAsmLayout &Layout,
345                                                     const MCFragment *Fragment,
346                                                     const MCFixup &Fixup,
347                                                     MCValue Target,
348                                                     unsigned Log2Size,
349                                                     uint64_t &FixedValue) {
350   uint64_t OriginalFixedValue = FixedValue;
351   uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
352   unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
353   unsigned Type = MachO::GENERIC_RELOC_VANILLA;
354
355   // See <reloc.h>.
356   const MCSymbol *A = &Target.getSymA()->getSymbol();
357   const MCSymbolData *A_SD = &A->getData();
358
359   if (!A_SD->getFragment())
360     report_fatal_error("symbol '" + A->getName() +
361                        "' can not be undefined in a subtraction expression",
362                        false);
363
364   uint32_t Value = Writer->getSymbolAddress(*A, Layout);
365   uint64_t SecAddr =
366       Writer->getSectionAddress(A_SD->getFragment()->getParent());
367   FixedValue += SecAddr;
368   uint32_t Value2 = 0;
369
370   if (const MCSymbolRefExpr *B = Target.getSymB()) {
371     const MCSymbolData *B_SD = &B->getSymbol().getData();
372
373     if (!B_SD->getFragment())
374       report_fatal_error("symbol '" + B->getSymbol().getName() +
375                          "' can not be undefined in a subtraction expression",
376                          false);
377
378     // Select the appropriate difference relocation type.
379     //
380     // Note that there is no longer any semantic difference between these two
381     // relocation types from the linkers point of view, this is done solely for
382     // pedantic compatibility with 'as'.
383     Type = A_SD->isExternal() ? (unsigned)MachO::GENERIC_RELOC_SECTDIFF :
384       (unsigned)MachO::GENERIC_RELOC_LOCAL_SECTDIFF;
385     Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout);
386     FixedValue -= Writer->getSectionAddress(B_SD->getFragment()->getParent());
387   }
388
389   // Relocations are written out in reverse order, so the PAIR comes first.
390   if (Type == MachO::GENERIC_RELOC_SECTDIFF ||
391       Type == MachO::GENERIC_RELOC_LOCAL_SECTDIFF) {
392     // If the offset is too large to fit in a scattered relocation,
393     // we're hosed. It's an unfortunate limitation of the MachO format.
394     if (FixupOffset > 0xffffff) {
395       char Buffer[32];
396       format("0x%x", FixupOffset).print(Buffer, sizeof(Buffer));
397       Asm.getContext().reportFatalError(Fixup.getLoc(),
398                          Twine("Section too large, can't encode "
399                                 "r_address (") + Buffer +
400                          ") into 24 bits of scattered "
401                          "relocation entry.");
402       llvm_unreachable("fatal error returned?!");
403     }
404
405     MachO::any_relocation_info MRE;
406     MRE.r_word0 = ((0                         <<  0) | // r_address
407                    (MachO::GENERIC_RELOC_PAIR << 24) | // r_type
408                    (Log2Size                  << 28) |
409                    (IsPCRel                   << 30) |
410                    MachO::R_SCATTERED);
411     MRE.r_word1 = Value2;
412     Writer->addRelocation(nullptr, Fragment->getParent(), MRE);
413   } else {
414     // If the offset is more than 24-bits, it won't fit in a scattered
415     // relocation offset field, so we fall back to using a non-scattered
416     // relocation. This is a bit risky, as if the offset reaches out of
417     // the block and the linker is doing scattered loading on this
418     // symbol, things can go badly.
419     //
420     // Required for 'as' compatibility.
421     if (FixupOffset > 0xffffff) {
422       FixedValue = OriginalFixedValue;
423       return false;
424     }
425   }
426
427   MachO::any_relocation_info MRE;
428   MRE.r_word0 = ((FixupOffset <<  0) |
429                  (Type        << 24) |
430                  (Log2Size    << 28) |
431                  (IsPCRel     << 30) |
432                  MachO::R_SCATTERED);
433   MRE.r_word1 = Value;
434   Writer->addRelocation(nullptr, Fragment->getParent(), MRE);
435   return true;
436 }
437
438 void X86MachObjectWriter::RecordTLVPRelocation(MachObjectWriter *Writer,
439                                                const MCAssembler &Asm,
440                                                const MCAsmLayout &Layout,
441                                                const MCFragment *Fragment,
442                                                const MCFixup &Fixup,
443                                                MCValue Target,
444                                                uint64_t &FixedValue) {
445   assert(Target.getSymA()->getKind() == MCSymbolRefExpr::VK_TLVP &&
446          !is64Bit() &&
447          "Should only be called with a 32-bit TLVP relocation!");
448
449   unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind());
450   uint32_t Value = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
451   unsigned IsPCRel = 0;
452
453   // We're only going to have a second symbol in pic mode and it'll be a
454   // subtraction from the picbase. For 32-bit pic the addend is the difference
455   // between the picbase and the next address.  For 32-bit static the addend is
456   // zero.
457   if (Target.getSymB()) {
458     // If this is a subtraction then we're pcrel.
459     uint32_t FixupAddress =
460       Writer->getFragmentAddress(Fragment, Layout) + Fixup.getOffset();
461     IsPCRel = 1;
462     FixedValue =
463         FixupAddress -
464         Writer->getSymbolAddress(Target.getSymB()->getSymbol(), Layout) +
465         Target.getConstant();
466     FixedValue += 1ULL << Log2Size;
467   } else {
468     FixedValue = 0;
469   }
470
471   // struct relocation_info (8 bytes)
472   MachO::any_relocation_info MRE;
473   MRE.r_word0 = Value;
474   MRE.r_word1 =
475       (IsPCRel << 24) | (Log2Size << 25) | (MachO::GENERIC_RELOC_TLV << 28);
476   Writer->addRelocation(&Target.getSymA()->getSymbol(), Fragment->getParent(),
477                         MRE);
478 }
479
480 void X86MachObjectWriter::RecordX86Relocation(MachObjectWriter *Writer,
481                                               const MCAssembler &Asm,
482                                               const MCAsmLayout &Layout,
483                                               const MCFragment *Fragment,
484                                               const MCFixup &Fixup,
485                                               MCValue Target,
486                                               uint64_t &FixedValue) {
487   unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
488   unsigned Log2Size = getFixupKindLog2Size(Fixup.getKind());
489
490   // If this is a 32-bit TLVP reloc it's handled a bit differently.
491   if (Target.getSymA() &&
492       Target.getSymA()->getKind() == MCSymbolRefExpr::VK_TLVP) {
493     RecordTLVPRelocation(Writer, Asm, Layout, Fragment, Fixup, Target,
494                          FixedValue);
495     return;
496   }
497
498   // If this is a difference or a defined symbol plus an offset, then we need a
499   // scattered relocation entry. Differences always require scattered
500   // relocations.
501   if (Target.getSymB()) {
502     RecordScatteredRelocation(Writer, Asm, Layout, Fragment, Fixup,
503                               Target, Log2Size, FixedValue);
504     return;
505   }
506
507   // Get the symbol data, if any.
508   const MCSymbol *A = nullptr;
509   if (Target.getSymA())
510     A = &Target.getSymA()->getSymbol();
511
512   // If this is an internal relocation with an offset, it also needs a scattered
513   // relocation entry.
514   uint32_t Offset = Target.getConstant();
515   if (IsPCRel)
516     Offset += 1 << Log2Size;
517   // Try to record the scattered relocation if needed. Fall back to non
518   // scattered if necessary (see comments in RecordScatteredRelocation()
519   // for details).
520   if (Offset && A && !Writer->doesSymbolRequireExternRelocation(*A) &&
521       RecordScatteredRelocation(Writer, Asm, Layout, Fragment, Fixup, Target,
522                                 Log2Size, FixedValue))
523     return;
524
525   // See <reloc.h>.
526   uint32_t FixupOffset = Layout.getFragmentOffset(Fragment)+Fixup.getOffset();
527   unsigned Index = 0;
528   unsigned Type = 0;
529   const MCSymbol *RelSymbol = nullptr;
530
531   if (Target.isAbsolute()) { // constant
532     // SymbolNum of 0 indicates the absolute section.
533     //
534     // FIXME: Currently, these are never generated (see code below). I cannot
535     // find a case where they are actually emitted.
536     Type = MachO::GENERIC_RELOC_VANILLA;
537   } else {
538     // Resolve constant variables.
539     if (A->isVariable()) {
540       int64_t Res;
541       if (A->getVariableValue()->EvaluateAsAbsolute(
542               Res, Layout, Writer->getSectionAddressMap())) {
543         FixedValue = Res;
544         return;
545       }
546     }
547
548     // Check whether we need an external or internal relocation.
549     if (Writer->doesSymbolRequireExternRelocation(*A)) {
550       RelSymbol = A;
551       // For external relocations, make sure to offset the fixup value to
552       // compensate for the addend of the symbol address, if it was
553       // undefined. This occurs with weak definitions, for example.
554       if (!A->isUndefined())
555         FixedValue -= Layout.getSymbolOffset(*A);
556     } else {
557       // The index is the section ordinal (1-based).
558       const MCSection &Sec = A->getSection();
559       Index = Sec.getOrdinal() + 1;
560       FixedValue += Writer->getSectionAddress(&Sec);
561     }
562     if (IsPCRel)
563       FixedValue -= Writer->getSectionAddress(Fragment->getParent());
564
565     Type = MachO::GENERIC_RELOC_VANILLA;
566   }
567
568   // struct relocation_info (8 bytes)
569   MachO::any_relocation_info MRE;
570   MRE.r_word0 = FixupOffset;
571   MRE.r_word1 =
572       (Index << 0) | (IsPCRel << 24) | (Log2Size << 25) | (Type << 28);
573   Writer->addRelocation(RelSymbol, Fragment->getParent(), MRE);
574 }
575
576 MCObjectWriter *llvm::createX86MachObjectWriter(raw_pwrite_stream &OS,
577                                                 bool Is64Bit, uint32_t CPUType,
578                                                 uint32_t CPUSubtype) {
579   return createMachObjectWriter(new X86MachObjectWriter(Is64Bit,
580                                                         CPUType,
581                                                         CPUSubtype),
582                                 OS, /*IsLittleEndian=*/true);
583 }