blob: 20f2f003722d72e0e73a79164fac270a6128b2ef [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to AT&T assembly -----===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// 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'.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "asm-printer"
17#include "X86ATTAsmPrinter.h"
18#include "X86.h"
19#include "X86COFF.h"
20#include "X86MachineFunctionInfo.h"
21#include "X86TargetMachine.h"
22#include "X86TargetAsmInfo.h"
23#include "llvm/ADT/StringExtras.h"
24#include "llvm/CallingConv.h"
Anton Korobeynikov5772c672007-11-14 09:18:41 +000025#include "llvm/CodeGen/MachineJumpTableInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/Module.h"
27#include "llvm/Support/Mangler.h"
28#include "llvm/Target/TargetAsmInfo.h"
29#include "llvm/Target/TargetOptions.h"
30#include "llvm/ADT/Statistic.h"
31using namespace llvm;
32
33STATISTIC(EmittedInsts, "Number of machine instrs printed");
34
Evan Cheng0729ccf2008-01-05 00:41:47 +000035static std::string getPICLabelString(unsigned FnNum,
36 const TargetAsmInfo *TAI,
37 const X86Subtarget* Subtarget) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038 std::string label;
39 if (Subtarget->isTargetDarwin())
Evan Cheng477013c2007-10-14 05:57:21 +000040 label = "\"L" + utostr_32(FnNum) + "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041 else if (Subtarget->isTargetELF())
Evan Cheng0729ccf2008-01-05 00:41:47 +000042 label = ".Lllvm$" + utostr_32(FnNum) + "." + "$piclabel";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043 else
44 assert(0 && "Don't know how to print PIC label!\n");
45
46 return label;
47}
48
49/// getSectionForFunction - Return the section that we should emit the
50/// specified function body into.
51std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
52 switch (F.getLinkage()) {
53 default: assert(0 && "Unknown linkage type!");
54 case Function::InternalLinkage:
55 case Function::DLLExportLinkage:
56 case Function::ExternalLinkage:
57 return TAI->getTextSection();
58 case Function::WeakLinkage:
59 case Function::LinkOnceLinkage:
60 if (Subtarget->isTargetDarwin()) {
61 return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
62 } else if (Subtarget->isTargetCygMing()) {
63 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"";
64 } else {
65 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
66 ",\"ax\",@progbits";
67 }
68 }
69}
70
71/// runOnMachineFunction - This uses the printMachineInstruction()
72/// method to print assembly for each instruction.
73///
74bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
75 if (TAI->doesSupportDebugInformation()) {
76 // Let PassManager know we need debug information and relay
77 // the MachineModuleInfo address on to DwarfWriter.
Bill Wendlingd1bda4f2007-09-11 08:27:17 +000078 MMI = &getAnalysis<MachineModuleInfo>();
79 DW.SetModuleInfo(MMI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080 }
81
82 SetupMachineFunction(MF);
83 O << "\n\n";
84
85 // Print out constants referenced by the function
86 EmitConstantPool(MF.getConstantPool());
87
88 // Print out labels for the function.
89 const Function *F = MF.getFunction();
90 unsigned CC = F->getCallingConv();
91
92 // Populate function information map. Actually, We don't want to populate
93 // non-stdcall or non-fastcall functions' information right now.
94 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
95 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
96
97 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
98
99 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
100
101 switch (F->getLinkage()) {
102 default: assert(0 && "Unknown linkage type!");
103 case Function::InternalLinkage: // Symbols default to internal.
Evan Cheng27f41ab2007-07-25 23:36:05 +0000104 if (Subtarget->isTargetDarwin())
105 // FIXME: This should be parameterized somewhere.
106 EmitAlignment(4, F, 0, true, 0x90);
107 else
108 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 break;
110 case Function::DLLExportLinkage:
111 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
112 //FALLS THROUGH
113 case Function::ExternalLinkage:
Evan Cheng27f41ab2007-07-25 23:36:05 +0000114 if (Subtarget->isTargetDarwin())
115 // FIXME: This should be parameterized somewhere.
116 EmitAlignment(4, F, 0, true, 0x90);
117 else
118 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119 O << "\t.globl\t" << CurrentFnName << "\n";
120 break;
121 case Function::LinkOnceLinkage:
122 case Function::WeakLinkage:
123 if (Subtarget->isTargetDarwin()) {
Evan Cheng27f41ab2007-07-25 23:36:05 +0000124 // FIXME: This should be parameterized somewhere.
125 EmitAlignment(4, F, 0, true, 0x90);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 O << "\t.globl\t" << CurrentFnName << "\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000127 O << TAI->getWeakDefDirective() << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 } else if (Subtarget->isTargetCygMing()) {
129 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanc37918d2007-10-05 15:54:58 +0000130 O << "\t.globl\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 O << "\t.linkonce discard\n";
132 } else {
133 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohman721e6582007-07-30 15:08:02 +0000134 O << "\t.weak\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 }
136 break;
137 }
138 if (F->hasHiddenVisibility()) {
139 if (const char *Directive = TAI->getHiddenDirective())
140 O << Directive << CurrentFnName << "\n";
141 } else if (F->hasProtectedVisibility()) {
142 if (const char *Directive = TAI->getProtectedDirective())
143 O << Directive << CurrentFnName << "\n";
144 }
145
146 if (Subtarget->isTargetELF())
Dan Gohman721e6582007-07-30 15:08:02 +0000147 O << "\t.type\t" << CurrentFnName << ",@function\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 else if (Subtarget->isTargetCygMing()) {
149 O << "\t.def\t " << CurrentFnName
150 << ";\t.scl\t" <<
151 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
152 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
153 << ";\t.endef\n";
154 }
155
156 O << CurrentFnName << ":\n";
157 // Add some workaround for linkonce linkage on Cygwin\MinGW
158 if (Subtarget->isTargetCygMing() &&
159 (F->getLinkage() == Function::LinkOnceLinkage ||
160 F->getLinkage() == Function::WeakLinkage))
161 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
162
163 if (TAI->doesSupportDebugInformation()) {
164 // Emit pre-function debug information.
165 DW.BeginFunction(&MF);
166 }
167
Bill Wendlingb5880a72008-01-26 09:03:52 +0000168 if (Subtarget->isTargetDarwin()) {
169 // If the function is empty, then we need to emit *something*. Otherwise,
170 // the function's label might be associated with something that it wasn't
171 // meant to be associated with. We emit a noop in this situation.
172 MachineFunction::iterator I = MF.begin();
173
174 if (++I == MF.end() && MF.front().empty())
175 O << "\tnop\n";
176 }
177
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 // Print out code for the function.
179 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
180 I != E; ++I) {
181 // Print a label for the basic block.
Dan Gohman3f7d94b2007-10-03 19:26:29 +0000182 if (!I->pred_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 printBasicBlockLabel(I, true);
184 O << '\n';
185 }
Bill Wendlingb5880a72008-01-26 09:03:52 +0000186 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
187 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 // Print the assembly for the instruction.
189 O << "\t";
190 printMachineInstruction(II);
191 }
192 }
193
194 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmandd1aa3a2007-08-01 14:42:30 +0000195 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196
197 if (TAI->doesSupportDebugInformation()) {
198 // Emit post-function debug information.
199 DW.EndFunction();
200 }
201
202 // Print out jump tables referenced by the function.
203 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
204
205 // We didn't modify anything.
206 return false;
207}
208
209static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
210 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
211}
212
213static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
214 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
215}
216
217void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
218 const char *Modifier, bool NotRIPRel) {
219 const MachineOperand &MO = MI->getOperand(OpNo);
220 const MRegisterInfo &RI = *TM.getRegisterInfo();
221 switch (MO.getType()) {
222 case MachineOperand::MO_Register: {
223 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
224 "Virtual registers should not make it this far!");
225 O << '%';
226 unsigned Reg = MO.getReg();
227 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
228 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
229 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
230 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
231 Reg = getX86SubSuperRegister(Reg, VT);
232 }
233 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
234 O << (char)tolower(*Name);
235 return;
236 }
237
238 case MachineOperand::MO_Immediate:
239 if (!Modifier ||
240 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
241 O << '$';
Chris Lattnera96056a2007-12-30 20:49:49 +0000242 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 return;
244 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000245 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 return;
247 case MachineOperand::MO_JumpTableIndex: {
248 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
249 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000250 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Chris Lattner6017d482007-12-30 23:10:15 +0000251 << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000252
253 if (TM.getRelocationModel() == Reloc::PIC_) {
254 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000255 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
256 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 else if (Subtarget->isPICStyleGOT())
258 O << "@GOTOFF";
259 }
260
261 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
262 O << "(%rip)";
263 return;
264 }
265 case MachineOperand::MO_ConstantPoolIndex: {
266 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
267 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000268 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Chris Lattner6017d482007-12-30 23:10:15 +0000269 << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270
271 if (TM.getRelocationModel() == Reloc::PIC_) {
272 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000273 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
274 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 else if (Subtarget->isPICStyleGOT())
276 O << "@GOTOFF";
277 }
278
279 int Offset = MO.getOffset();
280 if (Offset > 0)
281 O << "+" << Offset;
282 else if (Offset < 0)
283 O << Offset;
284
285 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
286 O << "(%rip)";
287 return;
288 }
289 case MachineOperand::MO_GlobalAddress: {
290 bool isCallOp = Modifier && !strcmp(Modifier, "call");
291 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
292 bool needCloseParen = false;
293
294 GlobalValue *GV = MO.getGlobal();
295 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
296 bool isThreadLocal = GVar && GVar->isThreadLocal();
297
298 std::string Name = Mang->getValueName(GV);
299 X86SharedAsmPrinter::decorateName(Name, GV);
300
301 if (!isMemOp && !isCallOp)
302 O << '$';
303 else if (Name[0] == '$') {
304 // The name begins with a dollar-sign. In order to avoid having it look
305 // like an integer immediate to the assembler, enclose it in parens.
306 O << '(';
307 needCloseParen = true;
308 }
309
310 if (printStub(TM, Subtarget)) {
311 // Link-once, declaration, or Weakly-linked global variables need
312 // non-lazily-resolved stubs
313 if (GV->isDeclaration() ||
314 GV->hasWeakLinkage() ||
315 GV->hasLinkOnceLinkage()) {
316 // Dynamically-resolved functions need a stub for the function.
317 if (isCallOp && isa<Function>(GV)) {
318 FnStubs.insert(Name);
319 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
320 } else {
321 GVStubs.insert(Name);
322 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
323 }
324 } else {
325 if (GV->hasDLLImportLinkage())
326 O << "__imp_";
327 O << Name;
328 }
329
330 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng0729ccf2008-01-05 00:41:47 +0000331 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332 } else {
333 if (GV->hasDLLImportLinkage()) {
334 O << "__imp_";
335 }
336 O << Name;
337
338 if (isCallOp && isa<Function>(GV)) {
339 if (printGOT(TM, Subtarget)) {
340 // Assemble call via PLT for non-local symbols
341 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
342 GV->isDeclaration())
343 O << "@PLT";
344 }
345 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
346 // Save function name for later type emission
347 FnStubs.insert(Name);
348 }
349 }
350
351 if (GV->hasExternalWeakLinkage())
352 ExtWeakSymbols.insert(GV);
353
354 int Offset = MO.getOffset();
355 if (Offset > 0)
356 O << "+" << Offset;
357 else if (Offset < 0)
358 O << Offset;
359
360 if (isThreadLocal) {
361 if (TM.getRelocationModel() == Reloc::PIC_)
362 O << "@TLSGD"; // general dynamic TLS model
363 else
364 if (GV->isDeclaration())
365 O << "@INDNTPOFF"; // initial exec TLS model
366 else
367 O << "@NTPOFF"; // local exec TLS model
368 } else if (isMemOp) {
369 if (printGOT(TM, Subtarget)) {
370 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
371 O << "@GOT";
372 else
373 O << "@GOTOFF";
Chris Lattnerfa7ef612007-11-04 19:23:28 +0000374 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
375 TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov0d38b7d2008-01-20 13:59:37 +0000376 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377 O << "@GOTPCREL";
378
379 if (needCloseParen) {
380 needCloseParen = false;
381 O << ')';
382 }
383
384 // Use rip when possible to reduce code size, except when
385 // index or base register are also part of the address. e.g.
386 // foo(%rip)(%rcx,%rax,4) is not legal
387 O << "(%rip)";
388 }
389 }
390
391 if (needCloseParen)
392 O << ')';
393
394 return;
395 }
396 case MachineOperand::MO_ExternalSymbol: {
397 bool isCallOp = Modifier && !strcmp(Modifier, "call");
398 bool needCloseParen = false;
399 std::string Name(TAI->getGlobalPrefix());
400 Name += MO.getSymbolName();
401 if (isCallOp && printStub(TM, Subtarget)) {
402 FnStubs.insert(Name);
403 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
404 return;
405 }
406 if (!isCallOp)
407 O << '$';
408 else if (Name[0] == '$') {
409 // The name begins with a dollar-sign. In order to avoid having it look
410 // like an integer immediate to the assembler, enclose it in parens.
411 O << '(';
412 needCloseParen = true;
413 }
414
415 O << Name;
416
417 if (printGOT(TM, Subtarget)) {
418 std::string GOTName(TAI->getGlobalPrefix());
419 GOTName+="_GLOBAL_OFFSET_TABLE_";
420 if (Name == GOTName)
421 // HACK! Emit extra offset to PC during printing GOT offset to
422 // compensate for the size of popl instruction. The resulting code
423 // should look like:
424 // call .piclabel
425 // piclabel:
426 // popl %some_register
427 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
428 O << " + [.-"
Evan Cheng0729ccf2008-01-05 00:41:47 +0000429 << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430
431 if (isCallOp)
432 O << "@PLT";
433 }
434
435 if (needCloseParen)
436 O << ')';
437
438 if (!isCallOp && Subtarget->isPICStyleRIPRel())
439 O << "(%rip)";
440
441 return;
442 }
443 default:
444 O << "<unknown operand type>"; return;
445 }
446}
447
448void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000449 unsigned char value = MI->getOperand(Op).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 assert(value <= 7 && "Invalid ssecc argument!");
451 switch (value) {
452 case 0: O << "eq"; break;
453 case 1: O << "lt"; break;
454 case 2: O << "le"; break;
455 case 3: O << "unord"; break;
456 case 4: O << "neq"; break;
457 case 5: O << "nlt"; break;
458 case 6: O << "nle"; break;
459 case 7: O << "ord"; break;
460 }
461}
462
463void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
464 const char *Modifier){
465 assert(isMem(MI, Op) && "Invalid memory reference!");
466 MachineOperand BaseReg = MI->getOperand(Op);
467 MachineOperand IndexReg = MI->getOperand(Op+2);
468 const MachineOperand &DispSpec = MI->getOperand(Op+3);
469
470 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
471 if (DispSpec.isGlobalAddress() ||
472 DispSpec.isConstantPoolIndex() ||
473 DispSpec.isJumpTableIndex()) {
474 printOperand(MI, Op+3, "mem", NotRIPRel);
475 } else {
Chris Lattnera96056a2007-12-30 20:49:49 +0000476 int DispVal = DispSpec.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
478 O << DispVal;
479 }
480
481 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000482 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
484
485 // There are cases where we can end up with ESP/RSP in the indexreg slot.
486 // If this happens, swap the base/index register to support assemblers that
487 // don't work when the index is *SP.
488 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
489 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
490 std::swap(BaseReg, IndexReg);
491 std::swap(BaseRegOperand, IndexRegOperand);
492 }
493
494 O << "(";
495 if (BaseReg.getReg())
496 printOperand(MI, Op+BaseRegOperand, Modifier);
497
498 if (IndexReg.getReg()) {
499 O << ",";
500 printOperand(MI, Op+IndexRegOperand, Modifier);
501 if (ScaleVal != 1)
502 O << "," << ScaleVal;
503 }
504 O << ")";
505 }
506}
507
Evan Cheng6fb06762007-11-09 01:32:10 +0000508void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
509 const MachineBasicBlock *MBB) const {
510 if (!TAI->getSetDirective())
511 return;
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000512
513 // We don't need .set machinery if we have GOT-style relocations
514 if (Subtarget->isPICStyleGOT())
515 return;
516
Evan Cheng6fb06762007-11-09 01:32:10 +0000517 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
518 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
519 printBasicBlockLabel(MBB, false, false);
Evan Cheng5da12252007-11-09 19:11:23 +0000520 if (Subtarget->isPICStyleRIPRel())
521 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
522 << '_' << uid << '\n';
523 else
Evan Cheng0729ccf2008-01-05 00:41:47 +0000524 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Cheng6fb06762007-11-09 01:32:10 +0000525}
526
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng0729ccf2008-01-05 00:41:47 +0000528 std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 O << label << "\n" << label << ":";
530}
531
532
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000533void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
534 const MachineBasicBlock *MBB,
535 unsigned uid) const
536{
537 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
538 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
539
540 O << JTEntryDirective << ' ';
541
542 if (TM.getRelocationModel() == Reloc::PIC_) {
543 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
544 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
545 << '_' << uid << "_set_" << MBB->getNumber();
546 } else if (Subtarget->isPICStyleGOT()) {
547 printBasicBlockLabel(MBB, false, false);
548 O << "@GOTOFF";
549 } else
550 assert(0 && "Don't know how to print MBB label for this PIC mode");
551 } else
552 printBasicBlockLabel(MBB, false, false);
553}
554
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
556 const char Mode) {
557 const MRegisterInfo &RI = *TM.getRegisterInfo();
558 unsigned Reg = MO.getReg();
559 switch (Mode) {
560 default: return true; // Unknown mode.
561 case 'b': // Print QImode register
562 Reg = getX86SubSuperRegister(Reg, MVT::i8);
563 break;
564 case 'h': // Print QImode high register
565 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
566 break;
567 case 'w': // Print HImode register
568 Reg = getX86SubSuperRegister(Reg, MVT::i16);
569 break;
570 case 'k': // Print SImode register
571 Reg = getX86SubSuperRegister(Reg, MVT::i32);
572 break;
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000573 case 'q': // Print DImode register
574 Reg = getX86SubSuperRegister(Reg, MVT::i64);
575 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 }
577
578 O << '%';
579 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
580 O << (char)tolower(*Name);
581 return false;
582}
583
584/// PrintAsmOperand - Print out an operand for an inline asm expression.
585///
586bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
587 unsigned AsmVariant,
588 const char *ExtraCode) {
589 // Does this asm operand have a single letter operand modifier?
590 if (ExtraCode && ExtraCode[0]) {
591 if (ExtraCode[1] != 0) return true; // Unknown modifier.
592
593 switch (ExtraCode[0]) {
594 default: return true; // Unknown modifier.
595 case 'c': // Don't print "$" before a global var name or constant.
596 printOperand(MI, OpNo, "mem");
597 return false;
598 case 'b': // Print QImode register
599 case 'h': // Print QImode high register
600 case 'w': // Print HImode register
601 case 'k': // Print SImode register
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000602 case 'q': // Print DImode register
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000603 if (MI->getOperand(OpNo).isRegister())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
605 printOperand(MI, OpNo);
606 return false;
607
608 case 'P': // Don't print @PLT, but do print as memory.
609 printOperand(MI, OpNo, "mem");
610 return false;
611 }
612 }
613
614 printOperand(MI, OpNo);
615 return false;
616}
617
618bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
619 unsigned OpNo,
620 unsigned AsmVariant,
621 const char *ExtraCode) {
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000622 if (ExtraCode && ExtraCode[0]) {
623 if (ExtraCode[1] != 0) return true; // Unknown modifier.
624
625 switch (ExtraCode[0]) {
626 default: return true; // Unknown modifier.
627 case 'b': // Print QImode register
628 case 'h': // Print QImode high register
629 case 'w': // Print HImode register
630 case 'k': // Print SImode register
631 case 'q': // Print SImode register
632 // These only apply to registers, ignore on mem.
633 break;
634 }
635 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 printMemReference(MI, OpNo);
637 return false;
638}
639
640/// printMachineInstruction -- Print out a single X86 LLVM instruction
641/// MI in AT&T syntax to the current output stream.
642///
643void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
644 ++EmittedInsts;
645
646 // See if a truncate instruction can be turned into a nop.
647 switch (MI->getOpcode()) {
648 default: break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 case X86::PsMOVZX64rr32:
650 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
651 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652 }
653
654 // Call the autogenerated instruction printer routines.
655 printInstruction(MI);
656}
657
658// Include the auto-generated portion of the assembly writer.
659#include "X86GenAsmWriter.inc"
660