blob: c5ed9180127c290b0013ee91b1cd062e77f836c9 [file] [log] [blame]
Chris Lattner0dc32ea2009-09-20 07:41:30 +00001//===-- X86AsmPrinter.cpp - Convert X86 LLVM code to AT&T assembly --------===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman0e0a7a452005-04-21 23:38:14 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner72614082002-10-25 22:55:53 +00009//
Chris Lattner0dc32ea2009-09-20 07:41:30 +000010// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to AT&T format assembly
12// language. This printer is the output mechanism used by `llc'.
Chris Lattner72614082002-10-25 22:55:53 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattner0dc32ea2009-09-20 07:41:30 +000016#define DEBUG_TYPE "asm-printer"
17#include "X86AsmPrinter.h"
18#include "X86ATTInstPrinter.h"
19#include "X86IntelInstPrinter.h"
20#include "X86MCInstLower.h"
21#include "X86.h"
22#include "X86COFF.h"
23#include "X86COFFMachineModuleInfo.h"
24#include "X86MachineFunctionInfo.h"
25#include "X86TargetMachine.h"
26#include "llvm/CallingConv.h"
27#include "llvm/DerivedTypes.h"
28#include "llvm/Module.h"
29#include "llvm/Type.h"
30#include "llvm/Assembly/Writer.h"
31#include "llvm/MC/MCContext.h"
32#include "llvm/MC/MCSectionMachO.h"
33#include "llvm/MC/MCStreamer.h"
34#include "llvm/MC/MCSymbol.h"
35#include "llvm/CodeGen/MachineJumpTableInfo.h"
36#include "llvm/CodeGen/MachineModuleInfoImpls.h"
37#include "llvm/Support/ErrorHandling.h"
38#include "llvm/Support/FormattedStream.h"
Chris Lattner0dc32ea2009-09-20 07:41:30 +000039#include "llvm/MC/MCAsmInfo.h"
40#include "llvm/Target/TargetLoweringObjectFile.h"
41#include "llvm/Target/TargetOptions.h"
42#include "llvm/Target/TargetRegistry.h"
43#include "llvm/ADT/SmallString.h"
44#include "llvm/ADT/Statistic.h"
45using namespace llvm;
46
47STATISTIC(EmittedInsts, "Number of machine instrs printed");
48
49//===----------------------------------------------------------------------===//
50// Primitive Helper Functions.
51//===----------------------------------------------------------------------===//
52
53void X86AsmPrinter::printMCInst(const MCInst *MI) {
54 if (MAI->getAssemblerDialect() == 0)
55 X86ATTInstPrinter(O, *MAI).printInstruction(MI);
56 else
57 X86IntelInstPrinter(O, *MAI).printInstruction(MI);
58}
59
60void X86AsmPrinter::PrintPICBaseSymbol() const {
61 // FIXME: Gross const cast hack.
62 X86AsmPrinter *AP = const_cast<X86AsmPrinter*>(this);
Chris Lattner10b318b2010-01-17 21:43:43 +000063 O << *X86MCInstLower(OutContext, 0, *AP).GetPICBaseSymbol();
Chris Lattner0dc32ea2009-09-20 07:41:30 +000064}
65
66void X86AsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
67 unsigned FnAlign = MF.getAlignment();
68 const Function *F = MF.getFunction();
69
70 if (Subtarget->isTargetCygMing()) {
71 X86COFFMachineModuleInfo &COFFMMI =
72 MMI->getObjFileInfo<X86COFFMachineModuleInfo>();
Chris Lattner4fb69f42010-01-16 00:51:39 +000073 COFFMMI.DecorateCygMingName(CurrentFnSym, OutContext, F,
74 *TM.getTargetData());
Chris Lattner0dc32ea2009-09-20 07:41:30 +000075 }
76
77 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
78 EmitAlignment(FnAlign, F);
79
80 switch (F->getLinkage()) {
81 default: llvm_unreachable("Unknown linkage type!");
82 case Function::InternalLinkage: // Symbols default to internal.
83 case Function::PrivateLinkage:
84 break;
85 case Function::DLLExportLinkage:
86 case Function::ExternalLinkage:
Chris Lattnera5ad93a2010-01-23 06:39:22 +000087 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_Global);
Chris Lattner0dc32ea2009-09-20 07:41:30 +000088 break;
89 case Function::LinkerPrivateLinkage:
90 case Function::LinkOnceAnyLinkage:
91 case Function::LinkOnceODRLinkage:
92 case Function::WeakAnyLinkage:
93 case Function::WeakODRLinkage:
94 if (Subtarget->isTargetDarwin()) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +000095 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +000096 O << MAI->getWeakDefDirective() << *CurrentFnSym << '\n';
Chris Lattner0dc32ea2009-09-20 07:41:30 +000097 } else if (Subtarget->isTargetCygMing()) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +000098 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_Global);
Chris Lattnera6594fc2010-01-25 18:58:59 +000099 // FIXME: linkonce should be a section attribute, handled by COFF Section
100 // assignment.
101 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
Chris Lattner5957c842010-01-18 00:59:24 +0000102 O << "\t.linkonce discard\n";
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000103 } else {
Chris Lattner10b318b2010-01-17 21:43:43 +0000104 O << "\t.weak\t" << *CurrentFnSym << '\n';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000105 }
106 break;
107 }
108
Chris Lattner551cdd52010-01-16 00:32:38 +0000109 printVisibility(CurrentFnSym, F->getVisibility());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000110
Chris Lattnera6594fc2010-01-25 18:58:59 +0000111 if (MAI->hasDotTypeDotSizeDirective()) {
Chris Lattnera800f7c2010-01-25 18:33:40 +0000112 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
Chris Lattner551cdd52010-01-16 00:32:38 +0000113 } else if (Subtarget->isTargetCygMing()) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000114 O << "\t.def\t " << *CurrentFnSym;
Chris Lattner551cdd52010-01-16 00:32:38 +0000115 O << ";\t.scl\t" <<
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000116 (F->hasInternalLinkage() ? COFF::C_STAT : COFF::C_EXT)
117 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
118 << ";\t.endef\n";
119 }
120
Chris Lattner10b318b2010-01-17 21:43:43 +0000121 O << *CurrentFnSym << ':';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000122 if (VerboseAsm) {
123 O.PadToColumn(MAI->getCommentColumn());
124 O << MAI->getCommentString() << ' ';
125 WriteAsOperand(O, F, /*PrintType=*/false, F->getParent());
126 }
127 O << '\n';
128
129 // Add some workaround for linkonce linkage on Cygwin\MinGW
130 if (Subtarget->isTargetCygMing() &&
Chris Lattner10b318b2010-01-17 21:43:43 +0000131 (F->hasLinkOnceLinkage() || F->hasWeakLinkage()))
132 O << "Lllvm$workaround$fake$stub$" << *CurrentFnSym << ":\n";
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000133}
134
135/// runOnMachineFunction - This uses the printMachineInstruction()
136/// method to print assembly for each instruction.
137///
138bool X86AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
139 const Function *F = MF.getFunction();
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000140 CallingConv::ID CC = F->getCallingConv();
141
142 SetupMachineFunction(MF);
143 O << "\n\n";
144
145 if (Subtarget->isTargetCOFF()) {
146 X86COFFMachineModuleInfo &COFFMMI =
147 MMI->getObjFileInfo<X86COFFMachineModuleInfo>();
148
149 // Populate function information map. Don't want to populate
150 // non-stdcall or non-fastcall functions' information right now.
151 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
152 COFFMMI.AddFunctionInfo(F, *MF.getInfo<X86MachineFunctionInfo>());
153 }
154
155 // Print out constants referenced by the function
156 EmitConstantPool(MF.getConstantPool());
157
158 // Print the 'header' of function
159 emitFunctionHeader(MF);
160
161 // Emit pre-function debug and/or EH information.
162 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
163 DW->BeginFunction(&MF);
164
165 // Print out code for the function.
166 bool hasAnyRealCode = false;
167 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
168 I != E; ++I) {
169 // Print a label for the basic block.
Dan Gohmane3cc3f32009-10-06 17:38:38 +0000170 EmitBasicBlockStart(I);
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000171 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
172 II != IE; ++II) {
173 // Print the assembly for the instruction.
174 if (!II->isLabel())
175 hasAnyRealCode = true;
176 printMachineInstruction(II);
177 }
178 }
179
180 if (Subtarget->isTargetDarwin() && !hasAnyRealCode) {
181 // If the function is empty, then we need to emit *something*. Otherwise,
182 // the function's label might be associated with something that it wasn't
183 // meant to be associated with. We emit a noop in this situation.
184 // We are assuming inline asms are code.
185 O << "\tnop\n";
186 }
187
Chris Lattner10b318b2010-01-17 21:43:43 +0000188 if (MAI->hasDotTypeDotSizeDirective())
189 O << "\t.size\t" << *CurrentFnSym << ", .-" << *CurrentFnSym << '\n';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000190
191 // Emit post-function debug information.
192 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
193 DW->EndFunction(&MF);
194
195 // Print out jump tables referenced by the function.
Chris Lattner44e87252010-01-25 22:41:33 +0000196 EmitJumpTableInfo(MF);
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000197
198 // We didn't modify anything.
199 return false;
200}
201
202/// printSymbolOperand - Print a raw symbol reference operand. This handles
203/// jump tables, constant pools, global address and external symbols, all of
204/// which print to a label with various suffixes for relocation types etc.
205void X86AsmPrinter::printSymbolOperand(const MachineOperand &MO) {
206 switch (MO.getType()) {
207 default: llvm_unreachable("unknown symbol type!");
208 case MachineOperand::MO_JumpTableIndex:
Chris Lattner64c2b242010-01-23 05:26:25 +0000209 O << *GetJTISymbol(MO.getIndex());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000210 break;
211 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner64c2b242010-01-23 05:26:25 +0000212 O << *GetCPISymbol(MO.getIndex());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000213 printOffset(MO.getOffset());
214 break;
215 case MachineOperand::MO_GlobalAddress: {
216 const GlobalValue *GV = MO.getGlobal();
217
Chris Lattner5957c842010-01-18 00:59:24 +0000218 MCSymbol *GVSym;
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000219 if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
Chris Lattner7a2ba942010-01-16 18:37:32 +0000220 GVSym = GetSymbolWithGlobalValueBase(GV, "$stub");
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000221 else if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
222 MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE ||
223 MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
Chris Lattner7a2ba942010-01-16 18:37:32 +0000224 GVSym = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattner4fb69f42010-01-16 00:51:39 +0000225 else
226 GVSym = GetGlobalValueSymbol(GV);
227
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000228 if (Subtarget->isTargetCygMing()) {
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000229 X86COFFMachineModuleInfo &COFFMMI =
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000230 MMI->getObjFileInfo<X86COFFMachineModuleInfo>();
Chris Lattner4fb69f42010-01-16 00:51:39 +0000231 COFFMMI.DecorateCygMingName(GVSym, OutContext, GV, *TM.getTargetData());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000232 }
233
234 // Handle dllimport linkage.
235 if (MO.getTargetFlags() == X86II::MO_DLLIMPORT)
Chris Lattner4fb69f42010-01-16 00:51:39 +0000236 GVSym = OutContext.GetOrCreateSymbol(Twine("__imp_") + GVSym->getName());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000237
238 if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
239 MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000240 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000241
242 const MCSymbol *&StubSym =
243 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(Sym);
Chris Lattner8570f592010-01-16 01:00:27 +0000244 if (StubSym == 0)
245 StubSym = GetGlobalValueSymbol(GV);
246
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000247 } else if (MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE){
Chris Lattner7a2ba942010-01-16 18:37:32 +0000248 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000249 const MCSymbol *&StubSym =
250 MMI->getObjFileInfo<MachineModuleInfoMachO>().getHiddenGVStubEntry(Sym);
Chris Lattner8570f592010-01-16 01:00:27 +0000251 if (StubSym == 0)
252 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000253 } else if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000254 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000255 const MCSymbol *&StubSym =
256 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Chris Lattner8570f592010-01-16 01:00:27 +0000257 if (StubSym == 0)
258 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000259 }
260
261 // If the name begins with a dollar-sign, enclose it in parens. We do this
262 // to avoid having it look like an integer immediate to the assembler.
Chris Lattner4fb69f42010-01-16 00:51:39 +0000263 if (GVSym->getName()[0] != '$')
Chris Lattner10b318b2010-01-17 21:43:43 +0000264 O << *GVSym;
265 else
266 O << '(' << *GVSym << ')';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000267 printOffset(MO.getOffset());
268 break;
269 }
270 case MachineOperand::MO_ExternalSymbol: {
Chris Lattneree9250b2010-01-13 07:56:59 +0000271 const MCSymbol *SymToPrint;
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000272 if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
Chris Lattner8570f592010-01-16 01:00:27 +0000273 SmallString<128> TempNameStr;
274 TempNameStr += StringRef(MO.getSymbolName());
275 TempNameStr += StringRef("$stub");
276
277 const MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000278 const MCSymbol *&StubSym =
279 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
280 if (StubSym == 0) {
Chris Lattner48130352010-01-13 06:38:18 +0000281 TempNameStr.erase(TempNameStr.end()-5, TempNameStr.end());
282 StubSym = OutContext.GetOrCreateSymbol(TempNameStr.str());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000283 }
Chris Lattneree9250b2010-01-13 07:56:59 +0000284 SymToPrint = StubSym;
285 } else {
Chris Lattner8570f592010-01-16 01:00:27 +0000286 SymToPrint = GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000287 }
288
289 // If the name begins with a dollar-sign, enclose it in parens. We do this
290 // to avoid having it look like an integer immediate to the assembler.
Chris Lattneree9250b2010-01-13 07:56:59 +0000291 if (SymToPrint->getName()[0] != '$')
Chris Lattner10b318b2010-01-17 21:43:43 +0000292 O << *SymToPrint;
293 else
294 O << '(' << *SymToPrint << '(';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000295 break;
296 }
297 }
298
299 switch (MO.getTargetFlags()) {
300 default:
301 llvm_unreachable("Unknown target flag on GV operand");
302 case X86II::MO_NO_FLAG: // No flag.
303 break;
304 case X86II::MO_DARWIN_NONLAZY:
305 case X86II::MO_DLLIMPORT:
306 case X86II::MO_DARWIN_STUB:
307 // These affect the name of the symbol, not any suffix.
308 break;
309 case X86II::MO_GOT_ABSOLUTE_ADDRESS:
310 O << " + [.-";
311 PrintPICBaseSymbol();
312 O << ']';
313 break;
314 case X86II::MO_PIC_BASE_OFFSET:
315 case X86II::MO_DARWIN_NONLAZY_PIC_BASE:
316 case X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE:
317 O << '-';
318 PrintPICBaseSymbol();
319 break;
320 case X86II::MO_TLSGD: O << "@TLSGD"; break;
321 case X86II::MO_GOTTPOFF: O << "@GOTTPOFF"; break;
322 case X86II::MO_INDNTPOFF: O << "@INDNTPOFF"; break;
323 case X86II::MO_TPOFF: O << "@TPOFF"; break;
324 case X86II::MO_NTPOFF: O << "@NTPOFF"; break;
325 case X86II::MO_GOTPCREL: O << "@GOTPCREL"; break;
326 case X86II::MO_GOT: O << "@GOT"; break;
327 case X86II::MO_GOTOFF: O << "@GOTOFF"; break;
328 case X86II::MO_PLT: O << "@PLT"; break;
329 }
330}
331
332/// print_pcrel_imm - This is used to print an immediate value that ends up
333/// being encoded as a pc-relative value. These print slightly differently, for
334/// example, a $ is not emitted.
335void X86AsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo) {
336 const MachineOperand &MO = MI->getOperand(OpNo);
337 switch (MO.getType()) {
338 default: llvm_unreachable("Unknown pcrel immediate operand");
339 case MachineOperand::MO_Immediate:
340 O << MO.getImm();
341 return;
342 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner10b318b2010-01-17 21:43:43 +0000343 O << *GetMBBSymbol(MO.getMBB()->getNumber());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000344 return;
345 case MachineOperand::MO_GlobalAddress:
346 case MachineOperand::MO_ExternalSymbol:
347 printSymbolOperand(MO);
348 return;
349 }
350}
351
352
353void X86AsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner5957c842010-01-18 00:59:24 +0000354 const char *Modifier) {
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000355 const MachineOperand &MO = MI->getOperand(OpNo);
356 switch (MO.getType()) {
357 default: llvm_unreachable("unknown operand type!");
358 case MachineOperand::MO_Register: {
359 O << '%';
360 unsigned Reg = MO.getReg();
361 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
362 EVT VT = (strcmp(Modifier+6,"64") == 0) ?
363 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
364 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
365 Reg = getX86SubSuperRegister(Reg, VT);
366 }
367 O << X86ATTInstPrinter::getRegisterName(Reg);
368 return;
369 }
370
371 case MachineOperand::MO_Immediate:
372 O << '$' << MO.getImm();
373 return;
374
375 case MachineOperand::MO_JumpTableIndex:
376 case MachineOperand::MO_ConstantPoolIndex:
377 case MachineOperand::MO_GlobalAddress:
378 case MachineOperand::MO_ExternalSymbol: {
379 O << '$';
380 printSymbolOperand(MO);
381 break;
382 }
383 }
384}
385
386void X86AsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
387 unsigned char value = MI->getOperand(Op).getImm();
388 assert(value <= 7 && "Invalid ssecc argument!");
389 switch (value) {
390 case 0: O << "eq"; break;
391 case 1: O << "lt"; break;
392 case 2: O << "le"; break;
393 case 3: O << "unord"; break;
394 case 4: O << "neq"; break;
395 case 5: O << "nlt"; break;
396 case 6: O << "nle"; break;
397 case 7: O << "ord"; break;
398 }
399}
400
401void X86AsmPrinter::printLeaMemReference(const MachineInstr *MI, unsigned Op,
402 const char *Modifier) {
403 const MachineOperand &BaseReg = MI->getOperand(Op);
404 const MachineOperand &IndexReg = MI->getOperand(Op+2);
405 const MachineOperand &DispSpec = MI->getOperand(Op+3);
406
407 // If we really don't want to print out (rip), don't.
408 bool HasBaseReg = BaseReg.getReg() != 0;
409 if (HasBaseReg && Modifier && !strcmp(Modifier, "no-rip") &&
410 BaseReg.getReg() == X86::RIP)
411 HasBaseReg = false;
412
413 // HasParenPart - True if we will print out the () part of the mem ref.
414 bool HasParenPart = IndexReg.getReg() || HasBaseReg;
415
416 if (DispSpec.isImm()) {
417 int DispVal = DispSpec.getImm();
418 if (DispVal || !HasParenPart)
419 O << DispVal;
420 } else {
421 assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
422 DispSpec.isJTI() || DispSpec.isSymbol());
423 printSymbolOperand(MI->getOperand(Op+3));
424 }
425
426 if (HasParenPart) {
427 assert(IndexReg.getReg() != X86::ESP &&
428 "X86 doesn't allow scaling by ESP");
429
430 O << '(';
431 if (HasBaseReg)
432 printOperand(MI, Op, Modifier);
433
434 if (IndexReg.getReg()) {
435 O << ',';
436 printOperand(MI, Op+2, Modifier);
437 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
438 if (ScaleVal != 1)
439 O << ',' << ScaleVal;
440 }
441 O << ')';
442 }
443}
444
445void X86AsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
446 const char *Modifier) {
447 assert(isMem(MI, Op) && "Invalid memory reference!");
448 const MachineOperand &Segment = MI->getOperand(Op+4);
449 if (Segment.getReg()) {
450 printOperand(MI, Op+4, Modifier);
451 O << ':';
452 }
453 printLeaMemReference(MI, Op, Modifier);
454}
455
456void X86AsmPrinter::printPICJumpTableSetLabel(unsigned uid,
457 const MachineBasicBlock *MBB) const {
458 if (!MAI->getSetDirective())
459 return;
460
461 // We don't need .set machinery if we have GOT-style relocations
Chris Lattnercba386c2010-01-25 20:52:54 +0000462 if (Subtarget->isPICStyleGOT()) // X86-32 on ELF.
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000463 return;
464
465 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
466 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
467
Chris Lattner950558a2010-01-18 00:21:06 +0000468 O << *GetMBBSymbol(MBB->getNumber());
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000469
470 if (Subtarget->isPICStyleRIPRel())
Chris Lattner64c2b242010-01-23 05:26:25 +0000471 O << '-' << *GetJTISymbol(uid) << '\n';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000472 else {
473 O << '-';
474 PrintPICBaseSymbol();
475 O << '\n';
476 }
477}
478
479
480void X86AsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
481 PrintPICBaseSymbol();
482 O << '\n';
483 PrintPICBaseSymbol();
484 O << ':';
485}
486
487void X86AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
488 const MachineBasicBlock *MBB,
489 unsigned uid) const {
Chris Lattner071c62f2010-01-25 23:26:13 +0000490 const char *JTEntryDirective = MJTI->getEntrySize(*TM.getTargetData()) == 4 ?
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000491 MAI->getData32bitsDirective() : MAI->getData64bitsDirective();
492
493 O << JTEntryDirective << ' ';
494
495 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStubPIC()) {
Chris Lattner798d1252010-01-25 21:17:10 +0000496 O << *GetJTSetSymbol(uid, MBB->getNumber());
Chris Lattner10b318b2010-01-17 21:43:43 +0000497 } else if (Subtarget->isPICStyleGOT())
498 O << *GetMBBSymbol(MBB->getNumber()) << "@GOTOFF";
Chris Lattnera86106e2010-01-25 21:01:58 +0000499 else // mdynamic-no-pic
Chris Lattner10b318b2010-01-17 21:43:43 +0000500 O << *GetMBBSymbol(MBB->getNumber());
Chris Lattnera86106e2010-01-25 21:01:58 +0000501 O << '\n';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000502}
503
504bool X86AsmPrinter::printAsmMRegister(const MachineOperand &MO, char Mode) {
505 unsigned Reg = MO.getReg();
506 switch (Mode) {
507 default: return true; // Unknown mode.
508 case 'b': // Print QImode register
509 Reg = getX86SubSuperRegister(Reg, MVT::i8);
510 break;
511 case 'h': // Print QImode high register
512 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
513 break;
514 case 'w': // Print HImode register
515 Reg = getX86SubSuperRegister(Reg, MVT::i16);
516 break;
517 case 'k': // Print SImode register
518 Reg = getX86SubSuperRegister(Reg, MVT::i32);
519 break;
520 case 'q': // Print DImode register
521 Reg = getX86SubSuperRegister(Reg, MVT::i64);
522 break;
523 }
524
525 O << '%' << X86ATTInstPrinter::getRegisterName(Reg);
526 return false;
527}
528
529/// PrintAsmOperand - Print out an operand for an inline asm expression.
530///
531bool X86AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
532 unsigned AsmVariant,
533 const char *ExtraCode) {
534 // Does this asm operand have a single letter operand modifier?
535 if (ExtraCode && ExtraCode[0]) {
536 if (ExtraCode[1] != 0) return true; // Unknown modifier.
537
538 const MachineOperand &MO = MI->getOperand(OpNo);
539
540 switch (ExtraCode[0]) {
541 default: return true; // Unknown modifier.
542 case 'a': // This is an address. Currently only 'i' and 'r' are expected.
543 if (MO.isImm()) {
544 O << MO.getImm();
545 return false;
546 }
547 if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol()) {
548 printSymbolOperand(MO);
549 return false;
550 }
551 if (MO.isReg()) {
552 O << '(';
553 printOperand(MI, OpNo);
554 O << ')';
555 return false;
556 }
557 return true;
558
559 case 'c': // Don't print "$" before a global var name or constant.
560 if (MO.isImm())
561 O << MO.getImm();
562 else if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol())
563 printSymbolOperand(MO);
564 else
565 printOperand(MI, OpNo);
566 return false;
567
568 case 'A': // Print '*' before a register (it must be a register)
569 if (MO.isReg()) {
570 O << '*';
571 printOperand(MI, OpNo);
572 return false;
573 }
574 return true;
575
576 case 'b': // Print QImode register
577 case 'h': // Print QImode high register
578 case 'w': // Print HImode register
579 case 'k': // Print SImode register
580 case 'q': // Print DImode register
581 if (MO.isReg())
582 return printAsmMRegister(MO, ExtraCode[0]);
583 printOperand(MI, OpNo);
584 return false;
585
586 case 'P': // This is the operand of a call, treat specially.
587 print_pcrel_imm(MI, OpNo);
588 return false;
589
590 case 'n': // Negate the immediate or print a '-' before the operand.
591 // Note: this is a temporary solution. It should be handled target
592 // independently as part of the 'MC' work.
593 if (MO.isImm()) {
594 O << -MO.getImm();
595 return false;
596 }
597 O << '-';
598 }
599 }
600
601 printOperand(MI, OpNo);
602 return false;
603}
604
605bool X86AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
606 unsigned OpNo, unsigned AsmVariant,
607 const char *ExtraCode) {
608 if (ExtraCode && ExtraCode[0]) {
609 if (ExtraCode[1] != 0) return true; // Unknown modifier.
610
611 switch (ExtraCode[0]) {
612 default: return true; // Unknown modifier.
613 case 'b': // Print QImode register
614 case 'h': // Print QImode high register
615 case 'w': // Print HImode register
616 case 'k': // Print SImode register
617 case 'q': // Print SImode register
618 // These only apply to registers, ignore on mem.
619 break;
620 case 'P': // Don't print @PLT, but do print as memory.
621 printMemReference(MI, OpNo, "no-rip");
622 return false;
623 }
624 }
625 printMemReference(MI, OpNo);
626 return false;
627}
628
629
630
631/// printMachineInstruction -- Print out a single X86 LLVM instruction MI in
632/// AT&T syntax to the current output stream.
633///
634void X86AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
635 ++EmittedInsts;
636
Devang Patelaf0e2722009-10-06 02:19:11 +0000637 processDebugLoc(MI, true);
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000638
639 printInstructionThroughMCStreamer(MI);
640
David Greene1924aab2009-11-13 21:34:57 +0000641 if (VerboseAsm)
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000642 EmitComments(*MI);
643 O << '\n';
Devang Patelaf0e2722009-10-06 02:19:11 +0000644
645 processDebugLoc(MI, false);
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000646}
647
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000648void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
649 if (Subtarget->isTargetDarwin()) {
650 // All darwin targets use mach-o.
651 TargetLoweringObjectFileMachO &TLOFMacho =
652 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
653
654 MachineModuleInfoMachO &MMIMacho =
655 MMI->getObjFileInfo<MachineModuleInfoMachO>();
656
657 // Output stubs for dynamically-linked functions.
658 MachineModuleInfoMachO::SymbolListTy Stubs;
659
660 Stubs = MMIMacho.GetFnStubList();
661 if (!Stubs.empty()) {
662 const MCSection *TheSection =
663 TLOFMacho.getMachOSection("__IMPORT", "__jump_table",
664 MCSectionMachO::S_SYMBOL_STUBS |
665 MCSectionMachO::S_ATTR_SELF_MODIFYING_CODE |
666 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
667 5, SectionKind::getMetadata());
668 OutStreamer.SwitchSection(TheSection);
669
670 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000671 O << *Stubs[i].first << ":\n";
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000672 // Get the MCSymbol without the $stub suffix.
Chris Lattner10b318b2010-01-17 21:43:43 +0000673 O << "\t.indirect_symbol " << *Stubs[i].second;
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000674 O << "\n\thlt ; hlt ; hlt ; hlt ; hlt\n";
675 }
676 O << '\n';
677
678 Stubs.clear();
679 }
680
681 // Output stubs for external and common global variables.
682 Stubs = MMIMacho.GetGVStubList();
683 if (!Stubs.empty()) {
684 const MCSection *TheSection =
685 TLOFMacho.getMachOSection("__IMPORT", "__pointers",
686 MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
687 SectionKind::getMetadata());
688 OutStreamer.SwitchSection(TheSection);
689
690 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000691 O << *Stubs[i].first << ":\n\t.indirect_symbol " << *Stubs[i].second;
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000692 O << "\n\t.long\t0\n";
693 }
694 Stubs.clear();
695 }
696
697 Stubs = MMIMacho.GetHiddenGVStubList();
698 if (!Stubs.empty()) {
699 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
700 EmitAlignment(2);
701
702 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000703 O << *Stubs[i].first << ":\n" << MAI->getData32bitsDirective();
704 O << *Stubs[i].second << '\n';
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000705 }
706 Stubs.clear();
707 }
708
709 // Funny Darwin hack: This flag tells the linker that no global symbols
710 // contain code that falls through to other global symbols (e.g. the obvious
711 // implementation of multiple entry points). If this doesn't occur, the
712 // linker can safely perform dead code stripping. Since LLVM never
713 // generates code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000714 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000715 }
716
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000717 if (Subtarget->isTargetCOFF()) {
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000718 X86COFFMachineModuleInfo &COFFMMI =
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000719 MMI->getObjFileInfo<X86COFFMachineModuleInfo>();
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000720
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000721 // Emit type information for external functions
722 for (X86COFFMachineModuleInfo::stub_iterator I = COFFMMI.stub_begin(),
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000723 E = COFFMMI.stub_end(); I != E; ++I) {
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000724 O << "\t.def\t " << I->getKeyData()
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000725 << ";\t.scl\t" << COFF::C_EXT
726 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
727 << ";\t.endef\n";
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000728 }
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000729
730 if (Subtarget->isTargetCygMing()) {
731 // Necessary for dllexport support
Chris Lattner4fb69f42010-01-16 00:51:39 +0000732 std::vector<const MCSymbol*> DLLExportedFns, DLLExportedGlobals;
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000733
734 TargetLoweringObjectFileCOFF &TLOFCOFF =
735 static_cast<TargetLoweringObjectFileCOFF&>(getObjFileLowering());
736
737 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I)
738 if (I->hasDLLExportLinkage()) {
Chris Lattner5957c842010-01-18 00:59:24 +0000739 MCSymbol *Sym = GetGlobalValueSymbol(I);
Chris Lattner4fb69f42010-01-16 00:51:39 +0000740 COFFMMI.DecorateCygMingName(Sym, OutContext, I, *TM.getTargetData());
741 DLLExportedFns.push_back(Sym);
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000742 }
743
744 for (Module::const_global_iterator I = M.global_begin(),
745 E = M.global_end(); I != E; ++I)
Chris Lattner4fb69f42010-01-16 00:51:39 +0000746 if (I->hasDLLExportLinkage())
747 DLLExportedGlobals.push_back(GetGlobalValueSymbol(I));
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000748
749 // Output linker support code for dllexported globals on windows.
750 if (!DLLExportedGlobals.empty() || !DLLExportedFns.empty()) {
751 OutStreamer.SwitchSection(TLOFCOFF.getCOFFSection(".section .drectve",
752 true,
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000753 SectionKind::getMetadata()));
Chris Lattner10b318b2010-01-17 21:43:43 +0000754 for (unsigned i = 0, e = DLLExportedGlobals.size(); i != e; ++i)
755 O << "\t.ascii \" -export:" << *DLLExportedGlobals[i] << ",data\"\n";
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000756
Chris Lattner10b318b2010-01-17 21:43:43 +0000757 for (unsigned i = 0, e = DLLExportedFns.size(); i != e; ++i)
758 O << "\t.ascii \" -export:" << *DLLExportedFns[i] << "\"\n";
Anton Korobeynikov4fac9472009-10-15 22:36:18 +0000759 }
Chris Lattner0dc32ea2009-09-20 07:41:30 +0000760 }
761 }
762}
763
764
765//===----------------------------------------------------------------------===//
766// Target Registry Stuff
767//===----------------------------------------------------------------------===//
768
769static MCInstPrinter *createX86MCInstPrinter(const Target &T,
770 unsigned SyntaxVariant,
771 const MCAsmInfo &MAI,
772 raw_ostream &O) {
773 if (SyntaxVariant == 0)
774 return new X86ATTInstPrinter(O, MAI);
775 if (SyntaxVariant == 1)
776 return new X86IntelInstPrinter(O, MAI);
777 return 0;
778}
779
780// Force static initialization.
781extern "C" void LLVMInitializeX86AsmPrinter() {
782 RegisterAsmPrinter<X86AsmPrinter> X(TheX86_32Target);
783 RegisterAsmPrinter<X86AsmPrinter> Y(TheX86_64Target);
784
785 TargetRegistry::RegisterMCInstPrinter(TheX86_32Target,createX86MCInstPrinter);
786 TargetRegistry::RegisterMCInstPrinter(TheX86_64Target,createX86MCInstPrinter);
787}