Minor code clean up.
[oota-llvm.git] / lib / Target / X86 / X86ATTAsmPrinter.cpp
1 //===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to Intel 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 #include "X86ATTAsmPrinter.h"
17 #include "X86.h"
18 #include "X86MachineFunctionInfo.h"
19 #include "X86TargetMachine.h"
20 #include "X86TargetAsmInfo.h"
21 #include "llvm/CallingConv.h"
22 #include "llvm/Module.h"
23 #include "llvm/Support/Mangler.h"
24 #include "llvm/Target/TargetAsmInfo.h"
25 #include "llvm/Target/TargetOptions.h"
26 using namespace llvm;
27
28 /// getSectionForFunction - Return the section that we should emit the
29 /// specified function body into.
30 std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
31   switch (F.getLinkage()) {
32   default: assert(0 && "Unknown linkage type!");
33   case Function::InternalLinkage: 
34   case Function::DLLExportLinkage:
35   case Function::ExternalLinkage:
36     return TAI->getTextSection();
37   case Function::WeakLinkage:
38   case Function::LinkOnceLinkage:
39     if (Subtarget->isTargetDarwin()) {
40       return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
41     } else if (Subtarget->isTargetCygwin()) {
42       return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"\n";
43     } else {
44       return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
45              ",\"ax\",@progbits\n";
46     }
47   }
48 }
49
50 /// runOnMachineFunction - This uses the printMachineInstruction()
51 /// method to print assembly for each instruction.
52 ///
53 bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
54   if (Subtarget->isTargetDarwin() ||
55       Subtarget->isTargetELF() ||
56       Subtarget->isTargetCygwin()) {
57     // Let PassManager know we need debug information and relay
58     // the MachineDebugInfo address on to DwarfWriter.
59     DW.SetDebugInfo(&getAnalysis<MachineDebugInfo>());
60   }
61
62   SetupMachineFunction(MF);
63   O << "\n\n";
64
65   // Print out constants referenced by the function
66   EmitConstantPool(MF.getConstantPool());
67
68   // Print out labels for the function.
69   const Function *F = MF.getFunction();
70   unsigned CC = F->getCallingConv();
71
72   // Populate function information map.  Actually, We don't want to populate
73   // non-stdcall or non-fastcall functions' information right now.
74   if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
75     FunctionInfoMap[F] = *MF.getInfo<X86FunctionInfo>();
76
77   X86SharedAsmPrinter::decorateName(CurrentFnName, F);
78
79   SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
80   
81   switch (F->getLinkage()) {
82   default: assert(0 && "Unknown linkage type!");
83   case Function::InternalLinkage:  // Symbols default to internal.
84     EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.
85     break;
86   case Function::DLLExportLinkage:
87     DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
88     //FALLS THROUGH
89   case Function::ExternalLinkage:
90     EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.
91     O << "\t.globl\t" << CurrentFnName << "\n";    
92     break;
93   case Function::LinkOnceLinkage:
94   case Function::WeakLinkage:
95     if (Subtarget->isTargetDarwin()) {
96       O << "\t.globl\t" << CurrentFnName << "\n";
97       O << "\t.weak_definition\t" << CurrentFnName << "\n";
98     } else if (Subtarget->isTargetCygwin()) {
99       EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.
100       O << "\t.linkonce discard\n";
101       O << "\t.globl " << CurrentFnName << "\n";
102     } else {
103       EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.
104       O << "\t.weak " << CurrentFnName << "\n";
105     }
106     break;
107   }
108   O << CurrentFnName << ":\n";
109   // Add some workaround for linkonce linkage on Cygwin\MinGW
110   if (Subtarget->isTargetCygwin() &&
111       (F->getLinkage() == Function::LinkOnceLinkage ||
112        F->getLinkage() == Function::WeakLinkage))
113     O << "_llvm$workaround$fake$stub_" << CurrentFnName << ":\n";
114
115   if (Subtarget->isTargetDarwin() ||
116       Subtarget->isTargetELF() ||
117       Subtarget->isTargetCygwin()) {
118     // Emit pre-function debug information.
119     DW.BeginFunction(&MF);
120   }
121
122   // Print out code for the function.
123   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
124        I != E; ++I) {
125     // Print a label for the basic block.
126     if (I->pred_begin() != I->pred_end()) {
127       printBasicBlockLabel(I, true);
128       O << '\n';
129     }
130     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
131          II != E; ++II) {
132       // Print the assembly for the instruction.
133       O << "\t";
134       printMachineInstruction(II);
135     }
136   }
137
138   // Print out jump tables referenced by the function.
139   
140   // Mac OS X requires that the jump table follow the function, so that the jump
141   // table is part of the same atom that the function is in.
142   EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
143   
144   if (TAI->hasDotTypeDotSizeDirective())
145     O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
146
147   if (Subtarget->isTargetDarwin() ||
148       Subtarget->isTargetELF() ||
149       Subtarget->isTargetCygwin()) {
150     // Emit post-function debug information.
151     DW.EndFunction();
152   }
153
154   // We didn't modify anything.
155   return false;
156 }
157
158 void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
159                                     const char *Modifier) {
160   const MachineOperand &MO = MI->getOperand(OpNo);
161   const MRegisterInfo &RI = *TM.getRegisterInfo();
162   switch (MO.getType()) {
163   case MachineOperand::MO_Register: {
164     assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
165            "Virtual registers should not make it this far!");
166     O << '%';
167     unsigned Reg = MO.getReg();
168     if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
169       MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
170         MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
171                     ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
172       Reg = getX86SubSuperRegister(Reg, VT);
173     }
174     for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
175       O << (char)tolower(*Name);
176     return;
177   }
178
179   case MachineOperand::MO_Immediate:
180     if (!Modifier || strcmp(Modifier, "debug") != 0)
181       O << '$';
182     O << MO.getImmedValue();
183     return;
184   case MachineOperand::MO_MachineBasicBlock:
185     printBasicBlockLabel(MO.getMachineBasicBlock());
186     return;
187   case MachineOperand::MO_JumpTableIndex: {
188     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
189     if (!isMemOp) O << '$';
190     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
191       << MO.getJumpTableIndex();
192     if (X86PICStyle == PICStyle::Stub &&
193         TM.getRelocationModel() == Reloc::PIC_)
194       O << "-\"L" << getFunctionNumber() << "$pb\"";
195     if (Subtarget->is64Bit())
196       O << "(%rip)";
197     return;
198   }
199   case MachineOperand::MO_ConstantPoolIndex: {
200     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
201     if (!isMemOp) O << '$';
202     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
203       << MO.getConstantPoolIndex();
204     if (X86PICStyle == PICStyle::Stub &&
205         TM.getRelocationModel() == Reloc::PIC_)
206       O << "-\"L" << getFunctionNumber() << "$pb\"";
207     int Offset = MO.getOffset();
208     if (Offset > 0)
209       O << "+" << Offset;
210     else if (Offset < 0)
211       O << Offset;
212
213     if (Subtarget->is64Bit())
214       O << "(%rip)";
215     return;
216   }
217   case MachineOperand::MO_GlobalAddress: {
218     bool isCallOp = Modifier && !strcmp(Modifier, "call");
219     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
220     if (!isMemOp && !isCallOp) O << '$';
221
222     GlobalValue *GV = MO.getGlobal();
223     std::string Name = Mang->getValueName(GV);
224     
225     bool isExt = (GV->isExternal() || GV->hasWeakLinkage() ||
226                   GV->hasLinkOnceLinkage());
227     
228     X86SharedAsmPrinter::decorateName(Name, GV);
229     
230     if (X86PICStyle == PICStyle::Stub &&
231         TM.getRelocationModel() != Reloc::Static) {
232       // Link-once, External, or Weakly-linked global variables need
233       // non-lazily-resolved stubs
234       if (isExt) {
235         // Dynamically-resolved functions need a stub for the function.
236         if (isCallOp && isa<Function>(GV)) {
237           FnStubs.insert(Name);
238           O << "L" << Name << "$stub";
239         } else {
240           GVStubs.insert(Name);
241           O << "L" << Name << "$non_lazy_ptr";
242         }
243       } else {
244         if (GV->hasDLLImportLinkage()) {
245           O << "__imp_";          
246         } 
247         O << Name;
248       }
249       
250       if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
251         O << "-\"L" << getFunctionNumber() << "$pb\"";
252     } else {
253       if (GV->hasDLLImportLinkage()) {
254         O << "__imp_";          
255       }       
256       O << Name;
257     }
258
259     if (GV->hasExternalWeakLinkage())
260       ExtWeakSymbols.insert(Name);
261     
262     int Offset = MO.getOffset();
263     if (Offset > 0)
264       O << "+" << Offset;
265     else if (Offset < 0)
266       O << Offset;
267
268     if (isMemOp &&
269         Subtarget->is64Bit()) {
270       if (isExt && TM.getRelocationModel() != Reloc::Static)
271         O << "@GOTPCREL";
272       O << "(%rip)";
273     }
274
275     return;
276   }
277   case MachineOperand::MO_ExternalSymbol: {
278     bool isCallOp = Modifier && !strcmp(Modifier, "call");
279     if (isCallOp && 
280         X86PICStyle == PICStyle::Stub &&
281         TM.getRelocationModel() != Reloc::Static) {
282       std::string Name(TAI->getGlobalPrefix());
283       Name += MO.getSymbolName();
284       FnStubs.insert(Name);
285       O << "L" << Name << "$stub";
286       return;
287     }
288     if (!isCallOp) O << '$';
289     O << TAI->getGlobalPrefix() << MO.getSymbolName();
290
291     if (!isCallOp &&
292         Subtarget->is64Bit())
293       O << "(%rip)";
294
295     return;
296   }
297   default:
298     O << "<unknown operand type>"; return;
299   }
300 }
301
302 void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
303   unsigned char value = MI->getOperand(Op).getImmedValue();
304   assert(value <= 7 && "Invalid ssecc argument!");
305   switch (value) {
306   case 0: O << "eq"; break;
307   case 1: O << "lt"; break;
308   case 2: O << "le"; break;
309   case 3: O << "unord"; break;
310   case 4: O << "neq"; break;
311   case 5: O << "nlt"; break;
312   case 6: O << "nle"; break;
313   case 7: O << "ord"; break;
314   }
315 }
316
317 void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
318                                          const char *Modifier){
319   assert(isMem(MI, Op) && "Invalid memory reference!");
320
321   const MachineOperand &BaseReg  = MI->getOperand(Op);
322   int ScaleVal                   = MI->getOperand(Op+1).getImmedValue();
323   const MachineOperand &IndexReg = MI->getOperand(Op+2);
324   const MachineOperand &DispSpec = MI->getOperand(Op+3);
325
326   if (BaseReg.isFrameIndex()) {
327     O << "[frame slot #" << BaseReg.getFrameIndex();
328     if (DispSpec.getImmedValue())
329       O << " + " << DispSpec.getImmedValue();
330     O << "]";
331     return;
332   }
333
334   if (DispSpec.isGlobalAddress() ||
335       DispSpec.isConstantPoolIndex() ||
336       DispSpec.isJumpTableIndex()) {
337     printOperand(MI, Op+3, "mem");
338   } else {
339     int DispVal = DispSpec.getImmedValue();
340     if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
341       O << DispVal;
342   }
343
344   if (IndexReg.getReg() || BaseReg.getReg()) {
345     O << "(";
346     if (BaseReg.getReg()) {
347       printOperand(MI, Op, Modifier);
348     }
349
350     if (IndexReg.getReg()) {
351       O << ",";
352       printOperand(MI, Op+2, Modifier);
353       if (ScaleVal != 1)
354         O << "," << ScaleVal;
355     }
356
357     O << ")";
358   }
359 }
360
361 void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
362   O << "\"L" << getFunctionNumber() << "$pb\"\n";
363   O << "\"L" << getFunctionNumber() << "$pb\":";
364 }
365
366
367 bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
368                                          const char Mode) {
369   const MRegisterInfo &RI = *TM.getRegisterInfo();
370   unsigned Reg = MO.getReg();
371   switch (Mode) {
372   default: return true;  // Unknown mode.
373   case 'b': // Print QImode register
374     Reg = getX86SubSuperRegister(Reg, MVT::i8);
375     break;
376   case 'h': // Print QImode high register
377     Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
378     break;
379   case 'w': // Print HImode register
380     Reg = getX86SubSuperRegister(Reg, MVT::i16);
381     break;
382   case 'k': // Print SImode register
383     Reg = getX86SubSuperRegister(Reg, MVT::i32);
384     break;
385   }
386
387   O << '%';
388   for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
389     O << (char)tolower(*Name);
390   return false;
391 }
392
393 /// PrintAsmOperand - Print out an operand for an inline asm expression.
394 ///
395 bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
396                                        unsigned AsmVariant, 
397                                        const char *ExtraCode) {
398   // Does this asm operand have a single letter operand modifier?
399   if (ExtraCode && ExtraCode[0]) {
400     if (ExtraCode[1] != 0) return true; // Unknown modifier.
401     
402     switch (ExtraCode[0]) {
403     default: return true;  // Unknown modifier.
404     case 'c': // Don't print "$" before a global var name.
405       printOperand(MI, OpNo, "mem");
406       return false;
407     case 'b': // Print QImode register
408     case 'h': // Print QImode high register
409     case 'w': // Print HImode register
410     case 'k': // Print SImode register
411       return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
412     }
413   }
414   
415   printOperand(MI, OpNo);
416   return false;
417 }
418
419 bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
420                                              unsigned OpNo,
421                                              unsigned AsmVariant, 
422                                              const char *ExtraCode) {
423   if (ExtraCode && ExtraCode[0])
424     return true; // Unknown modifier.
425   printMemReference(MI, OpNo);
426   return false;
427 }
428
429 /// printMachineInstruction -- Print out a single X86 LLVM instruction
430 /// MI in Intel syntax to the current output stream.
431 ///
432 void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
433   ++EmittedInsts;
434
435   // See if a truncate instruction can be turned into a nop.
436   switch (MI->getOpcode()) {
437   default: break;
438   case X86::TRUNC_64to32:
439   case X86::TRUNC_64to16:
440   case X86::TRUNC_32to16:
441   case X86::TRUNC_32to8:
442   case X86::TRUNC_16to8:
443   case X86::TRUNC_32_to8:
444   case X86::TRUNC_16_to8: {
445     const MachineOperand &MO0 = MI->getOperand(0);
446     const MachineOperand &MO1 = MI->getOperand(1);
447     unsigned Reg0 = MO0.getReg();
448     unsigned Reg1 = MO1.getReg();
449     unsigned Opc = MI->getOpcode();
450     if (Opc == X86::TRUNC_64to32)
451       Reg1 = getX86SubSuperRegister(Reg1, MVT::i32);
452     else if (Opc == X86::TRUNC_32to16 || Opc == X86::TRUNC_64to16)
453       Reg1 = getX86SubSuperRegister(Reg1, MVT::i16);
454     else
455       Reg1 = getX86SubSuperRegister(Reg1, MVT::i8);
456     O << TAI->getCommentString() << " TRUNCATE ";
457     if (Reg0 != Reg1)
458       O << "\n\t";
459     break;
460   }
461   case X86::PsMOVZX64rr32:
462     O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
463     break;
464   }
465
466   // Call the autogenerated instruction printer routines.
467   printInstruction(MI);
468 }
469
470 // Include the auto-generated portion of the assembly writer.
471 #include "X86GenAsmWriter.inc"
472