6944f71105b701db34df967ebc2f4cb6c13923a8
[oota-llvm.git] / lib / CodeGen / TargetLoweringObjectFileImpl.cpp
1 //===-- llvm/CodeGen/TargetLoweringObjectFileImpl.cpp - Object File Info --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements classes used to handle lowerings specific to common
11 // object file formats.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
16 #include "llvm/ADT/SmallString.h"
17 #include "llvm/ADT/StringExtras.h"
18 #include "llvm/ADT/Triple.h"
19 #include "llvm/CodeGen/MachineModuleInfoImpls.h"
20 #include "llvm/IR/Constants.h"
21 #include "llvm/IR/DataLayout.h"
22 #include "llvm/IR/DerivedTypes.h"
23 #include "llvm/IR/Function.h"
24 #include "llvm/IR/GlobalVariable.h"
25 #include "llvm/IR/Mangler.h"
26 #include "llvm/IR/Module.h"
27 #include "llvm/MC/MCContext.h"
28 #include "llvm/MC/MCExpr.h"
29 #include "llvm/MC/MCSectionCOFF.h"
30 #include "llvm/MC/MCSectionELF.h"
31 #include "llvm/MC/MCSectionMachO.h"
32 #include "llvm/MC/MCStreamer.h"
33 #include "llvm/MC/MCSymbol.h"
34 #include "llvm/Support/Dwarf.h"
35 #include "llvm/Support/ELF.h"
36 #include "llvm/Support/ErrorHandling.h"
37 #include "llvm/Support/raw_ostream.h"
38 #include "llvm/Target/TargetLowering.h"
39 #include "llvm/Target/TargetMachine.h"
40 #include "llvm/Target/TargetSubtargetInfo.h"
41 using namespace llvm;
42 using namespace dwarf;
43
44 //===----------------------------------------------------------------------===//
45 //                                  ELF
46 //===----------------------------------------------------------------------===//
47
48 MCSymbol *TargetLoweringObjectFileELF::getCFIPersonalitySymbol(
49     const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM,
50     MachineModuleInfo *MMI) const {
51   unsigned Encoding = getPersonalityEncoding();
52   if ((Encoding & 0x80) == dwarf::DW_EH_PE_indirect)
53     return getContext().GetOrCreateSymbol(StringRef("DW.ref.") +
54                                           TM.getSymbol(GV, Mang)->getName());
55   if ((Encoding & 0x70) == dwarf::DW_EH_PE_absptr)
56     return TM.getSymbol(GV, Mang);
57   report_fatal_error("We do not support this DWARF encoding yet!");
58 }
59
60 void TargetLoweringObjectFileELF::emitPersonalityValue(MCStreamer &Streamer,
61                                                        const TargetMachine &TM,
62                                                        const MCSymbol *Sym) const {
63   SmallString<64> NameData("DW.ref.");
64   NameData += Sym->getName();
65   MCSymbol *Label = getContext().GetOrCreateSymbol(NameData);
66   Streamer.EmitSymbolAttribute(Label, MCSA_Hidden);
67   Streamer.EmitSymbolAttribute(Label, MCSA_Weak);
68   StringRef Prefix = ".data.";
69   NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end());
70   unsigned Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE | ELF::SHF_GROUP;
71   const MCSection *Sec = getContext().getELFSection(NameData,
72                                                     ELF::SHT_PROGBITS,
73                                                     Flags,
74                                                     SectionKind::getDataRel(),
75                                                     0, Label->getName());
76   unsigned Size = TM.getSubtargetImpl()->getDataLayout()->getPointerSize();
77   Streamer.SwitchSection(Sec);
78   Streamer.EmitValueToAlignment(
79       TM.getSubtargetImpl()->getDataLayout()->getPointerABIAlignment());
80   Streamer.EmitSymbolAttribute(Label, MCSA_ELF_TypeObject);
81   const MCExpr *E = MCConstantExpr::Create(Size, getContext());
82   Streamer.EmitELFSize(Label, E);
83   Streamer.EmitLabel(Label);
84
85   Streamer.EmitSymbolValue(Sym, Size);
86 }
87
88 const MCExpr *TargetLoweringObjectFileELF::getTTypeGlobalReference(
89     const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
90     const TargetMachine &TM, MachineModuleInfo *MMI,
91     MCStreamer &Streamer) const {
92
93   if (Encoding & dwarf::DW_EH_PE_indirect) {
94     MachineModuleInfoELF &ELFMMI = MMI->getObjFileInfo<MachineModuleInfoELF>();
95
96     MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, ".DW.stub", Mang, TM);
97
98     // Add information about the stub reference to ELFMMI so that the stub
99     // gets emitted by the asmprinter.
100     MachineModuleInfoImpl::StubValueTy &StubSym = ELFMMI.getGVStubEntry(SSym);
101     if (!StubSym.getPointer()) {
102       MCSymbol *Sym = TM.getSymbol(GV, Mang);
103       StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
104     }
105
106     return TargetLoweringObjectFile::
107       getTTypeReference(MCSymbolRefExpr::Create(SSym, getContext()),
108                         Encoding & ~dwarf::DW_EH_PE_indirect, Streamer);
109   }
110
111   return TargetLoweringObjectFile::
112     getTTypeGlobalReference(GV, Encoding, Mang, TM, MMI, Streamer);
113 }
114
115 static SectionKind
116 getELFKindForNamedSection(StringRef Name, SectionKind K) {
117   // N.B.: The defaults used in here are no the same ones used in MC.
118   // We follow gcc, MC follows gas. For example, given ".section .eh_frame",
119   // both gas and MC will produce a section with no flags. Given
120   // section(".eh_frame") gcc will produce:
121   //
122   //   .section   .eh_frame,"a",@progbits
123   if (Name.empty() || Name[0] != '.') return K;
124
125   // Some lame default implementation based on some magic section names.
126   if (Name == ".bss" ||
127       Name.startswith(".bss.") ||
128       Name.startswith(".gnu.linkonce.b.") ||
129       Name.startswith(".llvm.linkonce.b.") ||
130       Name == ".sbss" ||
131       Name.startswith(".sbss.") ||
132       Name.startswith(".gnu.linkonce.sb.") ||
133       Name.startswith(".llvm.linkonce.sb."))
134     return SectionKind::getBSS();
135
136   if (Name == ".tdata" ||
137       Name.startswith(".tdata.") ||
138       Name.startswith(".gnu.linkonce.td.") ||
139       Name.startswith(".llvm.linkonce.td."))
140     return SectionKind::getThreadData();
141
142   if (Name == ".tbss" ||
143       Name.startswith(".tbss.") ||
144       Name.startswith(".gnu.linkonce.tb.") ||
145       Name.startswith(".llvm.linkonce.tb."))
146     return SectionKind::getThreadBSS();
147
148   return K;
149 }
150
151
152 static unsigned getELFSectionType(StringRef Name, SectionKind K) {
153
154   if (Name == ".init_array")
155     return ELF::SHT_INIT_ARRAY;
156
157   if (Name == ".fini_array")
158     return ELF::SHT_FINI_ARRAY;
159
160   if (Name == ".preinit_array")
161     return ELF::SHT_PREINIT_ARRAY;
162
163   if (K.isBSS() || K.isThreadBSS())
164     return ELF::SHT_NOBITS;
165
166   return ELF::SHT_PROGBITS;
167 }
168
169
170 static unsigned
171 getELFSectionFlags(SectionKind K) {
172   unsigned Flags = 0;
173
174   if (!K.isMetadata())
175     Flags |= ELF::SHF_ALLOC;
176
177   if (K.isText())
178     Flags |= ELF::SHF_EXECINSTR;
179
180   if (K.isWriteable())
181     Flags |= ELF::SHF_WRITE;
182
183   if (K.isThreadLocal())
184     Flags |= ELF::SHF_TLS;
185
186   // K.isMergeableConst() is left out to honour PR4650
187   if (K.isMergeableCString() || K.isMergeableConst4() ||
188       K.isMergeableConst8() || K.isMergeableConst16())
189     Flags |= ELF::SHF_MERGE;
190
191   if (K.isMergeableCString())
192     Flags |= ELF::SHF_STRINGS;
193
194   return Flags;
195 }
196
197 static const Comdat *getELFComdat(const GlobalValue *GV) {
198   const Comdat *C = GV->getComdat();
199   if (!C)
200     return nullptr;
201
202   if (C->getSelectionKind() != Comdat::Any)
203     report_fatal_error("ELF COMDATs only support SelectionKind::Any, '" +
204                        C->getName() + "' cannot be lowered.");
205
206   return C;
207 }
208
209 const MCSection *TargetLoweringObjectFileELF::getExplicitSectionGlobal(
210     const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
211     const TargetMachine &TM) const {
212   StringRef SectionName = GV->getSection();
213
214   // Infer section flags from the section name if we can.
215   Kind = getELFKindForNamedSection(SectionName, Kind);
216
217   StringRef Group = "";
218   unsigned Flags = getELFSectionFlags(Kind);
219   if (const Comdat *C = getELFComdat(GV)) {
220     Group = C->getName();
221     Flags |= ELF::SHF_GROUP;
222   }
223   return getContext().getELFSection(SectionName,
224                                     getELFSectionType(SectionName, Kind), Flags,
225                                     Kind, /*EntrySize=*/0, Group);
226 }
227
228 /// getSectionPrefixForGlobal - Return the section prefix name used by options
229 /// FunctionsSections and DataSections.
230 static StringRef getSectionPrefixForGlobal(SectionKind Kind) {
231   if (Kind.isText())                 return ".text.";
232   if (Kind.isReadOnly())             return ".rodata.";
233   if (Kind.isBSS())                  return ".bss.";
234
235   if (Kind.isThreadData())           return ".tdata.";
236   if (Kind.isThreadBSS())            return ".tbss.";
237
238   if (Kind.isDataNoRel())            return ".data.";
239   if (Kind.isDataRelLocal())         return ".data.rel.local.";
240   if (Kind.isDataRel())              return ".data.rel.";
241   if (Kind.isReadOnlyWithRelLocal()) return ".data.rel.ro.local.";
242
243   assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
244   return ".data.rel.ro.";
245 }
246
247 const MCSection *TargetLoweringObjectFileELF::
248 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
249                        Mangler &Mang, const TargetMachine &TM) const {
250   // If we have -ffunction-section or -fdata-section then we should emit the
251   // global value to a uniqued section specifically for it.
252   bool EmitUniquedSection;
253   if (Kind.isText())
254     EmitUniquedSection = TM.getFunctionSections();
255   else
256     EmitUniquedSection = TM.getDataSections();
257
258   // If this global is linkonce/weak and the target handles this by emitting it
259   // into a 'uniqued' section name, create and return the section now.
260   if ((GV->isWeakForLinker() || EmitUniquedSection || GV->hasComdat()) &&
261       !Kind.isCommon()) {
262     StringRef Prefix = getSectionPrefixForGlobal(Kind);
263
264     SmallString<128> Name(Prefix);
265     TM.getNameWithPrefix(Name, GV, Mang, true);
266
267     StringRef Group = "";
268     unsigned Flags = getELFSectionFlags(Kind);
269     if (GV->isWeakForLinker() || GV->hasComdat()) {
270       if (const Comdat *C = getELFComdat(GV))
271         Group = C->getName();
272       else
273         Group = Name.substr(Prefix.size());
274       Flags |= ELF::SHF_GROUP;
275     }
276
277     return getContext().getELFSection(Name.str(),
278                                       getELFSectionType(Name.str(), Kind),
279                                       Flags, Kind, 0, Group);
280   }
281
282   if (Kind.isText()) return TextSection;
283
284   if (Kind.isMergeable1ByteCString() ||
285       Kind.isMergeable2ByteCString() ||
286       Kind.isMergeable4ByteCString()) {
287
288     // We also need alignment here.
289     // FIXME: this is getting the alignment of the character, not the
290     // alignment of the global!
291     unsigned Align =
292         TM.getSubtargetImpl()->getDataLayout()->getPreferredAlignment(
293             cast<GlobalVariable>(GV));
294
295     const char *SizeSpec = ".rodata.str1.";
296     if (Kind.isMergeable2ByteCString())
297       SizeSpec = ".rodata.str2.";
298     else if (Kind.isMergeable4ByteCString())
299       SizeSpec = ".rodata.str4.";
300     else
301       assert(Kind.isMergeable1ByteCString() && "unknown string width");
302
303
304     std::string Name = SizeSpec + utostr(Align);
305     return getContext().getELFSection(Name, ELF::SHT_PROGBITS,
306                                       ELF::SHF_ALLOC |
307                                       ELF::SHF_MERGE |
308                                       ELF::SHF_STRINGS,
309                                       Kind);
310   }
311
312   if (Kind.isMergeableConst()) {
313     if (Kind.isMergeableConst4() && MergeableConst4Section)
314       return MergeableConst4Section;
315     if (Kind.isMergeableConst8() && MergeableConst8Section)
316       return MergeableConst8Section;
317     if (Kind.isMergeableConst16() && MergeableConst16Section)
318       return MergeableConst16Section;
319     return ReadOnlySection;  // .const
320   }
321
322   if (Kind.isReadOnly())             return ReadOnlySection;
323
324   if (Kind.isThreadData())           return TLSDataSection;
325   if (Kind.isThreadBSS())            return TLSBSSSection;
326
327   // Note: we claim that common symbols are put in BSSSection, but they are
328   // really emitted with the magic .comm directive, which creates a symbol table
329   // entry but not a section.
330   if (Kind.isBSS() || Kind.isCommon()) return BSSSection;
331
332   if (Kind.isDataNoRel())            return DataSection;
333   if (Kind.isDataRelLocal())         return DataRelLocalSection;
334   if (Kind.isDataRel())              return DataRelSection;
335   if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
336
337   assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
338   return DataRelROSection;
339 }
340
341 /// getSectionForConstant - Given a mergeable constant with the
342 /// specified size and relocation information, return a section that it
343 /// should be placed in.
344 const MCSection *
345 TargetLoweringObjectFileELF::getSectionForConstant(SectionKind Kind,
346                                                    const Constant *C) const {
347   if (Kind.isMergeableConst4() && MergeableConst4Section)
348     return MergeableConst4Section;
349   if (Kind.isMergeableConst8() && MergeableConst8Section)
350     return MergeableConst8Section;
351   if (Kind.isMergeableConst16() && MergeableConst16Section)
352     return MergeableConst16Section;
353   if (Kind.isReadOnly())
354     return ReadOnlySection;
355
356   if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
357   assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
358   return DataRelROSection;
359 }
360
361 static const MCSectionELF *getStaticStructorSection(MCContext &Ctx,
362                                                     bool UseInitArray,
363                                                     bool IsCtor,
364                                                     unsigned Priority,
365                                                     const MCSymbol *KeySym) {
366   std::string Name;
367   unsigned Type;
368   unsigned Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE;
369   SectionKind Kind = SectionKind::getDataRel();
370   StringRef COMDAT = KeySym ? KeySym->getName() : "";
371
372   if (KeySym)
373     Flags |= ELF::SHF_GROUP;
374
375   if (UseInitArray) {
376     if (IsCtor) {
377       Type = ELF::SHT_INIT_ARRAY;
378       Name = ".init_array";
379     } else {
380       Type = ELF::SHT_FINI_ARRAY;
381       Name = ".fini_array";
382     }
383     if (Priority != 65535) {
384       Name += '.';
385       Name += utostr(Priority);
386     }
387   } else {
388     // The default scheme is .ctor / .dtor, so we have to invert the priority
389     // numbering.
390     if (IsCtor)
391       Name = ".ctors";
392     else
393       Name = ".dtors";
394     if (Priority != 65535) {
395       Name += '.';
396       Name += utostr(65535 - Priority);
397     }
398     Type = ELF::SHT_PROGBITS;
399   }
400
401   return Ctx.getELFSection(Name, Type, Flags, Kind, 0, COMDAT);
402 }
403
404 const MCSection *TargetLoweringObjectFileELF::getStaticCtorSection(
405     unsigned Priority, const MCSymbol *KeySym) const {
406   return getStaticStructorSection(getContext(), UseInitArray, true, Priority,
407                                   KeySym);
408 }
409
410 const MCSection *TargetLoweringObjectFileELF::getStaticDtorSection(
411     unsigned Priority, const MCSymbol *KeySym) const {
412   return getStaticStructorSection(getContext(), UseInitArray, false, Priority,
413                                   KeySym);
414 }
415
416 void
417 TargetLoweringObjectFileELF::InitializeELF(bool UseInitArray_) {
418   UseInitArray = UseInitArray_;
419   if (!UseInitArray)
420     return;
421
422   StaticCtorSection =
423     getContext().getELFSection(".init_array", ELF::SHT_INIT_ARRAY,
424                                ELF::SHF_WRITE |
425                                ELF::SHF_ALLOC,
426                                SectionKind::getDataRel());
427   StaticDtorSection =
428     getContext().getELFSection(".fini_array", ELF::SHT_FINI_ARRAY,
429                                ELF::SHF_WRITE |
430                                ELF::SHF_ALLOC,
431                                SectionKind::getDataRel());
432 }
433
434 //===----------------------------------------------------------------------===//
435 //                                 MachO
436 //===----------------------------------------------------------------------===//
437
438 /// getDepLibFromLinkerOpt - Extract the dependent library name from a linker
439 /// option string. Returns StringRef() if the option does not specify a library.
440 StringRef TargetLoweringObjectFileMachO::
441 getDepLibFromLinkerOpt(StringRef LinkerOption) const {
442   const char *LibCmd = "-l";
443   if (LinkerOption.startswith(LibCmd))
444     return LinkerOption.substr(strlen(LibCmd));
445   return StringRef();
446 }
447
448 /// emitModuleFlags - Perform code emission for module flags.
449 void TargetLoweringObjectFileMachO::
450 emitModuleFlags(MCStreamer &Streamer,
451                 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
452                 Mangler &Mang, const TargetMachine &TM) const {
453   unsigned VersionVal = 0;
454   unsigned ImageInfoFlags = 0;
455   MDNode *LinkerOptions = nullptr;
456   StringRef SectionVal;
457
458   for (ArrayRef<Module::ModuleFlagEntry>::iterator
459          i = ModuleFlags.begin(), e = ModuleFlags.end(); i != e; ++i) {
460     const Module::ModuleFlagEntry &MFE = *i;
461
462     // Ignore flags with 'Require' behavior.
463     if (MFE.Behavior == Module::Require)
464       continue;
465
466     StringRef Key = MFE.Key->getString();
467     Value *Val = MFE.Val;
468
469     if (Key == "Objective-C Image Info Version") {
470       VersionVal = cast<ConstantInt>(Val)->getZExtValue();
471     } else if (Key == "Objective-C Garbage Collection" ||
472                Key == "Objective-C GC Only" ||
473                Key == "Objective-C Is Simulated") {
474       ImageInfoFlags |= cast<ConstantInt>(Val)->getZExtValue();
475     } else if (Key == "Objective-C Image Info Section") {
476       SectionVal = cast<MDString>(Val)->getString();
477     } else if (Key == "Linker Options") {
478       LinkerOptions = cast<MDNode>(Val);
479     }
480   }
481
482   // Emit the linker options if present.
483   if (LinkerOptions) {
484     for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
485       MDNode *MDOptions = cast<MDNode>(LinkerOptions->getOperand(i));
486       SmallVector<std::string, 4> StrOptions;
487
488       // Convert to strings.
489       for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
490         MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
491         StrOptions.push_back(MDOption->getString());
492       }
493
494       Streamer.EmitLinkerOptions(StrOptions);
495     }
496   }
497
498   // The section is mandatory. If we don't have it, then we don't have GC info.
499   if (SectionVal.empty()) return;
500
501   StringRef Segment, Section;
502   unsigned TAA = 0, StubSize = 0;
503   bool TAAParsed;
504   std::string ErrorCode =
505     MCSectionMachO::ParseSectionSpecifier(SectionVal, Segment, Section,
506                                           TAA, TAAParsed, StubSize);
507   if (!ErrorCode.empty())
508     // If invalid, report the error with report_fatal_error.
509     report_fatal_error("Invalid section specifier '" + Section + "': " +
510                        ErrorCode + ".");
511
512   // Get the section.
513   const MCSectionMachO *S =
514     getContext().getMachOSection(Segment, Section, TAA, StubSize,
515                                  SectionKind::getDataNoRel());
516   Streamer.SwitchSection(S);
517   Streamer.EmitLabel(getContext().
518                      GetOrCreateSymbol(StringRef("L_OBJC_IMAGE_INFO")));
519   Streamer.EmitIntValue(VersionVal, 4);
520   Streamer.EmitIntValue(ImageInfoFlags, 4);
521   Streamer.AddBlankLine();
522 }
523
524 static void checkMachOComdat(const GlobalValue *GV) {
525   const Comdat *C = GV->getComdat();
526   if (!C)
527     return;
528
529   report_fatal_error("MachO doesn't support COMDATs, '" + C->getName() +
530                      "' cannot be lowered.");
531 }
532
533 const MCSection *TargetLoweringObjectFileMachO::getExplicitSectionGlobal(
534     const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
535     const TargetMachine &TM) const {
536   // Parse the section specifier and create it if valid.
537   StringRef Segment, Section;
538   unsigned TAA = 0, StubSize = 0;
539   bool TAAParsed;
540
541   checkMachOComdat(GV);
542
543   std::string ErrorCode =
544     MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
545                                           TAA, TAAParsed, StubSize);
546   if (!ErrorCode.empty()) {
547     // If invalid, report the error with report_fatal_error.
548     report_fatal_error("Global variable '" + GV->getName() +
549                        "' has an invalid section specifier '" +
550                        GV->getSection() + "': " + ErrorCode + ".");
551   }
552
553   // Get the section.
554   const MCSectionMachO *S =
555     getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
556
557   // If TAA wasn't set by ParseSectionSpecifier() above,
558   // use the value returned by getMachOSection() as a default.
559   if (!TAAParsed)
560     TAA = S->getTypeAndAttributes();
561
562   // Okay, now that we got the section, verify that the TAA & StubSize agree.
563   // If the user declared multiple globals with different section flags, we need
564   // to reject it here.
565   if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
566     // If invalid, report the error with report_fatal_error.
567     report_fatal_error("Global variable '" + GV->getName() +
568                        "' section type or attributes does not match previous"
569                        " section specifier");
570   }
571
572   return S;
573 }
574
575 bool TargetLoweringObjectFileMachO::isSectionAtomizableBySymbols(
576     const MCSection &Section) const {
577     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
578
579     // Sections holding 1 byte strings are atomized based on the data
580     // they contain.
581     // Sections holding 2 byte strings require symbols in order to be
582     // atomized.
583     // There is no dedicated section for 4 byte strings.
584     if (SMO.getKind().isMergeable1ByteCString())
585       return false;
586
587     if (SMO.getSegmentName() == "__DATA" &&
588         SMO.getSectionName() == "__cfstring")
589       return false;
590
591     // no_dead_strip sections are not atomized in practice.
592     if (SMO.hasAttribute(MachO::S_ATTR_NO_DEAD_STRIP))
593       return false;
594
595     switch (SMO.getType()) {
596     default:
597       return true;
598
599       // These sections are atomized at the element boundaries without using
600       // symbols.
601     case MachO::S_4BYTE_LITERALS:
602     case MachO::S_8BYTE_LITERALS:
603     case MachO::S_16BYTE_LITERALS:
604     case MachO::S_LITERAL_POINTERS:
605     case MachO::S_NON_LAZY_SYMBOL_POINTERS:
606     case MachO::S_LAZY_SYMBOL_POINTERS:
607     case MachO::S_MOD_INIT_FUNC_POINTERS:
608     case MachO::S_MOD_TERM_FUNC_POINTERS:
609     case MachO::S_INTERPOSING:
610       return false;
611     }
612 }
613
614 const MCSection *TargetLoweringObjectFileMachO::
615 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
616                        Mangler &Mang, const TargetMachine &TM) const {
617   checkMachOComdat(GV);
618
619   // Handle thread local data.
620   if (Kind.isThreadBSS()) return TLSBSSSection;
621   if (Kind.isThreadData()) return TLSDataSection;
622
623   if (Kind.isText())
624     return GV->isWeakForLinker() ? TextCoalSection : TextSection;
625
626   // If this is weak/linkonce, put this in a coalescable section, either in text
627   // or data depending on if it is writable.
628   if (GV->isWeakForLinker()) {
629     if (Kind.isReadOnly())
630       return ConstTextCoalSection;
631     return DataCoalSection;
632   }
633
634   // FIXME: Alignment check should be handled by section classifier.
635   if (Kind.isMergeable1ByteCString() &&
636       TM.getSubtargetImpl()->getDataLayout()->getPreferredAlignment(
637           cast<GlobalVariable>(GV)) < 32)
638     return CStringSection;
639
640   // Do not put 16-bit arrays in the UString section if they have an
641   // externally visible label, this runs into issues with certain linker
642   // versions.
643   if (Kind.isMergeable2ByteCString() && !GV->hasExternalLinkage() &&
644       TM.getSubtargetImpl()->getDataLayout()->getPreferredAlignment(
645           cast<GlobalVariable>(GV)) < 32)
646     return UStringSection;
647
648   // With MachO only variables whose corresponding symbol starts with 'l' or
649   // 'L' can be merged, so we only try merging GVs with private linkage.
650   if (GV->hasPrivateLinkage() && Kind.isMergeableConst()) {
651     if (Kind.isMergeableConst4())
652       return FourByteConstantSection;
653     if (Kind.isMergeableConst8())
654       return EightByteConstantSection;
655     if (Kind.isMergeableConst16())
656       return SixteenByteConstantSection;
657   }
658
659   // Otherwise, if it is readonly, but not something we can specially optimize,
660   // just drop it in .const.
661   if (Kind.isReadOnly())
662     return ReadOnlySection;
663
664   // If this is marked const, put it into a const section.  But if the dynamic
665   // linker needs to write to it, put it in the data segment.
666   if (Kind.isReadOnlyWithRel())
667     return ConstDataSection;
668
669   // Put zero initialized globals with strong external linkage in the
670   // DATA, __common section with the .zerofill directive.
671   if (Kind.isBSSExtern())
672     return DataCommonSection;
673
674   // Put zero initialized globals with local linkage in __DATA,__bss directive
675   // with the .zerofill directive (aka .lcomm).
676   if (Kind.isBSSLocal())
677     return DataBSSSection;
678
679   // Otherwise, just drop the variable in the normal data section.
680   return DataSection;
681 }
682
683 const MCSection *
684 TargetLoweringObjectFileMachO::getSectionForConstant(SectionKind Kind,
685                                                      const Constant *C) const {
686   // If this constant requires a relocation, we have to put it in the data
687   // segment, not in the text segment.
688   if (Kind.isDataRel() || Kind.isReadOnlyWithRel())
689     return ConstDataSection;
690
691   if (Kind.isMergeableConst4())
692     return FourByteConstantSection;
693   if (Kind.isMergeableConst8())
694     return EightByteConstantSection;
695   if (Kind.isMergeableConst16())
696     return SixteenByteConstantSection;
697   return ReadOnlySection;  // .const
698 }
699
700 const MCExpr *TargetLoweringObjectFileMachO::getTTypeGlobalReference(
701     const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
702     const TargetMachine &TM, MachineModuleInfo *MMI,
703     MCStreamer &Streamer) const {
704   // The mach-o version of this method defaults to returning a stub reference.
705
706   if (Encoding & DW_EH_PE_indirect) {
707     MachineModuleInfoMachO &MachOMMI =
708       MMI->getObjFileInfo<MachineModuleInfoMachO>();
709
710     MCSymbol *SSym =
711         getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr", Mang, TM);
712
713     // Add information about the stub reference to MachOMMI so that the stub
714     // gets emitted by the asmprinter.
715     MachineModuleInfoImpl::StubValueTy &StubSym =
716       GV->hasHiddenVisibility() ? MachOMMI.getHiddenGVStubEntry(SSym) :
717                                   MachOMMI.getGVStubEntry(SSym);
718     if (!StubSym.getPointer()) {
719       MCSymbol *Sym = TM.getSymbol(GV, Mang);
720       StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
721     }
722
723     return TargetLoweringObjectFile::
724       getTTypeReference(MCSymbolRefExpr::Create(SSym, getContext()),
725                         Encoding & ~dwarf::DW_EH_PE_indirect, Streamer);
726   }
727
728   return TargetLoweringObjectFile::getTTypeGlobalReference(GV, Encoding, Mang,
729                                                            TM, MMI, Streamer);
730 }
731
732 MCSymbol *TargetLoweringObjectFileMachO::getCFIPersonalitySymbol(
733     const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM,
734     MachineModuleInfo *MMI) const {
735   // The mach-o version of this method defaults to returning a stub reference.
736   MachineModuleInfoMachO &MachOMMI =
737     MMI->getObjFileInfo<MachineModuleInfoMachO>();
738
739   MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr", Mang, TM);
740
741   // Add information about the stub reference to MachOMMI so that the stub
742   // gets emitted by the asmprinter.
743   MachineModuleInfoImpl::StubValueTy &StubSym = MachOMMI.getGVStubEntry(SSym);
744   if (!StubSym.getPointer()) {
745     MCSymbol *Sym = TM.getSymbol(GV, Mang);
746     StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
747   }
748
749   return SSym;
750 }
751
752 //===----------------------------------------------------------------------===//
753 //                                  COFF
754 //===----------------------------------------------------------------------===//
755
756 static unsigned
757 getCOFFSectionFlags(SectionKind K) {
758   unsigned Flags = 0;
759
760   if (K.isMetadata())
761     Flags |=
762       COFF::IMAGE_SCN_MEM_DISCARDABLE;
763   else if (K.isText())
764     Flags |=
765       COFF::IMAGE_SCN_MEM_EXECUTE |
766       COFF::IMAGE_SCN_MEM_READ |
767       COFF::IMAGE_SCN_CNT_CODE;
768   else if (K.isBSS())
769     Flags |=
770       COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA |
771       COFF::IMAGE_SCN_MEM_READ |
772       COFF::IMAGE_SCN_MEM_WRITE;
773   else if (K.isThreadLocal())
774     Flags |=
775       COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
776       COFF::IMAGE_SCN_MEM_READ |
777       COFF::IMAGE_SCN_MEM_WRITE;
778   else if (K.isReadOnly() || K.isReadOnlyWithRel())
779     Flags |=
780       COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
781       COFF::IMAGE_SCN_MEM_READ;
782   else if (K.isWriteable())
783     Flags |=
784       COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
785       COFF::IMAGE_SCN_MEM_READ |
786       COFF::IMAGE_SCN_MEM_WRITE;
787
788   return Flags;
789 }
790
791 static const GlobalValue *getComdatGVForCOFF(const GlobalValue *GV) {
792   const Comdat *C = GV->getComdat();
793   assert(C && "expected GV to have a Comdat!");
794
795   StringRef ComdatGVName = C->getName();
796   const GlobalValue *ComdatGV = GV->getParent()->getNamedValue(ComdatGVName);
797   if (!ComdatGV)
798     report_fatal_error("Associative COMDAT symbol '" + ComdatGVName +
799                        "' does not exist.");
800
801   if (ComdatGV->getComdat() != C)
802     report_fatal_error("Associative COMDAT symbol '" + ComdatGVName +
803                        "' is not a key for its COMDAT.");
804
805   return ComdatGV;
806 }
807
808 static int getSelectionForCOFF(const GlobalValue *GV) {
809   if (const Comdat *C = GV->getComdat()) {
810     const GlobalValue *ComdatKey = getComdatGVForCOFF(GV);
811     if (const auto *GA = dyn_cast<GlobalAlias>(ComdatKey))
812       ComdatKey = GA->getBaseObject();
813     if (ComdatKey == GV) {
814       switch (C->getSelectionKind()) {
815       case Comdat::Any:
816         return COFF::IMAGE_COMDAT_SELECT_ANY;
817       case Comdat::ExactMatch:
818         return COFF::IMAGE_COMDAT_SELECT_EXACT_MATCH;
819       case Comdat::Largest:
820         return COFF::IMAGE_COMDAT_SELECT_LARGEST;
821       case Comdat::NoDuplicates:
822         return COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
823       case Comdat::SameSize:
824         return COFF::IMAGE_COMDAT_SELECT_SAME_SIZE;
825       }
826     } else {
827       return COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE;
828     }
829   } else if (GV->isWeakForLinker()) {
830     return COFF::IMAGE_COMDAT_SELECT_ANY;
831   }
832   return 0;
833 }
834
835 const MCSection *TargetLoweringObjectFileCOFF::getExplicitSectionGlobal(
836     const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
837     const TargetMachine &TM) const {
838   int Selection = 0;
839   unsigned Characteristics = getCOFFSectionFlags(Kind);
840   StringRef Name = GV->getSection();
841   StringRef COMDATSymName = "";
842   if ((GV->isWeakForLinker() || GV->hasComdat()) && !Kind.isCommon()) {
843     Selection = getSelectionForCOFF(GV);
844     const GlobalValue *ComdatGV;
845     if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
846       ComdatGV = getComdatGVForCOFF(GV);
847     else
848       ComdatGV = GV;
849
850     if (!ComdatGV->hasPrivateLinkage()) {
851       MCSymbol *Sym = TM.getSymbol(ComdatGV, Mang);
852       COMDATSymName = Sym->getName();
853       Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
854     } else {
855       Selection = 0;
856     }
857   }
858   return getContext().getCOFFSection(Name,
859                                      Characteristics,
860                                      Kind,
861                                      COMDATSymName,
862                                      Selection);
863 }
864
865 static const char *getCOFFSectionNameForUniqueGlobal(SectionKind Kind) {
866   if (Kind.isText())
867     return ".text";
868   if (Kind.isBSS())
869     return ".bss";
870   if (Kind.isThreadLocal())
871     return ".tls$";
872   if (Kind.isReadOnly() || Kind.isReadOnlyWithRel())
873     return ".rdata";
874   return ".data";
875 }
876
877
878 const MCSection *TargetLoweringObjectFileCOFF::
879 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
880                        Mangler &Mang, const TargetMachine &TM) const {
881   // If we have -ffunction-sections then we should emit the global value to a
882   // uniqued section specifically for it.
883   bool EmitUniquedSection;
884   if (Kind.isText())
885     EmitUniquedSection = TM.getFunctionSections();
886   else
887     EmitUniquedSection = TM.getDataSections();
888
889   // If this global is linkonce/weak and the target handles this by emitting it
890   // into a 'uniqued' section name, create and return the section now.
891   // Section names depend on the name of the symbol which is not feasible if the
892   // symbol has private linkage.
893   if ((GV->isWeakForLinker() || EmitUniquedSection || GV->hasComdat()) &&
894       !Kind.isCommon()) {
895     const char *Name = getCOFFSectionNameForUniqueGlobal(Kind);
896     unsigned Characteristics = getCOFFSectionFlags(Kind);
897
898     Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
899     int Selection = getSelectionForCOFF(GV);
900     if (!Selection)
901       Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
902     const GlobalValue *ComdatGV;
903     if (GV->hasComdat())
904       ComdatGV = getComdatGVForCOFF(GV);
905     else
906       ComdatGV = GV;
907
908     if (!ComdatGV->hasPrivateLinkage()) {
909       MCSymbol *Sym = TM.getSymbol(ComdatGV, Mang);
910       StringRef COMDATSymName = Sym->getName();
911       return getContext().getCOFFSection(Name, Characteristics, Kind,
912                                          COMDATSymName, Selection);
913     }
914   }
915
916   if (Kind.isText())
917     return TextSection;
918
919   if (Kind.isThreadLocal())
920     return TLSDataSection;
921
922   if (Kind.isReadOnly() || Kind.isReadOnlyWithRel())
923     return ReadOnlySection;
924
925   // Note: we claim that common symbols are put in BSSSection, but they are
926   // really emitted with the magic .comm directive, which creates a symbol table
927   // entry but not a section.
928   if (Kind.isBSS() || Kind.isCommon())
929     return BSSSection;
930
931   return DataSection;
932 }
933
934 StringRef TargetLoweringObjectFileCOFF::
935 getDepLibFromLinkerOpt(StringRef LinkerOption) const {
936   const char *LibCmd = "/DEFAULTLIB:";
937   if (LinkerOption.startswith(LibCmd))
938     return LinkerOption.substr(strlen(LibCmd));
939   return StringRef();
940 }
941
942 void TargetLoweringObjectFileCOFF::
943 emitModuleFlags(MCStreamer &Streamer,
944                 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
945                 Mangler &Mang, const TargetMachine &TM) const {
946   MDNode *LinkerOptions = nullptr;
947
948   // Look for the "Linker Options" flag, since it's the only one we support.
949   for (ArrayRef<Module::ModuleFlagEntry>::iterator
950        i = ModuleFlags.begin(), e = ModuleFlags.end(); i != e; ++i) {
951     const Module::ModuleFlagEntry &MFE = *i;
952     StringRef Key = MFE.Key->getString();
953     Value *Val = MFE.Val;
954     if (Key == "Linker Options") {
955       LinkerOptions = cast<MDNode>(Val);
956       break;
957     }
958   }
959   if (!LinkerOptions)
960     return;
961
962   // Emit the linker options to the linker .drectve section.  According to the
963   // spec, this section is a space-separated string containing flags for linker.
964   const MCSection *Sec = getDrectveSection();
965   Streamer.SwitchSection(Sec);
966   for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
967     MDNode *MDOptions = cast<MDNode>(LinkerOptions->getOperand(i));
968     for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
969       MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
970       StringRef Op = MDOption->getString();
971       // Lead with a space for consistency with our dllexport implementation.
972       std::string Escaped(" ");
973       if (Op.find(" ") != StringRef::npos) {
974         // The PE-COFF spec says args with spaces must be quoted.  It doesn't say
975         // how to escape quotes, but it probably uses this algorithm:
976         // http://msdn.microsoft.com/en-us/library/17w5ykft(v=vs.85).aspx
977         // FIXME: Reuse escaping code from Support/Windows/Program.inc
978         Escaped.push_back('\"');
979         Escaped.append(Op);
980         Escaped.push_back('\"');
981       } else {
982         Escaped.append(Op);
983       }
984       Streamer.EmitBytes(Escaped);
985     }
986   }
987 }
988
989 const MCSection *TargetLoweringObjectFileCOFF::getStaticCtorSection(
990     unsigned Priority, const MCSymbol *KeySym) const {
991   return getContext().getAssociativeCOFFSection(
992       cast<MCSectionCOFF>(StaticCtorSection), KeySym);
993 }
994
995 const MCSection *TargetLoweringObjectFileCOFF::getStaticDtorSection(
996     unsigned Priority, const MCSymbol *KeySym) const {
997   return getContext().getAssociativeCOFFSection(
998       cast<MCSectionCOFF>(StaticDtorSection), KeySym);
999 }