Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 1 | //===-- llvm/Target/TargetLoweringObjectFile.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/Target/TargetLoweringObjectFile.h" |
| 16 | #include "llvm/Constants.h" |
| 17 | #include "llvm/DerivedTypes.h" |
Dan Gohman | ffef8ac | 2009-08-11 16:02:12 +0000 | [diff] [blame] | 18 | #include "llvm/Function.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 19 | #include "llvm/GlobalVariable.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCContext.h" |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCSectionMachO.h" |
Chris Lattner | 5277b22 | 2009-08-08 20:43:12 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetAsmInfo.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 5277b22 | 2009-08-08 20:43:12 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Mangler.h" |
Chris Lattner | 5dc47ff | 2009-08-12 23:55:02 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/SmallString.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/StringExtras.h" |
| 29 | using namespace llvm; |
| 30 | |
| 31 | //===----------------------------------------------------------------------===// |
| 32 | // Generic Code |
| 33 | //===----------------------------------------------------------------------===// |
| 34 | |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 35 | TargetLoweringObjectFile::TargetLoweringObjectFile() : Ctx(0) { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 36 | TextSection = 0; |
| 37 | DataSection = 0; |
Chris Lattner | 8245838 | 2009-08-01 21:56:13 +0000 | [diff] [blame] | 38 | BSSSection = 0; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 39 | ReadOnlySection = 0; |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 40 | StaticCtorSection = 0; |
| 41 | StaticDtorSection = 0; |
Chris Lattner | d5bbb07 | 2009-08-02 01:34:32 +0000 | [diff] [blame] | 42 | LSDASection = 0; |
Chris Lattner | 35039ac | 2009-08-02 06:52:36 +0000 | [diff] [blame] | 43 | EHFrameSection = 0; |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 44 | |
| 45 | DwarfAbbrevSection = 0; |
| 46 | DwarfInfoSection = 0; |
| 47 | DwarfLineSection = 0; |
| 48 | DwarfFrameSection = 0; |
| 49 | DwarfPubNamesSection = 0; |
| 50 | DwarfPubTypesSection = 0; |
| 51 | DwarfDebugInlineSection = 0; |
| 52 | DwarfStrSection = 0; |
| 53 | DwarfLocSection = 0; |
| 54 | DwarfARangesSection = 0; |
| 55 | DwarfRangesSection = 0; |
| 56 | DwarfMacroInfoSection = 0; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | TargetLoweringObjectFile::~TargetLoweringObjectFile() { |
| 60 | } |
| 61 | |
| 62 | static bool isSuitableForBSS(const GlobalVariable *GV) { |
| 63 | Constant *C = GV->getInitializer(); |
| 64 | |
| 65 | // Must have zero initializer. |
| 66 | if (!C->isNullValue()) |
| 67 | return false; |
| 68 | |
| 69 | // Leave constant zeros in readonly constant sections, so they can be shared. |
| 70 | if (GV->isConstant()) |
| 71 | return false; |
| 72 | |
| 73 | // If the global has an explicit section specified, don't put it in BSS. |
| 74 | if (!GV->getSection().empty()) |
| 75 | return false; |
| 76 | |
| 77 | // If -nozero-initialized-in-bss is specified, don't ever use BSS. |
| 78 | if (NoZerosInBSS) |
| 79 | return false; |
| 80 | |
| 81 | // Otherwise, put it in BSS! |
| 82 | return true; |
| 83 | } |
| 84 | |
Chris Lattner | 1850e5a | 2009-08-04 16:13:09 +0000 | [diff] [blame] | 85 | /// IsNullTerminatedString - Return true if the specified constant (which is |
| 86 | /// known to have a type that is an array of 1/2/4 byte elements) ends with a |
| 87 | /// nul value and contains no other nuls in it. |
| 88 | static bool IsNullTerminatedString(const Constant *C) { |
| 89 | const ArrayType *ATy = cast<ArrayType>(C->getType()); |
| 90 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 91 | // First check: is we have constant array of i8 terminated with zero |
Chris Lattner | 1850e5a | 2009-08-04 16:13:09 +0000 | [diff] [blame] | 92 | if (const ConstantArray *CVA = dyn_cast<ConstantArray>(C)) { |
| 93 | if (ATy->getNumElements() == 0) return false; |
| 94 | |
| 95 | ConstantInt *Null = |
| 96 | dyn_cast<ConstantInt>(CVA->getOperand(ATy->getNumElements()-1)); |
| 97 | if (Null == 0 || Null->getZExtValue() != 0) |
| 98 | return false; // Not null terminated. |
| 99 | |
| 100 | // Verify that the null doesn't occur anywhere else in the string. |
| 101 | for (unsigned i = 0, e = ATy->getNumElements()-1; i != e; ++i) |
| 102 | // Reject constantexpr elements etc. |
| 103 | if (!isa<ConstantInt>(CVA->getOperand(i)) || |
| 104 | CVA->getOperand(i) == Null) |
| 105 | return false; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 106 | return true; |
Chris Lattner | 1850e5a | 2009-08-04 16:13:09 +0000 | [diff] [blame] | 107 | } |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 108 | |
| 109 | // Another possibility: [1 x i8] zeroinitializer |
| 110 | if (isa<ConstantAggregateZero>(C)) |
Chris Lattner | 1850e5a | 2009-08-04 16:13:09 +0000 | [diff] [blame] | 111 | return ATy->getNumElements() == 1; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 112 | |
| 113 | return false; |
| 114 | } |
| 115 | |
Chris Lattner | 58bed8f | 2009-08-05 04:25:40 +0000 | [diff] [blame] | 116 | /// getKindForGlobal - This is a top-level target-independent classifier for |
Chris Lattner | 968ff11 | 2009-08-01 21:11:14 +0000 | [diff] [blame] | 117 | /// a global variable. Given an global variable and information from TM, it |
| 118 | /// classifies the global in a variety of ways that make various target |
| 119 | /// implementations simpler. The target implementation is free to ignore this |
| 120 | /// extra info of course. |
Chris Lattner | 58bed8f | 2009-08-05 04:25:40 +0000 | [diff] [blame] | 121 | SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV, |
| 122 | const TargetMachine &TM){ |
| 123 | assert(!GV->isDeclaration() && !GV->hasAvailableExternallyLinkage() && |
| 124 | "Can only be used for global definitions"); |
| 125 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 126 | Reloc::Model ReloModel = TM.getRelocationModel(); |
| 127 | |
| 128 | // Early exit - functions should be always in text sections. |
| 129 | const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV); |
| 130 | if (GVar == 0) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 131 | return SectionKind::getText(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 132 | |
| 133 | // Handle thread-local data first. |
| 134 | if (GVar->isThreadLocal()) { |
| 135 | if (isSuitableForBSS(GVar)) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 136 | return SectionKind::getThreadBSS(); |
| 137 | return SectionKind::getThreadData(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | // Variable can be easily put to BSS section. |
| 141 | if (isSuitableForBSS(GVar)) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 142 | return SectionKind::getBSS(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 143 | |
| 144 | Constant *C = GVar->getInitializer(); |
| 145 | |
| 146 | // If the global is marked constant, we can put it into a mergable section, |
| 147 | // a mergable string section, or general .data if it contains relocations. |
| 148 | if (GVar->isConstant()) { |
| 149 | // If the initializer for the global contains something that requires a |
| 150 | // relocation, then we may have to drop this into a wriable data section |
| 151 | // even though it is marked const. |
| 152 | switch (C->getRelocationInfo()) { |
| 153 | default: llvm_unreachable("unknown relocation info kind"); |
| 154 | case Constant::NoRelocation: |
| 155 | // If initializer is a null-terminated string, put it in a "cstring" |
Chris Lattner | 1850e5a | 2009-08-04 16:13:09 +0000 | [diff] [blame] | 156 | // section of the right width. |
| 157 | if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) { |
| 158 | if (const IntegerType *ITy = |
| 159 | dyn_cast<IntegerType>(ATy->getElementType())) { |
| 160 | if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 || |
| 161 | ITy->getBitWidth() == 32) && |
| 162 | IsNullTerminatedString(C)) { |
| 163 | if (ITy->getBitWidth() == 8) |
| 164 | return SectionKind::getMergeable1ByteCString(); |
| 165 | if (ITy->getBitWidth() == 16) |
| 166 | return SectionKind::getMergeable2ByteCString(); |
| 167 | |
| 168 | assert(ITy->getBitWidth() == 32 && "Unknown width"); |
| 169 | return SectionKind::getMergeable4ByteCString(); |
| 170 | } |
| 171 | } |
| 172 | } |
Chris Lattner | 3b24c01 | 2009-08-04 05:35:56 +0000 | [diff] [blame] | 173 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 174 | // Otherwise, just drop it into a mergable constant section. If we have |
| 175 | // a section for this size, use it, otherwise use the arbitrary sized |
| 176 | // mergable section. |
| 177 | switch (TM.getTargetData()->getTypeAllocSize(C->getType())) { |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 178 | case 4: return SectionKind::getMergeableConst4(); |
| 179 | case 8: return SectionKind::getMergeableConst8(); |
| 180 | case 16: return SectionKind::getMergeableConst16(); |
| 181 | default: return SectionKind::getMergeableConst(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | case Constant::LocalRelocation: |
| 185 | // In static relocation model, the linker will resolve all addresses, so |
| 186 | // the relocation entries will actually be constants by the time the app |
| 187 | // starts up. However, we can't put this into a mergable section, because |
| 188 | // the linker doesn't take relocations into consideration when it tries to |
| 189 | // merge entries in the section. |
| 190 | if (ReloModel == Reloc::Static) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 191 | return SectionKind::getReadOnly(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 192 | |
| 193 | // Otherwise, the dynamic linker needs to fix it up, put it in the |
| 194 | // writable data.rel.local section. |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 195 | return SectionKind::getReadOnlyWithRelLocal(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 196 | |
| 197 | case Constant::GlobalRelocations: |
| 198 | // In static relocation model, the linker will resolve all addresses, so |
| 199 | // the relocation entries will actually be constants by the time the app |
| 200 | // starts up. However, we can't put this into a mergable section, because |
| 201 | // the linker doesn't take relocations into consideration when it tries to |
| 202 | // merge entries in the section. |
| 203 | if (ReloModel == Reloc::Static) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 204 | return SectionKind::getReadOnly(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 205 | |
| 206 | // Otherwise, the dynamic linker needs to fix it up, put it in the |
| 207 | // writable data.rel section. |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 208 | return SectionKind::getReadOnlyWithRel(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 209 | } |
| 210 | } |
| 211 | |
| 212 | // Okay, this isn't a constant. If the initializer for the global is going |
| 213 | // to require a runtime relocation by the dynamic linker, put it into a more |
| 214 | // specific section to improve startup time of the app. This coalesces these |
| 215 | // globals together onto fewer pages, improving the locality of the dynamic |
| 216 | // linker. |
| 217 | if (ReloModel == Reloc::Static) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 218 | return SectionKind::getDataNoRel(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 219 | |
| 220 | switch (C->getRelocationInfo()) { |
| 221 | default: llvm_unreachable("unknown relocation info kind"); |
| 222 | case Constant::NoRelocation: |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 223 | return SectionKind::getDataNoRel(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 224 | case Constant::LocalRelocation: |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 225 | return SectionKind::getDataRelLocal(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 226 | case Constant::GlobalRelocations: |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 227 | return SectionKind::getDataRel(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 228 | } |
| 229 | } |
| 230 | |
| 231 | /// SectionForGlobal - This method computes the appropriate section to emit |
| 232 | /// the specified global variable or function definition. This should not |
| 233 | /// be passed external (or available externally) globals. |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 234 | const MCSection *TargetLoweringObjectFile:: |
Chris Lattner | 58bed8f | 2009-08-05 04:25:40 +0000 | [diff] [blame] | 235 | SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang, |
Chris Lattner | e53a600 | 2009-07-29 05:09:30 +0000 | [diff] [blame] | 236 | const TargetMachine &TM) const { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 237 | // Select section name. |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 238 | if (GV->hasSection()) |
| 239 | return getExplicitSectionGlobal(GV, Kind, Mang, TM); |
| 240 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 241 | |
| 242 | // Use default section depending on the 'type' of global |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 243 | return SelectSectionForGlobal(GV, Kind, Mang, TM); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 244 | } |
| 245 | |
Chris Lattner | 58bed8f | 2009-08-05 04:25:40 +0000 | [diff] [blame] | 246 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 247 | // Lame default implementation. Calculate the section name for global. |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 248 | const MCSection * |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 249 | TargetLoweringObjectFile::SelectSectionForGlobal(const GlobalValue *GV, |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 250 | SectionKind Kind, |
Chris Lattner | e53a600 | 2009-07-29 05:09:30 +0000 | [diff] [blame] | 251 | Mangler *Mang, |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 252 | const TargetMachine &TM) const{ |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 253 | assert(!Kind.isThreadLocal() && "Doesn't support TLS"); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 254 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 255 | if (Kind.isText()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 256 | return getTextSection(); |
| 257 | |
Chris Lattner | 8245838 | 2009-08-01 21:56:13 +0000 | [diff] [blame] | 258 | if (Kind.isBSS() && BSSSection != 0) |
| 259 | return BSSSection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 260 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 261 | if (Kind.isReadOnly() && ReadOnlySection != 0) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 262 | return ReadOnlySection; |
| 263 | |
| 264 | return getDataSection(); |
| 265 | } |
| 266 | |
Chris Lattner | 83d77fa | 2009-08-01 23:46:12 +0000 | [diff] [blame] | 267 | /// getSectionForConstant - Given a mergable constant with the |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 268 | /// specified size and relocation information, return a section that it |
| 269 | /// should be placed in. |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 270 | const MCSection * |
Chris Lattner | 83d77fa | 2009-08-01 23:46:12 +0000 | [diff] [blame] | 271 | TargetLoweringObjectFile::getSectionForConstant(SectionKind Kind) const { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 272 | if (Kind.isReadOnly() && ReadOnlySection != 0) |
| 273 | return ReadOnlySection; |
| 274 | |
| 275 | return DataSection; |
| 276 | } |
| 277 | |
| 278 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 279 | |
| 280 | //===----------------------------------------------------------------------===// |
| 281 | // ELF |
| 282 | //===----------------------------------------------------------------------===// |
Chris Lattner | 38cff38 | 2009-08-13 00:37:15 +0000 | [diff] [blame^] | 283 | typedef StringMap<const MCSectionELF*> ELFUniqueMapTy; |
| 284 | |
| 285 | TargetLoweringObjectFileELF::~TargetLoweringObjectFileELF() { |
| 286 | // If we have the section uniquing map, free it. |
| 287 | delete (ELFUniqueMapTy*)UniquingMap; |
| 288 | } |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 289 | |
Chris Lattner | fbf1d27 | 2009-08-08 20:14:13 +0000 | [diff] [blame] | 290 | const MCSection *TargetLoweringObjectFileELF:: |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 291 | getELFSection(const char *Name, bool isDirective, SectionKind Kind) const { |
Chris Lattner | 38cff38 | 2009-08-13 00:37:15 +0000 | [diff] [blame^] | 292 | // Create the map if it doesn't already exist. |
| 293 | if (UniquingMap == 0) |
| 294 | UniquingMap = new ELFUniqueMapTy(); |
| 295 | ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)UniquingMap; |
| 296 | |
| 297 | // Do the lookup, if we have a hit, return it. |
| 298 | const MCSectionELF *&Entry = Map[Name]; |
| 299 | if (Entry) return Entry; |
| 300 | |
| 301 | return Entry = MCSectionELF::Create(Name, isDirective, Kind, getContext()); |
Chris Lattner | fbf1d27 | 2009-08-08 20:14:13 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Chris Lattner | f26e03b | 2009-07-31 17:42:42 +0000 | [diff] [blame] | 304 | void TargetLoweringObjectFileELF::Initialize(MCContext &Ctx, |
| 305 | const TargetMachine &TM) { |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 306 | TargetLoweringObjectFile::Initialize(Ctx, TM); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 307 | if (!HasCrazyBSS) |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 308 | BSSSection = getELFSection("\t.bss", true, SectionKind::getBSS()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 309 | else |
| 310 | // PPC/Linux doesn't support the .bss directive, it needs .section .bss. |
| 311 | // FIXME: Does .section .bss work everywhere?? |
Chris Lattner | 968ff11 | 2009-08-01 21:11:14 +0000 | [diff] [blame] | 312 | // FIXME2: this should just be handle by the section printer. We should get |
| 313 | // away from syntactic view of the sections and MCSection should just be a |
| 314 | // semantic view. |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 315 | BSSSection = getELFSection("\t.bss", false, SectionKind::getBSS()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 316 | |
| 317 | |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 318 | TextSection = getELFSection("\t.text", true, SectionKind::getText()); |
| 319 | DataSection = getELFSection("\t.data", true, SectionKind::getDataRel()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 320 | ReadOnlySection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 321 | getELFSection("\t.rodata", false, SectionKind::getReadOnly()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 322 | TLSDataSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 323 | getELFSection("\t.tdata", false, SectionKind::getThreadData()); |
Chris Lattner | 3b24c01 | 2009-08-04 05:35:56 +0000 | [diff] [blame] | 324 | |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 325 | TLSBSSSection = getELFSection("\t.tbss", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 326 | SectionKind::getThreadBSS()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 327 | |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 328 | DataRelSection = getELFSection("\t.data.rel", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 329 | SectionKind::getDataRel()); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 330 | DataRelLocalSection = getELFSection("\t.data.rel.local", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 331 | SectionKind::getDataRelLocal()); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 332 | DataRelROSection = getELFSection("\t.data.rel.ro", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 333 | SectionKind::getReadOnlyWithRel()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 334 | DataRelROLocalSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 335 | getELFSection("\t.data.rel.ro.local", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 336 | SectionKind::getReadOnlyWithRelLocal()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 337 | |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 338 | MergeableConst4Section = getELFSection(".rodata.cst4", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 339 | SectionKind::getMergeableConst4()); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 340 | MergeableConst8Section = getELFSection(".rodata.cst8", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 341 | SectionKind::getMergeableConst8()); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 342 | MergeableConst16Section = getELFSection(".rodata.cst16", false, |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 343 | SectionKind::getMergeableConst16()); |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 344 | |
| 345 | StaticCtorSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 346 | getELFSection(".ctors", false, SectionKind::getDataRel()); |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 347 | StaticDtorSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 348 | getELFSection(".dtors", false, SectionKind::getDataRel()); |
Chris Lattner | d5bbb07 | 2009-08-02 01:34:32 +0000 | [diff] [blame] | 349 | |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 350 | // Exception Handling Sections. |
Chris Lattner | d5bbb07 | 2009-08-02 01:34:32 +0000 | [diff] [blame] | 351 | |
| 352 | // FIXME: We're emitting LSDA info into a readonly section on ELF, even though |
| 353 | // it contains relocatable pointers. In PIC mode, this is probably a big |
| 354 | // runtime hit for C++ apps. Either the contents of the LSDA need to be |
| 355 | // adjusted or this should be a data section. |
| 356 | LSDASection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 357 | getELFSection(".gcc_except_table", false, SectionKind::getReadOnly()); |
Chris Lattner | 35039ac | 2009-08-02 06:52:36 +0000 | [diff] [blame] | 358 | EHFrameSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 359 | getELFSection(".eh_frame", false, SectionKind::getDataRel()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 360 | |
| 361 | // Debug Info Sections. |
| 362 | DwarfAbbrevSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 363 | getELFSection(".debug_abbrev", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 364 | DwarfInfoSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 365 | getELFSection(".debug_info", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 366 | DwarfLineSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 367 | getELFSection(".debug_line", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 368 | DwarfFrameSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 369 | getELFSection(".debug_frame", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 370 | DwarfPubNamesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 371 | getELFSection(".debug_pubnames", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 372 | DwarfPubTypesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 373 | getELFSection(".debug_pubtypes", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 374 | DwarfStrSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 375 | getELFSection(".debug_str", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 376 | DwarfLocSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 377 | getELFSection(".debug_loc", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 378 | DwarfARangesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 379 | getELFSection(".debug_aranges", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 380 | DwarfRangesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 381 | getELFSection(".debug_ranges", false, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 382 | DwarfMacroInfoSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 383 | getELFSection(".debug_macinfo", false, SectionKind::getMetadata()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 387 | static SectionKind |
| 388 | getELFKindForNamedSection(const char *Name, SectionKind K) { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 389 | if (Name[0] != '.') return K; |
| 390 | |
| 391 | // Some lame default implementation based on some magic section names. |
| 392 | if (strncmp(Name, ".gnu.linkonce.b.", 16) == 0 || |
| 393 | strncmp(Name, ".llvm.linkonce.b.", 17) == 0 || |
| 394 | strncmp(Name, ".gnu.linkonce.sb.", 17) == 0 || |
| 395 | strncmp(Name, ".llvm.linkonce.sb.", 18) == 0) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 396 | return SectionKind::getBSS(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 397 | |
| 398 | if (strcmp(Name, ".tdata") == 0 || |
| 399 | strncmp(Name, ".tdata.", 7) == 0 || |
| 400 | strncmp(Name, ".gnu.linkonce.td.", 17) == 0 || |
| 401 | strncmp(Name, ".llvm.linkonce.td.", 18) == 0) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 402 | return SectionKind::getThreadData(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 403 | |
| 404 | if (strcmp(Name, ".tbss") == 0 || |
| 405 | strncmp(Name, ".tbss.", 6) == 0 || |
| 406 | strncmp(Name, ".gnu.linkonce.tb.", 17) == 0 || |
| 407 | strncmp(Name, ".llvm.linkonce.tb.", 18) == 0) |
Chris Lattner | 2798119 | 2009-08-01 23:57:16 +0000 | [diff] [blame] | 408 | return SectionKind::getThreadBSS(); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 409 | |
| 410 | return K; |
| 411 | } |
| 412 | |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 413 | const MCSection *TargetLoweringObjectFileELF:: |
| 414 | getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind, |
| 415 | Mangler *Mang, const TargetMachine &TM) const { |
| 416 | // Infer section flags from the section name if we can. |
| 417 | Kind = getELFKindForNamedSection(GV->getSection().c_str(), Kind); |
| 418 | |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 419 | return getELFSection(GV->getSection().c_str(), false, Kind); |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 420 | } |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 421 | |
| 422 | static const char *getSectionPrefixForUniqueGlobal(SectionKind Kind) { |
| 423 | if (Kind.isText()) return ".gnu.linkonce.t."; |
| 424 | if (Kind.isReadOnly()) return ".gnu.linkonce.r."; |
| 425 | |
| 426 | if (Kind.isThreadData()) return ".gnu.linkonce.td."; |
| 427 | if (Kind.isThreadBSS()) return ".gnu.linkonce.tb."; |
| 428 | |
| 429 | if (Kind.isBSS()) return ".gnu.linkonce.b."; |
| 430 | if (Kind.isDataNoRel()) return ".gnu.linkonce.d."; |
| 431 | if (Kind.isDataRelLocal()) return ".gnu.linkonce.d.rel.local."; |
| 432 | if (Kind.isDataRel()) return ".gnu.linkonce.d.rel."; |
| 433 | if (Kind.isReadOnlyWithRelLocal()) return ".gnu.linkonce.d.rel.ro.local."; |
| 434 | |
| 435 | assert(Kind.isReadOnlyWithRel() && "Unknown section kind"); |
| 436 | return ".gnu.linkonce.d.rel.ro."; |
| 437 | } |
| 438 | |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 439 | const MCSection *TargetLoweringObjectFileELF:: |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 440 | SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, |
Chris Lattner | e53a600 | 2009-07-29 05:09:30 +0000 | [diff] [blame] | 441 | Mangler *Mang, const TargetMachine &TM) const { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 442 | |
| 443 | // If this global is linkonce/weak and the target handles this by emitting it |
| 444 | // into a 'uniqued' section name, create and return the section now. |
Chris Lattner | 27602b8 | 2009-08-01 21:42:58 +0000 | [diff] [blame] | 445 | if (GV->isWeakForLinker()) { |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 446 | const char *Prefix = getSectionPrefixForUniqueGlobal(Kind); |
Chris Lattner | b8f396b | 2009-07-29 05:20:33 +0000 | [diff] [blame] | 447 | std::string Name = Mang->makeNameProper(GV->getNameStr()); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 448 | return getELFSection((Prefix+Name).c_str(), false, Kind); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 449 | } |
| 450 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 451 | if (Kind.isText()) return TextSection; |
Chris Lattner | e53a600 | 2009-07-29 05:09:30 +0000 | [diff] [blame] | 452 | |
Chris Lattner | 3b24c01 | 2009-08-04 05:35:56 +0000 | [diff] [blame] | 453 | if (Kind.isMergeable1ByteCString() || |
| 454 | Kind.isMergeable2ByteCString() || |
| 455 | Kind.isMergeable4ByteCString()) { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 456 | |
Chris Lattner | 067fe1a | 2009-07-29 04:54:38 +0000 | [diff] [blame] | 457 | // We also need alignment here. |
| 458 | // FIXME: this is getting the alignment of the character, not the |
| 459 | // alignment of the global! |
| 460 | unsigned Align = |
| 461 | TM.getTargetData()->getPreferredAlignment(cast<GlobalVariable>(GV)); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 462 | |
Chris Lattner | 7e88a50 | 2009-08-04 16:19:50 +0000 | [diff] [blame] | 463 | const char *SizeSpec = ".rodata.str1."; |
Chris Lattner | 3b24c01 | 2009-08-04 05:35:56 +0000 | [diff] [blame] | 464 | if (Kind.isMergeable2ByteCString()) |
Chris Lattner | 7e88a50 | 2009-08-04 16:19:50 +0000 | [diff] [blame] | 465 | SizeSpec = ".rodata.str2."; |
Chris Lattner | 3b24c01 | 2009-08-04 05:35:56 +0000 | [diff] [blame] | 466 | else if (Kind.isMergeable4ByteCString()) |
Chris Lattner | 7e88a50 | 2009-08-04 16:19:50 +0000 | [diff] [blame] | 467 | SizeSpec = ".rodata.str4."; |
Chris Lattner | 3b24c01 | 2009-08-04 05:35:56 +0000 | [diff] [blame] | 468 | else |
| 469 | assert(Kind.isMergeable1ByteCString() && "unknown string width"); |
| 470 | |
| 471 | |
Chris Lattner | 7e88a50 | 2009-08-04 16:19:50 +0000 | [diff] [blame] | 472 | std::string Name = SizeSpec + utostr(Align); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 473 | return getELFSection(Name.c_str(), false, Kind); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 476 | if (Kind.isMergeableConst()) { |
| 477 | if (Kind.isMergeableConst4()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 478 | return MergeableConst4Section; |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 479 | if (Kind.isMergeableConst8()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 480 | return MergeableConst8Section; |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 481 | if (Kind.isMergeableConst16()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 482 | return MergeableConst16Section; |
| 483 | return ReadOnlySection; // .const |
| 484 | } |
| 485 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 486 | if (Kind.isReadOnly()) return ReadOnlySection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 487 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 488 | if (Kind.isThreadData()) return TLSDataSection; |
| 489 | if (Kind.isThreadBSS()) return TLSBSSSection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 490 | |
Chris Lattner | 8245838 | 2009-08-01 21:56:13 +0000 | [diff] [blame] | 491 | if (Kind.isBSS()) return BSSSection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 492 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 493 | if (Kind.isDataNoRel()) return DataSection; |
| 494 | if (Kind.isDataRelLocal()) return DataRelLocalSection; |
| 495 | if (Kind.isDataRel()) return DataRelSection; |
| 496 | if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 497 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 498 | assert(Kind.isReadOnlyWithRel() && "Unknown section kind"); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 499 | return DataRelROSection; |
| 500 | } |
| 501 | |
Chris Lattner | 83d77fa | 2009-08-01 23:46:12 +0000 | [diff] [blame] | 502 | /// getSectionForConstant - Given a mergeable constant with the |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 503 | /// specified size and relocation information, return a section that it |
| 504 | /// should be placed in. |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 505 | const MCSection *TargetLoweringObjectFileELF:: |
Chris Lattner | 83d77fa | 2009-08-01 23:46:12 +0000 | [diff] [blame] | 506 | getSectionForConstant(SectionKind Kind) const { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 507 | if (Kind.isMergeableConst4()) |
| 508 | return MergeableConst4Section; |
| 509 | if (Kind.isMergeableConst8()) |
| 510 | return MergeableConst8Section; |
| 511 | if (Kind.isMergeableConst16()) |
| 512 | return MergeableConst16Section; |
| 513 | if (Kind.isReadOnly()) |
| 514 | return ReadOnlySection; |
| 515 | |
| 516 | if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection; |
| 517 | assert(Kind.isReadOnlyWithRel() && "Unknown section kind"); |
| 518 | return DataRelROSection; |
| 519 | } |
| 520 | |
| 521 | //===----------------------------------------------------------------------===// |
| 522 | // MachO |
| 523 | //===----------------------------------------------------------------------===// |
| 524 | |
Chris Lattner | 5dc47ff | 2009-08-12 23:55:02 +0000 | [diff] [blame] | 525 | typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy; |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 526 | |
Chris Lattner | 5dc47ff | 2009-08-12 23:55:02 +0000 | [diff] [blame] | 527 | TargetLoweringObjectFileMachO::~TargetLoweringObjectFileMachO() { |
| 528 | // If we have the MachO uniquing map, free it. |
| 529 | delete (MachOUniqueMapTy*)UniquingMap; |
| 530 | } |
| 531 | |
| 532 | |
| 533 | const MCSectionMachO *TargetLoweringObjectFileMachO:: |
Chris Lattner | d3c4486f | 2009-08-12 23:34:27 +0000 | [diff] [blame] | 534 | getMachOSection(const StringRef &Segment, const StringRef &Section, |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 535 | unsigned TypeAndAttributes, |
| 536 | unsigned Reserved2, SectionKind Kind) const { |
Chris Lattner | 5dc47ff | 2009-08-12 23:55:02 +0000 | [diff] [blame] | 537 | // We unique sections by their segment/section pair. The returned section |
| 538 | // may not have the same flags as the requested section, if so this should be |
| 539 | // diagnosed by the client as an error. |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 540 | |
Chris Lattner | 5dc47ff | 2009-08-12 23:55:02 +0000 | [diff] [blame] | 541 | // Create the map if it doesn't already exist. |
| 542 | if (UniquingMap == 0) |
| 543 | UniquingMap = new MachOUniqueMapTy(); |
| 544 | MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)UniquingMap; |
| 545 | |
| 546 | // Form the name to look up. |
| 547 | SmallString<64> Name; |
| 548 | Name.append(Segment.begin(), Segment.end()); |
| 549 | Name.push_back(','); |
| 550 | Name.append(Section.begin(), Section.end()); |
| 551 | |
| 552 | // Do the lookup, if we have a hit, return it. |
| 553 | const MCSectionMachO *&Entry = Map[StringRef(Name.data(), Name.size())]; |
| 554 | if (Entry) return Entry; |
| 555 | |
| 556 | // Otherwise, return a new section. |
| 557 | return Entry = MCSectionMachO::Create(Segment, Section, TypeAndAttributes, |
| 558 | Reserved2, Kind, getContext()); |
Chris Lattner | fbf1d27 | 2009-08-08 20:14:13 +0000 | [diff] [blame] | 559 | } |
| 560 | |
Chris Lattner | 11e9657 | 2009-08-03 21:53:27 +0000 | [diff] [blame] | 561 | |
Chris Lattner | f26e03b | 2009-07-31 17:42:42 +0000 | [diff] [blame] | 562 | void TargetLoweringObjectFileMachO::Initialize(MCContext &Ctx, |
| 563 | const TargetMachine &TM) { |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 564 | TargetLoweringObjectFile::Initialize(Ctx, TM); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 565 | |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 566 | TextSection // .text |
| 567 | = getMachOSection("__TEXT", "__text", |
| 568 | MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS, |
| 569 | SectionKind::getText()); |
| 570 | DataSection // .data |
| 571 | = getMachOSection("__DATA", "__data", 0, SectionKind::getDataRel()); |
| 572 | |
| 573 | CStringSection // .cstring |
| 574 | = getMachOSection("__TEXT", "__cstring", MCSectionMachO::S_CSTRING_LITERALS, |
| 575 | SectionKind::getMergeable1ByteCString()); |
| 576 | UStringSection |
| 577 | = getMachOSection("__TEXT","__ustring", 0, |
| 578 | SectionKind::getMergeable2ByteCString()); |
| 579 | FourByteConstantSection // .literal4 |
| 580 | = getMachOSection("__TEXT", "__literal4", MCSectionMachO::S_4BYTE_LITERALS, |
| 581 | SectionKind::getMergeableConst4()); |
| 582 | EightByteConstantSection // .literal8 |
| 583 | = getMachOSection("__TEXT", "__literal8", MCSectionMachO::S_8BYTE_LITERALS, |
| 584 | SectionKind::getMergeableConst8()); |
Chris Lattner | 4bb253c | 2009-07-28 17:50:28 +0000 | [diff] [blame] | 585 | |
| 586 | // ld_classic doesn't support .literal16 in 32-bit mode, and ld64 falls back |
| 587 | // to using it in -static mode. |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 588 | SixteenByteConstantSection = 0; |
Chris Lattner | 4bb253c | 2009-07-28 17:50:28 +0000 | [diff] [blame] | 589 | if (TM.getRelocationModel() != Reloc::Static && |
| 590 | TM.getTargetData()->getPointerSize() == 32) |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 591 | SixteenByteConstantSection = // .literal16 |
| 592 | getMachOSection("__TEXT", "__literal16",MCSectionMachO::S_16BYTE_LITERALS, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 593 | SectionKind::getMergeableConst16()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 594 | |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 595 | ReadOnlySection // .const |
| 596 | = getMachOSection("__TEXT", "__const", 0, SectionKind::getReadOnly()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 597 | |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 598 | TextCoalSection |
| 599 | = getMachOSection("__TEXT", "__textcoal_nt", |
| 600 | MCSectionMachO::S_COALESCED | |
| 601 | MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS, |
| 602 | SectionKind::getText()); |
| 603 | ConstTextCoalSection |
| 604 | = getMachOSection("__TEXT", "__const_coal", MCSectionMachO::S_COALESCED, |
| 605 | SectionKind::getText()); |
| 606 | ConstDataCoalSection |
| 607 | = getMachOSection("__DATA","__const_coal", MCSectionMachO::S_COALESCED, |
| 608 | SectionKind::getText()); |
| 609 | ConstDataSection // .const_data |
| 610 | = getMachOSection("__DATA", "__const", 0, |
| 611 | SectionKind::getReadOnlyWithRel()); |
| 612 | DataCoalSection |
| 613 | = getMachOSection("__DATA","__datacoal_nt", MCSectionMachO::S_COALESCED, |
| 614 | SectionKind::getDataRel()); |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 615 | |
Chris Lattner | e309cfa | 2009-08-13 00:05:07 +0000 | [diff] [blame] | 616 | |
| 617 | LazySymbolPointerSection |
| 618 | = getMachOSection("__DATA", "__la_symbol_ptr", |
| 619 | MCSectionMachO::S_LAZY_SYMBOL_POINTERS, |
| 620 | SectionKind::getMetadata()); |
| 621 | NonLazySymbolPointerSection |
| 622 | = getMachOSection("__DATA", "__nl_symbol_ptr", |
| 623 | MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS, |
| 624 | SectionKind::getMetadata()); |
| 625 | |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 626 | if (TM.getRelocationModel() == Reloc::Static) { |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 627 | StaticCtorSection |
| 628 | = getMachOSection("__TEXT", "__constructor", 0,SectionKind::getDataRel()); |
| 629 | StaticDtorSection |
| 630 | = getMachOSection("__TEXT", "__destructor", 0, SectionKind::getDataRel()); |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 631 | } else { |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 632 | StaticCtorSection |
| 633 | = getMachOSection("__DATA", "__mod_init_func", |
| 634 | MCSectionMachO::S_MOD_INIT_FUNC_POINTERS, |
| 635 | SectionKind::getDataRel()); |
| 636 | StaticDtorSection |
| 637 | = getMachOSection("__DATA", "__mod_term_func", |
| 638 | MCSectionMachO::S_MOD_TERM_FUNC_POINTERS, |
| 639 | SectionKind::getDataRel()); |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 640 | } |
| 641 | |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 642 | // Exception Handling. |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 643 | LSDASection = getMachOSection("__DATA", "__gcc_except_tab", 0, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 644 | SectionKind::getDataRel()); |
Chris Lattner | 35039ac | 2009-08-02 06:52:36 +0000 | [diff] [blame] | 645 | EHFrameSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 646 | getMachOSection("__TEXT", "__eh_frame", |
| 647 | MCSectionMachO::S_COALESCED | |
| 648 | MCSectionMachO::S_ATTR_NO_TOC | |
| 649 | MCSectionMachO::S_ATTR_STRIP_STATIC_SYMS | |
| 650 | MCSectionMachO::S_ATTR_LIVE_SUPPORT, |
| 651 | SectionKind::getReadOnly()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 652 | |
| 653 | // Debug Information. |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 654 | DwarfAbbrevSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 655 | getMachOSection("__DWARF", "__debug_abbrev", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 656 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 657 | DwarfInfoSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 658 | getMachOSection("__DWARF", "__debug_info", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 659 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 660 | DwarfLineSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 661 | getMachOSection("__DWARF", "__debug_line", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 662 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 663 | DwarfFrameSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 664 | getMachOSection("__DWARF", "__debug_frame", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 665 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 666 | DwarfPubNamesSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 667 | getMachOSection("__DWARF", "__debug_pubnames", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 668 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 669 | DwarfPubTypesSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 670 | getMachOSection("__DWARF", "__debug_pubtypes", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 671 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 672 | DwarfStrSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 673 | getMachOSection("__DWARF", "__debug_str", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 674 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 675 | DwarfLocSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 676 | getMachOSection("__DWARF", "__debug_loc", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 677 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 678 | DwarfARangesSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 679 | getMachOSection("__DWARF", "__debug_aranges", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 680 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 681 | DwarfRangesSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 682 | getMachOSection("__DWARF", "__debug_ranges", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 683 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 684 | DwarfMacroInfoSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 685 | getMachOSection("__DWARF", "__debug_macinfo", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 686 | SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 687 | DwarfDebugInlineSection = |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 688 | getMachOSection("__DWARF", "__debug_inlined", MCSectionMachO::S_ATTR_DEBUG, |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 689 | SectionKind::getMetadata()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 690 | } |
| 691 | |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 692 | const MCSection *TargetLoweringObjectFileMachO:: |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 693 | getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind, |
| 694 | Mangler *Mang, const TargetMachine &TM) const { |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 695 | // Parse the section specifier and create it if valid. |
| 696 | StringRef Segment, Section; |
| 697 | unsigned TAA, StubSize; |
| 698 | std::string ErrorCode = |
| 699 | MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section, |
| 700 | TAA, StubSize); |
Chris Lattner | e309cfa | 2009-08-13 00:05:07 +0000 | [diff] [blame] | 701 | if (!ErrorCode.empty()) { |
| 702 | // If invalid, report the error with llvm_report_error. |
| 703 | llvm_report_error("Global variable '" + GV->getNameStr() + |
| 704 | "' has an invalid section specifier '" + GV->getSection()+ |
| 705 | "': " + ErrorCode + "."); |
| 706 | // Fall back to dropping it into the data section. |
| 707 | return DataSection; |
| 708 | } |
| 709 | |
| 710 | // Get the section. |
| 711 | const MCSectionMachO *S = |
| 712 | getMachOSection(Segment, Section, TAA, StubSize, Kind); |
| 713 | |
| 714 | // Okay, now that we got the section, verify that the TAA & StubSize agree. |
| 715 | // If the user declared multiple globals with different section flags, we need |
| 716 | // to reject it here. |
| 717 | if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) { |
| 718 | // If invalid, report the error with llvm_report_error. |
| 719 | llvm_report_error("Global variable '" + GV->getNameStr() + |
| 720 | "' section type or attributes does not match previous" |
| 721 | " section specifier"); |
| 722 | } |
Chris Lattner | ff4bc46 | 2009-08-10 01:39:42 +0000 | [diff] [blame] | 723 | |
Chris Lattner | e309cfa | 2009-08-13 00:05:07 +0000 | [diff] [blame] | 724 | return S; |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | const MCSection *TargetLoweringObjectFileMachO:: |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 728 | SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, |
Chris Lattner | e53a600 | 2009-07-29 05:09:30 +0000 | [diff] [blame] | 729 | Mangler *Mang, const TargetMachine &TM) const { |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 730 | assert(!Kind.isThreadLocal() && "Darwin doesn't support TLS"); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 731 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 732 | if (Kind.isText()) |
Chris Lattner | 27602b8 | 2009-08-01 21:42:58 +0000 | [diff] [blame] | 733 | return GV->isWeakForLinker() ? TextCoalSection : TextSection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 734 | |
| 735 | // If this is weak/linkonce, put this in a coalescable section, either in text |
| 736 | // or data depending on if it is writable. |
Chris Lattner | 27602b8 | 2009-08-01 21:42:58 +0000 | [diff] [blame] | 737 | if (GV->isWeakForLinker()) { |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 738 | if (Kind.isReadOnly()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 739 | return ConstTextCoalSection; |
| 740 | return DataCoalSection; |
| 741 | } |
| 742 | |
| 743 | // FIXME: Alignment check should be handled by section classifier. |
Chris Lattner | ec40975 | 2009-08-04 16:27:13 +0000 | [diff] [blame] | 744 | if (Kind.isMergeable1ByteCString() || |
| 745 | Kind.isMergeable2ByteCString()) { |
| 746 | if (TM.getTargetData()->getPreferredAlignment( |
| 747 | cast<GlobalVariable>(GV)) < 32) { |
| 748 | if (Kind.isMergeable1ByteCString()) |
Chris Lattner | 8245838 | 2009-08-01 21:56:13 +0000 | [diff] [blame] | 749 | return CStringSection; |
Chris Lattner | ec40975 | 2009-08-04 16:27:13 +0000 | [diff] [blame] | 750 | assert(Kind.isMergeable2ByteCString()); |
| 751 | return UStringSection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 752 | } |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 753 | } |
| 754 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 755 | if (Kind.isMergeableConst()) { |
| 756 | if (Kind.isMergeableConst4()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 757 | return FourByteConstantSection; |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 758 | if (Kind.isMergeableConst8()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 759 | return EightByteConstantSection; |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 760 | if (Kind.isMergeableConst16() && SixteenByteConstantSection) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 761 | return SixteenByteConstantSection; |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 762 | } |
Chris Lattner | ec40975 | 2009-08-04 16:27:13 +0000 | [diff] [blame] | 763 | |
| 764 | // Otherwise, if it is readonly, but not something we can specially optimize, |
| 765 | // just drop it in .const. |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 766 | if (Kind.isReadOnly()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 767 | return ReadOnlySection; |
| 768 | |
| 769 | // If this is marked const, put it into a const section. But if the dynamic |
| 770 | // linker needs to write to it, put it in the data segment. |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 771 | if (Kind.isReadOnlyWithRel()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 772 | return ConstDataSection; |
| 773 | |
| 774 | // Otherwise, just drop the variable in the normal data section. |
| 775 | return DataSection; |
| 776 | } |
| 777 | |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 778 | const MCSection * |
Chris Lattner | 83d77fa | 2009-08-01 23:46:12 +0000 | [diff] [blame] | 779 | TargetLoweringObjectFileMachO::getSectionForConstant(SectionKind Kind) const { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 780 | // If this constant requires a relocation, we have to put it in the data |
| 781 | // segment, not in the text segment. |
| 782 | if (Kind.isDataRel()) |
| 783 | return ConstDataSection; |
| 784 | |
| 785 | if (Kind.isMergeableConst4()) |
| 786 | return FourByteConstantSection; |
| 787 | if (Kind.isMergeableConst8()) |
| 788 | return EightByteConstantSection; |
Chris Lattner | 4bb253c | 2009-07-28 17:50:28 +0000 | [diff] [blame] | 789 | if (Kind.isMergeableConst16() && SixteenByteConstantSection) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 790 | return SixteenByteConstantSection; |
| 791 | return ReadOnlySection; // .const |
| 792 | } |
| 793 | |
Chris Lattner | 26630c1 | 2009-07-31 20:52:39 +0000 | [diff] [blame] | 794 | /// shouldEmitUsedDirectiveFor - This hook allows targets to selectively decide |
| 795 | /// not to emit the UsedDirective for some symbols in llvm.used. |
| 796 | // FIXME: REMOVE this (rdar://7071300) |
| 797 | bool TargetLoweringObjectFileMachO:: |
| 798 | shouldEmitUsedDirectiveFor(const GlobalValue *GV, Mangler *Mang) const { |
| 799 | /// On Darwin, internally linked data beginning with "L" or "l" does not have |
| 800 | /// the directive emitted (this occurs in ObjC metadata). |
| 801 | if (!GV) return false; |
| 802 | |
| 803 | // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix. |
| 804 | if (GV->hasLocalLinkage() && !isa<Function>(GV)) { |
| 805 | // FIXME: ObjC metadata is currently emitted as internal symbols that have |
| 806 | // \1L and \0l prefixes on them. Fix them to be Private/LinkerPrivate and |
| 807 | // this horrible hack can go away. |
| 808 | const std::string &Name = Mang->getMangledName(GV); |
| 809 | if (Name[0] == 'L' || Name[0] == 'l') |
| 810 | return false; |
| 811 | } |
| 812 | |
| 813 | return true; |
| 814 | } |
| 815 | |
| 816 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 817 | //===----------------------------------------------------------------------===// |
| 818 | // COFF |
| 819 | //===----------------------------------------------------------------------===// |
| 820 | |
Chris Lattner | 38cff38 | 2009-08-13 00:37:15 +0000 | [diff] [blame^] | 821 | typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy; |
| 822 | |
| 823 | TargetLoweringObjectFileCOFF::~TargetLoweringObjectFileCOFF() { |
| 824 | delete (COFFUniqueMapTy*)UniquingMap; |
| 825 | } |
| 826 | |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 827 | |
Chris Lattner | 11e9657 | 2009-08-03 21:53:27 +0000 | [diff] [blame] | 828 | const MCSection *TargetLoweringObjectFileCOFF:: |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 829 | getCOFFSection(const char *Name, bool isDirective, SectionKind Kind) const { |
Chris Lattner | 38cff38 | 2009-08-13 00:37:15 +0000 | [diff] [blame^] | 830 | // Create the map if it doesn't already exist. |
| 831 | if (UniquingMap == 0) |
| 832 | UniquingMap = new MachOUniqueMapTy(); |
| 833 | COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)UniquingMap; |
| 834 | |
| 835 | // Do the lookup, if we have a hit, return it. |
| 836 | const MCSectionCOFF *&Entry = Map[Name]; |
| 837 | if (Entry) return Entry; |
| 838 | |
| 839 | return Entry = MCSectionCOFF::Create(Name, isDirective, Kind, getContext()); |
Chris Lattner | fbf1d27 | 2009-08-08 20:14:13 +0000 | [diff] [blame] | 840 | } |
| 841 | |
Chris Lattner | f26e03b | 2009-07-31 17:42:42 +0000 | [diff] [blame] | 842 | void TargetLoweringObjectFileCOFF::Initialize(MCContext &Ctx, |
| 843 | const TargetMachine &TM) { |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 844 | TargetLoweringObjectFile::Initialize(Ctx, TM); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 845 | TextSection = getCOFFSection("\t.text", true, SectionKind::getText()); |
| 846 | DataSection = getCOFFSection("\t.data", true, SectionKind::getDataRel()); |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 847 | StaticCtorSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 848 | getCOFFSection(".ctors", false, SectionKind::getDataRel()); |
Chris Lattner | 80ec279 | 2009-08-02 00:34:36 +0000 | [diff] [blame] | 849 | StaticDtorSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 850 | getCOFFSection(".dtors", false, SectionKind::getDataRel()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 851 | |
| 852 | |
| 853 | // Debug info. |
| 854 | // FIXME: Don't use 'directive' mode here. |
| 855 | DwarfAbbrevSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 856 | getCOFFSection("\t.section\t.debug_abbrev,\"dr\"", |
| 857 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 858 | DwarfInfoSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 859 | getCOFFSection("\t.section\t.debug_info,\"dr\"", |
| 860 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 861 | DwarfLineSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 862 | getCOFFSection("\t.section\t.debug_line,\"dr\"", |
| 863 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 864 | DwarfFrameSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 865 | getCOFFSection("\t.section\t.debug_frame,\"dr\"", |
| 866 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 867 | DwarfPubNamesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 868 | getCOFFSection("\t.section\t.debug_pubnames,\"dr\"", |
| 869 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 870 | DwarfPubTypesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 871 | getCOFFSection("\t.section\t.debug_pubtypes,\"dr\"", |
| 872 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 873 | DwarfStrSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 874 | getCOFFSection("\t.section\t.debug_str,\"dr\"", |
| 875 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 876 | DwarfLocSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 877 | getCOFFSection("\t.section\t.debug_loc,\"dr\"", |
| 878 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 879 | DwarfARangesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 880 | getCOFFSection("\t.section\t.debug_aranges,\"dr\"", |
| 881 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 882 | DwarfRangesSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 883 | getCOFFSection("\t.section\t.debug_ranges,\"dr\"", |
| 884 | true, SectionKind::getMetadata()); |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 885 | DwarfMacroInfoSection = |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 886 | getCOFFSection("\t.section\t.debug_macinfo,\"dr\"", |
| 887 | true, SectionKind::getMetadata()); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 888 | } |
| 889 | |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 890 | const MCSection *TargetLoweringObjectFileCOFF:: |
| 891 | getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind, |
| 892 | Mangler *Mang, const TargetMachine &TM) const { |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 893 | return getCOFFSection(GV->getSection().c_str(), false, Kind); |
Chris Lattner | 24f654c | 2009-08-06 16:39:58 +0000 | [diff] [blame] | 894 | } |
| 895 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 896 | static const char *getCOFFSectionPrefixForUniqueGlobal(SectionKind Kind) { |
| 897 | if (Kind.isText()) |
| 898 | return ".text$linkonce"; |
| 899 | if (Kind.isWriteable()) |
| 900 | return ".data$linkonce"; |
| 901 | return ".rdata$linkonce"; |
| 902 | } |
| 903 | |
| 904 | |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 905 | const MCSection *TargetLoweringObjectFileCOFF:: |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 906 | SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, |
Chris Lattner | e53a600 | 2009-07-29 05:09:30 +0000 | [diff] [blame] | 907 | Mangler *Mang, const TargetMachine &TM) const { |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 908 | assert(!Kind.isThreadLocal() && "Doesn't support TLS"); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 909 | |
| 910 | // If this global is linkonce/weak and the target handles this by emitting it |
| 911 | // into a 'uniqued' section name, create and return the section now. |
Chris Lattner | 27602b8 | 2009-08-01 21:42:58 +0000 | [diff] [blame] | 912 | if (GV->isWeakForLinker()) { |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 913 | const char *Prefix = getCOFFSectionPrefixForUniqueGlobal(Kind); |
Chris Lattner | 968ff11 | 2009-08-01 21:11:14 +0000 | [diff] [blame] | 914 | std::string Name = Mang->makeNameProper(GV->getNameStr()); |
Chris Lattner | 0c0cb71 | 2009-08-08 20:22:20 +0000 | [diff] [blame] | 915 | return getCOFFSection((Prefix+Name).c_str(), false, Kind); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 916 | } |
| 917 | |
Chris Lattner | f9650c0 | 2009-08-01 21:46:23 +0000 | [diff] [blame] | 918 | if (Kind.isText()) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 919 | return getTextSection(); |
| 920 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 921 | return getDataSection(); |
| 922 | } |
| 923 | |