blob: f68d6a8a2dfb0b479ffd789bc41cc13c05b9faa3 [file] [log] [blame]
Anton Korobeynikovab663a02010-02-15 22:37:53 +00001//===-- 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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/SmallString.h"
17#include "llvm/ADT/StringExtras.h"
18#include "llvm/ADT/Triple.h"
19#include "llvm/CodeGen/MachineModuleInfoImpls.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#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"
Rafael Espindola894843c2014-01-07 21:19:40 +000025#include "llvm/IR/Mangler.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Module.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000027#include "llvm/MC/MCContext.h"
28#include "llvm/MC/MCExpr.h"
Chris Lattner87cffa92010-05-07 17:17:41 +000029#include "llvm/MC/MCSectionCOFF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/MC/MCSectionELF.h"
31#include "llvm/MC/MCSectionMachO.h"
Rafael Espindolaa83b1772011-04-16 03:51:21 +000032#include "llvm/MC/MCStreamer.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000033#include "llvm/MC/MCSymbol.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000034#include "llvm/Support/Dwarf.h"
Rafael Espindolaaea49582011-01-23 04:28:49 +000035#include "llvm/Support/ELF.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000036#include "llvm/Support/ErrorHandling.h"
37#include "llvm/Support/raw_ostream.h"
Rafael Espindoladaeafb42014-02-19 17:23:20 +000038#include "llvm/Target/TargetLowering.h"
Chandler Carruth442f7842014-03-04 10:07:28 +000039#include "llvm/Target/TargetMachine.h"
Eric Christopherd9134482014-08-04 21:25:23 +000040#include "llvm/Target/TargetSubtargetInfo.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000041using namespace llvm;
Anton Korobeynikov31a92122010-02-21 20:28:15 +000042using namespace dwarf;
Anton Korobeynikovab663a02010-02-15 22:37:53 +000043
44//===----------------------------------------------------------------------===//
45// ELF
46//===----------------------------------------------------------------------===//
Anton Korobeynikovab663a02010-02-15 22:37:53 +000047
Rafael Espindoladaeafb42014-02-19 17:23:20 +000048MCSymbol *TargetLoweringObjectFileELF::getCFIPersonalitySymbol(
49 const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM,
50 MachineModuleInfo *MMI) const {
Rafael Espindolace83fc32011-04-27 23:17:57 +000051 unsigned Encoding = getPersonalityEncoding();
Logan Chienc0029812014-05-30 16:48:56 +000052 if ((Encoding & 0x80) == dwarf::DW_EH_PE_indirect)
Rafael Espindola51d2d7a2011-06-13 03:09:13 +000053 return getContext().GetOrCreateSymbol(StringRef("DW.ref.") +
Rafael Espindolaa3ad4e62014-02-19 20:30:41 +000054 TM.getSymbol(GV, Mang)->getName());
Logan Chienc0029812014-05-30 16:48:56 +000055 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!");
Rafael Espindolaa83b1772011-04-16 03:51:21 +000058}
59
60void TargetLoweringObjectFileELF::emitPersonalityValue(MCStreamer &Streamer,
61 const TargetMachine &TM,
Rafael Espindola08704342011-04-27 23:08:15 +000062 const MCSymbol *Sym) const {
Rafael Espindola51d2d7a2011-06-13 03:09:13 +000063 SmallString<64> NameData("DW.ref.");
64 NameData += Sym->getName();
65 MCSymbol *Label = getContext().GetOrCreateSymbol(NameData);
Rafael Espindola39897762011-04-27 21:29:52 +000066 Streamer.EmitSymbolAttribute(Label, MCSA_Hidden);
67 Streamer.EmitSymbolAttribute(Label, MCSA_Weak);
Rafael Espindola51d2d7a2011-06-13 03:09:13 +000068 StringRef Prefix = ".data.";
69 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end());
Rafael Espindola39897762011-04-27 21:29:52 +000070 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());
Eric Christopher8b770652015-01-26 19:03:15 +000076 unsigned Size = TM.getDataLayout()->getPointerSize();
Rafael Espindola39897762011-04-27 21:29:52 +000077 Streamer.SwitchSection(Sec);
Eric Christopher8b770652015-01-26 19:03:15 +000078 Streamer.EmitValueToAlignment(TM.getDataLayout()->getPointerABIAlignment());
Rafael Espindola39897762011-04-27 21:29:52 +000079 Streamer.EmitSymbolAttribute(Label, MCSA_ELF_TypeObject);
David Chisnall8fa17162012-02-17 16:05:50 +000080 const MCExpr *E = MCConstantExpr::Create(Size, getContext());
Rafael Espindola39897762011-04-27 21:29:52 +000081 Streamer.EmitELFSize(Label, E);
82 Streamer.EmitLabel(Label);
Rafael Espindolaa83b1772011-04-16 03:51:21 +000083
Rafael Espindola39897762011-04-27 21:29:52 +000084 Streamer.EmitSymbolValue(Sym, Size);
Rafael Espindolaa83b1772011-04-16 03:51:21 +000085}
86
Rafael Espindola15b26692014-02-09 14:50:44 +000087const MCExpr *TargetLoweringObjectFileELF::getTTypeGlobalReference(
88 const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
Rafael Espindoladaeafb42014-02-19 17:23:20 +000089 const TargetMachine &TM, MachineModuleInfo *MMI,
90 MCStreamer &Streamer) const {
Anton Korobeynikove42af362012-11-14 01:47:00 +000091
92 if (Encoding & dwarf::DW_EH_PE_indirect) {
93 MachineModuleInfoELF &ELFMMI = MMI->getObjFileInfo<MachineModuleInfoELF>();
94
Rafael Espindoladaeafb42014-02-19 17:23:20 +000095 MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, ".DW.stub", Mang, TM);
Anton Korobeynikove42af362012-11-14 01:47:00 +000096
97 // Add information about the stub reference to ELFMMI so that the stub
98 // gets emitted by the asmprinter.
Anton Korobeynikove42af362012-11-14 01:47:00 +000099 MachineModuleInfoImpl::StubValueTy &StubSym = ELFMMI.getGVStubEntry(SSym);
Craig Topperc0196b12014-04-14 00:51:57 +0000100 if (!StubSym.getPointer()) {
Rafael Espindolaa3ad4e62014-02-19 20:30:41 +0000101 MCSymbol *Sym = TM.getSymbol(GV, Mang);
Anton Korobeynikove42af362012-11-14 01:47:00 +0000102 StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
103 }
104
105 return TargetLoweringObjectFile::
106 getTTypeReference(MCSymbolRefExpr::Create(SSym, getContext()),
107 Encoding & ~dwarf::DW_EH_PE_indirect, Streamer);
108 }
109
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000110 return TargetLoweringObjectFile::
111 getTTypeGlobalReference(GV, Encoding, Mang, TM, MMI, Streamer);
Anton Korobeynikove42af362012-11-14 01:47:00 +0000112}
113
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000114static SectionKind
115getELFKindForNamedSection(StringRef Name, SectionKind K) {
Rafael Espindola0d018b12011-05-24 03:10:31 +0000116 // N.B.: The defaults used in here are no the same ones used in MC.
117 // We follow gcc, MC follows gas. For example, given ".section .eh_frame",
118 // both gas and MC will produce a section with no flags. Given
Bill Wendlingd1634052012-07-19 00:04:14 +0000119 // section(".eh_frame") gcc will produce:
120 //
121 // .section .eh_frame,"a",@progbits
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000122 if (Name.empty() || Name[0] != '.') return K;
123
124 // Some lame default implementation based on some magic section names.
125 if (Name == ".bss" ||
126 Name.startswith(".bss.") ||
127 Name.startswith(".gnu.linkonce.b.") ||
128 Name.startswith(".llvm.linkonce.b.") ||
129 Name == ".sbss" ||
130 Name.startswith(".sbss.") ||
131 Name.startswith(".gnu.linkonce.sb.") ||
132 Name.startswith(".llvm.linkonce.sb."))
133 return SectionKind::getBSS();
134
135 if (Name == ".tdata" ||
136 Name.startswith(".tdata.") ||
137 Name.startswith(".gnu.linkonce.td.") ||
138 Name.startswith(".llvm.linkonce.td."))
139 return SectionKind::getThreadData();
140
141 if (Name == ".tbss" ||
142 Name.startswith(".tbss.") ||
143 Name.startswith(".gnu.linkonce.tb.") ||
144 Name.startswith(".llvm.linkonce.tb."))
145 return SectionKind::getThreadBSS();
146
147 return K;
148}
149
150
151static unsigned getELFSectionType(StringRef Name, SectionKind K) {
152
153 if (Name == ".init_array")
Rafael Espindolaaea49582011-01-23 04:28:49 +0000154 return ELF::SHT_INIT_ARRAY;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000155
156 if (Name == ".fini_array")
Rafael Espindolaaea49582011-01-23 04:28:49 +0000157 return ELF::SHT_FINI_ARRAY;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000158
159 if (Name == ".preinit_array")
Rafael Espindolaaea49582011-01-23 04:28:49 +0000160 return ELF::SHT_PREINIT_ARRAY;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000161
162 if (K.isBSS() || K.isThreadBSS())
Rafael Espindolaaea49582011-01-23 04:28:49 +0000163 return ELF::SHT_NOBITS;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000164
Rafael Espindolaaea49582011-01-23 04:28:49 +0000165 return ELF::SHT_PROGBITS;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000166}
167
168
169static unsigned
170getELFSectionFlags(SectionKind K) {
171 unsigned Flags = 0;
172
173 if (!K.isMetadata())
Rafael Espindola0e7e34e2011-01-23 04:43:11 +0000174 Flags |= ELF::SHF_ALLOC;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000175
176 if (K.isText())
Rafael Espindola0e7e34e2011-01-23 04:43:11 +0000177 Flags |= ELF::SHF_EXECINSTR;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000178
Rafael Espindolac85e0d82011-06-07 23:26:45 +0000179 if (K.isWriteable())
Rafael Espindola0e7e34e2011-01-23 04:43:11 +0000180 Flags |= ELF::SHF_WRITE;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000181
182 if (K.isThreadLocal())
Rafael Espindola0e7e34e2011-01-23 04:43:11 +0000183 Flags |= ELF::SHF_TLS;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000184
185 // K.isMergeableConst() is left out to honour PR4650
186 if (K.isMergeableCString() || K.isMergeableConst4() ||
187 K.isMergeableConst8() || K.isMergeableConst16())
Rafael Espindola0e7e34e2011-01-23 04:43:11 +0000188 Flags |= ELF::SHF_MERGE;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000189
190 if (K.isMergeableCString())
Rafael Espindola0e7e34e2011-01-23 04:43:11 +0000191 Flags |= ELF::SHF_STRINGS;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000192
193 return Flags;
194}
195
David Majnemerdad0a642014-06-27 18:19:56 +0000196static const Comdat *getELFComdat(const GlobalValue *GV) {
197 const Comdat *C = GV->getComdat();
198 if (!C)
199 return nullptr;
200
201 if (C->getSelectionKind() != Comdat::Any)
202 report_fatal_error("ELF COMDATs only support SelectionKind::Any, '" +
203 C->getName() + "' cannot be lowered.");
204
205 return C;
206}
207
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000208const MCSection *TargetLoweringObjectFileELF::getExplicitSectionGlobal(
209 const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
210 const TargetMachine &TM) const {
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000211 StringRef SectionName = GV->getSection();
212
213 // Infer section flags from the section name if we can.
214 Kind = getELFKindForNamedSection(SectionName, Kind);
215
David Majnemerdad0a642014-06-27 18:19:56 +0000216 StringRef Group = "";
217 unsigned Flags = getELFSectionFlags(Kind);
218 if (const Comdat *C = getELFComdat(GV)) {
219 Group = C->getName();
220 Flags |= ELF::SHF_GROUP;
221 }
Chris Lattner80c34592010-04-08 21:34:17 +0000222 return getContext().getELFSection(SectionName,
David Majnemerdad0a642014-06-27 18:19:56 +0000223 getELFSectionType(SectionName, Kind), Flags,
224 Kind, /*EntrySize=*/0, Group);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000225}
226
Chris Lattner5b212a32010-04-13 00:36:43 +0000227/// getSectionPrefixForGlobal - Return the section prefix name used by options
228/// FunctionsSections and DataSections.
David Majnemer102ff692014-06-24 16:01:53 +0000229static StringRef getSectionPrefixForGlobal(SectionKind Kind) {
Chris Lattner5b212a32010-04-13 00:36:43 +0000230 if (Kind.isText()) return ".text.";
231 if (Kind.isReadOnly()) return ".rodata.";
Anton Korobeynikova22828e2012-02-23 10:36:04 +0000232 if (Kind.isBSS()) return ".bss.";
Chris Lattner5b212a32010-04-13 00:36:43 +0000233
234 if (Kind.isThreadData()) return ".tdata.";
235 if (Kind.isThreadBSS()) return ".tbss.";
236
237 if (Kind.isDataNoRel()) return ".data.";
238 if (Kind.isDataRelLocal()) return ".data.rel.local.";
239 if (Kind.isDataRel()) return ".data.rel.";
240 if (Kind.isReadOnlyWithRelLocal()) return ".data.rel.ro.local.";
241
242 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
243 return ".data.rel.ro.";
244}
245
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000246const MCSection *TargetLoweringObjectFileELF::
247SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Rafael Espindolafa0f7282014-02-08 14:53:28 +0000248 Mangler &Mang, const TargetMachine &TM) const {
Chris Lattner5b212a32010-04-13 00:36:43 +0000249 // If we have -ffunction-section or -fdata-section then we should emit the
250 // global value to a uniqued section specifically for it.
251 bool EmitUniquedSection;
252 if (Kind.isText())
253 EmitUniquedSection = TM.getFunctionSections();
Michael J. Spencerfbdab0d2010-10-27 18:52:20 +0000254 else
Chris Lattner5b212a32010-04-13 00:36:43 +0000255 EmitUniquedSection = TM.getDataSections();
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000256
257 // If this global is linkonce/weak and the target handles this by emitting it
258 // into a 'uniqued' section name, create and return the section now.
Rafael Espindola12ca34f2015-01-19 15:16:06 +0000259 if ((EmitUniquedSection && !Kind.isCommon()) || GV->hasComdat()) {
David Majnemer102ff692014-06-24 16:01:53 +0000260 StringRef Prefix = getSectionPrefixForGlobal(Kind);
Chris Lattner5b212a32010-04-13 00:36:43 +0000261
David Majnemer102ff692014-06-24 16:01:53 +0000262 SmallString<128> Name(Prefix);
Rafael Espindolaa3ad4e62014-02-19 20:30:41 +0000263 TM.getNameWithPrefix(Name, GV, Mang, true);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000264
Rafael Espindola70d80152011-02-14 22:23:49 +0000265 StringRef Group = "";
266 unsigned Flags = getELFSectionFlags(Kind);
Rafael Espindola12ca34f2015-01-19 15:16:06 +0000267 if (const Comdat *C = getELFComdat(GV)) {
Rafael Espindola70d80152011-02-14 22:23:49 +0000268 Flags |= ELF::SHF_GROUP;
Rafael Espindola12ca34f2015-01-19 15:16:06 +0000269 Group = C->getName();
Rafael Espindola70d80152011-02-14 22:23:49 +0000270 }
271
Chris Lattner80c34592010-04-08 21:34:17 +0000272 return getContext().getELFSection(Name.str(),
273 getELFSectionType(Name.str(), Kind),
Rafael Espindola70d80152011-02-14 22:23:49 +0000274 Flags, Kind, 0, Group);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000275 }
276
277 if (Kind.isText()) return TextSection;
278
279 if (Kind.isMergeable1ByteCString() ||
280 Kind.isMergeable2ByteCString() ||
281 Kind.isMergeable4ByteCString()) {
282
283 // We also need alignment here.
284 // FIXME: this is getting the alignment of the character, not the
285 // alignment of the global!
286 unsigned Align =
Eric Christopher8b770652015-01-26 19:03:15 +0000287 TM.getDataLayout()->getPreferredAlignment(cast<GlobalVariable>(GV));
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000288
289 const char *SizeSpec = ".rodata.str1.";
290 if (Kind.isMergeable2ByteCString())
291 SizeSpec = ".rodata.str2.";
292 else if (Kind.isMergeable4ByteCString())
293 SizeSpec = ".rodata.str4.";
294 else
295 assert(Kind.isMergeable1ByteCString() && "unknown string width");
296
297
298 std::string Name = SizeSpec + utostr(Align);
Rafael Espindolaaea49582011-01-23 04:28:49 +0000299 return getContext().getELFSection(Name, ELF::SHT_PROGBITS,
Rafael Espindola0e7e34e2011-01-23 04:43:11 +0000300 ELF::SHF_ALLOC |
301 ELF::SHF_MERGE |
302 ELF::SHF_STRINGS,
Chris Lattner80c34592010-04-08 21:34:17 +0000303 Kind);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000304 }
305
306 if (Kind.isMergeableConst()) {
307 if (Kind.isMergeableConst4() && MergeableConst4Section)
308 return MergeableConst4Section;
309 if (Kind.isMergeableConst8() && MergeableConst8Section)
310 return MergeableConst8Section;
311 if (Kind.isMergeableConst16() && MergeableConst16Section)
312 return MergeableConst16Section;
313 return ReadOnlySection; // .const
314 }
315
316 if (Kind.isReadOnly()) return ReadOnlySection;
317
318 if (Kind.isThreadData()) return TLSDataSection;
319 if (Kind.isThreadBSS()) return TLSBSSSection;
320
321 // Note: we claim that common symbols are put in BSSSection, but they are
322 // really emitted with the magic .comm directive, which creates a symbol table
323 // entry but not a section.
324 if (Kind.isBSS() || Kind.isCommon()) return BSSSection;
325
326 if (Kind.isDataNoRel()) return DataSection;
327 if (Kind.isDataRelLocal()) return DataRelLocalSection;
328 if (Kind.isDataRel()) return DataRelSection;
329 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
330
331 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
332 return DataRelROSection;
333}
334
335/// getSectionForConstant - Given a mergeable constant with the
336/// specified size and relocation information, return a section that it
337/// should be placed in.
David Majnemer8bce66b2014-07-14 22:57:27 +0000338const MCSection *
339TargetLoweringObjectFileELF::getSectionForConstant(SectionKind Kind,
340 const Constant *C) const {
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000341 if (Kind.isMergeableConst4() && MergeableConst4Section)
342 return MergeableConst4Section;
343 if (Kind.isMergeableConst8() && MergeableConst8Section)
344 return MergeableConst8Section;
345 if (Kind.isMergeableConst16() && MergeableConst16Section)
346 return MergeableConst16Section;
347 if (Kind.isReadOnly())
348 return ReadOnlySection;
349
350 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
351 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
352 return DataRelROSection;
353}
354
Rafael Espindola7c7d7b92014-09-05 00:02:50 +0000355static const MCSectionELF *getStaticStructorSection(MCContext &Ctx,
356 bool UseInitArray,
357 bool IsCtor,
358 unsigned Priority,
359 const MCSymbol *KeySym) {
Rafael Espindolac4b42532014-09-04 23:03:58 +0000360 std::string Name;
361 unsigned Type;
362 unsigned Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE;
363 SectionKind Kind = SectionKind::getDataRel();
364 StringRef COMDAT = KeySym ? KeySym->getName() : "";
365
366 if (KeySym)
367 Flags |= ELF::SHF_GROUP;
Anton Korobeynikov7722a2d2012-01-25 22:24:19 +0000368
Rafael Espindolaca3e0ee2012-06-19 00:48:28 +0000369 if (UseInitArray) {
Rafael Espindola7c7d7b92014-09-05 00:02:50 +0000370 if (IsCtor) {
371 Type = ELF::SHT_INIT_ARRAY;
372 Name = ".init_array";
373 } else {
374 Type = ELF::SHT_FINI_ARRAY;
375 Name = ".fini_array";
376 }
Rafael Espindolac4b42532014-09-04 23:03:58 +0000377 if (Priority != 65535) {
378 Name += '.';
379 Name += utostr(Priority);
380 }
Rafael Espindolaca3e0ee2012-06-19 00:48:28 +0000381 } else {
Rafael Espindolac4b42532014-09-04 23:03:58 +0000382 // The default scheme is .ctor / .dtor, so we have to invert the priority
383 // numbering.
Rafael Espindola7c7d7b92014-09-05 00:02:50 +0000384 if (IsCtor)
385 Name = ".ctors";
386 else
387 Name = ".dtors";
Rafael Espindolac4b42532014-09-04 23:03:58 +0000388 if (Priority != 65535) {
389 Name += '.';
390 Name += utostr(65535 - Priority);
391 }
392 Type = ELF::SHT_PROGBITS;
Rafael Espindolaca3e0ee2012-06-19 00:48:28 +0000393 }
Rafael Espindolac4b42532014-09-04 23:03:58 +0000394
Rafael Espindola7c7d7b92014-09-05 00:02:50 +0000395 return Ctx.getELFSection(Name, Type, Flags, Kind, 0, COMDAT);
396}
397
398const MCSection *TargetLoweringObjectFileELF::getStaticCtorSection(
399 unsigned Priority, const MCSymbol *KeySym) const {
400 return getStaticStructorSection(getContext(), UseInitArray, true, Priority,
401 KeySym);
Anton Korobeynikov7722a2d2012-01-25 22:24:19 +0000402}
403
Reid Klecknerfceb76f2014-05-16 20:39:27 +0000404const MCSection *TargetLoweringObjectFileELF::getStaticDtorSection(
Rafael Espindola0766ae02014-06-06 19:26:12 +0000405 unsigned Priority, const MCSymbol *KeySym) const {
Rafael Espindola7c7d7b92014-09-05 00:02:50 +0000406 return getStaticStructorSection(getContext(), UseInitArray, false, Priority,
407 KeySym);
Rafael Espindolaca3e0ee2012-06-19 00:48:28 +0000408}
409
410void
411TargetLoweringObjectFileELF::InitializeELF(bool UseInitArray_) {
412 UseInitArray = UseInitArray_;
413 if (!UseInitArray)
414 return;
415
416 StaticCtorSection =
417 getContext().getELFSection(".init_array", ELF::SHT_INIT_ARRAY,
418 ELF::SHF_WRITE |
419 ELF::SHF_ALLOC,
420 SectionKind::getDataRel());
421 StaticDtorSection =
422 getContext().getELFSection(".fini_array", ELF::SHT_FINI_ARRAY,
423 ELF::SHF_WRITE |
424 ELF::SHF_ALLOC,
425 SectionKind::getDataRel());
Anton Korobeynikov7722a2d2012-01-25 22:24:19 +0000426}
427
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000428//===----------------------------------------------------------------------===//
429// MachO
430//===----------------------------------------------------------------------===//
431
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000432/// getDepLibFromLinkerOpt - Extract the dependent library name from a linker
433/// option string. Returns StringRef() if the option does not specify a library.
434StringRef TargetLoweringObjectFileMachO::
435getDepLibFromLinkerOpt(StringRef LinkerOption) const {
436 const char *LibCmd = "-l";
437 if (LinkerOption.startswith(LibCmd))
438 return LinkerOption.substr(strlen(LibCmd));
439 return StringRef();
440}
441
Daniel Dunbar95856122013-01-18 19:37:00 +0000442/// emitModuleFlags - Perform code emission for module flags.
Bill Wendling06df7722012-02-14 21:28:13 +0000443void TargetLoweringObjectFileMachO::
Bill Wendling734909a2012-02-15 22:36:15 +0000444emitModuleFlags(MCStreamer &Streamer,
445 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
Rafael Espindolafa0f7282014-02-08 14:53:28 +0000446 Mangler &Mang, const TargetMachine &TM) const {
Bill Wendling06df7722012-02-14 21:28:13 +0000447 unsigned VersionVal = 0;
Bill Wendlingf1b14b72012-04-24 11:03:50 +0000448 unsigned ImageInfoFlags = 0;
Craig Topperc0196b12014-04-14 00:51:57 +0000449 MDNode *LinkerOptions = nullptr;
Bill Wendling734909a2012-02-15 22:36:15 +0000450 StringRef SectionVal;
Bill Wendling06df7722012-02-14 21:28:13 +0000451
Bill Wendling734909a2012-02-15 22:36:15 +0000452 for (ArrayRef<Module::ModuleFlagEntry>::iterator
453 i = ModuleFlags.begin(), e = ModuleFlags.end(); i != e; ++i) {
454 const Module::ModuleFlagEntry &MFE = *i;
Bill Wendling06df7722012-02-14 21:28:13 +0000455
456 // Ignore flags with 'Require' behavior.
Bill Wendling734909a2012-02-15 22:36:15 +0000457 if (MFE.Behavior == Module::Require)
Bill Wendling06df7722012-02-14 21:28:13 +0000458 continue;
459
Bill Wendling734909a2012-02-15 22:36:15 +0000460 StringRef Key = MFE.Key->getString();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000461 Metadata *Val = MFE.Val;
Bill Wendling06df7722012-02-14 21:28:13 +0000462
Daniel Dunbar95856122013-01-18 19:37:00 +0000463 if (Key == "Objective-C Image Info Version") {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000464 VersionVal = mdconst::extract<ConstantInt>(Val)->getZExtValue();
Daniel Dunbar95856122013-01-18 19:37:00 +0000465 } else if (Key == "Objective-C Garbage Collection" ||
466 Key == "Objective-C GC Only" ||
Manman Renc98ec0e2014-11-21 19:24:55 +0000467 Key == "Objective-C Is Simulated" ||
468 Key == "Objective-C Image Swift Version") {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000469 ImageInfoFlags |= mdconst::extract<ConstantInt>(Val)->getZExtValue();
Daniel Dunbar95856122013-01-18 19:37:00 +0000470 } else if (Key == "Objective-C Image Info Section") {
Bill Wendling734909a2012-02-15 22:36:15 +0000471 SectionVal = cast<MDString>(Val)->getString();
Daniel Dunbar95856122013-01-18 19:37:00 +0000472 } else if (Key == "Linker Options") {
473 LinkerOptions = cast<MDNode>(Val);
474 }
475 }
476
477 // Emit the linker options if present.
478 if (LinkerOptions) {
479 for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
480 MDNode *MDOptions = cast<MDNode>(LinkerOptions->getOperand(i));
481 SmallVector<std::string, 4> StrOptions;
482
483 // Convert to strings.
484 for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
485 MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
486 StrOptions.push_back(MDOption->getString());
487 }
488
489 Streamer.EmitLinkerOptions(StrOptions);
490 }
Bill Wendling06df7722012-02-14 21:28:13 +0000491 }
492
Bill Wendling734909a2012-02-15 22:36:15 +0000493 // The section is mandatory. If we don't have it, then we don't have GC info.
494 if (SectionVal.empty()) return;
Bill Wendling06df7722012-02-14 21:28:13 +0000495
Bill Wendling734909a2012-02-15 22:36:15 +0000496 StringRef Segment, Section;
497 unsigned TAA = 0, StubSize = 0;
498 bool TAAParsed;
499 std::string ErrorCode =
500 MCSectionMachO::ParseSectionSpecifier(SectionVal, Segment, Section,
501 TAA, TAAParsed, StubSize);
Bill Wendlinga0009ee2012-02-15 22:47:53 +0000502 if (!ErrorCode.empty())
Bill Wendling734909a2012-02-15 22:36:15 +0000503 // If invalid, report the error with report_fatal_error.
Bill Wendlinga0009ee2012-02-15 22:47:53 +0000504 report_fatal_error("Invalid section specifier '" + Section + "': " +
505 ErrorCode + ".");
Bill Wendling06df7722012-02-14 21:28:13 +0000506
Bill Wendling734909a2012-02-15 22:36:15 +0000507 // Get the section.
508 const MCSectionMachO *S =
509 getContext().getMachOSection(Segment, Section, TAA, StubSize,
Bill Wendlinga0009ee2012-02-15 22:47:53 +0000510 SectionKind::getDataNoRel());
Bill Wendling734909a2012-02-15 22:36:15 +0000511 Streamer.SwitchSection(S);
512 Streamer.EmitLabel(getContext().
513 GetOrCreateSymbol(StringRef("L_OBJC_IMAGE_INFO")));
Bill Wendling06df7722012-02-14 21:28:13 +0000514 Streamer.EmitIntValue(VersionVal, 4);
Bill Wendlingf1b14b72012-04-24 11:03:50 +0000515 Streamer.EmitIntValue(ImageInfoFlags, 4);
Bill Wendling06df7722012-02-14 21:28:13 +0000516 Streamer.AddBlankLine();
517}
518
David Majnemerdad0a642014-06-27 18:19:56 +0000519static void checkMachOComdat(const GlobalValue *GV) {
520 const Comdat *C = GV->getComdat();
521 if (!C)
522 return;
523
524 report_fatal_error("MachO doesn't support COMDATs, '" + C->getName() +
525 "' cannot be lowered.");
526}
527
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000528const MCSection *TargetLoweringObjectFileMachO::getExplicitSectionGlobal(
529 const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
530 const TargetMachine &TM) const {
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000531 // Parse the section specifier and create it if valid.
532 StringRef Segment, Section;
Stuart Hastings12d53122011-03-19 02:42:31 +0000533 unsigned TAA = 0, StubSize = 0;
534 bool TAAParsed;
David Majnemerdad0a642014-06-27 18:19:56 +0000535
536 checkMachOComdat(GV);
537
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000538 std::string ErrorCode =
539 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
Stuart Hastings12d53122011-03-19 02:42:31 +0000540 TAA, TAAParsed, StubSize);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000541 if (!ErrorCode.empty()) {
Chris Lattner2104b8d2010-04-07 22:58:41 +0000542 // If invalid, report the error with report_fatal_error.
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000543 report_fatal_error("Global variable '" + GV->getName() +
544 "' has an invalid section specifier '" +
545 GV->getSection() + "': " + ErrorCode + ".");
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000546 }
547
548 // Get the section.
549 const MCSectionMachO *S =
Chris Lattner433d4062010-04-08 20:40:11 +0000550 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000551
Stuart Hastingsb4863a42011-02-21 17:27:17 +0000552 // If TAA wasn't set by ParseSectionSpecifier() above,
553 // use the value returned by getMachOSection() as a default.
Stuart Hastings12d53122011-03-19 02:42:31 +0000554 if (!TAAParsed)
Stuart Hastingsb4863a42011-02-21 17:27:17 +0000555 TAA = S->getTypeAndAttributes();
556
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000557 // Okay, now that we got the section, verify that the TAA & StubSize agree.
558 // If the user declared multiple globals with different section flags, we need
559 // to reject it here.
560 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
Chris Lattner2104b8d2010-04-07 22:58:41 +0000561 // If invalid, report the error with report_fatal_error.
Benjamin Kramer1f97a5a2011-11-15 16:27:03 +0000562 report_fatal_error("Global variable '" + GV->getName() +
563 "' section type or attributes does not match previous"
564 " section specifier");
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000565 }
566
567 return S;
568}
569
570const MCSection *TargetLoweringObjectFileMachO::
571SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Rafael Espindolafa0f7282014-02-08 14:53:28 +0000572 Mangler &Mang, const TargetMachine &TM) const {
David Majnemerdad0a642014-06-27 18:19:56 +0000573 checkMachOComdat(GV);
Bill Wendling25b61db2013-11-17 10:53:13 +0000574
575 // Handle thread local data.
576 if (Kind.isThreadBSS()) return TLSBSSSection;
577 if (Kind.isThreadData()) return TLSDataSection;
578
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000579 if (Kind.isText())
Arnold Schwaighoferc31c2de2013-08-08 21:04:16 +0000580 return GV->isWeakForLinker() ? TextCoalSection : TextSection;
581
582 // If this is weak/linkonce, put this in a coalescable section, either in text
583 // or data depending on if it is writable.
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000584 if (GV->isWeakForLinker()) {
585 if (Kind.isReadOnly())
Arnold Schwaighoferc31c2de2013-08-08 21:04:16 +0000586 return ConstTextCoalSection;
587 return DataCoalSection;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000588 }
589
590 // FIXME: Alignment check should be handled by section classifier.
Chris Lattneref2f8042010-03-07 04:28:09 +0000591 if (Kind.isMergeable1ByteCString() &&
Eric Christopher8b770652015-01-26 19:03:15 +0000592 TM.getDataLayout()->getPreferredAlignment(cast<GlobalVariable>(GV)) < 32)
Chris Lattneref2f8042010-03-07 04:28:09 +0000593 return CStringSection;
Michael J. Spencerfbdab0d2010-10-27 18:52:20 +0000594
Chris Lattneref2f8042010-03-07 04:28:09 +0000595 // Do not put 16-bit arrays in the UString section if they have an
596 // externally visible label, this runs into issues with certain linker
597 // versions.
598 if (Kind.isMergeable2ByteCString() && !GV->hasExternalLinkage() &&
Eric Christopher8b770652015-01-26 19:03:15 +0000599 TM.getDataLayout()->getPreferredAlignment(cast<GlobalVariable>(GV)) < 32)
Chris Lattneref2f8042010-03-07 04:28:09 +0000600 return UStringSection;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000601
Rafael Espindolab43d51d2014-08-28 20:13:31 +0000602 // With MachO only variables whose corresponding symbol starts with 'l' or
603 // 'L' can be merged, so we only try merging GVs with private linkage.
604 if (GV->hasPrivateLinkage() && Kind.isMergeableConst()) {
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000605 if (Kind.isMergeableConst4())
606 return FourByteConstantSection;
607 if (Kind.isMergeableConst8())
608 return EightByteConstantSection;
Rafael Espindola1f3de492014-02-13 23:16:11 +0000609 if (Kind.isMergeableConst16())
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000610 return SixteenByteConstantSection;
611 }
612
613 // Otherwise, if it is readonly, but not something we can specially optimize,
614 // just drop it in .const.
615 if (Kind.isReadOnly())
616 return ReadOnlySection;
617
618 // If this is marked const, put it into a const section. But if the dynamic
619 // linker needs to write to it, put it in the data segment.
620 if (Kind.isReadOnlyWithRel())
621 return ConstDataSection;
622
623 // Put zero initialized globals with strong external linkage in the
624 // DATA, __common section with the .zerofill directive.
625 if (Kind.isBSSExtern())
626 return DataCommonSection;
627
628 // Put zero initialized globals with local linkage in __DATA,__bss directive
629 // with the .zerofill directive (aka .lcomm).
630 if (Kind.isBSSLocal())
631 return DataBSSSection;
Michael J. Spencerfbdab0d2010-10-27 18:52:20 +0000632
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000633 // Otherwise, just drop the variable in the normal data section.
634 return DataSection;
635}
636
637const MCSection *
David Majnemer8bce66b2014-07-14 22:57:27 +0000638TargetLoweringObjectFileMachO::getSectionForConstant(SectionKind Kind,
639 const Constant *C) const {
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000640 // If this constant requires a relocation, we have to put it in the data
641 // segment, not in the text segment.
642 if (Kind.isDataRel() || Kind.isReadOnlyWithRel())
643 return ConstDataSection;
644
645 if (Kind.isMergeableConst4())
646 return FourByteConstantSection;
647 if (Kind.isMergeableConst8())
648 return EightByteConstantSection;
Rafael Espindola1f3de492014-02-13 23:16:11 +0000649 if (Kind.isMergeableConst16())
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000650 return SixteenByteConstantSection;
651 return ReadOnlySection; // .const
652}
653
Rafael Espindola15b26692014-02-09 14:50:44 +0000654const MCExpr *TargetLoweringObjectFileMachO::getTTypeGlobalReference(
655 const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000656 const TargetMachine &TM, MachineModuleInfo *MMI,
657 MCStreamer &Streamer) const {
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000658 // The mach-o version of this method defaults to returning a stub reference.
659
Anton Korobeynikov31a92122010-02-21 20:28:15 +0000660 if (Encoding & DW_EH_PE_indirect) {
661 MachineModuleInfoMachO &MachOMMI =
662 MMI->getObjFileInfo<MachineModuleInfoMachO>();
663
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000664 MCSymbol *SSym =
665 getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr", Mang, TM);
Anton Korobeynikov31a92122010-02-21 20:28:15 +0000666
667 // Add information about the stub reference to MachOMMI so that the stub
668 // gets emitted by the asmprinter.
Bill Wendling57e3aaa2011-10-24 23:05:43 +0000669 MachineModuleInfoImpl::StubValueTy &StubSym =
670 GV->hasHiddenVisibility() ? MachOMMI.getHiddenGVStubEntry(SSym) :
671 MachOMMI.getGVStubEntry(SSym);
Craig Topperc0196b12014-04-14 00:51:57 +0000672 if (!StubSym.getPointer()) {
Rafael Espindolaa3ad4e62014-02-19 20:30:41 +0000673 MCSymbol *Sym = TM.getSymbol(GV, Mang);
Chris Lattner2ea586b2010-03-15 20:37:38 +0000674 StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
Anton Korobeynikov31a92122010-02-21 20:28:15 +0000675 }
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000676
677 return TargetLoweringObjectFile::
Anton Korobeynikove42af362012-11-14 01:47:00 +0000678 getTTypeReference(MCSymbolRefExpr::Create(SSym, getContext()),
679 Encoding & ~dwarf::DW_EH_PE_indirect, Streamer);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000680 }
681
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000682 return TargetLoweringObjectFile::getTTypeGlobalReference(GV, Encoding, Mang,
683 TM, MMI, Streamer);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000684}
685
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000686MCSymbol *TargetLoweringObjectFileMachO::getCFIPersonalitySymbol(
687 const GlobalValue *GV, Mangler &Mang, const TargetMachine &TM,
688 MachineModuleInfo *MMI) const {
Rafael Espindola08704342011-04-27 23:08:15 +0000689 // The mach-o version of this method defaults to returning a stub reference.
690 MachineModuleInfoMachO &MachOMMI =
691 MMI->getObjFileInfo<MachineModuleInfoMachO>();
692
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000693 MCSymbol *SSym = getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr", Mang, TM);
Rafael Espindola08704342011-04-27 23:08:15 +0000694
695 // Add information about the stub reference to MachOMMI so that the stub
696 // gets emitted by the asmprinter.
Bill Wendlinge4cc3322011-11-29 01:43:20 +0000697 MachineModuleInfoImpl::StubValueTy &StubSym = MachOMMI.getGVStubEntry(SSym);
Craig Topperc0196b12014-04-14 00:51:57 +0000698 if (!StubSym.getPointer()) {
Rafael Espindolaa3ad4e62014-02-19 20:30:41 +0000699 MCSymbol *Sym = TM.getSymbol(GV, Mang);
Rafael Espindola08704342011-04-27 23:08:15 +0000700 StubSym = MachineModuleInfoImpl::StubValueTy(Sym, !GV->hasLocalLinkage());
701 }
702
703 return SSym;
704}
705
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000706//===----------------------------------------------------------------------===//
707// COFF
708//===----------------------------------------------------------------------===//
709
Chris Lattner87cffa92010-05-07 17:17:41 +0000710static unsigned
711getCOFFSectionFlags(SectionKind K) {
712 unsigned Flags = 0;
713
Anton Korobeynikove4152302010-07-06 15:24:56 +0000714 if (K.isMetadata())
Chris Lattner02844932010-05-07 21:49:09 +0000715 Flags |=
Daniel Dunbar329d2022010-07-01 20:07:24 +0000716 COFF::IMAGE_SCN_MEM_DISCARDABLE;
Chris Lattner87cffa92010-05-07 17:17:41 +0000717 else if (K.isText())
718 Flags |=
Daniel Dunbar329d2022010-07-01 20:07:24 +0000719 COFF::IMAGE_SCN_MEM_EXECUTE |
Michael J. Spencer0f83d962010-10-27 18:52:29 +0000720 COFF::IMAGE_SCN_MEM_READ |
Daniel Dunbar329d2022010-07-01 20:07:24 +0000721 COFF::IMAGE_SCN_CNT_CODE;
David Majnemerb8dbebb2014-09-20 07:31:46 +0000722 else if (K.isBSS())
Chris Lattner02844932010-05-07 21:49:09 +0000723 Flags |=
Daniel Dunbar329d2022010-07-01 20:07:24 +0000724 COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA |
725 COFF::IMAGE_SCN_MEM_READ |
726 COFF::IMAGE_SCN_MEM_WRITE;
Anton Korobeynikovc6b40172012-02-11 17:26:53 +0000727 else if (K.isThreadLocal())
728 Flags |=
729 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
730 COFF::IMAGE_SCN_MEM_READ |
731 COFF::IMAGE_SCN_MEM_WRITE;
David Majnemerb8dbebb2014-09-20 07:31:46 +0000732 else if (K.isReadOnly() || K.isReadOnlyWithRel())
Chris Lattner87cffa92010-05-07 17:17:41 +0000733 Flags |=
Daniel Dunbar329d2022010-07-01 20:07:24 +0000734 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
735 COFF::IMAGE_SCN_MEM_READ;
Chris Lattner87cffa92010-05-07 17:17:41 +0000736 else if (K.isWriteable())
737 Flags |=
Daniel Dunbar329d2022010-07-01 20:07:24 +0000738 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
739 COFF::IMAGE_SCN_MEM_READ |
740 COFF::IMAGE_SCN_MEM_WRITE;
Chris Lattner87cffa92010-05-07 17:17:41 +0000741
742 return Flags;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000743}
744
Benjamin Kramer6cbe6702014-07-07 14:47:51 +0000745static const GlobalValue *getComdatGVForCOFF(const GlobalValue *GV) {
David Majnemerdad0a642014-06-27 18:19:56 +0000746 const Comdat *C = GV->getComdat();
747 assert(C && "expected GV to have a Comdat!");
748
749 StringRef ComdatGVName = C->getName();
750 const GlobalValue *ComdatGV = GV->getParent()->getNamedValue(ComdatGVName);
751 if (!ComdatGV)
752 report_fatal_error("Associative COMDAT symbol '" + ComdatGVName +
753 "' does not exist.");
754
755 if (ComdatGV->getComdat() != C)
756 report_fatal_error("Associative COMDAT symbol '" + ComdatGVName +
Hans Wennborgc0f0c512014-09-19 01:14:56 +0000757 "' is not a key for its COMDAT.");
David Majnemerdad0a642014-06-27 18:19:56 +0000758
759 return ComdatGV;
760}
761
762static int getSelectionForCOFF(const GlobalValue *GV) {
763 if (const Comdat *C = GV->getComdat()) {
764 const GlobalValue *ComdatKey = getComdatGVForCOFF(GV);
765 if (const auto *GA = dyn_cast<GlobalAlias>(ComdatKey))
766 ComdatKey = GA->getBaseObject();
767 if (ComdatKey == GV) {
768 switch (C->getSelectionKind()) {
769 case Comdat::Any:
770 return COFF::IMAGE_COMDAT_SELECT_ANY;
771 case Comdat::ExactMatch:
772 return COFF::IMAGE_COMDAT_SELECT_EXACT_MATCH;
773 case Comdat::Largest:
774 return COFF::IMAGE_COMDAT_SELECT_LARGEST;
775 case Comdat::NoDuplicates:
776 return COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
777 case Comdat::SameSize:
778 return COFF::IMAGE_COMDAT_SELECT_SAME_SIZE;
779 }
780 } else {
781 return COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE;
782 }
783 } else if (GV->isWeakForLinker()) {
784 return COFF::IMAGE_COMDAT_SELECT_ANY;
785 }
786 return 0;
787}
788
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000789const MCSection *TargetLoweringObjectFileCOFF::getExplicitSectionGlobal(
790 const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
791 const TargetMachine &TM) const {
Michael J. Spencerf1aef752012-11-13 22:04:09 +0000792 int Selection = 0;
793 unsigned Characteristics = getCOFFSectionFlags(Kind);
Rafael Espindola2d30ae22013-11-27 01:18:37 +0000794 StringRef Name = GV->getSection();
795 StringRef COMDATSymName = "";
Rafael Espindola12ca34f2015-01-19 15:16:06 +0000796 if (GV->hasComdat()) {
David Majnemerdad0a642014-06-27 18:19:56 +0000797 Selection = getSelectionForCOFF(GV);
798 const GlobalValue *ComdatGV;
799 if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
800 ComdatGV = getComdatGVForCOFF(GV);
801 else
802 ComdatGV = GV;
803
804 if (!ComdatGV->hasPrivateLinkage()) {
805 MCSymbol *Sym = TM.getSymbol(ComdatGV, Mang);
806 COMDATSymName = Sym->getName();
807 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
808 } else {
809 Selection = 0;
810 }
Michael J. Spencerf1aef752012-11-13 22:04:09 +0000811 }
812 return getContext().getCOFFSection(Name,
813 Characteristics,
Nico Riecka37acf72013-07-06 12:13:10 +0000814 Kind,
Rafael Espindola2d30ae22013-11-27 01:18:37 +0000815 COMDATSymName,
Nico Riecka37acf72013-07-06 12:13:10 +0000816 Selection);
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000817}
818
Rafael Espindola2d30ae22013-11-27 01:18:37 +0000819static const char *getCOFFSectionNameForUniqueGlobal(SectionKind Kind) {
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000820 if (Kind.isText())
Rafael Espindola2d30ae22013-11-27 01:18:37 +0000821 return ".text";
David Majnemera9bdb322014-04-08 22:33:40 +0000822 if (Kind.isBSS())
Rafael Espindola2d30ae22013-11-27 01:18:37 +0000823 return ".bss";
824 if (Kind.isThreadLocal())
Rafael Espindola3c8e1472013-11-27 15:52:11 +0000825 return ".tls$";
David Majnemer597be2d2014-09-22 20:39:23 +0000826 if (Kind.isReadOnly() || Kind.isReadOnlyWithRel())
827 return ".rdata";
828 return ".data";
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000829}
830
831
832const MCSection *TargetLoweringObjectFileCOFF::
833SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Rafael Espindolafa0f7282014-02-08 14:53:28 +0000834 Mangler &Mang, const TargetMachine &TM) const {
David Majnemer93389842014-03-23 17:47:39 +0000835 // If we have -ffunction-sections then we should emit the global value to a
836 // uniqued section specifically for it.
David Majnemer273bff42014-03-25 06:14:26 +0000837 bool EmitUniquedSection;
838 if (Kind.isText())
839 EmitUniquedSection = TM.getFunctionSections();
840 else
841 EmitUniquedSection = TM.getDataSections();
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000842
Rafael Espindola12ca34f2015-01-19 15:16:06 +0000843 if ((EmitUniquedSection && !Kind.isCommon()) || GV->hasComdat()) {
Rafael Espindola2d30ae22013-11-27 01:18:37 +0000844 const char *Name = getCOFFSectionNameForUniqueGlobal(Kind);
Chris Lattner02844932010-05-07 21:49:09 +0000845 unsigned Characteristics = getCOFFSectionFlags(Kind);
846
Daniel Dunbar329d2022010-07-01 20:07:24 +0000847 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
David Majnemerdad0a642014-06-27 18:19:56 +0000848 int Selection = getSelectionForCOFF(GV);
849 if (!Selection)
850 Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
851 const GlobalValue *ComdatGV;
852 if (GV->hasComdat())
853 ComdatGV = getComdatGVForCOFF(GV);
854 else
855 ComdatGV = GV;
856
857 if (!ComdatGV->hasPrivateLinkage()) {
858 MCSymbol *Sym = TM.getSymbol(ComdatGV, Mang);
859 StringRef COMDATSymName = Sym->getName();
860 return getContext().getCOFFSection(Name, Characteristics, Kind,
861 COMDATSymName, Selection);
862 }
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000863 }
864
865 if (Kind.isText())
David Majnemer3d96acb2013-08-13 01:23:53 +0000866 return TextSection;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000867
Anton Korobeynikovc6b40172012-02-11 17:26:53 +0000868 if (Kind.isThreadLocal())
David Majnemer3d96acb2013-08-13 01:23:53 +0000869 return TLSDataSection;
Anton Korobeynikovc6b40172012-02-11 17:26:53 +0000870
David Majnemer597be2d2014-09-22 20:39:23 +0000871 if (Kind.isReadOnly() || Kind.isReadOnlyWithRel())
David Majnemerf76d6b32013-08-08 01:50:52 +0000872 return ReadOnlySection;
873
David Majnemera9bdb322014-04-08 22:33:40 +0000874 // Note: we claim that common symbols are put in BSSSection, but they are
875 // really emitted with the magic .comm directive, which creates a symbol table
876 // entry but not a section.
877 if (Kind.isBSS() || Kind.isCommon())
David Majnemer3d96acb2013-08-13 01:23:53 +0000878 return BSSSection;
879
880 return DataSection;
Anton Korobeynikovab663a02010-02-15 22:37:53 +0000881}
882
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000883StringRef TargetLoweringObjectFileCOFF::
884getDepLibFromLinkerOpt(StringRef LinkerOption) const {
885 const char *LibCmd = "/DEFAULTLIB:";
886 if (LinkerOption.startswith(LibCmd))
887 return LinkerOption.substr(strlen(LibCmd));
888 return StringRef();
889}
890
Reid Klecknerd973ca32013-04-25 19:34:41 +0000891void TargetLoweringObjectFileCOFF::
892emitModuleFlags(MCStreamer &Streamer,
893 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
Rafael Espindolafa0f7282014-02-08 14:53:28 +0000894 Mangler &Mang, const TargetMachine &TM) const {
Craig Topperc0196b12014-04-14 00:51:57 +0000895 MDNode *LinkerOptions = nullptr;
Reid Klecknerd973ca32013-04-25 19:34:41 +0000896
897 // Look for the "Linker Options" flag, since it's the only one we support.
898 for (ArrayRef<Module::ModuleFlagEntry>::iterator
899 i = ModuleFlags.begin(), e = ModuleFlags.end(); i != e; ++i) {
900 const Module::ModuleFlagEntry &MFE = *i;
901 StringRef Key = MFE.Key->getString();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000902 Metadata *Val = MFE.Val;
Reid Klecknerd973ca32013-04-25 19:34:41 +0000903 if (Key == "Linker Options") {
904 LinkerOptions = cast<MDNode>(Val);
905 break;
906 }
907 }
908 if (!LinkerOptions)
909 return;
910
911 // Emit the linker options to the linker .drectve section. According to the
912 // spec, this section is a space-separated string containing flags for linker.
913 const MCSection *Sec = getDrectveSection();
914 Streamer.SwitchSection(Sec);
915 for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) {
916 MDNode *MDOptions = cast<MDNode>(LinkerOptions->getOperand(i));
917 for (unsigned ii = 0, ie = MDOptions->getNumOperands(); ii != ie; ++ii) {
918 MDString *MDOption = cast<MDString>(MDOptions->getOperand(ii));
919 StringRef Op = MDOption->getString();
920 // Lead with a space for consistency with our dllexport implementation.
921 std::string Escaped(" ");
Michael Kupersteinc43b0632014-12-30 19:23:48 +0000922 if (!Op.startswith("\"") && (Op.find(" ") != StringRef::npos)) {
Reid Klecknerd973ca32013-04-25 19:34:41 +0000923 // The PE-COFF spec says args with spaces must be quoted. It doesn't say
924 // how to escape quotes, but it probably uses this algorithm:
925 // http://msdn.microsoft.com/en-us/library/17w5ykft(v=vs.85).aspx
926 // FIXME: Reuse escaping code from Support/Windows/Program.inc
927 Escaped.push_back('\"');
928 Escaped.append(Op);
929 Escaped.push_back('\"');
930 } else {
931 Escaped.append(Op);
932 }
933 Streamer.EmitBytes(Escaped);
934 }
935 }
936}
Reid Klecknerfceb76f2014-05-16 20:39:27 +0000937
Reid Klecknerfceb76f2014-05-16 20:39:27 +0000938const MCSection *TargetLoweringObjectFileCOFF::getStaticCtorSection(
Rafael Espindola0766ae02014-06-06 19:26:12 +0000939 unsigned Priority, const MCSymbol *KeySym) const {
Reid Kleckner7c4059e2014-09-04 17:42:03 +0000940 return getContext().getAssociativeCOFFSection(
941 cast<MCSectionCOFF>(StaticCtorSection), KeySym);
Reid Klecknerfceb76f2014-05-16 20:39:27 +0000942}
943
944const MCSection *TargetLoweringObjectFileCOFF::getStaticDtorSection(
Rafael Espindola0766ae02014-06-06 19:26:12 +0000945 unsigned Priority, const MCSymbol *KeySym) const {
Reid Kleckner7c4059e2014-09-04 17:42:03 +0000946 return getContext().getAssociativeCOFFSection(
947 cast<MCSectionCOFF>(StaticDtorSection), KeySym);
Reid Klecknerfceb76f2014-05-16 20:39:27 +0000948}