Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- X86AsmPrinter.cpp - Convert X86 LLVM IR to X86 assembly -----------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 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. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file the shared super class printer that converts from our internal |
| 11 | // representation of machine-dependent LLVM code to Intel and AT&T format |
| 12 | // assembly language. |
| 13 | // This printer is the output mechanism used by `llc'. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #include "X86AsmPrinter.h" |
| 18 | #include "X86ATTAsmPrinter.h" |
| 19 | #include "X86COFF.h" |
| 20 | #include "X86IntelAsmPrinter.h" |
| 21 | #include "X86MachineFunctionInfo.h" |
| 22 | #include "X86Subtarget.h" |
| 23 | #include "llvm/ADT/StringExtras.h" |
| 24 | #include "llvm/CallingConv.h" |
| 25 | #include "llvm/Constants.h" |
| 26 | #include "llvm/Module.h" |
| 27 | #include "llvm/DerivedTypes.h" |
| 28 | #include "llvm/Type.h" |
| 29 | #include "llvm/Assembly/Writer.h" |
| 30 | #include "llvm/Support/Mangler.h" |
| 31 | #include "llvm/Target/TargetAsmInfo.h" |
| 32 | #include "llvm/Target/TargetOptions.h" |
| 33 | using namespace llvm; |
| 34 | |
| 35 | static X86MachineFunctionInfo calculateFunctionInfo(const Function *F, |
| 36 | const TargetData *TD) { |
| 37 | X86MachineFunctionInfo Info; |
| 38 | uint64_t Size = 0; |
| 39 | |
| 40 | switch (F->getCallingConv()) { |
| 41 | case CallingConv::X86_StdCall: |
| 42 | Info.setDecorationStyle(StdCall); |
| 43 | break; |
| 44 | case CallingConv::X86_FastCall: |
| 45 | Info.setDecorationStyle(FastCall); |
| 46 | break; |
| 47 | default: |
| 48 | return Info; |
| 49 | } |
| 50 | |
| 51 | for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end(); |
| 52 | AI != AE; ++AI) |
| 53 | // Size should be aligned to DWORD boundary |
Duncan Sands | 8157ef4 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 54 | Size += ((TD->getABITypeSize(AI->getType()) + 3)/4)*4; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 55 | |
| 56 | // We're not supporting tooooo huge arguments :) |
| 57 | Info.setBytesToPopOnReturn((unsigned int)Size); |
| 58 | return Info; |
| 59 | } |
| 60 | |
| 61 | |
| 62 | /// decorateName - Query FunctionInfoMap and use this information for various |
| 63 | /// name decoration. |
| 64 | void X86SharedAsmPrinter::decorateName(std::string &Name, |
| 65 | const GlobalValue *GV) { |
| 66 | const Function *F = dyn_cast<Function>(GV); |
| 67 | if (!F) return; |
| 68 | |
| 69 | // We don't want to decorate non-stdcall or non-fastcall functions right now |
| 70 | unsigned CC = F->getCallingConv(); |
| 71 | if (CC != CallingConv::X86_StdCall && CC != CallingConv::X86_FastCall) |
| 72 | return; |
| 73 | |
| 74 | // Decorate names only when we're targeting Cygwin/Mingw32 targets |
| 75 | if (!Subtarget->isTargetCygMing()) |
| 76 | return; |
| 77 | |
| 78 | FMFInfoMap::const_iterator info_item = FunctionInfoMap.find(F); |
| 79 | |
| 80 | const X86MachineFunctionInfo *Info; |
| 81 | if (info_item == FunctionInfoMap.end()) { |
| 82 | // Calculate apropriate function info and populate map |
| 83 | FunctionInfoMap[F] = calculateFunctionInfo(F, TM.getTargetData()); |
| 84 | Info = &FunctionInfoMap[F]; |
| 85 | } else { |
| 86 | Info = &info_item->second; |
| 87 | } |
| 88 | |
| 89 | const FunctionType *FT = F->getFunctionType(); |
| 90 | switch (Info->getDecorationStyle()) { |
| 91 | case None: |
| 92 | break; |
| 93 | case StdCall: |
| 94 | // "Pure" variadic functions do not receive @0 suffix. |
| 95 | if (!FT->isVarArg() || (FT->getNumParams() == 0) || |
Duncan Sands | f5588dc | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 96 | (FT->getNumParams() == 1 && F->isStructReturn())) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 97 | Name += '@' + utostr_32(Info->getBytesToPopOnReturn()); |
| 98 | break; |
| 99 | case FastCall: |
| 100 | // "Pure" variadic functions do not receive @0 suffix. |
| 101 | if (!FT->isVarArg() || (FT->getNumParams() == 0) || |
Duncan Sands | f5588dc | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 102 | (FT->getNumParams() == 1 && F->isStructReturn())) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 103 | Name += '@' + utostr_32(Info->getBytesToPopOnReturn()); |
| 104 | |
| 105 | if (Name[0] == '_') { |
| 106 | Name[0] = '@'; |
| 107 | } else { |
| 108 | Name = '@' + Name; |
| 109 | } |
| 110 | break; |
| 111 | default: |
| 112 | assert(0 && "Unsupported DecorationStyle"); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /// doInitialization |
| 117 | bool X86SharedAsmPrinter::doInitialization(Module &M) { |
| 118 | if (TAI->doesSupportDebugInformation()) { |
| 119 | // Emit initial debug information. |
| 120 | DW.BeginModule(&M); |
| 121 | } |
| 122 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 123 | bool Result = AsmPrinter::doInitialization(M); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 124 | |
| 125 | // Darwin wants symbols to be quoted if they have complex names. |
| 126 | if (Subtarget->isTargetDarwin()) |
| 127 | Mang->setUseQuotes(true); |
| 128 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 129 | return Result; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | bool X86SharedAsmPrinter::doFinalization(Module &M) { |
| 133 | // Note: this code is not shared by the Intel printer as it is too different |
| 134 | // from how MASM does things. When making changes here don't forget to look |
| 135 | // at X86IntelAsmPrinter::doFinalization(). |
| 136 | const TargetData *TD = TM.getTargetData(); |
| 137 | |
| 138 | // Print out module-level global variables here. |
| 139 | for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); |
| 140 | I != E; ++I) { |
| 141 | if (!I->hasInitializer()) |
| 142 | continue; // External global require no code |
| 143 | |
| 144 | // Check to see if this is a special global used by LLVM, if so, emit it. |
| 145 | if (EmitSpecialLLVMGlobal(I)) { |
| 146 | if (Subtarget->isTargetDarwin() && |
| 147 | TM.getRelocationModel() == Reloc::Static) { |
| 148 | if (I->getName() == "llvm.global_ctors") |
| 149 | O << ".reference .constructors_used\n"; |
| 150 | else if (I->getName() == "llvm.global_dtors") |
| 151 | O << ".reference .destructors_used\n"; |
| 152 | } |
| 153 | continue; |
| 154 | } |
| 155 | |
| 156 | std::string name = Mang->getValueName(I); |
| 157 | Constant *C = I->getInitializer(); |
| 158 | const Type *Type = C->getType(); |
Duncan Sands | 8157ef4 | 2007-11-05 00:04:43 +0000 | [diff] [blame] | 159 | unsigned Size = TD->getABITypeSize(Type); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 160 | unsigned Align = TD->getPreferredAlignmentLog(I); |
| 161 | |
| 162 | if (I->hasHiddenVisibility()) { |
| 163 | if (const char *Directive = TAI->getHiddenDirective()) |
| 164 | O << Directive << name << "\n"; |
| 165 | } else if (I->hasProtectedVisibility()) { |
| 166 | if (const char *Directive = TAI->getProtectedDirective()) |
| 167 | O << Directive << name << "\n"; |
| 168 | } |
| 169 | |
| 170 | if (Subtarget->isTargetELF()) |
Dan Gohman | 721e658 | 2007-07-30 15:08:02 +0000 | [diff] [blame] | 171 | O << "\t.type\t" << name << ",@object\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 172 | |
Evan Cheng | 65c0fbc | 2007-09-21 00:41:19 +0000 | [diff] [blame] | 173 | if (C->isNullValue() && !I->hasSection()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 174 | if (I->hasExternalLinkage()) { |
| 175 | if (const char *Directive = TAI->getZeroFillDirective()) { |
| 176 | O << "\t.globl\t" << name << "\n"; |
| 177 | O << Directive << "__DATA__, __common, " << name << ", " |
| 178 | << Size << ", " << Align << "\n"; |
| 179 | continue; |
| 180 | } |
| 181 | } |
| 182 | |
Evan Cheng | 65c0fbc | 2007-09-21 00:41:19 +0000 | [diff] [blame] | 183 | if (!I->isThreadLocal() && |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 184 | (I->hasInternalLinkage() || I->hasWeakLinkage() || |
| 185 | I->hasLinkOnceLinkage())) { |
| 186 | if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it. |
| 187 | if (!NoZerosInBSS && TAI->getBSSSection()) |
| 188 | SwitchToDataSection(TAI->getBSSSection(), I); |
| 189 | else |
| 190 | SwitchToDataSection(TAI->getDataSection(), I); |
| 191 | if (TAI->getLCOMMDirective() != NULL) { |
| 192 | if (I->hasInternalLinkage()) { |
| 193 | O << TAI->getLCOMMDirective() << name << "," << Size; |
| 194 | if (Subtarget->isTargetDarwin()) |
| 195 | O << "," << Align; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame^] | 196 | } else { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 197 | O << TAI->getCOMMDirective() << name << "," << Size; |
Chris Lattner | 93a2d43 | 2008-01-02 19:44:55 +0000 | [diff] [blame^] | 198 | |
| 199 | // Leopard and above support aligned common symbols. |
| 200 | if (Subtarget->getDarwinVers() >= 9) |
| 201 | O << "," << Align; |
| 202 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 203 | } else { |
| 204 | if (!Subtarget->isTargetCygMing()) { |
| 205 | if (I->hasInternalLinkage()) |
| 206 | O << "\t.local\t" << name << "\n"; |
| 207 | } |
| 208 | O << TAI->getCOMMDirective() << name << "," << Size; |
| 209 | if (TAI->getCOMMDirectiveTakesAlignment()) |
| 210 | O << "," << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align); |
| 211 | } |
| 212 | O << "\t\t" << TAI->getCommentString() << " " << I->getName() << "\n"; |
| 213 | continue; |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | switch (I->getLinkage()) { |
| 218 | case GlobalValue::LinkOnceLinkage: |
| 219 | case GlobalValue::WeakLinkage: |
| 220 | if (Subtarget->isTargetDarwin()) { |
Dan Gohman | 52443a8 | 2007-10-05 15:58:41 +0000 | [diff] [blame] | 221 | O << "\t.globl\t" << name << "\n" |
Dale Johannesen | fb3ac73 | 2007-11-20 23:24:42 +0000 | [diff] [blame] | 222 | << TAI->getWeakDefDirective() << name << "\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 223 | SwitchToDataSection(".section __DATA,__const_coal,coalesced", I); |
| 224 | } else if (Subtarget->isTargetCygMing()) { |
| 225 | std::string SectionName(".section\t.data$linkonce." + |
| 226 | name + |
| 227 | ",\"aw\""); |
| 228 | SwitchToDataSection(SectionName.c_str(), I); |
Dan Gohman | 52443a8 | 2007-10-05 15:58:41 +0000 | [diff] [blame] | 229 | O << "\t.globl\t" << name << "\n" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 230 | << "\t.linkonce same_size\n"; |
| 231 | } else { |
| 232 | std::string SectionName("\t.section\t.llvm.linkonce.d." + |
| 233 | name + |
| 234 | ",\"aw\",@progbits"); |
| 235 | SwitchToDataSection(SectionName.c_str(), I); |
Dan Gohman | 721e658 | 2007-07-30 15:08:02 +0000 | [diff] [blame] | 236 | O << "\t.weak\t" << name << "\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 237 | } |
| 238 | break; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 239 | case GlobalValue::DLLExportLinkage: |
| 240 | DLLExportedGVs.insert(Mang->makeNameProper(I->getName(),"")); |
| 241 | // FALL THROUGH |
Chris Lattner | 2f8ba29 | 2007-08-13 18:42:37 +0000 | [diff] [blame] | 242 | case GlobalValue::AppendingLinkage: |
| 243 | // FIXME: appending linkage variables should go into a section of |
| 244 | // their name or something. For now, just emit them as external. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 245 | case GlobalValue::ExternalLinkage: |
| 246 | // If external or appending, declare as a global symbol |
Dan Gohman | 52443a8 | 2007-10-05 15:58:41 +0000 | [diff] [blame] | 247 | O << "\t.globl\t" << name << "\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 248 | // FALL THROUGH |
| 249 | case GlobalValue::InternalLinkage: { |
| 250 | if (I->isConstant()) { |
| 251 | const ConstantArray *CVA = dyn_cast<ConstantArray>(C); |
| 252 | if (TAI->getCStringSection() && CVA && CVA->isCString()) { |
| 253 | SwitchToDataSection(TAI->getCStringSection(), I); |
| 254 | break; |
| 255 | } |
| 256 | } |
| 257 | // FIXME: special handling for ".ctors" & ".dtors" sections |
| 258 | if (I->hasSection() && |
| 259 | (I->getSection() == ".ctors" || |
| 260 | I->getSection() == ".dtors")) { |
| 261 | std::string SectionName = ".section " + I->getSection(); |
| 262 | |
| 263 | if (Subtarget->isTargetCygMing()) { |
| 264 | SectionName += ",\"aw\""; |
| 265 | } else { |
| 266 | assert(!Subtarget->isTargetDarwin()); |
| 267 | SectionName += ",\"aw\",@progbits"; |
| 268 | } |
| 269 | |
| 270 | SwitchToDataSection(SectionName.c_str()); |
| 271 | } else { |
| 272 | if (C->isNullValue() && !NoZerosInBSS && TAI->getBSSSection()) |
| 273 | SwitchToDataSection(I->isThreadLocal() ? TAI->getTLSBSSSection() : |
| 274 | TAI->getBSSSection(), I); |
| 275 | else if (!I->isConstant()) |
| 276 | SwitchToDataSection(I->isThreadLocal() ? TAI->getTLSDataSection() : |
| 277 | TAI->getDataSection(), I); |
| 278 | else if (I->isThreadLocal()) |
| 279 | SwitchToDataSection(TAI->getTLSDataSection()); |
| 280 | else { |
| 281 | // Read-only data. |
| 282 | bool HasReloc = C->ContainsRelocations(); |
| 283 | if (HasReloc && |
| 284 | Subtarget->isTargetDarwin() && |
| 285 | TM.getRelocationModel() != Reloc::Static) |
| 286 | SwitchToDataSection("\t.const_data\n"); |
| 287 | else if (!HasReloc && Size == 4 && |
| 288 | TAI->getFourByteConstantSection()) |
| 289 | SwitchToDataSection(TAI->getFourByteConstantSection(), I); |
| 290 | else if (!HasReloc && Size == 8 && |
| 291 | TAI->getEightByteConstantSection()) |
| 292 | SwitchToDataSection(TAI->getEightByteConstantSection(), I); |
| 293 | else if (!HasReloc && Size == 16 && |
| 294 | TAI->getSixteenByteConstantSection()) |
| 295 | SwitchToDataSection(TAI->getSixteenByteConstantSection(), I); |
| 296 | else if (TAI->getReadOnlySection()) |
| 297 | SwitchToDataSection(TAI->getReadOnlySection(), I); |
| 298 | else |
| 299 | SwitchToDataSection(TAI->getDataSection(), I); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | break; |
| 304 | } |
| 305 | default: |
| 306 | assert(0 && "Unknown linkage type!"); |
| 307 | } |
| 308 | |
| 309 | EmitAlignment(Align, I); |
| 310 | O << name << ":\t\t\t\t" << TAI->getCommentString() << " " << I->getName() |
| 311 | << "\n"; |
| 312 | if (TAI->hasDotTypeDotSizeDirective()) |
Dan Gohman | 721e658 | 2007-07-30 15:08:02 +0000 | [diff] [blame] | 313 | O << "\t.size\t" << name << ", " << Size << "\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 314 | // If the initializer is a extern weak symbol, remember to emit the weak |
| 315 | // reference! |
| 316 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 317 | if (GV->hasExternalWeakLinkage()) |
| 318 | ExtWeakSymbols.insert(GV); |
| 319 | |
| 320 | EmitGlobalConstant(C); |
| 321 | } |
| 322 | |
| 323 | // Output linker support code for dllexported globals |
Dan Gohman | 3f7d94b | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 324 | if (!DLLExportedGVs.empty()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 325 | SwitchToDataSection(".section .drectve"); |
| 326 | } |
| 327 | |
| 328 | for (std::set<std::string>::iterator i = DLLExportedGVs.begin(), |
| 329 | e = DLLExportedGVs.end(); |
| 330 | i != e; ++i) { |
| 331 | O << "\t.ascii \" -export:" << *i << ",data\"\n"; |
| 332 | } |
| 333 | |
Dan Gohman | 3f7d94b | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 334 | if (!DLLExportedFns.empty()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 335 | SwitchToDataSection(".section .drectve"); |
| 336 | } |
| 337 | |
| 338 | for (std::set<std::string>::iterator i = DLLExportedFns.begin(), |
| 339 | e = DLLExportedFns.end(); |
| 340 | i != e; ++i) { |
| 341 | O << "\t.ascii \" -export:" << *i << "\"\n"; |
| 342 | } |
| 343 | |
| 344 | if (Subtarget->isTargetDarwin()) { |
| 345 | SwitchToDataSection(""); |
| 346 | |
| 347 | // Output stubs for dynamically-linked functions |
| 348 | unsigned j = 1; |
| 349 | for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end(); |
| 350 | i != e; ++i, ++j) { |
| 351 | SwitchToDataSection(".section __IMPORT,__jump_table,symbol_stubs," |
| 352 | "self_modifying_code+pure_instructions,5", 0); |
| 353 | O << "L" << *i << "$stub:\n"; |
| 354 | O << "\t.indirect_symbol " << *i << "\n"; |
| 355 | O << "\thlt ; hlt ; hlt ; hlt ; hlt\n"; |
| 356 | } |
| 357 | |
| 358 | O << "\n"; |
| 359 | |
Bill Wendling | 319cd95 | 2007-09-16 19:21:08 +0000 | [diff] [blame] | 360 | if (ExceptionHandling && TAI->doesSupportExceptionHandling() && MMI) { |
Bill Wendling | d1bda4f | 2007-09-11 08:27:17 +0000 | [diff] [blame] | 361 | // Add the (possibly multiple) personalities to the set of global values. |
| 362 | const std::vector<Function *>& Personalities = MMI->getPersonalities(); |
| 363 | |
| 364 | for (std::vector<Function *>::const_iterator I = Personalities.begin(), |
| 365 | E = Personalities.end(); I != E; ++I) |
| 366 | if (*I) GVStubs.insert("_" + (*I)->getName()); |
| 367 | } |
| 368 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 369 | // Output stubs for external and common global variables. |
Dan Gohman | 3f7d94b | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 370 | if (!GVStubs.empty()) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 371 | SwitchToDataSection( |
| 372 | ".section __IMPORT,__pointers,non_lazy_symbol_pointers"); |
| 373 | for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end(); |
| 374 | i != e; ++i) { |
| 375 | O << "L" << *i << "$non_lazy_ptr:\n"; |
| 376 | O << "\t.indirect_symbol " << *i << "\n"; |
| 377 | O << "\t.long\t0\n"; |
| 378 | } |
| 379 | |
| 380 | // Emit final debug information. |
| 381 | DW.EndModule(); |
| 382 | |
| 383 | // Funny Darwin hack: This flag tells the linker that no global symbols |
| 384 | // contain code that falls through to other global symbols (e.g. the obvious |
| 385 | // implementation of multiple entry points). If this doesn't occur, the |
| 386 | // linker can safely perform dead code stripping. Since LLVM never |
| 387 | // generates code that does this, it is always safe to set. |
| 388 | O << "\t.subsections_via_symbols\n"; |
| 389 | } else if (Subtarget->isTargetCygMing()) { |
| 390 | // Emit type information for external functions |
| 391 | for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end(); |
| 392 | i != e; ++i) { |
| 393 | O << "\t.def\t " << *i |
| 394 | << ";\t.scl\t" << COFF::C_EXT |
| 395 | << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT) |
| 396 | << ";\t.endef\n"; |
| 397 | } |
| 398 | |
| 399 | // Emit final debug information. |
| 400 | DW.EndModule(); |
| 401 | } else if (Subtarget->isTargetELF()) { |
| 402 | // Emit final debug information. |
| 403 | DW.EndModule(); |
| 404 | } |
| 405 | |
Dan Gohman | 4a558a3 | 2007-07-25 19:33:14 +0000 | [diff] [blame] | 406 | return AsmPrinter::doFinalization(M); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | /// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code |
| 410 | /// for a MachineFunction to the given output stream, using the given target |
| 411 | /// machine description. |
| 412 | /// |
| 413 | FunctionPass *llvm::createX86CodePrinterPass(std::ostream &o, |
| 414 | X86TargetMachine &tm) { |
| 415 | const X86Subtarget *Subtarget = &tm.getSubtarget<X86Subtarget>(); |
| 416 | |
| 417 | if (Subtarget->isFlavorIntel()) { |
| 418 | return new X86IntelAsmPrinter(o, tm, tm.getTargetAsmInfo()); |
| 419 | } else { |
| 420 | return new X86ATTAsmPrinter(o, tm, tm.getTargetAsmInfo()); |
| 421 | } |
| 422 | } |