blob: 44040977fed7e0eb16126f9b0f1f8c81f8801dee [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"
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 Cheng477013c2007-10-14 05:57:21 +000035static std::string computePICLabel(unsigned FnNum,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036 const TargetAsmInfo *TAI,
37 const X86Subtarget* Subtarget) {
38 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 Cheng477013c2007-10-14 05:57:21 +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";
127 O << "\t.weak_definition\t" << CurrentFnName << "\n";
128 } 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
168 // Print out code for the function.
169 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
170 I != E; ++I) {
171 // Print a label for the basic block.
Dan Gohman3f7d94b2007-10-03 19:26:29 +0000172 if (!I->pred_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 printBasicBlockLabel(I, true);
174 O << '\n';
175 }
176 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
177 II != E; ++II) {
178 // Print the assembly for the instruction.
179 O << "\t";
180 printMachineInstruction(II);
181 }
182 }
183
184 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmandd1aa3a2007-08-01 14:42:30 +0000185 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186
187 if (TAI->doesSupportDebugInformation()) {
188 // Emit post-function debug information.
189 DW.EndFunction();
190 }
191
192 // Print out jump tables referenced by the function.
193 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
194
195 // We didn't modify anything.
196 return false;
197}
198
199static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
200 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
201}
202
203static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
204 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
205}
206
207void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
208 const char *Modifier, bool NotRIPRel) {
209 const MachineOperand &MO = MI->getOperand(OpNo);
210 const MRegisterInfo &RI = *TM.getRegisterInfo();
211 switch (MO.getType()) {
212 case MachineOperand::MO_Register: {
213 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
214 "Virtual registers should not make it this far!");
215 O << '%';
216 unsigned Reg = MO.getReg();
217 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
218 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
219 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
220 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
221 Reg = getX86SubSuperRegister(Reg, VT);
222 }
223 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
224 O << (char)tolower(*Name);
225 return;
226 }
227
228 case MachineOperand::MO_Immediate:
229 if (!Modifier ||
230 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
231 O << '$';
232 O << MO.getImmedValue();
233 return;
234 case MachineOperand::MO_MachineBasicBlock:
235 printBasicBlockLabel(MO.getMachineBasicBlock());
236 return;
237 case MachineOperand::MO_JumpTableIndex: {
238 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
239 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000240 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
241 << MO.getJumpTableIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242
243 if (TM.getRelocationModel() == Reloc::PIC_) {
244 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000245 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
246 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 else if (Subtarget->isPICStyleGOT())
248 O << "@GOTOFF";
249 }
250
251 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
252 O << "(%rip)";
253 return;
254 }
255 case MachineOperand::MO_ConstantPoolIndex: {
256 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
257 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000258 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
259 << MO.getConstantPoolIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260
261 if (TM.getRelocationModel() == Reloc::PIC_) {
262 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000263 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
264 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 else if (Subtarget->isPICStyleGOT())
266 O << "@GOTOFF";
267 }
268
269 int Offset = MO.getOffset();
270 if (Offset > 0)
271 O << "+" << Offset;
272 else if (Offset < 0)
273 O << Offset;
274
275 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
276 O << "(%rip)";
277 return;
278 }
279 case MachineOperand::MO_GlobalAddress: {
280 bool isCallOp = Modifier && !strcmp(Modifier, "call");
281 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
282 bool needCloseParen = false;
283
284 GlobalValue *GV = MO.getGlobal();
285 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
286 bool isThreadLocal = GVar && GVar->isThreadLocal();
287
288 std::string Name = Mang->getValueName(GV);
289 X86SharedAsmPrinter::decorateName(Name, GV);
290
291 if (!isMemOp && !isCallOp)
292 O << '$';
293 else if (Name[0] == '$') {
294 // The name begins with a dollar-sign. In order to avoid having it look
295 // like an integer immediate to the assembler, enclose it in parens.
296 O << '(';
297 needCloseParen = true;
298 }
299
300 if (printStub(TM, Subtarget)) {
301 // Link-once, declaration, or Weakly-linked global variables need
302 // non-lazily-resolved stubs
303 if (GV->isDeclaration() ||
304 GV->hasWeakLinkage() ||
305 GV->hasLinkOnceLinkage()) {
306 // Dynamically-resolved functions need a stub for the function.
307 if (isCallOp && isa<Function>(GV)) {
308 FnStubs.insert(Name);
309 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
310 } else {
311 GVStubs.insert(Name);
312 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
313 }
314 } else {
315 if (GV->hasDLLImportLinkage())
316 O << "__imp_";
317 O << Name;
318 }
319
320 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000321 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
322 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 } else {
324 if (GV->hasDLLImportLinkage()) {
325 O << "__imp_";
326 }
327 O << Name;
328
329 if (isCallOp && isa<Function>(GV)) {
330 if (printGOT(TM, Subtarget)) {
331 // Assemble call via PLT for non-local symbols
332 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
333 GV->isDeclaration())
334 O << "@PLT";
335 }
336 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
337 // Save function name for later type emission
338 FnStubs.insert(Name);
339 }
340 }
341
342 if (GV->hasExternalWeakLinkage())
343 ExtWeakSymbols.insert(GV);
344
345 int Offset = MO.getOffset();
346 if (Offset > 0)
347 O << "+" << Offset;
348 else if (Offset < 0)
349 O << Offset;
350
351 if (isThreadLocal) {
352 if (TM.getRelocationModel() == Reloc::PIC_)
353 O << "@TLSGD"; // general dynamic TLS model
354 else
355 if (GV->isDeclaration())
356 O << "@INDNTPOFF"; // initial exec TLS model
357 else
358 O << "@NTPOFF"; // local exec TLS model
359 } else if (isMemOp) {
360 if (printGOT(TM, Subtarget)) {
361 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
362 O << "@GOT";
363 else
364 O << "@GOTOFF";
Chris Lattnerfa7ef612007-11-04 19:23:28 +0000365 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
366 TM.getRelocationModel() != Reloc::Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 if ((GV->isDeclaration() ||
368 GV->hasWeakLinkage() ||
369 GV->hasLinkOnceLinkage()) &&
370 TM.getRelocationModel() != Reloc::Static)
371 O << "@GOTPCREL";
372
373 if (needCloseParen) {
374 needCloseParen = false;
375 O << ')';
376 }
377
378 // Use rip when possible to reduce code size, except when
379 // index or base register are also part of the address. e.g.
380 // foo(%rip)(%rcx,%rax,4) is not legal
381 O << "(%rip)";
382 }
383 }
384
385 if (needCloseParen)
386 O << ')';
387
388 return;
389 }
390 case MachineOperand::MO_ExternalSymbol: {
391 bool isCallOp = Modifier && !strcmp(Modifier, "call");
392 bool needCloseParen = false;
393 std::string Name(TAI->getGlobalPrefix());
394 Name += MO.getSymbolName();
395 if (isCallOp && printStub(TM, Subtarget)) {
396 FnStubs.insert(Name);
397 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
398 return;
399 }
400 if (!isCallOp)
401 O << '$';
402 else if (Name[0] == '$') {
403 // The name begins with a dollar-sign. In order to avoid having it look
404 // like an integer immediate to the assembler, enclose it in parens.
405 O << '(';
406 needCloseParen = true;
407 }
408
409 O << Name;
410
411 if (printGOT(TM, Subtarget)) {
412 std::string GOTName(TAI->getGlobalPrefix());
413 GOTName+="_GLOBAL_OFFSET_TABLE_";
414 if (Name == GOTName)
415 // HACK! Emit extra offset to PC during printing GOT offset to
416 // compensate for the size of popl instruction. The resulting code
417 // should look like:
418 // call .piclabel
419 // piclabel:
420 // popl %some_register
421 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
422 O << " + [.-"
Evan Cheng477013c2007-10-14 05:57:21 +0000423 << computePICLabel(getFunctionNumber(), TAI, Subtarget) << "]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424
425 if (isCallOp)
426 O << "@PLT";
427 }
428
429 if (needCloseParen)
430 O << ')';
431
432 if (!isCallOp && Subtarget->isPICStyleRIPRel())
433 O << "(%rip)";
434
435 return;
436 }
437 default:
438 O << "<unknown operand type>"; return;
439 }
440}
441
442void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
443 unsigned char value = MI->getOperand(Op).getImmedValue();
444 assert(value <= 7 && "Invalid ssecc argument!");
445 switch (value) {
446 case 0: O << "eq"; break;
447 case 1: O << "lt"; break;
448 case 2: O << "le"; break;
449 case 3: O << "unord"; break;
450 case 4: O << "neq"; break;
451 case 5: O << "nlt"; break;
452 case 6: O << "nle"; break;
453 case 7: O << "ord"; break;
454 }
455}
456
457void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
458 const char *Modifier){
459 assert(isMem(MI, Op) && "Invalid memory reference!");
460 MachineOperand BaseReg = MI->getOperand(Op);
461 MachineOperand IndexReg = MI->getOperand(Op+2);
462 const MachineOperand &DispSpec = MI->getOperand(Op+3);
463
464 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
465 if (DispSpec.isGlobalAddress() ||
466 DispSpec.isConstantPoolIndex() ||
467 DispSpec.isJumpTableIndex()) {
468 printOperand(MI, Op+3, "mem", NotRIPRel);
469 } else {
470 int DispVal = DispSpec.getImmedValue();
471 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
472 O << DispVal;
473 }
474
475 if (IndexReg.getReg() || BaseReg.getReg()) {
476 unsigned ScaleVal = MI->getOperand(Op+1).getImmedValue();
477 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
478
479 // There are cases where we can end up with ESP/RSP in the indexreg slot.
480 // If this happens, swap the base/index register to support assemblers that
481 // don't work when the index is *SP.
482 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
483 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
484 std::swap(BaseReg, IndexReg);
485 std::swap(BaseRegOperand, IndexRegOperand);
486 }
487
488 O << "(";
489 if (BaseReg.getReg())
490 printOperand(MI, Op+BaseRegOperand, Modifier);
491
492 if (IndexReg.getReg()) {
493 O << ",";
494 printOperand(MI, Op+IndexRegOperand, Modifier);
495 if (ScaleVal != 1)
496 O << "," << ScaleVal;
497 }
498 O << ")";
499 }
500}
501
Evan Cheng6fb06762007-11-09 01:32:10 +0000502void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
503 const MachineBasicBlock *MBB) const {
504 if (!TAI->getSetDirective())
505 return;
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000506
507 // We don't need .set machinery if we have GOT-style relocations
508 if (Subtarget->isPICStyleGOT())
509 return;
510
Evan Cheng6fb06762007-11-09 01:32:10 +0000511 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
512 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
513 printBasicBlockLabel(MBB, false, false);
Evan Cheng5da12252007-11-09 19:11:23 +0000514 if (Subtarget->isPICStyleRIPRel())
515 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
516 << '_' << uid << '\n';
517 else
518 O << '-' << computePICLabel(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Cheng6fb06762007-11-09 01:32:10 +0000519}
520
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng477013c2007-10-14 05:57:21 +0000522 std::string label = computePICLabel(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523 O << label << "\n" << label << ":";
524}
525
526
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000527void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
528 const MachineBasicBlock *MBB,
529 unsigned uid) const
530{
531 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
532 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
533
534 O << JTEntryDirective << ' ';
535
536 if (TM.getRelocationModel() == Reloc::PIC_) {
537 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
538 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
539 << '_' << uid << "_set_" << MBB->getNumber();
540 } else if (Subtarget->isPICStyleGOT()) {
541 printBasicBlockLabel(MBB, false, false);
542 O << "@GOTOFF";
543 } else
544 assert(0 && "Don't know how to print MBB label for this PIC mode");
545 } else
546 printBasicBlockLabel(MBB, false, false);
547}
548
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
550 const char Mode) {
551 const MRegisterInfo &RI = *TM.getRegisterInfo();
552 unsigned Reg = MO.getReg();
553 switch (Mode) {
554 default: return true; // Unknown mode.
555 case 'b': // Print QImode register
556 Reg = getX86SubSuperRegister(Reg, MVT::i8);
557 break;
558 case 'h': // Print QImode high register
559 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
560 break;
561 case 'w': // Print HImode register
562 Reg = getX86SubSuperRegister(Reg, MVT::i16);
563 break;
564 case 'k': // Print SImode register
565 Reg = getX86SubSuperRegister(Reg, MVT::i32);
566 break;
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000567 case 'q': // Print DImode register
568 Reg = getX86SubSuperRegister(Reg, MVT::i64);
569 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570 }
571
572 O << '%';
573 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
574 O << (char)tolower(*Name);
575 return false;
576}
577
578/// PrintAsmOperand - Print out an operand for an inline asm expression.
579///
580bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
581 unsigned AsmVariant,
582 const char *ExtraCode) {
583 // Does this asm operand have a single letter operand modifier?
584 if (ExtraCode && ExtraCode[0]) {
585 if (ExtraCode[1] != 0) return true; // Unknown modifier.
586
587 switch (ExtraCode[0]) {
588 default: return true; // Unknown modifier.
589 case 'c': // Don't print "$" before a global var name or constant.
590 printOperand(MI, OpNo, "mem");
591 return false;
592 case 'b': // Print QImode register
593 case 'h': // Print QImode high register
594 case 'w': // Print HImode register
595 case 'k': // Print SImode register
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000596 case 'q': // Print DImode register
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000597 if (MI->getOperand(OpNo).isRegister())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000598 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
599 printOperand(MI, OpNo);
600 return false;
601
602 case 'P': // Don't print @PLT, but do print as memory.
603 printOperand(MI, OpNo, "mem");
604 return false;
605 }
606 }
607
608 printOperand(MI, OpNo);
609 return false;
610}
611
612bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
613 unsigned OpNo,
614 unsigned AsmVariant,
615 const char *ExtraCode) {
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000616 if (ExtraCode && ExtraCode[0]) {
617 if (ExtraCode[1] != 0) return true; // Unknown modifier.
618
619 switch (ExtraCode[0]) {
620 default: return true; // Unknown modifier.
621 case 'b': // Print QImode register
622 case 'h': // Print QImode high register
623 case 'w': // Print HImode register
624 case 'k': // Print SImode register
625 case 'q': // Print SImode register
626 // These only apply to registers, ignore on mem.
627 break;
628 }
629 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 printMemReference(MI, OpNo);
631 return false;
632}
633
634/// printMachineInstruction -- Print out a single X86 LLVM instruction
635/// MI in AT&T syntax to the current output stream.
636///
637void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
638 ++EmittedInsts;
639
640 // See if a truncate instruction can be turned into a nop.
641 switch (MI->getOpcode()) {
642 default: break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 case X86::PsMOVZX64rr32:
644 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
645 break;
Evan Cheng4d0fbf32007-11-14 07:59:08 +0000646 case X86::MOV8mr: {
647 const MachineOperand &MO = MI->getOperand(4);
648 switch (MO.getReg()) {
649 default: abort();
650 case X86::AH: case X86::DH: case X86::CH: case X86::BH:
651 case X86::AL: case X86::DL: case X86::CL: case X86::BL:
652 break;
653 }
654 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 }
656
657 // Call the autogenerated instruction printer routines.
658 printInstruction(MI);
659}
660
661// Include the auto-generated portion of the assembly writer.
662#include "X86GenAsmWriter.inc"
663