Jim Laskey | 7c95ad4 | 2006-09-06 19:21:41 +0000 | [diff] [blame] | 1 | //===-- TargetAsmInfo.cpp - Asm Info ---------------------------------------==// |
Jim Laskey | ec0d9fe | 2006-09-06 18:35:33 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jim Laskey | ec0d9fe | 2006-09-06 18:35:33 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines target asm properties related what form asm statements |
| 11 | // should take. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 15 | #include "llvm/Constants.h" |
Anton Korobeynikov | 72bb402 | 2009-01-27 22:29:24 +0000 | [diff] [blame] | 16 | #include "llvm/DerivedTypes.h" |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 17 | #include "llvm/GlobalVariable.h" |
| 18 | #include "llvm/Function.h" |
| 19 | #include "llvm/Module.h" |
| 20 | #include "llvm/Type.h" |
Jim Laskey | ec0d9fe | 2006-09-06 18:35:33 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetAsmInfo.h" |
Anton Korobeynikov | db23231 | 2009-03-29 17:13:49 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetMachine.h" |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetOptions.h" |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Dwarf.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 25 | #include "llvm/Support/ErrorHandling.h" |
Dale Johannesen | 3bb6283 | 2007-04-23 20:00:17 +0000 | [diff] [blame] | 26 | #include <cctype> |
| 27 | #include <cstring> |
Jim Laskey | ec0d9fe | 2006-09-06 18:35:33 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
Chris Lattner | 0d4960c3 | 2009-07-24 20:14:10 +0000 | [diff] [blame] | 30 | TargetAsmInfo::TargetAsmInfo(const TargetMachine &tm) : TM(tm) { |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 31 | BSSSection = "\t.bss"; |
| 32 | BSSSection_ = 0; |
| 33 | ReadOnlySection = 0; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 34 | TLSDataSection = 0; |
| 35 | TLSBSSSection = 0; |
| 36 | ZeroFillDirective = 0; |
| 37 | NonexecutableStackDirective = 0; |
| 38 | NeedsSet = false; |
| 39 | MaxInstLength = 4; |
| 40 | PCSymbol = "$"; |
| 41 | SeparatorChar = ';'; |
David Greene | 014700c | 2009-07-13 20:25:48 +0000 | [diff] [blame] | 42 | CommentColumn = 60; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 43 | CommentString = "#"; |
David Greene | 76081c4 | 2009-07-20 22:02:59 +0000 | [diff] [blame] | 44 | FirstOperandColumn = 0; |
| 45 | MaxOperandLength = 0; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 46 | GlobalPrefix = ""; |
| 47 | PrivateGlobalPrefix = "."; |
Chris Lattner | 90f8b70 | 2009-07-21 17:30:51 +0000 | [diff] [blame] | 48 | LinkerPrivateGlobalPrefix = ""; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 49 | JumpTableSpecialLabelPrefix = 0; |
| 50 | GlobalVarAddrPrefix = ""; |
| 51 | GlobalVarAddrSuffix = ""; |
| 52 | FunctionAddrPrefix = ""; |
| 53 | FunctionAddrSuffix = ""; |
| 54 | PersonalityPrefix = ""; |
| 55 | PersonalitySuffix = ""; |
| 56 | NeedsIndirectEncoding = false; |
| 57 | InlineAsmStart = "#APP"; |
| 58 | InlineAsmEnd = "#NO_APP"; |
| 59 | AssemblerDialect = 0; |
Chris Lattner | a93ca92 | 2009-06-18 23:41:35 +0000 | [diff] [blame] | 60 | AllowQuotesInName = false; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 61 | ZeroDirective = "\t.zero\t"; |
| 62 | ZeroDirectiveSuffix = 0; |
| 63 | AsciiDirective = "\t.ascii\t"; |
| 64 | AscizDirective = "\t.asciz\t"; |
| 65 | Data8bitsDirective = "\t.byte\t"; |
| 66 | Data16bitsDirective = "\t.short\t"; |
| 67 | Data32bitsDirective = "\t.long\t"; |
| 68 | Data64bitsDirective = "\t.quad\t"; |
| 69 | AlignDirective = "\t.align\t"; |
| 70 | AlignmentIsInBytes = true; |
| 71 | TextAlignFillValue = 0; |
| 72 | SwitchToSectionDirective = "\t.section\t"; |
| 73 | TextSectionStartSuffix = ""; |
| 74 | DataSectionStartSuffix = ""; |
| 75 | SectionEndDirectiveSuffix = 0; |
| 76 | ConstantPoolSection = "\t.section .rodata"; |
| 77 | JumpTableDataSection = "\t.section .rodata"; |
| 78 | JumpTableDirective = 0; |
| 79 | CStringSection = 0; |
| 80 | CStringSection_ = 0; |
| 81 | // FIXME: Flags are ELFish - replace with normal section stuff. |
| 82 | StaticCtorsSection = "\t.section .ctors,\"aw\",@progbits"; |
| 83 | StaticDtorsSection = "\t.section .dtors,\"aw\",@progbits"; |
| 84 | GlobalDirective = "\t.globl\t"; |
| 85 | SetDirective = 0; |
| 86 | LCOMMDirective = 0; |
| 87 | COMMDirective = "\t.comm\t"; |
| 88 | COMMDirectiveTakesAlignment = true; |
| 89 | HasDotTypeDotSizeDirective = true; |
Rafael Espindola | 952b839 | 2008-12-03 11:01:37 +0000 | [diff] [blame] | 90 | HasSingleParameterDotFile = true; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 91 | UsedDirective = 0; |
| 92 | WeakRefDirective = 0; |
| 93 | WeakDefDirective = 0; |
| 94 | // FIXME: These are ELFish - move to ELFTAI. |
| 95 | HiddenDirective = "\t.hidden\t"; |
| 96 | ProtectedDirective = "\t.protected\t"; |
| 97 | AbsoluteDebugSectionOffsets = false; |
| 98 | AbsoluteEHSectionOffsets = false; |
| 99 | HasLEB128 = false; |
| 100 | HasDotLocAndDotFile = false; |
| 101 | SupportsDebugInformation = false; |
| 102 | SupportsExceptionHandling = false; |
| 103 | DwarfRequiresFrameSection = true; |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 104 | DwarfUsesInlineInfoSection = false; |
Chris Lattner | e2cf37b | 2009-07-17 20:46:40 +0000 | [diff] [blame] | 105 | Is_EHSymbolPrivate = true; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 106 | GlobalEHDirective = 0; |
| 107 | SupportsWeakOmittedEHFrame = true; |
| 108 | DwarfSectionOffsetDirective = 0; |
| 109 | DwarfAbbrevSection = ".debug_abbrev"; |
| 110 | DwarfInfoSection = ".debug_info"; |
| 111 | DwarfLineSection = ".debug_line"; |
| 112 | DwarfFrameSection = ".debug_frame"; |
| 113 | DwarfPubNamesSection = ".debug_pubnames"; |
| 114 | DwarfPubTypesSection = ".debug_pubtypes"; |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 115 | DwarfDebugInlineSection = ".debug_inlined"; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 116 | DwarfStrSection = ".debug_str"; |
| 117 | DwarfLocSection = ".debug_loc"; |
| 118 | DwarfARangesSection = ".debug_aranges"; |
| 119 | DwarfRangesSection = ".debug_ranges"; |
Chris Lattner | b839c3f | 2009-06-18 23:31:37 +0000 | [diff] [blame] | 120 | DwarfMacroInfoSection = ".debug_macinfo"; |
Anton Korobeynikov | 32b952a | 2008-09-25 21:00:33 +0000 | [diff] [blame] | 121 | DwarfEHFrameSection = ".eh_frame"; |
| 122 | DwarfExceptionSection = ".gcc_except_table"; |
| 123 | AsmTransCBE = 0; |
Anton Korobeynikov | d7ca416 | 2008-09-24 22:15:21 +0000 | [diff] [blame] | 124 | TextSection = getUnnamedSection("\t.text", SectionFlags::Code); |
Chris Lattner | b4fc419 | 2009-07-25 18:57:34 +0000 | [diff] [blame] | 125 | DataSection = getUnnamedSection("\t.data", SectionFlags::Writable); |
Chris Lattner | 4c7b07a | 2006-10-13 17:50:07 +0000 | [diff] [blame] | 126 | } |
Chris Lattner | f5b10ec | 2006-10-05 00:35:16 +0000 | [diff] [blame] | 127 | |
| 128 | TargetAsmInfo::~TargetAsmInfo() { |
| 129 | } |
Chris Lattner | 4c7b07a | 2006-10-13 17:50:07 +0000 | [diff] [blame] | 130 | |
| 131 | /// Measure the specified inline asm to determine an approximation of its |
| 132 | /// length. |
Dale Johannesen | 3bb6283 | 2007-04-23 20:00:17 +0000 | [diff] [blame] | 133 | /// Comments (which run till the next SeparatorChar or newline) do not |
| 134 | /// count as an instruction. |
| 135 | /// Any other non-whitespace text is considered an instruction, with |
| 136 | /// multiple instructions separated by SeparatorChar or newlines. |
| 137 | /// Variable-length instructions are not handled here; this function |
| 138 | /// may be overloaded in the target code to do that. |
Chris Lattner | 4c7b07a | 2006-10-13 17:50:07 +0000 | [diff] [blame] | 139 | unsigned TargetAsmInfo::getInlineAsmLength(const char *Str) const { |
| 140 | // Count the number of instructions in the asm. |
Dale Johannesen | 3bb6283 | 2007-04-23 20:00:17 +0000 | [diff] [blame] | 141 | bool atInsnStart = true; |
| 142 | unsigned Length = 0; |
Chris Lattner | 4c7b07a | 2006-10-13 17:50:07 +0000 | [diff] [blame] | 143 | for (; *Str; ++Str) { |
| 144 | if (*Str == '\n' || *Str == SeparatorChar) |
Dale Johannesen | 3bb6283 | 2007-04-23 20:00:17 +0000 | [diff] [blame] | 145 | atInsnStart = true; |
| 146 | if (atInsnStart && !isspace(*Str)) { |
| 147 | Length += MaxInstLength; |
| 148 | atInsnStart = false; |
| 149 | } |
| 150 | if (atInsnStart && strncmp(Str, CommentString, strlen(CommentString))==0) |
| 151 | atInsnStart = false; |
Chris Lattner | 4c7b07a | 2006-10-13 17:50:07 +0000 | [diff] [blame] | 152 | } |
| 153 | |
Dale Johannesen | 3bb6283 | 2007-04-23 20:00:17 +0000 | [diff] [blame] | 154 | return Length; |
Chris Lattner | 4c7b07a | 2006-10-13 17:50:07 +0000 | [diff] [blame] | 155 | } |
Anton Korobeynikov | a6199c8 | 2007-03-07 02:47:57 +0000 | [diff] [blame] | 156 | |
Anton Korobeynikov | 8213f9c | 2008-02-29 22:09:08 +0000 | [diff] [blame] | 157 | unsigned TargetAsmInfo::PreferredEHDataFormat(DwarfEncoding::Target Reason, |
Anton Korobeynikov | cee750f | 2008-02-27 23:33:50 +0000 | [diff] [blame] | 158 | bool Global) const { |
| 159 | return dwarf::DW_EH_PE_absptr; |
| 160 | } |
| 161 | |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 162 | static bool isSuitableForBSS(const GlobalVariable *GV) { |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 163 | Constant *C = GV->getInitializer(); |
Chris Lattner | b4fc419 | 2009-07-25 18:57:34 +0000 | [diff] [blame] | 164 | |
| 165 | // Must have zero initializer. |
| 166 | if (!C->isNullValue()) |
| 167 | return false; |
| 168 | |
| 169 | // Leave constant zeros in readonly constant sections, so they can be shared. |
| 170 | if (GV->isConstant()) |
| 171 | return false; |
| 172 | |
| 173 | // If the global has an explicit section specified, don't put it in BSS. |
| 174 | if (!GV->getSection().empty()) |
| 175 | return false; |
| 176 | |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 177 | // If -nozero-initialized-in-bss is specified, don't ever use BSS. |
| 178 | if (NoZerosInBSS) |
| 179 | return false; |
| 180 | |
| 181 | // Otherwise, put it in BSS! |
| 182 | return true; |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Owen Anderson | 1ca29d3 | 2009-07-13 21:27:19 +0000 | [diff] [blame] | 185 | static bool isConstantString(const Constant *C) { |
Anton Korobeynikov | 72bb402 | 2009-01-27 22:29:24 +0000 | [diff] [blame] | 186 | // First check: is we have constant array of i8 terminated with zero |
| 187 | const ConstantArray *CVA = dyn_cast<ConstantArray>(C); |
| 188 | // Check, if initializer is a null-terminated string |
Owen Anderson | 1ca29d3 | 2009-07-13 21:27:19 +0000 | [diff] [blame] | 189 | if (CVA && CVA->isCString()) |
Anton Korobeynikov | 72bb402 | 2009-01-27 22:29:24 +0000 | [diff] [blame] | 190 | return true; |
| 191 | |
| 192 | // Another possibility: [1 x i8] zeroinitializer |
Chris Lattner | 0d4960c3 | 2009-07-24 20:14:10 +0000 | [diff] [blame] | 193 | if (isa<ConstantAggregateZero>(C)) |
| 194 | if (const ArrayType *Ty = dyn_cast<ArrayType>(C->getType())) |
Anton Korobeynikov | 72bb402 | 2009-01-27 22:29:24 +0000 | [diff] [blame] | 195 | return (Ty->getElementType() == Type::Int8Ty && |
| 196 | Ty->getNumElements() == 1); |
Anton Korobeynikov | 72bb402 | 2009-01-27 22:29:24 +0000 | [diff] [blame] | 197 | |
| 198 | return false; |
| 199 | } |
| 200 | |
Chris Lattner | 8adc547 | 2009-07-24 16:46:50 +0000 | [diff] [blame] | 201 | static unsigned SectionFlagsForGlobal(const GlobalValue *GV, |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 202 | SectionKind Kind) { |
Chris Lattner | b4fc419 | 2009-07-25 18:57:34 +0000 | [diff] [blame] | 203 | // Decode flags from global and section kind. |
Chris Lattner | 104bbd1 | 2009-07-24 16:44:01 +0000 | [diff] [blame] | 204 | unsigned Flags = SectionFlags::None; |
Chris Lattner | 104bbd1 | 2009-07-24 16:44:01 +0000 | [diff] [blame] | 205 | if (GV->isWeakForLinker()) |
| 206 | Flags |= SectionFlags::Linkonce; |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 207 | if (Kind.isBSS() || Kind.isThreadBSS()) |
Chris Lattner | b4fc419 | 2009-07-25 18:57:34 +0000 | [diff] [blame] | 208 | Flags |= SectionFlags::BSS; |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 209 | if (Kind.isThreadLocal()) |
Chris Lattner | b4fc419 | 2009-07-25 18:57:34 +0000 | [diff] [blame] | 210 | Flags |= SectionFlags::TLS; |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 211 | if (Kind.isText()) |
Chris Lattner | b4fc419 | 2009-07-25 18:57:34 +0000 | [diff] [blame] | 212 | Flags |= SectionFlags::Code; |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 213 | if (Kind.isWritable()) |
Chris Lattner | b4fc419 | 2009-07-25 18:57:34 +0000 | [diff] [blame] | 214 | Flags |= SectionFlags::Writable; |
Chris Lattner | 104bbd1 | 2009-07-24 16:44:01 +0000 | [diff] [blame] | 215 | |
Chris Lattner | 27f3065 | 2009-07-24 16:50:24 +0000 | [diff] [blame] | 216 | return Flags; |
| 217 | } |
Chris Lattner | 104bbd1 | 2009-07-24 16:44:01 +0000 | [diff] [blame] | 218 | |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 219 | static SectionKind SectionKindForGlobal(const GlobalValue *GV, |
| 220 | Reloc::Model ReloModel) { |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 221 | // Early exit - functions should be always in text sections. |
Chris Lattner | e5ca0ac | 2009-07-24 16:53:52 +0000 | [diff] [blame] | 222 | const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV); |
| 223 | if (GVar == 0) |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 224 | return SectionKind::getText(); |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 225 | |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 226 | bool isThreadLocal = GVar->isThreadLocal(); |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 227 | |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 228 | // Variable can be easily put to BSS section. |
| 229 | if (isSuitableForBSS(GVar)) |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 230 | return isThreadLocal ? SectionKind::getThreadBSS() : SectionKind::getBSS(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 231 | |
| 232 | // If this is thread-local, put it in the general "thread_data" section. |
| 233 | if (isThreadLocal) |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 234 | return SectionKind::getThreadData(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 235 | |
| 236 | Constant *C = GVar->getInitializer(); |
| 237 | |
| 238 | // If the global is marked constant, we can put it into a mergable section, |
| 239 | // a mergable string section, or general .data if it contains relocations. |
| 240 | if (GVar->isConstant()) { |
| 241 | // If the initializer for the global contains something that requires a |
| 242 | // relocation, then we may have to drop this into a wriable data section |
| 243 | // even though it is marked const. |
| 244 | switch (C->getRelocationInfo()) { |
| 245 | default: llvm_unreachable("unknown relocation info kind"); |
| 246 | case Constant::NoRelocation: |
| 247 | // If initializer is a null-terminated string, put it in a "cstring" |
| 248 | // section if the target has it. |
Owen Anderson | 1ca29d3 | 2009-07-13 21:27:19 +0000 | [diff] [blame] | 249 | if (isConstantString(C)) |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 250 | return SectionKind::getMergableCString(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 251 | |
| 252 | // Otherwise, just drop it into a mergable constant section. |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 253 | return SectionKind::getMergableConst(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 254 | |
| 255 | case Constant::LocalRelocation: |
| 256 | // In static relocation model, the linker will resolve all addresses, so |
| 257 | // the relocation entries will actually be constants by the time the app |
| 258 | // starts up. |
Chris Lattner | 0d4960c3 | 2009-07-24 20:14:10 +0000 | [diff] [blame] | 259 | if (ReloModel == Reloc::Static) |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 260 | return SectionKind::getReadOnly(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 261 | |
| 262 | // Otherwise, the dynamic linker needs to fix it up, put it in the |
| 263 | // writable data.rel.local section. |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 264 | return SectionKind::getReadOnlyWithRelLocal(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 265 | |
| 266 | case Constant::GlobalRelocations: |
| 267 | // In static relocation model, the linker will resolve all addresses, so |
| 268 | // the relocation entries will actually be constants by the time the app |
| 269 | // starts up. |
Chris Lattner | 0d4960c3 | 2009-07-24 20:14:10 +0000 | [diff] [blame] | 270 | if (ReloModel == Reloc::Static) |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 271 | return SectionKind::getReadOnly(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 272 | |
| 273 | // Otherwise, the dynamic linker needs to fix it up, put it in the |
| 274 | // writable data.rel section. |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 275 | return SectionKind::getReadOnlyWithRel(); |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 279 | // Okay, this isn't a constant. If the initializer for the global is going |
| 280 | // to require a runtime relocation by the dynamic linker, put it into a more |
| 281 | // specific section to improve startup time of the app. This coalesces these |
| 282 | // globals together onto fewer pages, improving the locality of the dynamic |
| 283 | // linker. |
Chris Lattner | 0d4960c3 | 2009-07-24 20:14:10 +0000 | [diff] [blame] | 284 | if (ReloModel == Reloc::Static) |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 285 | return SectionKind::getDataNoRel(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 286 | |
| 287 | switch (C->getRelocationInfo()) { |
| 288 | default: llvm_unreachable("unknown relocation info kind"); |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 289 | case Constant::NoRelocation: return SectionKind::getDataNoRel(); |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 290 | case Constant::LocalRelocation: return SectionKind::getDataRelLocal(); |
| 291 | case Constant::GlobalRelocations: return SectionKind::getDataRel(); |
Chris Lattner | b303504 | 2009-07-24 19:15:47 +0000 | [diff] [blame] | 292 | } |
Anton Korobeynikov | 28a2b54 | 2008-06-28 13:45:57 +0000 | [diff] [blame] | 293 | } |
Anton Korobeynikov | beb9d40 | 2008-07-09 13:16:59 +0000 | [diff] [blame] | 294 | |
Chris Lattner | 4f05591 | 2009-07-25 18:11:58 +0000 | [diff] [blame] | 295 | /// SectionForGlobal - This method computes the appropriate section to emit |
| 296 | /// the specified global variable or function definition. This should not |
| 297 | /// be passed external (or available externally) globals. |
Chris Lattner | 7558f11 | 2009-07-21 21:09:35 +0000 | [diff] [blame] | 298 | const Section *TargetAsmInfo::SectionForGlobal(const GlobalValue *GV) const { |
Chris Lattner | 4f05591 | 2009-07-25 18:11:58 +0000 | [diff] [blame] | 299 | assert(!GV->isDeclaration() && !GV->hasAvailableExternallyLinkage() && |
| 300 | "Can only be used for global definitions"); |
| 301 | |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 302 | SectionKind Kind = SectionKindForGlobal(GV, TM.getRelocationModel()); |
Chris Lattner | 7420ab2 | 2009-07-24 18:34:27 +0000 | [diff] [blame] | 303 | |
| 304 | // Select section name. |
Anton Korobeynikov | 265c525 | 2008-07-09 13:22:46 +0000 | [diff] [blame] | 305 | if (GV->hasSection()) { |
Chris Lattner | 7420ab2 | 2009-07-24 18:34:27 +0000 | [diff] [blame] | 306 | // If the target has special section hacks for specifically named globals, |
| 307 | // return them now. |
| 308 | if (const Section *TS = getSpecialCasedSectionGlobals(GV, Kind)) |
| 309 | return TS; |
| 310 | |
Chris Lattner | 7558f11 | 2009-07-21 21:09:35 +0000 | [diff] [blame] | 311 | // Honour section already set, if any. |
Chris Lattner | 7420ab2 | 2009-07-24 18:34:27 +0000 | [diff] [blame] | 312 | unsigned Flags = SectionFlagsForGlobal(GV, Kind); |
Chris Lattner | 27f3065 | 2009-07-24 16:50:24 +0000 | [diff] [blame] | 313 | |
| 314 | // This is an explicitly named section. |
| 315 | Flags |= SectionFlags::Named; |
| 316 | |
| 317 | // If the target has magic semantics for certain section names, make sure to |
| 318 | // pick up the flags. This allows the user to write things with attribute |
| 319 | // section and still get the appropriate section flags printed. |
Chris Lattner | 2dcafe4 | 2009-07-24 17:02:17 +0000 | [diff] [blame] | 320 | Flags |= getFlagsForNamedSection(GV->getSection().c_str()); |
Chris Lattner | 27f3065 | 2009-07-24 16:50:24 +0000 | [diff] [blame] | 321 | |
Chris Lattner | 7558f11 | 2009-07-21 21:09:35 +0000 | [diff] [blame] | 322 | return getNamedSection(GV->getSection().c_str(), Flags); |
Anton Korobeynikov | 265c525 | 2008-07-09 13:22:46 +0000 | [diff] [blame] | 323 | } |
Daniel Dunbar | 7384e1b | 2009-07-22 20:26:37 +0000 | [diff] [blame] | 324 | |
Chris Lattner | eed05b8 | 2009-07-24 05:10:25 +0000 | [diff] [blame] | 325 | // If this global is linkonce/weak and the target handles this by emitting it |
| 326 | // into a 'uniqued' section name, create and return the section now. |
| 327 | if (GV->isWeakForLinker()) { |
Chris Lattner | 7420ab2 | 2009-07-24 18:34:27 +0000 | [diff] [blame] | 328 | if (const char *Prefix = getSectionPrefixForUniqueGlobal(Kind)) { |
| 329 | unsigned Flags = SectionFlagsForGlobal(GV, Kind); |
Chris Lattner | e5ca0ac | 2009-07-24 16:53:52 +0000 | [diff] [blame] | 330 | |
Chris Lattner | eed05b8 | 2009-07-24 05:10:25 +0000 | [diff] [blame] | 331 | // FIXME: Use mangler interface (PR4584). |
Daniel Dunbar | 895c9ed | 2009-07-24 12:21:08 +0000 | [diff] [blame] | 332 | std::string Name = Prefix+GV->getNameStr(); |
Chris Lattner | eed05b8 | 2009-07-24 05:10:25 +0000 | [diff] [blame] | 333 | return getNamedSection(Name.c_str(), Flags); |
| 334 | } |
| 335 | } |
| 336 | |
Chris Lattner | 7558f11 | 2009-07-21 21:09:35 +0000 | [diff] [blame] | 337 | // Use default section depending on the 'type' of global |
Chris Lattner | f20f250 | 2009-07-24 18:42:53 +0000 | [diff] [blame] | 338 | return SelectSectionForGlobal(GV, Kind); |
Anton Korobeynikov | 265c525 | 2008-07-09 13:22:46 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | // Lame default implementation. Calculate the section name for global. |
Evan Cheng | 42ccc21 | 2008-08-08 17:56:50 +0000 | [diff] [blame] | 342 | const Section* |
Chris Lattner | f20f250 | 2009-07-24 18:42:53 +0000 | [diff] [blame] | 343 | TargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV, |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 344 | SectionKind Kind) const { |
Chris Lattner | e346e18 | 2009-07-26 05:44:20 +0000 | [diff] [blame^] | 345 | assert(!Kind.isThreadLocal() && "Doesn't support TLS"); |
| 346 | |
| 347 | if (Kind.isText()) |
Chris Lattner | eed05b8 | 2009-07-24 05:10:25 +0000 | [diff] [blame] | 348 | return getTextSection(); |
| 349 | |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 350 | if (Kind.isBSS()) |
Chris Lattner | eed05b8 | 2009-07-24 05:10:25 +0000 | [diff] [blame] | 351 | if (const Section *S = getBSSSection_()) |
| 352 | return S; |
| 353 | |
Chris Lattner | 460d51e | 2009-07-25 23:21:55 +0000 | [diff] [blame] | 354 | if (Kind.isReadOnly()) |
Chris Lattner | eed05b8 | 2009-07-24 05:10:25 +0000 | [diff] [blame] | 355 | if (const Section *S = getReadOnlySection()) |
| 356 | return S; |
Anton Korobeynikov | 0c60246 | 2008-07-09 13:18:02 +0000 | [diff] [blame] | 357 | |
Anton Korobeynikov | 315690e | 2008-09-24 22:16:16 +0000 | [diff] [blame] | 358 | return getDataSection(); |
Anton Korobeynikov | 0c60246 | 2008-07-09 13:18:02 +0000 | [diff] [blame] | 359 | } |
Anton Korobeynikov | 29b03f7 | 2008-07-09 13:19:38 +0000 | [diff] [blame] | 360 | |
Chris Lattner | 298414e | 2009-07-22 00:28:43 +0000 | [diff] [blame] | 361 | /// getSectionForMergableConstant - Given a mergable constant with the |
| 362 | /// specified size and relocation information, return a section that it |
| 363 | /// should be placed in. |
| 364 | const Section * |
| 365 | TargetAsmInfo::getSectionForMergableConstant(uint64_t Size, |
| 366 | unsigned ReloInfo) const { |
Anton Korobeynikov | 93cacf1 | 2008-08-07 09:50:34 +0000 | [diff] [blame] | 367 | // FIXME: Support data.rel stuff someday |
Chris Lattner | 298414e | 2009-07-22 00:28:43 +0000 | [diff] [blame] | 368 | // Lame default implementation. Calculate the section name for machine const. |
Anton Korobeynikov | 315690e | 2008-09-24 22:16:16 +0000 | [diff] [blame] | 369 | return getDataSection(); |
Anton Korobeynikov | 93cacf1 | 2008-08-07 09:50:34 +0000 | [diff] [blame] | 370 | } |
| 371 | |
Chris Lattner | 298414e | 2009-07-22 00:28:43 +0000 | [diff] [blame] | 372 | |
Chris Lattner | 7558f11 | 2009-07-21 21:09:35 +0000 | [diff] [blame] | 373 | const Section *TargetAsmInfo::getNamedSection(const char *Name, unsigned Flags, |
| 374 | bool Override) const { |
| 375 | Section &S = Sections[Name]; |
Anton Korobeynikov | 0d44ba8 | 2008-07-09 13:28:49 +0000 | [diff] [blame] | 376 | |
| 377 | // This is newly-created section, set it up properly. |
Anton Korobeynikov | 328da65 | 2008-08-16 12:58:12 +0000 | [diff] [blame] | 378 | if (S.Flags == SectionFlags::Invalid || Override) { |
Anton Korobeynikov | 0d44ba8 | 2008-07-09 13:28:49 +0000 | [diff] [blame] | 379 | S.Flags = Flags | SectionFlags::Named; |
| 380 | S.Name = Name; |
| 381 | } |
| 382 | |
| 383 | return &S; |
| 384 | } |
| 385 | |
| 386 | const Section* |
Anton Korobeynikov | 328da65 | 2008-08-16 12:58:12 +0000 | [diff] [blame] | 387 | TargetAsmInfo::getUnnamedSection(const char *Directive, unsigned Flags, |
| 388 | bool Override) const { |
Anton Korobeynikov | 0d44ba8 | 2008-07-09 13:28:49 +0000 | [diff] [blame] | 389 | Section& S = Sections[Directive]; |
| 390 | |
| 391 | // This is newly-created section, set it up properly. |
Anton Korobeynikov | 328da65 | 2008-08-16 12:58:12 +0000 | [diff] [blame] | 392 | if (S.Flags == SectionFlags::Invalid || Override) { |
Anton Korobeynikov | 0d44ba8 | 2008-07-09 13:28:49 +0000 | [diff] [blame] | 393 | S.Flags = Flags & ~SectionFlags::Named; |
| 394 | S.Name = Directive; |
| 395 | } |
| 396 | |
| 397 | return &S; |
| 398 | } |
Anton Korobeynikov | d0c1e29 | 2008-08-16 12:57:07 +0000 | [diff] [blame] | 399 | |
| 400 | const std::string& |
| 401 | TargetAsmInfo::getSectionFlags(unsigned Flags) const { |
| 402 | SectionFlags::FlagsStringsMapType::iterator I = FlagsStrings.find(Flags); |
| 403 | |
| 404 | // We didn't print these flags yet, print and save them to map. This reduces |
| 405 | // amount of heap trashing due to std::string construction / concatenation. |
| 406 | if (I == FlagsStrings.end()) |
| 407 | I = FlagsStrings.insert(std::make_pair(Flags, |
| 408 | printSectionFlags(Flags))).first; |
| 409 | |
| 410 | return I->second; |
| 411 | } |
Anton Korobeynikov | ffe31d7 | 2008-08-16 12:57:46 +0000 | [diff] [blame] | 412 | |
| 413 | unsigned TargetAsmInfo::getULEB128Size(unsigned Value) { |
| 414 | unsigned Size = 0; |
| 415 | do { |
| 416 | Value >>= 7; |
| 417 | Size += sizeof(int8_t); |
| 418 | } while (Value); |
| 419 | return Size; |
| 420 | } |
| 421 | |
| 422 | unsigned TargetAsmInfo::getSLEB128Size(int Value) { |
| 423 | unsigned Size = 0; |
| 424 | int Sign = Value >> (8 * sizeof(Value) - 1); |
| 425 | bool IsMore; |
| 426 | |
| 427 | do { |
| 428 | unsigned Byte = Value & 0x7f; |
| 429 | Value >>= 7; |
| 430 | IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; |
| 431 | Size += sizeof(int8_t); |
| 432 | } while (IsMore); |
| 433 | return Size; |
| 434 | } |