Darwin ABI issues: weak, linkonce, etc. dynamic-no-pic support is complete.
[oota-llvm.git] / lib / Target / X86 / X86AsmPrinter.cpp
1 //===-- X86AsmPrinter.cpp - Convert X86 LLVM IR to X86 assembly -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
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 "X86ATTAsmPrinter.h"
18 #include "X86IntelAsmPrinter.h"
19 #include "X86Subtarget.h"
20 #include "X86.h"
21 #include "llvm/Constants.h"
22 #include "llvm/Module.h"
23 #include "llvm/Type.h"
24 #include "llvm/Assembly/Writer.h"
25 #include "llvm/Support/Mangler.h"
26 #include "llvm/Support/CommandLine.h"
27 using namespace llvm;
28 using namespace x86;
29
30 Statistic<> llvm::x86::EmittedInsts("asm-printer",
31                                     "Number of machine instrs printed");
32
33 enum AsmWriterFlavorTy { att, intel };
34 cl::opt<AsmWriterFlavorTy>
35 AsmWriterFlavor("x86-asm-syntax",
36                 cl::desc("Choose style of code to emit from X86 backend:"),
37                 cl::values(
38                            clEnumVal(att,   "  Emit AT&T-style assembly"),
39                            clEnumVal(intel, "  Emit Intel-style assembly"),
40                            clEnumValEnd),
41                 cl::init(att));
42
43 /// doInitialization
44 bool X86SharedAsmPrinter::doInitialization(Module &M) {
45   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
46   
47   forDarwin = false;
48   
49   switch (Subtarget->TargetType) {
50   case X86Subtarget::isDarwin:
51     AlignmentIsInBytes = false;
52     GlobalPrefix = "_";
53     Data64bitsDirective = 0;       // we can't emit a 64-bit unit
54     ZeroDirective = "\t.space\t";  // ".space N" emits N zeros.
55     PrivateGlobalPrefix = "L";     // Marker for constant pool idxs
56     ConstantPoolSection = "\t.const\n";
57     LCOMMDirective = "\t.lcomm\t";
58     COMMDirectiveTakesAlignment = false;
59     HasDotTypeDotSizeDirective = false;
60     forDarwin = true;
61     StaticCtorsSection = ".mod_init_func";
62     StaticDtorsSection = ".mod_term_func";
63     break;
64   case X86Subtarget::isCygwin:
65     GlobalPrefix = "_";
66     COMMDirectiveTakesAlignment = false;
67     HasDotTypeDotSizeDirective = false;
68     break;
69   case X86Subtarget::isWindows:
70     GlobalPrefix = "_";
71     HasDotTypeDotSizeDirective = false;
72     break;
73   default: break;
74   }
75   
76   return AsmPrinter::doInitialization(M);
77 }
78
79 bool X86SharedAsmPrinter::doFinalization(Module &M) {
80   const TargetData &TD = TM.getTargetData();
81
82   // Print out module-level global variables here.
83   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
84        I != E; ++I) {
85     if (!I->hasInitializer()) continue;   // External global require no code
86     
87     // Check to see if this is a special global used by LLVM, if so, emit it.
88     if (I->hasAppendingLinkage() && EmitSpecialLLVMGlobal(I))
89       continue;
90     
91     std::string name = Mang->getValueName(I);
92     Constant *C = I->getInitializer();
93     unsigned Size = TD.getTypeSize(C->getType());
94     unsigned Align = getPreferredAlignmentLog(I);
95
96     if (C->isNullValue() && /* FIXME: Verify correct */
97         (I->hasInternalLinkage() || I->hasWeakLinkage() ||
98          I->hasLinkOnceLinkage())) {
99       if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
100       if (forDarwin) {
101         SwitchSection(".data", I);
102         if (I->hasInternalLinkage())
103           O << LCOMMDirective << name << "," << Size << "," << Align;
104         else
105           O << COMMDirective  << name << "," << Size;
106       } else {
107         SwitchSection(".local", I);
108         O << COMMDirective  << name << "," << Size << "," << Align;
109       }
110       O << "\t\t" << CommentString << " '" << I->getName() << "'\n";
111     } else {
112       switch (I->getLinkage()) {
113       case GlobalValue::LinkOnceLinkage:
114       case GlobalValue::WeakLinkage:
115         if (forDarwin) {
116           O << "\t.globl " << name << '\n'
117             << "\t.weak_definition " << name << '\n';
118           SwitchSection(".section __DATA,__datacoal_nt,coalesced", I);
119         } else {
120           O << "\t.section\t.llvm.linkonce.d." << name << ",\"aw\",@progbits\n";
121           O << "\t.weak " << name << "\n";
122         }
123         break;
124       case GlobalValue::AppendingLinkage:
125         // FIXME: appending linkage variables should go into a section of
126         // their name or something.  For now, just emit them as external.
127       case GlobalValue::ExternalLinkage:
128         // If external or appending, declare as a global symbol
129         O << "\t.globl " << name << "\n";
130         // FALL THROUGH
131       case GlobalValue::InternalLinkage:
132         SwitchSection(".data", I);
133         break;
134       default:
135         assert(0 && "Unknown linkage type!");
136       }
137
138       EmitAlignment(Align, I);
139       O << name << ":\t\t\t\t" << CommentString << " '" << I->getName()
140         << "'\n";
141       EmitGlobalConstant(C);
142       O << '\n';
143     }
144   }
145   
146   if (forDarwin) {
147     SwitchSection("", 0);
148
149     // Output stubs for dynamically-linked functions
150     unsigned j = 1;
151     for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
152          i != e; ++i, ++j) {
153       SwitchSection(".section __IMPORT,__jump_table,symbol_stubs,"
154                     "self_modifying_code+pure_instructions,5", 0);
155       O << "L" << *i << "$stub:\n";
156       O << "\t.indirect_symbol " << *i << "\n";
157       O << "\thlt ; hlt ; hlt ; hlt ; hlt\n";
158     }
159
160     O << "\n";
161
162     // Output stubs for external and common global variables.
163     if (GVStubs.begin() != GVStubs.end())
164       SwitchSection(".section __IMPORT,__pointers,non_lazy_symbol_pointers", 0);
165     for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
166          i != e; ++i) {
167       O << "L" << *i << "$non_lazy_ptr:\n";
168       O << "\t.indirect_symbol " << *i << "\n";
169       O << "\t.long\t0\n";
170     }
171   }
172
173   AsmPrinter::doFinalization(M);
174   return false; // success
175 }
176
177 /// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code
178 /// for a MachineFunction to the given output stream, using the given target
179 /// machine description.
180 ///
181 FunctionPass *llvm::createX86CodePrinterPass(std::ostream &o,TargetMachine &tm){
182   switch (AsmWriterFlavor) {
183   default:
184     assert(0 && "Unknown asm flavor!");
185   case intel:
186     return new X86IntelAsmPrinter(o, tm);
187   case att:
188     return new X86ATTAsmPrinter(o, tm);
189   }
190 }