1 //===-- llvm/CodeGen/TargetLoweringObjectFileImpl.cpp - Object File Info --===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements classes used to handle lowerings specific to common
11 // object file formats.
13 //===----------------------------------------------------------------------===//
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"
41 using namespace dwarf;
43 //===----------------------------------------------------------------------===//
45 //===----------------------------------------------------------------------===//
47 MCSymbol *TargetLoweringObjectFileELF::getCFIPersonalitySymbol(
48 const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM,
49 MachineModuleInfo *MMI) const {
50 unsigned Encoding = getPersonalityEncoding();
51 if ((Encoding & 0x80) == dwarf::DW_EH_PE_indirect)
52 return getContext().GetOrCreateSymbol(StringRef("DW.ref.") +
53 TM.getSymbol(GV, Mang)->getName());
54 if ((Encoding & 0x70) == dwarf::DW_EH_PE_absptr)
55 return TM.getSymbol(GV, Mang);
56 report_fatal_error("We do not support this DWARF encoding yet!");
59 void TargetLoweringObjectFileELF::emitPersonalityValue(MCStreamer &Streamer,
60 const TargetMachine &TM,
61 const MCSymbol *Sym) const {
62 SmallString<64> NameData("DW.ref.");
63 NameData += Sym->getName();
64 MCSymbol *Label = getContext().GetOrCreateSymbol(NameData);
65 Streamer.EmitSymbolAttribute(Label, MCSA_Hidden);
66 Streamer.EmitSymbolAttribute(Label, MCSA_Weak);
67 StringRef Prefix = ".data.";
68 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end());
69 unsigned Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE | ELF::SHF_GROUP;
70 const MCSection *Sec = getContext().getELFSection(NameData,
73 SectionKind::getDataRel(),
75 unsigned Size = TM.getDataLayout()->getPointerSize();
76 Streamer.SwitchSection(Sec);
77 Streamer.EmitValueToAlignment(TM.getDataLayout()->getPointerABIAlignment());
78 Streamer.EmitSymbolAttribute(Label, MCSA_ELF_TypeObject);
79 const MCExpr *E = MCConstantExpr::Create(Size, getContext());
80 Streamer.EmitELFSize(Label, E);
81 Streamer.EmitLabel(Label);
83 Streamer.EmitSymbolValue(Sym, Size);
86 const MCExpr *TargetLoweringObjectFileELF::getTTypeGlobalReference(
87 const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
88 const TargetMachine &TM, MachineModuleInfo *MMI,
89 MCStreamer &Streamer) const {
91 if (Encoding & dwarf::DW_EH_PE_indirect) {
92 MachineModuleInfoELF &ELFMMI = MMI->getObjFileInfo<MachineModuleInfoELF>();
94 MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, ".DW.stub", Mang, TM);
96 // Add information about the stub reference to ELFMMI so that the stub
97 // gets emitted by the asmprinter.
98 MachineModuleInfoImpl::StubValueTy &StubSym = ELFMMI.getGVStubEntry(SSym);
99 if (!StubSym.getPointer()) {
100 MCSymbol *Sym = TM.getSymbol(GV, Mang);
101 StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
104 return TargetLoweringObjectFile::
105 getTTypeReference(MCSymbolRefExpr::Create(SSym, getContext()),
106 Encoding & ~dwarf::DW_EH_PE_indirect, Streamer);
109 return TargetLoweringObjectFile::
110 getTTypeGlobalReference(GV, Encoding, Mang, TM, MMI, Streamer);
114 getELFKindForNamedSection(StringRef Name, SectionKind K) {
115 // N.B.: The defaults used in here are no the same ones used in MC.
116 // We follow gcc, MC follows gas. For example, given ".section .eh_frame",
117 // both gas and MC will produce a section with no flags. Given
118 // section(".eh_frame") gcc will produce:
120 // .section .eh_frame,"a",@progbits
121 if (Name.empty() || Name[0] != '.') return K;
123 // Some lame default implementation based on some magic section names.
124 if (Name == ".bss" ||
125 Name.startswith(".bss.") ||
126 Name.startswith(".gnu.linkonce.b.") ||
127 Name.startswith(".llvm.linkonce.b.") ||
129 Name.startswith(".sbss.") ||
130 Name.startswith(".gnu.linkonce.sb.") ||
131 Name.startswith(".llvm.linkonce.sb."))
132 return SectionKind::getBSS();
134 if (Name == ".tdata" ||
135 Name.startswith(".tdata.") ||
136 Name.startswith(".gnu.linkonce.td.") ||
137 Name.startswith(".llvm.linkonce.td."))
138 return SectionKind::getThreadData();
140 if (Name == ".tbss" ||
141 Name.startswith(".tbss.") ||
142 Name.startswith(".gnu.linkonce.tb.") ||
143 Name.startswith(".llvm.linkonce.tb."))
144 return SectionKind::getThreadBSS();
150 static unsigned getELFSectionType(StringRef Name, SectionKind K) {
152 if (Name == ".init_array")
153 return ELF::SHT_INIT_ARRAY;
155 if (Name == ".fini_array")
156 return ELF::SHT_FINI_ARRAY;
158 if (Name == ".preinit_array")
159 return ELF::SHT_PREINIT_ARRAY;
161 if (K.isBSS() || K.isThreadBSS())
162 return ELF::SHT_NOBITS;
164 return ELF::SHT_PROGBITS;
169 getELFSectionFlags(SectionKind K) {
173 Flags |= ELF::SHF_ALLOC;
176 Flags |= ELF::SHF_EXECINSTR;
179 Flags |= ELF::SHF_WRITE;
181 if (K.isThreadLocal())
182 Flags |= ELF::SHF_TLS;
184 // K.isMergeableConst() is left out to honour PR4650
185 if (K.isMergeableCString() || K.isMergeableConst4() ||
186 K.isMergeableConst8() || K.isMergeableConst16())
187 Flags |= ELF::SHF_MERGE;
189 if (K.isMergeableCString())
190 Flags |= ELF::SHF_STRINGS;
195 static const Comdat *getELFComdat(const GlobalValue *GV) {
196 const Comdat *C = GV->getComdat();
200 if (C->getSelectionKind() != Comdat::Any)
201 report_fatal_error("ELF COMDATs only support SelectionKind::Any, '" +
202 C->getName() + "' cannot be lowered.");
207 const MCSection *TargetLoweringObjectFileELF::getExplicitSectionGlobal(
208 const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
209 const TargetMachine &TM) const {
210 StringRef SectionName = GV->getSection();
212 // Infer section flags from the section name if we can.
213 Kind = getELFKindForNamedSection(SectionName, Kind);
215 StringRef Group = "";
216 unsigned Flags = getELFSectionFlags(Kind);
217 if (const Comdat *C = getELFComdat(GV)) {
218 Group = C->getName();
219 Flags |= ELF::SHF_GROUP;
221 return getContext().getELFSection(SectionName,
222 getELFSectionType(SectionName, Kind), Flags,
223 Kind, /*EntrySize=*/0, Group);
226 /// getSectionPrefixForGlobal - Return the section prefix name used by options
227 /// FunctionsSections and DataSections.
228 static StringRef getSectionPrefixForGlobal(SectionKind Kind) {
229 if (Kind.isText()) return ".text.";
230 if (Kind.isReadOnly()) return ".rodata.";
231 if (Kind.isBSS()) return ".bss.";
233 if (Kind.isThreadData()) return ".tdata.";
234 if (Kind.isThreadBSS()) return ".tbss.";
236 if (Kind.isDataNoRel()) return ".data.";
237 if (Kind.isDataRelLocal()) return ".data.rel.local.";
238 if (Kind.isDataRel()) return ".data.rel.";
239 if (Kind.isReadOnlyWithRelLocal()) return ".data.rel.ro.local.";
241 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
242 return ".data.rel.ro.";
245 const MCSection *TargetLoweringObjectFileELF::
246 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
247 Mangler &Mang, const TargetMachine &TM) const {
248 // If we have -ffunction-section or -fdata-section then we should emit the
249 // global value to a uniqued section specifically for it.
250 bool EmitUniquedSection;
252 EmitUniquedSection = TM.getFunctionSections();
254 EmitUniquedSection = TM.getDataSections();
256 // If this global is linkonce/weak and the target handles this by emitting it
257 // into a 'uniqued' section name, create and return the section now.
258 if ((GV->isWeakForLinker() || EmitUniquedSection || GV->hasComdat()) &&
260 StringRef Prefix = getSectionPrefixForGlobal(Kind);
262 SmallString<128> Name(Prefix);
263 TM.getNameWithPrefix(Name, GV, Mang, true);
265 StringRef Group = "";
266 unsigned Flags = getELFSectionFlags(Kind);
267 if (GV->isWeakForLinker() || GV->hasComdat()) {
268 if (const Comdat *C = getELFComdat(GV))
269 Group = C->getName();
271 Group = Name.substr(Prefix.size());
272 Flags |= ELF::SHF_GROUP;
275 return getContext().getELFSection(Name.str(),
276 getELFSectionType(Name.str(), Kind),
277 Flags, Kind, 0, Group);
280 if (Kind.isText()) return TextSection;
282 if (Kind.isMergeable1ByteCString() ||
283 Kind.isMergeable2ByteCString() ||
284 Kind.isMergeable4ByteCString()) {
286 // We also need alignment here.
287 // FIXME: this is getting the alignment of the character, not the
288 // alignment of the global!
290 TM.getDataLayout()->getPreferredAlignment(cast<GlobalVariable>(GV));
292 const char *SizeSpec = ".rodata.str1.";
293 if (Kind.isMergeable2ByteCString())
294 SizeSpec = ".rodata.str2.";
295 else if (Kind.isMergeable4ByteCString())
296 SizeSpec = ".rodata.str4.";
298 assert(Kind.isMergeable1ByteCString() && "unknown string width");
301 std::string Name = SizeSpec + utostr(Align);
302 return getContext().getELFSection(Name, ELF::SHT_PROGBITS,
309 if (Kind.isMergeableConst()) {
310 if (Kind.isMergeableConst4() && MergeableConst4Section)
311 return MergeableConst4Section;
312 if (Kind.isMergeableConst8() && MergeableConst8Section)
313 return MergeableConst8Section;
314 if (Kind.isMergeableConst16() && MergeableConst16Section)
315 return MergeableConst16Section;
316 return ReadOnlySection; // .const
319 if (Kind.isReadOnly()) return ReadOnlySection;
321 if (Kind.isThreadData()) return TLSDataSection;
322 if (Kind.isThreadBSS()) return TLSBSSSection;
324 // Note: we claim that common symbols are put in BSSSection, but they are
325 // really emitted with the magic .comm directive, which creates a symbol table
326 // entry but not a section.
327 if (Kind.isBSS() || Kind.isCommon()) return BSSSection;
329 if (Kind.isDataNoRel()) return DataSection;
330 if (Kind.isDataRelLocal()) return DataRelLocalSection;
331 if (Kind.isDataRel()) return DataRelSection;
332 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
334 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
335 return DataRelROSection;
338 /// getSectionForConstant - Given a mergeable constant with the
339 /// specified size and relocation information, return a section that it
340 /// should be placed in.
341 const MCSection *TargetLoweringObjectFileELF::
342 getSectionForConstant(SectionKind Kind) const {
343 if (Kind.isMergeableConst4() && MergeableConst4Section)
344 return MergeableConst4Section;
345 if (Kind.isMergeableConst8() && MergeableConst8Section)
346 return MergeableConst8Section;
347 if (Kind.isMergeableConst16() && MergeableConst16Section)
348 return MergeableConst16Section;
349 if (Kind.isReadOnly())
350 return ReadOnlySection;
352 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
353 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
354 return DataRelROSection;
357 const MCSection *TargetLoweringObjectFileELF::getStaticCtorSection(
358 unsigned Priority, const MCSymbol *KeySym) const {
359 // The default scheme is .ctor / .dtor, so we have to invert the priority
361 if (Priority == 65535)
362 return StaticCtorSection;
365 std::string Name = std::string(".init_array.") + utostr(Priority);
366 return getContext().getELFSection(Name, ELF::SHT_INIT_ARRAY,
367 ELF::SHF_ALLOC | ELF::SHF_WRITE,
368 SectionKind::getDataRel());
370 std::string Name = std::string(".ctors.") + utostr(65535 - Priority);
371 return getContext().getELFSection(Name, ELF::SHT_PROGBITS,
372 ELF::SHF_ALLOC |ELF::SHF_WRITE,
373 SectionKind::getDataRel());
377 const MCSection *TargetLoweringObjectFileELF::getStaticDtorSection(
378 unsigned Priority, const MCSymbol *KeySym) const {
379 // The default scheme is .ctor / .dtor, so we have to invert the priority
381 if (Priority == 65535)
382 return StaticDtorSection;
385 std::string Name = std::string(".fini_array.") + utostr(Priority);
386 return getContext().getELFSection(Name, ELF::SHT_FINI_ARRAY,
387 ELF::SHF_ALLOC | ELF::SHF_WRITE,
388 SectionKind::getDataRel());
390 std::string Name = std::string(".dtors.") + utostr(65535 - Priority);
391 return getContext().getELFSection(Name, ELF::SHT_PROGBITS,
392 ELF::SHF_ALLOC |ELF::SHF_WRITE,
393 SectionKind::getDataRel());
398 TargetLoweringObjectFileELF::InitializeELF(bool UseInitArray_) {
399 UseInitArray = UseInitArray_;
404 getContext().getELFSection(".init_array", ELF::SHT_INIT_ARRAY,
407 SectionKind::getDataRel());
409 getContext().getELFSection(".fini_array", ELF::SHT_FINI_ARRAY,
412 SectionKind::getDataRel());
415 //===----------------------------------------------------------------------===//
417 //===----------------------------------------------------------------------===//
419 /// getDepLibFromLinkerOpt - Extract the dependent library name from a linker
420 /// option string. Returns StringRef() if the option does not specify a library.
421 StringRef TargetLoweringObjectFileMachO::
422 getDepLibFromLinkerOpt(StringRef LinkerOption) const {
423 const char *LibCmd = "-l";
424 if (LinkerOption.startswith(LibCmd))
425 return LinkerOption.substr(strlen(LibCmd));
429 /// emitModuleFlags - Perform code emission for module flags.
430 void TargetLoweringObjectFileMachO::
431 emitModuleFlags(MCStreamer &Streamer,
432 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
433 Mangler &Mang, const TargetMachine &TM) const {
434 unsigned VersionVal = 0;
435 unsigned ImageInfoFlags = 0;
436 MDNode *LinkerOptions = nullptr;
437 StringRef SectionVal;
439 for (ArrayRef<Module::ModuleFlagEntry>::iterator
440 i = ModuleFlags.begin(), e = ModuleFlags.end(); i != e; ++i) {
441 const Module::ModuleFlagEntry &MFE = *i;
443 // Ignore flags with 'Require' behavior.
444 if (MFE.Behavior == Module::Require)
447 StringRef Key = MFE.Key->getString();
448 Value *Val = MFE.Val;
450 if (Key == "Objective-C Image Info Version") {
451 VersionVal = cast<ConstantInt>(Val)->getZExtValue();
452 } else if (Key == "Objective-C Garbage Collection" ||
453 Key == "Objective-C GC Only" ||
454 Key == "Objective-C Is Simulated") {
455 ImageInfoFlags |= cast<ConstantInt>(Val)->getZExtValue();
456 } else if (Key == "Objective-C Image Info Section") {
457 SectionVal = cast<MDString>(Val)->getString();
458 } else if (Key == "Linker Options") {
459 LinkerOptions = cast<MDNode>(Val);
463 // Emit the linker options if present.
465 for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
466 MDNode *MDOptions = cast<MDNode>(LinkerOptions->getOperand(i));
467 SmallVector<std::string, 4> StrOptions;
469 // Convert to strings.
470 for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
471 MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
472 StrOptions.push_back(MDOption->getString());
475 Streamer.EmitLinkerOptions(StrOptions);
479 // The section is mandatory. If we don't have it, then we don't have GC info.
480 if (SectionVal.empty()) return;
482 StringRef Segment, Section;
483 unsigned TAA = 0, StubSize = 0;
485 std::string ErrorCode =
486 MCSectionMachO::ParseSectionSpecifier(SectionVal, Segment, Section,
487 TAA, TAAParsed, StubSize);
488 if (!ErrorCode.empty())
489 // If invalid, report the error with report_fatal_error.
490 report_fatal_error("Invalid section specifier '" + Section + "': " +
494 const MCSectionMachO *S =
495 getContext().getMachOSection(Segment, Section, TAA, StubSize,
496 SectionKind::getDataNoRel());
497 Streamer.SwitchSection(S);
498 Streamer.EmitLabel(getContext().
499 GetOrCreateSymbol(StringRef("L_OBJC_IMAGE_INFO")));
500 Streamer.EmitIntValue(VersionVal, 4);
501 Streamer.EmitIntValue(ImageInfoFlags, 4);
502 Streamer.AddBlankLine();
505 static void checkMachOComdat(const GlobalValue *GV) {
506 const Comdat *C = GV->getComdat();
510 report_fatal_error("MachO doesn't support COMDATs, '" + C->getName() +
511 "' cannot be lowered.");
514 const MCSection *TargetLoweringObjectFileMachO::getExplicitSectionGlobal(
515 const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
516 const TargetMachine &TM) const {
517 // Parse the section specifier and create it if valid.
518 StringRef Segment, Section;
519 unsigned TAA = 0, StubSize = 0;
522 checkMachOComdat(GV);
524 std::string ErrorCode =
525 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
526 TAA, TAAParsed, StubSize);
527 if (!ErrorCode.empty()) {
528 // If invalid, report the error with report_fatal_error.
529 report_fatal_error("Global variable '" + GV->getName() +
530 "' has an invalid section specifier '" +
531 GV->getSection() + "': " + ErrorCode + ".");
535 const MCSectionMachO *S =
536 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
538 // If TAA wasn't set by ParseSectionSpecifier() above,
539 // use the value returned by getMachOSection() as a default.
541 TAA = S->getTypeAndAttributes();
543 // Okay, now that we got the section, verify that the TAA & StubSize agree.
544 // If the user declared multiple globals with different section flags, we need
545 // to reject it here.
546 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
547 // If invalid, report the error with report_fatal_error.
548 report_fatal_error("Global variable '" + GV->getName() +
549 "' section type or attributes does not match previous"
550 " section specifier");
556 bool TargetLoweringObjectFileMachO::isSectionAtomizableBySymbols(
557 const MCSection &Section) const {
558 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
560 // Sections holding 1 byte strings are atomized based on the data
562 // Sections holding 2 byte strings require symbols in order to be
564 // There is no dedicated section for 4 byte strings.
565 if (SMO.getKind().isMergeable1ByteCString())
568 if (SMO.getSegmentName() == "__DATA" &&
569 SMO.getSectionName() == "__cfstring")
572 switch (SMO.getType()) {
576 // These sections are atomized at the element boundaries without using
578 case MachO::S_4BYTE_LITERALS:
579 case MachO::S_8BYTE_LITERALS:
580 case MachO::S_16BYTE_LITERALS:
581 case MachO::S_LITERAL_POINTERS:
582 case MachO::S_NON_LAZY_SYMBOL_POINTERS:
583 case MachO::S_LAZY_SYMBOL_POINTERS:
584 case MachO::S_MOD_INIT_FUNC_POINTERS:
585 case MachO::S_MOD_TERM_FUNC_POINTERS:
586 case MachO::S_INTERPOSING:
591 const MCSection *TargetLoweringObjectFileMachO::
592 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
593 Mangler &Mang, const TargetMachine &TM) const {
594 checkMachOComdat(GV);
596 // Handle thread local data.
597 if (Kind.isThreadBSS()) return TLSBSSSection;
598 if (Kind.isThreadData()) return TLSDataSection;
601 return GV->isWeakForLinker() ? TextCoalSection : TextSection;
603 // If this is weak/linkonce, put this in a coalescable section, either in text
604 // or data depending on if it is writable.
605 if (GV->isWeakForLinker()) {
606 if (Kind.isReadOnly())
607 return ConstTextCoalSection;
608 return DataCoalSection;
611 // FIXME: Alignment check should be handled by section classifier.
612 if (Kind.isMergeable1ByteCString() &&
613 TM.getDataLayout()->getPreferredAlignment(cast<GlobalVariable>(GV)) < 32)
614 return CStringSection;
616 // Do not put 16-bit arrays in the UString section if they have an
617 // externally visible label, this runs into issues with certain linker
619 if (Kind.isMergeable2ByteCString() && !GV->hasExternalLinkage() &&
620 TM.getDataLayout()->getPreferredAlignment(cast<GlobalVariable>(GV)) < 32)
621 return UStringSection;
623 if (Kind.isMergeableConst()) {
624 if (Kind.isMergeableConst4())
625 return FourByteConstantSection;
626 if (Kind.isMergeableConst8())
627 return EightByteConstantSection;
628 if (Kind.isMergeableConst16())
629 return SixteenByteConstantSection;
632 // Otherwise, if it is readonly, but not something we can specially optimize,
633 // just drop it in .const.
634 if (Kind.isReadOnly())
635 return ReadOnlySection;
637 // If this is marked const, put it into a const section. But if the dynamic
638 // linker needs to write to it, put it in the data segment.
639 if (Kind.isReadOnlyWithRel())
640 return ConstDataSection;
642 // Put zero initialized globals with strong external linkage in the
643 // DATA, __common section with the .zerofill directive.
644 if (Kind.isBSSExtern())
645 return DataCommonSection;
647 // Put zero initialized globals with local linkage in __DATA,__bss directive
648 // with the .zerofill directive (aka .lcomm).
649 if (Kind.isBSSLocal())
650 return DataBSSSection;
652 // Otherwise, just drop the variable in the normal data section.
657 TargetLoweringObjectFileMachO::getSectionForConstant(SectionKind Kind) const {
658 // If this constant requires a relocation, we have to put it in the data
659 // segment, not in the text segment.
660 if (Kind.isDataRel() || Kind.isReadOnlyWithRel())
661 return ConstDataSection;
663 if (Kind.isMergeableConst4())
664 return FourByteConstantSection;
665 if (Kind.isMergeableConst8())
666 return EightByteConstantSection;
667 if (Kind.isMergeableConst16())
668 return SixteenByteConstantSection;
669 return ReadOnlySection; // .const
672 const MCExpr *TargetLoweringObjectFileMachO::getTTypeGlobalReference(
673 const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
674 const TargetMachine &TM, MachineModuleInfo *MMI,
675 MCStreamer &Streamer) const {
676 // The mach-o version of this method defaults to returning a stub reference.
678 if (Encoding & DW_EH_PE_indirect) {
679 MachineModuleInfoMachO &MachOMMI =
680 MMI->getObjFileInfo<MachineModuleInfoMachO>();
683 getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr", Mang, TM);
685 // Add information about the stub reference to MachOMMI so that the stub
686 // gets emitted by the asmprinter.
687 MachineModuleInfoImpl::StubValueTy &StubSym =
688 GV->hasHiddenVisibility() ? MachOMMI.getHiddenGVStubEntry(SSym) :
689 MachOMMI.getGVStubEntry(SSym);
690 if (!StubSym.getPointer()) {
691 MCSymbol *Sym = TM.getSymbol(GV, Mang);
692 StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
695 return TargetLoweringObjectFile::
696 getTTypeReference(MCSymbolRefExpr::Create(SSym, getContext()),
697 Encoding & ~dwarf::DW_EH_PE_indirect, Streamer);
700 return TargetLoweringObjectFile::getTTypeGlobalReference(GV, Encoding, Mang,
704 MCSymbol *TargetLoweringObjectFileMachO::getCFIPersonalitySymbol(
705 const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM,
706 MachineModuleInfo *MMI) const {
707 // The mach-o version of this method defaults to returning a stub reference.
708 MachineModuleInfoMachO &MachOMMI =
709 MMI->getObjFileInfo<MachineModuleInfoMachO>();
711 MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr", Mang, TM);
713 // Add information about the stub reference to MachOMMI so that the stub
714 // gets emitted by the asmprinter.
715 MachineModuleInfoImpl::StubValueTy &StubSym = MachOMMI.getGVStubEntry(SSym);
716 if (!StubSym.getPointer()) {
717 MCSymbol *Sym = TM.getSymbol(GV, Mang);
718 StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
724 //===----------------------------------------------------------------------===//
726 //===----------------------------------------------------------------------===//
729 getCOFFSectionFlags(SectionKind K) {
734 COFF::IMAGE_SCN_MEM_DISCARDABLE;
737 COFF::IMAGE_SCN_MEM_EXECUTE |
738 COFF::IMAGE_SCN_MEM_READ |
739 COFF::IMAGE_SCN_CNT_CODE;
742 COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA |
743 COFF::IMAGE_SCN_MEM_READ |
744 COFF::IMAGE_SCN_MEM_WRITE;
745 else if (K.isThreadLocal())
747 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
748 COFF::IMAGE_SCN_MEM_READ |
749 COFF::IMAGE_SCN_MEM_WRITE;
750 else if (K.isReadOnly())
752 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
753 COFF::IMAGE_SCN_MEM_READ;
754 else if (K.isWriteable())
756 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
757 COFF::IMAGE_SCN_MEM_READ |
758 COFF::IMAGE_SCN_MEM_WRITE;
763 static const GlobalValue *getComdatGVForCOFF(const GlobalValue *GV) {
764 const Comdat *C = GV->getComdat();
765 assert(C && "expected GV to have a Comdat!");
767 StringRef ComdatGVName = C->getName();
768 const GlobalValue *ComdatGV = GV->getParent()->getNamedValue(ComdatGVName);
770 report_fatal_error("Associative COMDAT symbol '" + ComdatGVName +
771 "' does not exist.");
773 if (ComdatGV->getComdat() != C)
774 report_fatal_error("Associative COMDAT symbol '" + ComdatGVName +
775 "' is not a key for it's COMDAT.");
780 static int getSelectionForCOFF(const GlobalValue *GV) {
781 if (const Comdat *C = GV->getComdat()) {
782 const GlobalValue *ComdatKey = getComdatGVForCOFF(GV);
783 if (const auto *GA = dyn_cast<GlobalAlias>(ComdatKey))
784 ComdatKey = GA->getBaseObject();
785 if (ComdatKey == GV) {
786 switch (C->getSelectionKind()) {
788 return COFF::IMAGE_COMDAT_SELECT_ANY;
789 case Comdat::ExactMatch:
790 return COFF::IMAGE_COMDAT_SELECT_EXACT_MATCH;
791 case Comdat::Largest:
792 return COFF::IMAGE_COMDAT_SELECT_LARGEST;
793 case Comdat::NoDuplicates:
794 return COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
795 case Comdat::SameSize:
796 return COFF::IMAGE_COMDAT_SELECT_SAME_SIZE;
799 return COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE;
801 } else if (GV->isWeakForLinker()) {
802 return COFF::IMAGE_COMDAT_SELECT_ANY;
807 const MCSection *TargetLoweringObjectFileCOFF::getExplicitSectionGlobal(
808 const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
809 const TargetMachine &TM) const {
811 unsigned Characteristics = getCOFFSectionFlags(Kind);
812 StringRef Name = GV->getSection();
813 StringRef COMDATSymName = "";
814 if ((GV->isWeakForLinker() || GV->hasComdat()) && !Kind.isCommon()) {
815 Selection = getSelectionForCOFF(GV);
816 const GlobalValue *ComdatGV;
817 if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
818 ComdatGV = getComdatGVForCOFF(GV);
822 if (!ComdatGV->hasPrivateLinkage()) {
823 MCSymbol *Sym = TM.getSymbol(ComdatGV, Mang);
824 COMDATSymName = Sym->getName();
825 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
830 return getContext().getCOFFSection(Name,
837 static const char *getCOFFSectionNameForUniqueGlobal(SectionKind Kind) {
842 if (Kind.isThreadLocal())
844 if (Kind.isWriteable())
850 const MCSection *TargetLoweringObjectFileCOFF::
851 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
852 Mangler &Mang, const TargetMachine &TM) const {
853 // If we have -ffunction-sections then we should emit the global value to a
854 // uniqued section specifically for it.
855 bool EmitUniquedSection;
857 EmitUniquedSection = TM.getFunctionSections();
859 EmitUniquedSection = TM.getDataSections();
861 // If this global is linkonce/weak and the target handles this by emitting it
862 // into a 'uniqued' section name, create and return the section now.
863 // Section names depend on the name of the symbol which is not feasible if the
864 // symbol has private linkage.
865 if ((GV->isWeakForLinker() || EmitUniquedSection || GV->hasComdat()) &&
867 const char *Name = getCOFFSectionNameForUniqueGlobal(Kind);
868 unsigned Characteristics = getCOFFSectionFlags(Kind);
870 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
871 int Selection = getSelectionForCOFF(GV);
873 Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
874 const GlobalValue *ComdatGV;
876 ComdatGV = getComdatGVForCOFF(GV);
880 if (!ComdatGV->hasPrivateLinkage()) {
881 MCSymbol *Sym = TM.getSymbol(ComdatGV, Mang);
882 StringRef COMDATSymName = Sym->getName();
883 return getContext().getCOFFSection(Name, Characteristics, Kind,
884 COMDATSymName, Selection);
891 if (Kind.isThreadLocal())
892 return TLSDataSection;
894 if (Kind.isReadOnly())
895 return ReadOnlySection;
897 // Note: we claim that common symbols are put in BSSSection, but they are
898 // really emitted with the magic .comm directive, which creates a symbol table
899 // entry but not a section.
900 if (Kind.isBSS() || Kind.isCommon())
906 StringRef TargetLoweringObjectFileCOFF::
907 getDepLibFromLinkerOpt(StringRef LinkerOption) const {
908 const char *LibCmd = "/DEFAULTLIB:";
909 if (LinkerOption.startswith(LibCmd))
910 return LinkerOption.substr(strlen(LibCmd));
914 void TargetLoweringObjectFileCOFF::
915 emitModuleFlags(MCStreamer &Streamer,
916 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
917 Mangler &Mang, const TargetMachine &TM) const {
918 MDNode *LinkerOptions = nullptr;
920 // Look for the "Linker Options" flag, since it's the only one we support.
921 for (ArrayRef<Module::ModuleFlagEntry>::iterator
922 i = ModuleFlags.begin(), e = ModuleFlags.end(); i != e; ++i) {
923 const Module::ModuleFlagEntry &MFE = *i;
924 StringRef Key = MFE.Key->getString();
925 Value *Val = MFE.Val;
926 if (Key == "Linker Options") {
927 LinkerOptions = cast<MDNode>(Val);
934 // Emit the linker options to the linker .drectve section. According to the
935 // spec, this section is a space-separated string containing flags for linker.
936 const MCSection *Sec = getDrectveSection();
937 Streamer.SwitchSection(Sec);
938 for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
939 MDNode *MDOptions = cast<MDNode>(LinkerOptions->getOperand(i));
940 for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
941 MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
942 StringRef Op = MDOption->getString();
943 // Lead with a space for consistency with our dllexport implementation.
944 std::string Escaped(" ");
945 if (Op.find(" ") != StringRef::npos) {
946 // The PE-COFF spec says args with spaces must be quoted. It doesn't say
947 // how to escape quotes, but it probably uses this algorithm:
948 // http://msdn.microsoft.com/en-us/library/17w5ykft(v=vs.85).aspx
949 // FIXME: Reuse escaping code from Support/Windows/Program.inc
950 Escaped.push_back('\"');
952 Escaped.push_back('\"');
956 Streamer.EmitBytes(Escaped);
961 static const MCSection *getAssociativeCOFFSection(MCContext &Ctx,
962 const MCSection *Sec,
963 const MCSymbol *KeySym) {
964 // Return the normal section if we don't have to be associative.
968 // Make an associative section with the same name and kind as the normal
970 const MCSectionCOFF *SecCOFF = cast<MCSectionCOFF>(Sec);
971 unsigned Characteristics =
972 SecCOFF->getCharacteristics() | COFF::IMAGE_SCN_LNK_COMDAT;
973 return Ctx.getCOFFSection(SecCOFF->getSectionName(), Characteristics,
974 SecCOFF->getKind(), KeySym->getName(),
975 COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE);
978 const MCSection *TargetLoweringObjectFileCOFF::getStaticCtorSection(
979 unsigned Priority, const MCSymbol *KeySym) const {
980 return getAssociativeCOFFSection(getContext(), StaticCtorSection, KeySym);
983 const MCSection *TargetLoweringObjectFileCOFF::getStaticDtorSection(
984 unsigned Priority, const MCSymbol *KeySym) const {
985 return getAssociativeCOFFSection(getContext(), StaticDtorSection, KeySym);