1. Clean up code due to changes in SwitchTo*Section(2)
[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     const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
114     if (!Subtarget->is64Bit())
115       X86PICStyle = PICStyle::Stub;
116
117     // Emit initial debug information.
118     DW.BeginModule(&M);
119   } else if (Subtarget->isTargetELF() || Subtarget->isTargetCygwin()) {
120     // Emit initial debug information.
121     DW.BeginModule(&M);
122   }
123
124   return AsmPrinter::doInitialization(M);
125 }
126
127 bool X86SharedAsmPrinter::doFinalization(Module &M) {
128   // Note: this code is not shared by the Intel printer as it is too different
129   // from how MASM does things.  When making changes here don't forget to look
130   // at X86IntelAsmPrinter::doFinalization().
131   const TargetData *TD = TM.getTargetData();
132
133   // Print out module-level global variables here.
134   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
135        I != E; ++I) {
136     if (!I->hasInitializer()) 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       EmitGlobalConstant(C);
250       O << '\n';
251     }
252   }
253   
254   // Output linker support code for dllexported globals
255   if (DLLExportedGVs.begin() != DLLExportedGVs.end()) {
256     SwitchToDataSection(".section .drectve");
257   }
258
259   for (std::set<std::string>::iterator i = DLLExportedGVs.begin(),
260          e = DLLExportedGVs.end();
261          i != e; ++i) {
262     O << "\t.ascii \" -export:" << *i << ",data\"\n";
263   }    
264
265   if (DLLExportedFns.begin() != DLLExportedFns.end()) {
266     SwitchToDataSection(".section .drectve");
267   }
268
269   for (std::set<std::string>::iterator i = DLLExportedFns.begin(),
270          e = DLLExportedFns.end();
271          i != e; ++i) {
272     O << "\t.ascii \" -export:" << *i << "\"\n";
273   }    
274  
275   if (Subtarget->isTargetDarwin()) {
276     SwitchToDataSection("");
277
278     // Output stubs for dynamically-linked functions
279     unsigned j = 1;
280     for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
281          i != e; ++i, ++j) {
282       SwitchToDataSection(".section __IMPORT,__jump_table,symbol_stubs,"
283                           "self_modifying_code+pure_instructions,5", 0);
284       O << "L" << *i << "$stub:\n";
285       O << "\t.indirect_symbol " << *i << "\n";
286       O << "\thlt ; hlt ; hlt ; hlt ; hlt\n";
287     }
288
289     O << "\n";
290
291     // Output stubs for external and common global variables.
292     if (GVStubs.begin() != GVStubs.end())
293       SwitchToDataSection(
294                     ".section __IMPORT,__pointers,non_lazy_symbol_pointers");
295     for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
296          i != e; ++i) {
297       O << "L" << *i << "$non_lazy_ptr:\n";
298       O << "\t.indirect_symbol " << *i << "\n";
299       O << "\t.long\t0\n";
300     }
301
302     // Emit final debug information.
303     DW.EndModule();
304
305     // Funny Darwin hack: This flag tells the linker that no global symbols
306     // contain code that falls through to other global symbols (e.g. the obvious
307     // implementation of multiple entry points).  If this doesn't occur, the
308     // linker can safely perform dead code stripping.  Since LLVM never
309     // generates code that does this, it is always safe to set.
310     O << "\t.subsections_via_symbols\n";
311   } else if (Subtarget->isTargetELF() || Subtarget->isTargetCygwin()) {
312     // Emit final debug information.
313     DW.EndModule();
314   }
315
316   AsmPrinter::doFinalization(M);
317   return false; // success
318 }
319
320 /// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code
321 /// for a MachineFunction to the given output stream, using the given target
322 /// machine description.
323 ///
324 FunctionPass *llvm::createX86CodePrinterPass(std::ostream &o,
325                                              X86TargetMachine &tm) {
326   const X86Subtarget *Subtarget = &tm.getSubtarget<X86Subtarget>();
327
328   if (Subtarget->isFlavorIntel()) {
329     return new X86IntelAsmPrinter(o, tm, tm.getTargetAsmInfo());
330   } else {
331     return new X86ATTAsmPrinter(o, tm, tm.getTargetAsmInfo());
332   }
333 }