blob: cee802d1650a2a967c165042f149629f34b9900e [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//
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 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"
25#include "llvm/Module.h"
26#include "llvm/Support/Mangler.h"
27#include "llvm/Target/TargetAsmInfo.h"
28#include "llvm/Target/TargetOptions.h"
29#include "llvm/ADT/Statistic.h"
30using namespace llvm;
31
32STATISTIC(EmittedInsts, "Number of machine instrs printed");
33
Evan Cheng477013c2007-10-14 05:57:21 +000034static std::string computePICLabel(unsigned FnNum,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035 const TargetAsmInfo *TAI,
36 const X86Subtarget* Subtarget) {
37 std::string label;
38 if (Subtarget->isTargetDarwin())
Evan Cheng477013c2007-10-14 05:57:21 +000039 label = "\"L" + utostr_32(FnNum) + "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040 else if (Subtarget->isTargetELF())
Evan Cheng477013c2007-10-14 05:57:21 +000041 label = ".Lllvm$" + utostr_32(FnNum) + "$piclabel";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042 else
43 assert(0 && "Don't know how to print PIC label!\n");
44
45 return label;
46}
47
48/// getSectionForFunction - Return the section that we should emit the
49/// specified function body into.
50std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
51 switch (F.getLinkage()) {
52 default: assert(0 && "Unknown linkage type!");
53 case Function::InternalLinkage:
54 case Function::DLLExportLinkage:
55 case Function::ExternalLinkage:
56 return TAI->getTextSection();
57 case Function::WeakLinkage:
58 case Function::LinkOnceLinkage:
59 if (Subtarget->isTargetDarwin()) {
60 return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
61 } else if (Subtarget->isTargetCygMing()) {
62 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"";
63 } else {
64 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
65 ",\"ax\",@progbits";
66 }
67 }
68}
69
70/// runOnMachineFunction - This uses the printMachineInstruction()
71/// method to print assembly for each instruction.
72///
73bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
74 if (TAI->doesSupportDebugInformation()) {
75 // Let PassManager know we need debug information and relay
76 // the MachineModuleInfo address on to DwarfWriter.
Bill Wendlingd1bda4f2007-09-11 08:27:17 +000077 MMI = &getAnalysis<MachineModuleInfo>();
78 DW.SetModuleInfo(MMI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 }
80
81 SetupMachineFunction(MF);
82 O << "\n\n";
83
84 // Print out constants referenced by the function
85 EmitConstantPool(MF.getConstantPool());
86
87 // Print out labels for the function.
88 const Function *F = MF.getFunction();
89 unsigned CC = F->getCallingConv();
90
91 // Populate function information map. Actually, We don't want to populate
92 // non-stdcall or non-fastcall functions' information right now.
93 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
94 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
95
96 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
97
98 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
99
100 switch (F->getLinkage()) {
101 default: assert(0 && "Unknown linkage type!");
102 case Function::InternalLinkage: // Symbols default to internal.
Evan Cheng27f41ab2007-07-25 23:36:05 +0000103 if (Subtarget->isTargetDarwin())
104 // FIXME: This should be parameterized somewhere.
105 EmitAlignment(4, F, 0, true, 0x90);
106 else
107 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 break;
109 case Function::DLLExportLinkage:
110 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
111 //FALLS THROUGH
112 case Function::ExternalLinkage:
Evan Cheng27f41ab2007-07-25 23:36:05 +0000113 if (Subtarget->isTargetDarwin())
114 // FIXME: This should be parameterized somewhere.
115 EmitAlignment(4, F, 0, true, 0x90);
116 else
117 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 O << "\t.globl\t" << CurrentFnName << "\n";
119 break;
120 case Function::LinkOnceLinkage:
121 case Function::WeakLinkage:
122 if (Subtarget->isTargetDarwin()) {
Evan Cheng27f41ab2007-07-25 23:36:05 +0000123 // FIXME: This should be parameterized somewhere.
124 EmitAlignment(4, F, 0, true, 0x90);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 O << "\t.globl\t" << CurrentFnName << "\n";
126 O << "\t.weak_definition\t" << CurrentFnName << "\n";
127 } else if (Subtarget->isTargetCygMing()) {
128 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanc37918d2007-10-05 15:54:58 +0000129 O << "\t.globl\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 O << "\t.linkonce discard\n";
131 } else {
132 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohman721e6582007-07-30 15:08:02 +0000133 O << "\t.weak\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 }
135 break;
136 }
137 if (F->hasHiddenVisibility()) {
138 if (const char *Directive = TAI->getHiddenDirective())
139 O << Directive << CurrentFnName << "\n";
140 } else if (F->hasProtectedVisibility()) {
141 if (const char *Directive = TAI->getProtectedDirective())
142 O << Directive << CurrentFnName << "\n";
143 }
144
145 if (Subtarget->isTargetELF())
Dan Gohman721e6582007-07-30 15:08:02 +0000146 O << "\t.type\t" << CurrentFnName << ",@function\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 else if (Subtarget->isTargetCygMing()) {
148 O << "\t.def\t " << CurrentFnName
149 << ";\t.scl\t" <<
150 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
151 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
152 << ";\t.endef\n";
153 }
154
155 O << CurrentFnName << ":\n";
156 // Add some workaround for linkonce linkage on Cygwin\MinGW
157 if (Subtarget->isTargetCygMing() &&
158 (F->getLinkage() == Function::LinkOnceLinkage ||
159 F->getLinkage() == Function::WeakLinkage))
160 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
161
162 if (TAI->doesSupportDebugInformation()) {
163 // Emit pre-function debug information.
164 DW.BeginFunction(&MF);
165 }
166
167 // Print out code for the function.
168 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
169 I != E; ++I) {
170 // Print a label for the basic block.
Dan Gohman3f7d94b2007-10-03 19:26:29 +0000171 if (!I->pred_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172 printBasicBlockLabel(I, true);
173 O << '\n';
174 }
175 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
176 II != E; ++II) {
177 // Print the assembly for the instruction.
178 O << "\t";
179 printMachineInstruction(II);
180 }
181 }
182
183 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmandd1aa3a2007-08-01 14:42:30 +0000184 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185
186 if (TAI->doesSupportDebugInformation()) {
187 // Emit post-function debug information.
188 DW.EndFunction();
189 }
190
191 // Print out jump tables referenced by the function.
192 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
193
194 // We didn't modify anything.
195 return false;
196}
197
198static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
199 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
200}
201
202static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
203 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
204}
205
206void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
207 const char *Modifier, bool NotRIPRel) {
208 const MachineOperand &MO = MI->getOperand(OpNo);
209 const MRegisterInfo &RI = *TM.getRegisterInfo();
210 switch (MO.getType()) {
211 case MachineOperand::MO_Register: {
212 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
213 "Virtual registers should not make it this far!");
214 O << '%';
215 unsigned Reg = MO.getReg();
216 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
217 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
218 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
219 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
220 Reg = getX86SubSuperRegister(Reg, VT);
221 }
222 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
223 O << (char)tolower(*Name);
224 return;
225 }
226
227 case MachineOperand::MO_Immediate:
228 if (!Modifier ||
229 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
230 O << '$';
231 O << MO.getImmedValue();
232 return;
233 case MachineOperand::MO_MachineBasicBlock:
234 printBasicBlockLabel(MO.getMachineBasicBlock());
235 return;
236 case MachineOperand::MO_JumpTableIndex: {
237 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
238 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000239 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
240 << MO.getJumpTableIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241
242 if (TM.getRelocationModel() == Reloc::PIC_) {
243 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000244 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
245 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 else if (Subtarget->isPICStyleGOT())
247 O << "@GOTOFF";
248 }
249
250 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
251 O << "(%rip)";
252 return;
253 }
254 case MachineOperand::MO_ConstantPoolIndex: {
255 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
256 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000257 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
258 << MO.getConstantPoolIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259
260 if (TM.getRelocationModel() == Reloc::PIC_) {
261 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000262 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
263 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 else if (Subtarget->isPICStyleGOT())
265 O << "@GOTOFF";
266 }
267
268 int Offset = MO.getOffset();
269 if (Offset > 0)
270 O << "+" << Offset;
271 else if (Offset < 0)
272 O << Offset;
273
274 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
275 O << "(%rip)";
276 return;
277 }
278 case MachineOperand::MO_GlobalAddress: {
279 bool isCallOp = Modifier && !strcmp(Modifier, "call");
280 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
281 bool needCloseParen = false;
282
283 GlobalValue *GV = MO.getGlobal();
284 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
285 bool isThreadLocal = GVar && GVar->isThreadLocal();
286
287 std::string Name = Mang->getValueName(GV);
288 X86SharedAsmPrinter::decorateName(Name, GV);
289
290 if (!isMemOp && !isCallOp)
291 O << '$';
292 else if (Name[0] == '$') {
293 // The name begins with a dollar-sign. In order to avoid having it look
294 // like an integer immediate to the assembler, enclose it in parens.
295 O << '(';
296 needCloseParen = true;
297 }
298
299 if (printStub(TM, Subtarget)) {
300 // Link-once, declaration, or Weakly-linked global variables need
301 // non-lazily-resolved stubs
302 if (GV->isDeclaration() ||
303 GV->hasWeakLinkage() ||
304 GV->hasLinkOnceLinkage()) {
305 // Dynamically-resolved functions need a stub for the function.
306 if (isCallOp && isa<Function>(GV)) {
307 FnStubs.insert(Name);
308 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
309 } else {
310 GVStubs.insert(Name);
311 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
312 }
313 } else {
314 if (GV->hasDLLImportLinkage())
315 O << "__imp_";
316 O << Name;
317 }
318
319 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000320 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
321 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 } else {
323 if (GV->hasDLLImportLinkage()) {
324 O << "__imp_";
325 }
326 O << Name;
327
328 if (isCallOp && isa<Function>(GV)) {
329 if (printGOT(TM, Subtarget)) {
330 // Assemble call via PLT for non-local symbols
331 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
332 GV->isDeclaration())
333 O << "@PLT";
334 }
335 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
336 // Save function name for later type emission
337 FnStubs.insert(Name);
338 }
339 }
340
341 if (GV->hasExternalWeakLinkage())
342 ExtWeakSymbols.insert(GV);
343
344 int Offset = MO.getOffset();
345 if (Offset > 0)
346 O << "+" << Offset;
347 else if (Offset < 0)
348 O << Offset;
349
350 if (isThreadLocal) {
351 if (TM.getRelocationModel() == Reloc::PIC_)
352 O << "@TLSGD"; // general dynamic TLS model
353 else
354 if (GV->isDeclaration())
355 O << "@INDNTPOFF"; // initial exec TLS model
356 else
357 O << "@NTPOFF"; // local exec TLS model
358 } else if (isMemOp) {
359 if (printGOT(TM, Subtarget)) {
360 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
361 O << "@GOT";
362 else
363 O << "@GOTOFF";
Chris Lattnerfa7ef612007-11-04 19:23:28 +0000364 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
365 TM.getRelocationModel() != Reloc::Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 if ((GV->isDeclaration() ||
367 GV->hasWeakLinkage() ||
368 GV->hasLinkOnceLinkage()) &&
369 TM.getRelocationModel() != Reloc::Static)
370 O << "@GOTPCREL";
371
372 if (needCloseParen) {
373 needCloseParen = false;
374 O << ')';
375 }
376
377 // Use rip when possible to reduce code size, except when
378 // index or base register are also part of the address. e.g.
379 // foo(%rip)(%rcx,%rax,4) is not legal
380 O << "(%rip)";
381 }
382 }
383
384 if (needCloseParen)
385 O << ')';
386
387 return;
388 }
389 case MachineOperand::MO_ExternalSymbol: {
390 bool isCallOp = Modifier && !strcmp(Modifier, "call");
391 bool needCloseParen = false;
392 std::string Name(TAI->getGlobalPrefix());
393 Name += MO.getSymbolName();
394 if (isCallOp && printStub(TM, Subtarget)) {
395 FnStubs.insert(Name);
396 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
397 return;
398 }
399 if (!isCallOp)
400 O << '$';
401 else if (Name[0] == '$') {
402 // The name begins with a dollar-sign. In order to avoid having it look
403 // like an integer immediate to the assembler, enclose it in parens.
404 O << '(';
405 needCloseParen = true;
406 }
407
408 O << Name;
409
410 if (printGOT(TM, Subtarget)) {
411 std::string GOTName(TAI->getGlobalPrefix());
412 GOTName+="_GLOBAL_OFFSET_TABLE_";
413 if (Name == GOTName)
414 // HACK! Emit extra offset to PC during printing GOT offset to
415 // compensate for the size of popl instruction. The resulting code
416 // should look like:
417 // call .piclabel
418 // piclabel:
419 // popl %some_register
420 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
421 O << " + [.-"
Evan Cheng477013c2007-10-14 05:57:21 +0000422 << computePICLabel(getFunctionNumber(), TAI, Subtarget) << "]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423
424 if (isCallOp)
425 O << "@PLT";
426 }
427
428 if (needCloseParen)
429 O << ')';
430
431 if (!isCallOp && Subtarget->isPICStyleRIPRel())
432 O << "(%rip)";
433
434 return;
435 }
436 default:
437 O << "<unknown operand type>"; return;
438 }
439}
440
441void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
442 unsigned char value = MI->getOperand(Op).getImmedValue();
443 assert(value <= 7 && "Invalid ssecc argument!");
444 switch (value) {
445 case 0: O << "eq"; break;
446 case 1: O << "lt"; break;
447 case 2: O << "le"; break;
448 case 3: O << "unord"; break;
449 case 4: O << "neq"; break;
450 case 5: O << "nlt"; break;
451 case 6: O << "nle"; break;
452 case 7: O << "ord"; break;
453 }
454}
455
456void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
457 const char *Modifier){
458 assert(isMem(MI, Op) && "Invalid memory reference!");
459 MachineOperand BaseReg = MI->getOperand(Op);
460 MachineOperand IndexReg = MI->getOperand(Op+2);
461 const MachineOperand &DispSpec = MI->getOperand(Op+3);
462
463 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
464 if (DispSpec.isGlobalAddress() ||
465 DispSpec.isConstantPoolIndex() ||
466 DispSpec.isJumpTableIndex()) {
467 printOperand(MI, Op+3, "mem", NotRIPRel);
468 } else {
469 int DispVal = DispSpec.getImmedValue();
470 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
471 O << DispVal;
472 }
473
474 if (IndexReg.getReg() || BaseReg.getReg()) {
475 unsigned ScaleVal = MI->getOperand(Op+1).getImmedValue();
476 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
477
478 // There are cases where we can end up with ESP/RSP in the indexreg slot.
479 // If this happens, swap the base/index register to support assemblers that
480 // don't work when the index is *SP.
481 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
482 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
483 std::swap(BaseReg, IndexReg);
484 std::swap(BaseRegOperand, IndexRegOperand);
485 }
486
487 O << "(";
488 if (BaseReg.getReg())
489 printOperand(MI, Op+BaseRegOperand, Modifier);
490
491 if (IndexReg.getReg()) {
492 O << ",";
493 printOperand(MI, Op+IndexRegOperand, Modifier);
494 if (ScaleVal != 1)
495 O << "," << ScaleVal;
496 }
497 O << ")";
498 }
499}
500
Evan Cheng6fb06762007-11-09 01:32:10 +0000501void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
502 const MachineBasicBlock *MBB) const {
503 if (!TAI->getSetDirective())
504 return;
505
506 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
507 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
508 printBasicBlockLabel(MBB, false, false);
Evan Cheng5da12252007-11-09 19:11:23 +0000509 if (Subtarget->isPICStyleRIPRel())
510 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
511 << '_' << uid << '\n';
512 else
513 O << '-' << computePICLabel(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Cheng6fb06762007-11-09 01:32:10 +0000514}
515
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng477013c2007-10-14 05:57:21 +0000517 std::string label = computePICLabel(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 O << label << "\n" << label << ":";
519}
520
521
522bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
523 const char Mode) {
524 const MRegisterInfo &RI = *TM.getRegisterInfo();
525 unsigned Reg = MO.getReg();
526 switch (Mode) {
527 default: return true; // Unknown mode.
528 case 'b': // Print QImode register
529 Reg = getX86SubSuperRegister(Reg, MVT::i8);
530 break;
531 case 'h': // Print QImode high register
532 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
533 break;
534 case 'w': // Print HImode register
535 Reg = getX86SubSuperRegister(Reg, MVT::i16);
536 break;
537 case 'k': // Print SImode register
538 Reg = getX86SubSuperRegister(Reg, MVT::i32);
539 break;
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000540 case 'q': // Print DImode register
541 Reg = getX86SubSuperRegister(Reg, MVT::i64);
542 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 }
544
545 O << '%';
546 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
547 O << (char)tolower(*Name);
548 return false;
549}
550
551/// PrintAsmOperand - Print out an operand for an inline asm expression.
552///
553bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
554 unsigned AsmVariant,
555 const char *ExtraCode) {
556 // Does this asm operand have a single letter operand modifier?
557 if (ExtraCode && ExtraCode[0]) {
558 if (ExtraCode[1] != 0) return true; // Unknown modifier.
559
560 switch (ExtraCode[0]) {
561 default: return true; // Unknown modifier.
562 case 'c': // Don't print "$" before a global var name or constant.
563 printOperand(MI, OpNo, "mem");
564 return false;
565 case 'b': // Print QImode register
566 case 'h': // Print QImode high register
567 case 'w': // Print HImode register
568 case 'k': // Print SImode register
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000569 case 'q': // Print DImode register
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000570 if (MI->getOperand(OpNo).isRegister())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
572 printOperand(MI, OpNo);
573 return false;
574
575 case 'P': // Don't print @PLT, but do print as memory.
576 printOperand(MI, OpNo, "mem");
577 return false;
578 }
579 }
580
581 printOperand(MI, OpNo);
582 return false;
583}
584
585bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
586 unsigned OpNo,
587 unsigned AsmVariant,
588 const char *ExtraCode) {
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000589 if (ExtraCode && ExtraCode[0]) {
590 if (ExtraCode[1] != 0) return true; // Unknown modifier.
591
592 switch (ExtraCode[0]) {
593 default: return true; // Unknown modifier.
594 case 'b': // Print QImode register
595 case 'h': // Print QImode high register
596 case 'w': // Print HImode register
597 case 'k': // Print SImode register
598 case 'q': // Print SImode register
599 // These only apply to registers, ignore on mem.
600 break;
601 }
602 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603 printMemReference(MI, OpNo);
604 return false;
605}
606
607/// printMachineInstruction -- Print out a single X86 LLVM instruction
608/// MI in AT&T syntax to the current output stream.
609///
610void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
611 ++EmittedInsts;
612
613 // See if a truncate instruction can be turned into a nop.
614 switch (MI->getOpcode()) {
615 default: break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000616 case X86::PsMOVZX64rr32:
617 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
618 break;
619 }
620
621 // Call the autogenerated instruction printer routines.
622 printInstruction(MI);
623}
624
625// Include the auto-generated portion of the assembly writer.
626#include "X86GenAsmWriter.inc"
627