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