move ExtWeakSymbols to AsmPrinter
[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 "X86AsmPrinter.h"
18 #include "X86ATTAsmPrinter.h"
19 #include "X86IntelAsmPrinter.h"
20 #include "X86MachineFunctionInfo.h"
21 #include "X86Subtarget.h"
22 #include "llvm/ADT/StringExtras.h"
23 #include "llvm/CallingConv.h"
24 #include "llvm/Constants.h"
25 #include "llvm/Module.h"
26 #include "llvm/Type.h"
27 #include "llvm/Assembly/Writer.h"
28 #include "llvm/Support/Mangler.h"
29 #include "llvm/Target/TargetAsmInfo.h"
30
31 using namespace llvm;
32
33 Statistic llvm::EmittedInsts("asm-printer",
34                                "Number of machine instrs printed");
35
36 static X86FunctionInfo calculateFunctionInfo(const Function *F,
37                                              const TargetData *TD) {
38   X86FunctionInfo Info;
39   uint64_t Size = 0;
40   
41   switch (F->getCallingConv()) {
42   case CallingConv::X86_StdCall:
43     Info.setDecorationStyle(StdCall);
44     break;
45   case CallingConv::X86_FastCall:
46     Info.setDecorationStyle(FastCall);
47     break;
48   default:
49     return Info;
50   }
51
52   for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
53        AI != AE; ++AI)
54     Size += TD->getTypeSize(AI->getType());
55
56   // Size should be aligned to DWORD boundary
57   Size = ((Size + 3)/4)*4;
58   
59   // We're not supporting tooooo huge arguments :)
60   Info.setBytesToPopOnReturn((unsigned int)Size);
61   return Info;
62 }
63
64
65 /// decorateName - Query FunctionInfoMap and use this information for various
66 /// name decoration.
67 void X86SharedAsmPrinter::decorateName(std::string &Name,
68                                        const GlobalValue *GV) {
69   const Function *F = dyn_cast<Function>(GV);
70   if (!F) return;
71
72   // We don't want to decorate non-stdcall or non-fastcall functions right now
73   unsigned CC = F->getCallingConv();
74   if (CC != CallingConv::X86_StdCall && CC != CallingConv::X86_FastCall)
75     return;
76     
77   FMFInfoMap::const_iterator info_item = FunctionInfoMap.find(F);
78
79   const X86FunctionInfo *Info;
80   if (info_item == FunctionInfoMap.end()) {
81     // Calculate apropriate function info and populate map
82     FunctionInfoMap[F] = calculateFunctionInfo(F, TM.getTargetData());
83     Info = &FunctionInfoMap[F];
84   } else {
85     Info = &info_item->second;
86   }
87         
88   switch (Info->getDecorationStyle()) {
89   case None:
90     break;
91   case StdCall:
92     if (!F->isVarArg()) // Variadic functions do not receive @0 suffix.
93       Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
94     break;
95   case FastCall:
96     if (!F->isVarArg()) // Variadic functions do not receive @0 suffix.
97       Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
98
99     if (Name[0] == '_') {
100       Name[0] = '@';
101     } else {
102       Name = '@' + Name;
103     }    
104     break;
105   default:
106     assert(0 && "Unsupported DecorationStyle");
107   }
108 }
109
110 /// doInitialization
111 bool X86SharedAsmPrinter::doInitialization(Module &M) {
112   if (Subtarget->isTargetDarwin()) {
113     if (!Subtarget->is64Bit())
114       X86PICStyle = PICStyle::Stub;
115
116     // Emit initial debug information.
117     DW.BeginModule(&M);
118   } else if (Subtarget->isTargetELF() || Subtarget->isTargetCygwin()) {
119     // Emit initial debug information.
120     DW.BeginModule(&M);
121   }
122
123   return AsmPrinter::doInitialization(M);
124 }
125
126 bool X86SharedAsmPrinter::doFinalization(Module &M) {
127   // Note: this code is not shared by the Intel printer as it is too different
128   // from how MASM does things.  When making changes here don't forget to look
129   // at X86IntelAsmPrinter::doFinalization().
130   const TargetData *TD = TM.getTargetData();
131   
132   // Print out module-level global variables here.
133   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
134        I != E; ++I) {
135     if (!I->hasInitializer())
136       continue;   // External global require no code
137     
138     // Check to see if this is a special global used by LLVM, if so, emit it.
139     if (EmitSpecialLLVMGlobal(I))
140       continue;
141     
142     std::string name = Mang->getValueName(I);
143     Constant *C = I->getInitializer();
144     unsigned Size = TD->getTypeSize(C->getType());
145     unsigned Align = TD->getPreferredAlignmentLog(I);
146
147     if (C->isNullValue() && /* FIXME: Verify correct */
148         !I->hasSection() &&
149         (I->hasInternalLinkage() || I->hasWeakLinkage() ||
150          I->hasLinkOnceLinkage() ||
151          (Subtarget->isTargetDarwin() && 
152           I->hasExternalLinkage()))) {
153       if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
154       if (I->hasExternalLinkage()) {
155           O << "\t.globl\t" << name << "\n";
156           O << "\t.zerofill __DATA__, __common, " << name << ", "
157             << Size << ", " << Align;
158       } else {
159         SwitchToDataSection(TAI->getDataSection(), I);
160         if (TAI->getLCOMMDirective() != NULL) {
161           if (I->hasInternalLinkage()) {
162             O << TAI->getLCOMMDirective() << name << "," << Size;
163             if (Subtarget->isTargetDarwin())
164               O << "," << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
165           } else
166             O << TAI->getCOMMDirective()  << name << "," << Size;
167         } else {
168           if (!Subtarget->isTargetCygwin()) {
169             if (I->hasInternalLinkage())
170               O << "\t.local\t" << name << "\n";
171           }
172           O << TAI->getCOMMDirective()  << name << "," << Size;
173           if (TAI->getCOMMDirectiveTakesAlignment())
174             O << "," << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
175         }
176       }
177       O << "\t\t" << TAI->getCommentString() << " " << I->getName() << "\n";
178     } else {
179       switch (I->getLinkage()) {
180       case GlobalValue::LinkOnceLinkage:
181       case GlobalValue::WeakLinkage:
182         if (Subtarget->isTargetDarwin()) {
183           O << "\t.globl " << name << "\n"
184             << "\t.weak_definition " << name << "\n";
185           SwitchToDataSection(".section __DATA,__const_coal,coalesced", I);
186         } else if (Subtarget->isTargetCygwin()) {
187           std::string SectionName(".section\t.data$linkonce." +
188                                   name +
189                                   ",\"aw\"");
190           SwitchToDataSection(SectionName.c_str(), I);
191           O << "\t.globl " << name << "\n"
192             << "\t.linkonce same_size\n";
193         } else {
194           std::string SectionName("\t.section\t.llvm.linkonce.d." +
195                                   name +
196                                   ",\"aw\",@progbits");
197           SwitchToDataSection(SectionName.c_str(), I);
198           O << "\t.weak " << name << "\n";
199         }
200         break;
201       case GlobalValue::AppendingLinkage:
202         // FIXME: appending linkage variables should go into a section of
203         // their name or something.  For now, just emit them as external.
204       case GlobalValue::DLLExportLinkage:
205         DLLExportedGVs.insert(Mang->makeNameProper(I->getName(),""));
206         // FALL THROUGH
207       case GlobalValue::ExternalLinkage:
208         // If external or appending, declare as a global symbol
209         O << "\t.globl " << name << "\n";
210         // FALL THROUGH
211       case GlobalValue::InternalLinkage: {
212         if (I->isConstant()) {
213           const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
214           if (TAI->getCStringSection() && CVA && CVA->isCString()) {
215             SwitchToDataSection(TAI->getCStringSection(), I);
216             break;
217           }
218         }
219         // FIXME: special handling for ".ctors" & ".dtors" sections
220         if (I->hasSection() &&
221             (I->getSection() == ".ctors" ||
222              I->getSection() == ".dtors")) {
223           std::string SectionName = ".section " + I->getSection();
224           
225           if (Subtarget->isTargetCygwin()) {
226             SectionName += ",\"aw\"";
227           } else {
228             assert(!Subtarget->isTargetDarwin());
229             SectionName += ",\"aw\",@progbits";
230           }
231
232           SwitchToDataSection(SectionName.c_str());
233         } else {
234           SwitchToDataSection(TAI->getDataSection(), I);
235         }
236         
237         break;
238       }
239       default:
240         assert(0 && "Unknown linkage type!");
241       }
242
243       EmitAlignment(Align, I);
244       O << name << ":\t\t\t\t" << TAI->getCommentString() << " " << I->getName()
245         << "\n";
246       if (TAI->hasDotTypeDotSizeDirective())
247         O << "\t.size " << name << ", " << Size << "\n";
248
249       // If the initializer is a extern weak symbol, remember to emit the weak
250       // reference!
251       if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
252         if (GV->hasExternalWeakLinkage())
253           ExtWeakSymbols.insert(GV);
254
255       EmitGlobalConstant(C);
256       O << '\n';
257     }
258   }
259   
260   // Output linker support code for dllexported globals
261   if (DLLExportedGVs.begin() != DLLExportedGVs.end()) {
262     SwitchToDataSection(".section .drectve");
263   }
264
265   for (std::set<std::string>::iterator i = DLLExportedGVs.begin(),
266          e = DLLExportedGVs.end();
267          i != e; ++i) {
268     O << "\t.ascii \" -export:" << *i << ",data\"\n";
269   }    
270
271   if (DLLExportedFns.begin() != DLLExportedFns.end()) {
272     SwitchToDataSection(".section .drectve");
273   }
274
275   for (std::set<std::string>::iterator i = DLLExportedFns.begin(),
276          e = DLLExportedFns.end();
277          i != e; ++i) {
278     O << "\t.ascii \" -export:" << *i << "\"\n";
279   }    
280
281   if (Subtarget->isTargetDarwin()) {
282     SwitchToDataSection("");
283
284     // Output stubs for dynamically-linked functions
285     unsigned j = 1;
286     for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
287          i != e; ++i, ++j) {
288       SwitchToDataSection(".section __IMPORT,__jump_table,symbol_stubs,"
289                           "self_modifying_code+pure_instructions,5", 0);
290       O << "L" << *i << "$stub:\n";
291       O << "\t.indirect_symbol " << *i << "\n";
292       O << "\thlt ; hlt ; hlt ; hlt ; hlt\n";
293     }
294
295     O << "\n";
296
297     // Output stubs for external and common global variables.
298     if (GVStubs.begin() != GVStubs.end())
299       SwitchToDataSection(
300                     ".section __IMPORT,__pointers,non_lazy_symbol_pointers");
301     for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
302          i != e; ++i) {
303       O << "L" << *i << "$non_lazy_ptr:\n";
304       O << "\t.indirect_symbol " << *i << "\n";
305       O << "\t.long\t0\n";
306     }
307
308     // Emit final debug information.
309     DW.EndModule();
310
311     // Funny Darwin hack: This flag tells the linker that no global symbols
312     // contain code that falls through to other global symbols (e.g. the obvious
313     // implementation of multiple entry points).  If this doesn't occur, the
314     // linker can safely perform dead code stripping.  Since LLVM never
315     // generates code that does this, it is always safe to set.
316     O << "\t.subsections_via_symbols\n";
317   } else if (Subtarget->isTargetELF() || Subtarget->isTargetCygwin()) {
318     // Emit final debug information.
319     DW.EndModule();
320   }
321
322   AsmPrinter::doFinalization(M);
323   return false; // success
324 }
325
326 /// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code
327 /// for a MachineFunction to the given output stream, using the given target
328 /// machine description.
329 ///
330 FunctionPass *llvm::createX86CodePrinterPass(std::ostream &o,
331                                              X86TargetMachine &tm) {
332   const X86Subtarget *Subtarget = &tm.getSubtarget<X86Subtarget>();
333
334   if (Subtarget->isFlavorIntel()) {
335     return new X86IntelAsmPrinter(o, tm, tm.getTargetAsmInfo());
336   } else {
337     return new X86ATTAsmPrinter(o, tm, tm.getTargetAsmInfo());
338   }
339 }