1 //===-- X86AsmPrinter.cpp - Convert X86 LLVM IR to X86 assembly -----------===//
3 // The LLVM Compiler Infrastructure
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.
8 //===----------------------------------------------------------------------===//
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
13 // This printer is the output mechanism used by `llc'.
15 //===----------------------------------------------------------------------===//
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"
33 Statistic<> llvm::EmittedInsts("asm-printer",
34 "Number of machine instrs printed");
36 static X86FunctionInfo calculateFunctionInfo(const Function *F,
37 const TargetData *TD) {
41 switch (F->getCallingConv()) {
42 case CallingConv::X86_StdCall:
43 Info.setDecorationStyle(StdCall);
45 case CallingConv::X86_FastCall:
46 Info.setDecorationStyle(FastCall);
52 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
54 Size += TD->getTypeSize(AI->getType());
56 // Size should be aligned to DWORD boundary
57 Size = ((Size + 3)/4)*4;
59 // We're not supporting tooooo huge arguments :)
60 Info.setBytesToPopOnReturn((unsigned int)Size);
65 /// decorateName - Query FunctionInfoMap and use this information for various
67 void X86SharedAsmPrinter::decorateName(std::string &Name,
68 const GlobalValue *GV) {
69 const Function *F = dyn_cast<Function>(GV);
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)
77 FMFInfoMap::const_iterator info_item = FunctionInfoMap.find(F);
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];
85 Info = &info_item->second;
88 switch (Info->getDecorationStyle()) {
92 if (!F->isVarArg()) // Variadic functions do not receive @0 suffix.
93 Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
96 if (!F->isVarArg()) // Variadic functions do not receive @0 suffix.
97 Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
106 assert(0 && "Unsupported DecorationStyle");
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;
117 // Emit initial debug information.
121 return AsmPrinter::doInitialization(M);
124 bool X86SharedAsmPrinter::doFinalization(Module &M) {
125 // Note: this code is not shared by the Intel printer as it is too different
126 // from how MASM does things. When making changes here don't forget to look
127 // at X86IntelAsmPrinter::doFinalization().
128 const TargetData *TD = TM.getTargetData();
130 // Print out module-level global variables here.
131 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
133 if (!I->hasInitializer()) continue; // External global require no code
135 // Check to see if this is a special global used by LLVM, if so, emit it.
136 if (EmitSpecialLLVMGlobal(I))
139 std::string name = Mang->getValueName(I);
140 Constant *C = I->getInitializer();
141 unsigned Size = TD->getTypeSize(C->getType());
142 unsigned Align = TD->getPreferredAlignmentLog(I);
144 if (C->isNullValue() && /* FIXME: Verify correct */
145 (I->hasInternalLinkage() || I->hasWeakLinkage() ||
146 I->hasLinkOnceLinkage() ||
147 (Subtarget->isTargetDarwin() &&
148 I->hasExternalLinkage() && !I->hasSection()))) {
149 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
150 if (I->hasExternalLinkage()) {
151 O << "\t.globl\t" << name << "\n";
152 O << "\t.zerofill __DATA__, __common, " << name << ", "
153 << Size << ", " << Align;
155 SwitchToDataSection(TAI->getDataSection(), I);
156 if (TAI->getLCOMMDirective() != NULL) {
157 if (I->hasInternalLinkage()) {
158 O << TAI->getLCOMMDirective() << name << "," << Size;
159 if (Subtarget->isTargetDarwin())
160 O << "," << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
162 O << TAI->getCOMMDirective() << name << "," << Size;
164 if (!Subtarget->isTargetCygwin()) {
165 if (I->hasInternalLinkage())
166 O << "\t.local\t" << name << "\n";
168 O << TAI->getCOMMDirective() << name << "," << Size;
169 if (TAI->getCOMMDirectiveTakesAlignment())
170 O << "," << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
173 O << "\t\t" << TAI->getCommentString() << " " << I->getName() << "\n";
175 switch (I->getLinkage()) {
176 case GlobalValue::LinkOnceLinkage:
177 case GlobalValue::WeakLinkage:
178 if (Subtarget->isTargetDarwin()) {
179 O << "\t.globl " << name << "\n"
180 << "\t.weak_definition " << name << "\n";
181 SwitchToDataSection(".section __DATA,__const_coal,coalesced", I);
182 } else if (Subtarget->isTargetCygwin()) {
183 std::string SectionName(".section\t.data$linkonce." +
186 SwitchToDataSection(SectionName.c_str(), I);
187 O << "\t.globl " << name << "\n"
188 << "\t.linkonce same_size\n";
190 std::string SectionName("\t.section\t.llvm.linkonce.d." +
192 ",\"aw\",@progbits\n");
193 SwitchToDataSection(SectionName.c_str(), I);
194 O << "\t.weak " << name << "\n";
197 case GlobalValue::AppendingLinkage:
198 // FIXME: appending linkage variables should go into a section of
199 // their name or something. For now, just emit them as external.
200 case GlobalValue::DLLExportLinkage:
201 DLLExportedGVs.insert(Mang->makeNameProper(I->getName(),""));
203 case GlobalValue::ExternalLinkage:
204 // If external or appending, declare as a global symbol
205 O << "\t.globl " << name << "\n";
207 case GlobalValue::InternalLinkage: {
208 if (I->isConstant()) {
209 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
210 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
211 SwitchToDataSection(TAI->getCStringSection(), I);
215 SwitchToDataSection(TAI->getDataSection(), I);
219 assert(0 && "Unknown linkage type!");
222 EmitAlignment(Align, I);
223 O << name << ":\t\t\t\t" << TAI->getCommentString() << " " << I->getName()
225 if (TAI->hasDotTypeDotSizeDirective())
226 O << "\t.size " << name << ", " << Size << "\n";
228 EmitGlobalConstant(C);
233 // Output linker support code for dllexported globals
234 if (DLLExportedGVs.begin() != DLLExportedGVs.end()) {
235 SwitchToDataSection(".section .drectve", 0);
238 for (std::set<std::string>::iterator i = DLLExportedGVs.begin(),
239 e = DLLExportedGVs.end();
241 O << "\t.ascii \" -export:" << *i << ",data\"\n";
244 if (DLLExportedFns.begin() != DLLExportedFns.end()) {
245 SwitchToDataSection(".section .drectve", 0);
248 for (std::set<std::string>::iterator i = DLLExportedFns.begin(),
249 e = DLLExportedFns.end();
251 O << "\t.ascii \" -export:" << *i << "\"\n";
254 if (Subtarget->isTargetDarwin()) {
255 SwitchToDataSection("", 0);
257 // Output stubs for dynamically-linked functions
259 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
261 SwitchToDataSection(".section __IMPORT,__jump_table,symbol_stubs,"
262 "self_modifying_code+pure_instructions,5", 0);
263 O << "L" << *i << "$stub:\n";
264 O << "\t.indirect_symbol " << *i << "\n";
265 O << "\thlt ; hlt ; hlt ; hlt ; hlt\n";
270 // Output stubs for external and common global variables.
271 if (GVStubs.begin() != GVStubs.end())
273 ".section __IMPORT,__pointers,non_lazy_symbol_pointers", 0);
274 for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
276 O << "L" << *i << "$non_lazy_ptr:\n";
277 O << "\t.indirect_symbol " << *i << "\n";
281 // Emit initial debug information.
284 // Funny Darwin hack: This flag tells the linker that no global symbols
285 // contain code that falls through to other global symbols (e.g. the obvious
286 // implementation of multiple entry points). If this doesn't occur, the
287 // linker can safely perform dead code stripping. Since LLVM never
288 // generates code that does this, it is always safe to set.
289 O << "\t.subsections_via_symbols\n";
292 AsmPrinter::doFinalization(M);
293 return false; // success
296 /// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code
297 /// for a MachineFunction to the given output stream, using the given target
298 /// machine description.
300 FunctionPass *llvm::createX86CodePrinterPass(std::ostream &o,
301 X86TargetMachine &tm) {
302 const X86Subtarget *Subtarget = &tm.getSubtarget<X86Subtarget>();
304 if (Subtarget->isFlavorIntel()) {
305 return new X86IntelAsmPrinter(o, tm, tm.getTargetAsmInfo());
307 return new X86ATTAsmPrinter(o, tm, tm.getTargetAsmInfo());