Speed up the asm printer a lot by not printing formatted LLVM asm output
[oota-llvm.git] / lib / Target / PowerPC / PPCAsmPrinter.cpp
1 //===-- PowerPCAsmPrinter.cpp - Print machine instrs to PowerPC 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 PowerPC assembly language. This printer is
12 // the output mechanism used by `llc'.
13 //
14 // Documentation at http://developer.apple.com/documentation/DeveloperTools/
15 // Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
16 //
17 //===----------------------------------------------------------------------===//
18
19 #define DEBUG_TYPE "asmprinter"
20 #include "PowerPC.h"
21 #include "PowerPCTargetMachine.h"
22 #include "PowerPCSubtarget.h"
23 #include "llvm/Constants.h"
24 #include "llvm/DerivedTypes.h"
25 #include "llvm/Module.h"
26 #include "llvm/Assembly/Writer.h"
27 #include "llvm/CodeGen/AsmPrinter.h"
28 #include "llvm/CodeGen/MachineConstantPool.h"
29 #include "llvm/CodeGen/MachineFunctionPass.h"
30 #include "llvm/CodeGen/MachineInstr.h"
31 #include "llvm/CodeGen/ValueTypes.h"
32 #include "llvm/Support/Mangler.h"
33 #include "llvm/Support/MathExtras.h"
34 #include "llvm/Support/CommandLine.h"
35 #include "llvm/Support/Debug.h"
36 #include "llvm/Target/MRegisterInfo.h"
37 #include "llvm/Target/TargetInstrInfo.h"
38 #include "llvm/ADT/Statistic.h"
39 #include "llvm/ADT/StringExtras.h"
40 #include <set>
41 using namespace llvm;
42
43 namespace {
44   Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
45
46   struct PowerPCAsmPrinter : public AsmPrinter {
47     std::set<std::string> FnStubs, GVStubs, LinkOnceStubs;
48
49     PowerPCAsmPrinter(std::ostream &O, TargetMachine &TM)
50       : AsmPrinter(O, TM), LabelNumber(0) {}
51
52     /// Unique incrementer for label values for referencing Global values.
53     ///
54     unsigned LabelNumber;
55
56     virtual const char *getPassName() const {
57       return "PowerPC Assembly Printer";
58     }
59
60     PowerPCTargetMachine &getTM() {
61       return static_cast<PowerPCTargetMachine&>(TM);
62     }
63
64     unsigned enumRegToMachineReg(unsigned enumReg) {
65       switch (enumReg) {
66       default: assert(0 && "Unhandled register!"); break;
67       case PPC::CR0:  return  0;
68       case PPC::CR1:  return  1;
69       case PPC::CR2:  return  2;
70       case PPC::CR3:  return  3;
71       case PPC::CR4:  return  4;
72       case PPC::CR5:  return  5;
73       case PPC::CR6:  return  6;
74       case PPC::CR7:  return  7;
75       }
76       abort();
77     }
78
79     /// printInstruction - This method is automatically generated by tablegen
80     /// from the instruction set description.  This method returns true if the
81     /// machine instruction was sufficiently described to print it, otherwise it
82     /// returns false.
83     bool printInstruction(const MachineInstr *MI);
84
85     void printMachineInstruction(const MachineInstr *MI);
86     void printOp(const MachineOperand &MO, bool IsCallOp = false);
87
88     void printOperand(const MachineInstr *MI, unsigned OpNo, MVT::ValueType VT){
89       const MachineOperand &MO = MI->getOperand(OpNo);
90       if (MO.getType() == MachineOperand::MO_MachineRegister) {
91         assert(MRegisterInfo::isPhysicalRegister(MO.getReg())&&"Not physreg??");
92         O << TM.getRegisterInfo()->get(MO.getReg()).Name;
93       } else if (MO.isImmediate()) {
94         O << MO.getImmedValue();
95       } else {
96         printOp(MO);
97       }
98     }
99
100     void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo,
101                             MVT::ValueType VT) {
102       unsigned char value = MI->getOperand(OpNo).getImmedValue();
103       assert(value <= 31 && "Invalid u5imm argument!");
104       O << (unsigned int)value;
105     }
106     void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo,
107                             MVT::ValueType VT) {
108       unsigned char value = MI->getOperand(OpNo).getImmedValue();
109       assert(value <= 63 && "Invalid u6imm argument!");
110       O << (unsigned int)value;
111     }
112     void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo,
113                             MVT::ValueType VT) {
114       O << (short)MI->getOperand(OpNo).getImmedValue();
115     }
116     void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo,
117                             MVT::ValueType VT) {
118       O << (unsigned short)MI->getOperand(OpNo).getImmedValue();
119     }
120     void printBranchOperand(const MachineInstr *MI, unsigned OpNo,
121                             MVT::ValueType VT) {
122       // Branches can take an immediate operand.  This is used by the branch
123       // selection pass to print $+8, an eight byte displacement from the PC.
124       if (MI->getOperand(OpNo).isImmediate()) {
125         O << "$+" << MI->getOperand(OpNo).getImmedValue();
126       } else {
127         printOp(MI->getOperand(OpNo),
128                 TM.getInstrInfo()->isCall(MI->getOpcode()));
129       }
130     }
131     void printPICLabel(const MachineInstr *MI, unsigned OpNo,
132                        MVT::ValueType VT) {
133       // FIXME: should probably be converted to cout.width and cout.fill
134       O << "\"L0000" << LabelNumber << "$pb\"\n";
135       O << "\"L0000" << LabelNumber << "$pb\":";
136     }
137     void printSymbolHi(const MachineInstr *MI, unsigned OpNo,
138                        MVT::ValueType VT) {
139       if (MI->getOperand(OpNo).isImmediate()) {
140         printS16ImmOperand(MI, OpNo, VT);
141       } else {
142         O << "ha16(";
143         printOp(MI->getOperand(OpNo));
144         if (PICEnabled)
145           O << "-\"L0000" << LabelNumber << "$pb\")";
146         else
147           O << ')';
148       }
149     }
150     void printSymbolLo(const MachineInstr *MI, unsigned OpNo,
151                        MVT::ValueType VT) {
152       if (MI->getOperand(OpNo).isImmediate()) {
153         printS16ImmOperand(MI, OpNo, VT);
154       } else {
155         O << "lo16(";
156         printOp(MI->getOperand(OpNo));
157         if (PICEnabled)
158           O << "-\"L0000" << LabelNumber << "$pb\")";
159         else
160           O << ')';
161       }
162     }
163     void printcrbitm(const MachineInstr *MI, unsigned OpNo,
164                        MVT::ValueType VT) {
165       unsigned CCReg = MI->getOperand(OpNo).getReg();
166       unsigned RegNo = enumRegToMachineReg(CCReg);
167       O << (0x80 >> RegNo);
168     }
169
170     virtual void printConstantPool(MachineConstantPool *MCP) = 0;
171     virtual bool runOnMachineFunction(MachineFunction &F) = 0;
172     virtual bool doFinalization(Module &M) = 0;
173   };
174
175   /// DarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac OS
176   /// X
177   ///
178   struct DarwinAsmPrinter : public PowerPCAsmPrinter {
179
180     DarwinAsmPrinter(std::ostream &O, TargetMachine &TM)
181       : PowerPCAsmPrinter(O, TM) {
182       CommentString = ";";
183       GlobalPrefix = "_";
184       ZeroDirective = "\t.space\t";  // ".space N" emits N zeros.
185       Data64bitsDirective = 0;       // we can't emit a 64-bit unit
186       AlignmentIsInBytes = false;    // Alignment is by power of 2.
187     }
188
189     virtual const char *getPassName() const {
190       return "Darwin PPC Assembly Printer";
191     }
192
193     void printConstantPool(MachineConstantPool *MCP);
194     bool runOnMachineFunction(MachineFunction &F);
195     bool doInitialization(Module &M);
196     bool doFinalization(Module &M);
197   };
198
199   /// AIXAsmPrinter - PowerPC assembly printer, customized for AIX
200   ///
201   struct AIXAsmPrinter : public PowerPCAsmPrinter {
202     /// Map for labels corresponding to global variables
203     ///
204     std::map<const GlobalVariable*,std::string> GVToLabelMap;
205
206     AIXAsmPrinter(std::ostream &O, TargetMachine &TM)
207       : PowerPCAsmPrinter(O, TM) {
208       CommentString = "#";
209       GlobalPrefix = "_";
210       ZeroDirective = "\t.space\t";  // ".space N" emits N zeros.
211       Data64bitsDirective = 0;       // we can't emit a 64-bit unit
212       AlignmentIsInBytes = false;    // Alignment is by power of 2.
213     }
214
215     virtual const char *getPassName() const {
216       return "AIX PPC Assembly Printer";
217     }
218
219     void printConstantPool(MachineConstantPool *MCP);
220     bool runOnMachineFunction(MachineFunction &F);
221     bool doInitialization(Module &M);
222     bool doFinalization(Module &M);
223   };
224 } // end of anonymous namespace
225
226 // SwitchSection - Switch to the specified section of the executable if we are
227 // not already in it!
228 //
229 static void SwitchSection(std::ostream &OS, std::string &CurSection,
230                           const char *NewSection) {
231   if (CurSection != NewSection) {
232     CurSection = NewSection;
233     if (!CurSection.empty())
234       OS << "\t" << NewSection << "\n";
235   }
236 }
237
238 /// createDarwinAsmPrinterPass - Returns a pass that prints the PPC assembly
239 /// code for a MachineFunction to the given output stream, in a format that the
240 /// Darwin assembler can deal with.
241 ///
242 FunctionPass *llvm::createDarwinAsmPrinter(std::ostream &o, TargetMachine &tm) {
243   return new DarwinAsmPrinter(o, tm);
244 }
245
246 /// createAIXAsmPrinterPass - Returns a pass that prints the PPC assembly code
247 /// for a MachineFunction to the given output stream, in a format that the
248 /// AIX 5L assembler can deal with.
249 ///
250 FunctionPass *llvm::createAIXAsmPrinter(std::ostream &o, TargetMachine &tm) {
251   return new AIXAsmPrinter(o, tm);
252 }
253
254 // Include the auto-generated portion of the assembly writer
255 #include "PowerPCGenAsmWriter.inc"
256
257 void PowerPCAsmPrinter::printOp(const MachineOperand &MO, bool IsCallOp) {
258   const MRegisterInfo &RI = *TM.getRegisterInfo();
259   int new_symbol;
260
261   switch (MO.getType()) {
262   case MachineOperand::MO_VirtualRegister:
263     if (Value *V = MO.getVRegValueOrNull()) {
264       O << "<" << V->getName() << ">";
265       return;
266     }
267     // FALLTHROUGH
268   case MachineOperand::MO_MachineRegister:
269   case MachineOperand::MO_CCRegister:
270     O << RI.get(MO.getReg()).Name;
271     return;
272
273   case MachineOperand::MO_SignExtendedImmed:
274   case MachineOperand::MO_UnextendedImmed:
275     std::cerr << "printOp() does not handle immediate values\n";
276     abort();
277     return;
278
279   case MachineOperand::MO_PCRelativeDisp:
280     std::cerr << "Shouldn't use addPCDisp() when building PPC MachineInstrs";
281     abort();
282     return;
283
284   case MachineOperand::MO_MachineBasicBlock: {
285     MachineBasicBlock *MBBOp = MO.getMachineBasicBlock();
286     O << "LBB" << Mang->getValueName(MBBOp->getParent()->getFunction())
287       << "_" << MBBOp->getNumber() << "\t; "
288       << MBBOp->getBasicBlock()->getName();
289     return;
290   }
291
292   case MachineOperand::MO_ConstantPoolIndex:
293     O << ".CPI" << CurrentFnName << "_" << MO.getConstantPoolIndex();
294     return;
295
296   case MachineOperand::MO_ExternalSymbol:
297     if (IsCallOp) {
298       std::string Name(GlobalPrefix); Name += MO.getSymbolName();
299       FnStubs.insert(Name);
300       O << "L" << Name << "$stub";
301       return;
302     }
303     O << GlobalPrefix << MO.getSymbolName();
304     return;
305
306   case MachineOperand::MO_GlobalAddress: {
307     GlobalValue *GV = MO.getGlobal();
308     std::string Name = Mang->getValueName(GV);
309
310     // Dynamically-resolved functions need a stub for the function.  Be
311     // wary however not to output $stub for external functions whose addresses
312     // are taken.  Those should be emitted as $non_lazy_ptr below.
313     Function *F = dyn_cast<Function>(GV);
314     if (F && IsCallOp && F->isExternal()) {
315       FnStubs.insert(Name);
316       O << "L" << Name << "$stub";
317       return;
318     }
319
320     // External or weakly linked global variables need non-lazily-resolved stubs
321     if ((GV->isExternal() || GV->hasWeakLinkage() || GV->hasLinkOnceLinkage())){
322       if (GV->hasLinkOnceLinkage())
323         LinkOnceStubs.insert(Name);
324       else
325         GVStubs.insert(Name);
326       O << "L" << Name << "$non_lazy_ptr";
327       return;
328     }
329
330     O << Mang->getValueName(GV);
331     return;
332   }
333
334   default:
335     O << "<unknown operand type: " << MO.getType() << ">";
336     return;
337   }
338 }
339
340 /// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
341 /// the current output stream.
342 ///
343 void PowerPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
344   ++EmittedInsts;
345   // Check for slwi/srwi mnemonics.
346   if (MI->getOpcode() == PPC::RLWINM) {
347     bool FoundMnemonic = false;
348     unsigned char SH = MI->getOperand(2).getImmedValue();
349     unsigned char MB = MI->getOperand(3).getImmedValue();
350     unsigned char ME = MI->getOperand(4).getImmedValue();
351     if (SH <= 31 && MB == 0 && ME == (31-SH)) {
352       O << "slwi "; FoundMnemonic = true;
353     }
354     if (SH <= 31 && MB == (32-SH) && ME == 31) {
355       O << "srwi "; FoundMnemonic = true;
356       SH = 32-SH;
357     }
358     if (FoundMnemonic) {
359       printOperand(MI, 0, MVT::i64);
360       O << ", ";
361       printOperand(MI, 1, MVT::i64);
362       O << ", " << (unsigned int)SH << "\n";
363       return;
364     }
365   }
366
367   if (printInstruction(MI))
368     return; // Printer was automatically generated
369
370   assert(0 && "Unhandled instruction in asm writer!");
371   abort();
372   return;
373 }
374
375 /// runOnMachineFunction - This uses the printMachineInstruction()
376 /// method to print assembly for each instruction.
377 ///
378 bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
379   setupMachineFunction(MF);
380   O << "\n\n";
381
382   // Print out constants referenced by the function
383   printConstantPool(MF.getConstantPool());
384
385   // Print out labels for the function.
386   O << "\t.text\n";
387   emitAlignment(4);
388   O << "\t.globl\t" << CurrentFnName << "\n";
389   O << CurrentFnName << ":\n";
390
391   // Print out code for the function.
392   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
393        I != E; ++I) {
394     // Print a label for the basic block.
395     if (I != MF.begin()) {
396       O << "LBB" << CurrentFnName << "_" << I->getNumber() << ":\t";
397       if (!I->getBasicBlock()->getName().empty())
398         O << CommentString << " " << I->getBasicBlock()->getName();
399       O << "\n";
400     }
401     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
402          II != E; ++II) {
403       // Print the assembly for the instruction.
404       O << "\t";
405       printMachineInstruction(II);
406     }
407   }
408   ++LabelNumber;
409
410   // We didn't modify anything.
411   return false;
412 }
413
414 /// printConstantPool - Print to the current output stream assembly
415 /// representations of the constants in the constant pool MCP. This is
416 /// used to print out constants which have been "spilled to memory" by
417 /// the code generator.
418 ///
419 void DarwinAsmPrinter::printConstantPool(MachineConstantPool *MCP) {
420   const std::vector<Constant*> &CP = MCP->getConstants();
421   const TargetData &TD = TM.getTargetData();
422
423   if (CP.empty()) return;
424
425   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
426     O << "\t.const\n";
427     // FIXME: force doubles to be naturally aligned.  We should handle this
428     // more correctly in the future.
429     if (Type::DoubleTy == CP[i]->getType())
430       emitAlignment(3);
431     else
432       emitAlignment(TD.getTypeAlignmentShift(CP[i]->getType()));
433     O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t" << CommentString
434       << *CP[i] << "\n";
435     emitGlobalConstant(CP[i]);
436   }
437 }
438
439 bool DarwinAsmPrinter::doInitialization(Module &M) {
440   if (TM.getSubtarget<PPCSubtarget>().isGigaProcessor())
441     O << "\t.machine ppc970\n";
442   AsmPrinter::doInitialization(M);
443   return false;
444 }
445
446 bool DarwinAsmPrinter::doFinalization(Module &M) {
447   const TargetData &TD = TM.getTargetData();
448   std::string CurSection;
449
450   // Print out module-level global variables here.
451   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
452     if (I->hasInitializer()) {   // External global require no code
453       O << '\n';
454       std::string name = Mang->getValueName(I);
455       Constant *C = I->getInitializer();
456       unsigned Size = TD.getTypeSize(C->getType());
457       unsigned Align = TD.getTypeAlignmentShift(C->getType());
458
459       if (C->isNullValue() && /* FIXME: Verify correct */
460           (I->hasInternalLinkage() || I->hasWeakLinkage() ||
461            I->hasLinkOnceLinkage())) {
462         SwitchSection(O, CurSection, ".data");
463         if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
464         if (I->hasInternalLinkage())
465           O << ".lcomm " << name << "," << Size << "," << Align;
466         else
467           O << ".comm " << name << "," << Size;
468         O << "\t\t; '" << I->getName() << "'\n";
469       } else {
470         switch (I->getLinkage()) {
471         case GlobalValue::LinkOnceLinkage:
472           O << ".section __TEXT,__textcoal_nt,coalesced,no_toc\n"
473             << ".weak_definition " << name << '\n'
474             << ".private_extern " << name << '\n'
475             << ".section __DATA,__datacoal_nt,coalesced,no_toc\n";
476           LinkOnceStubs.insert(name);
477           break;
478         case GlobalValue::WeakLinkage:
479           O << ".weak_definition " << name << '\n'
480             << ".private_extern " << name << '\n';
481           break;
482         case GlobalValue::AppendingLinkage:
483           // FIXME: appending linkage variables should go into a section of
484           // their name or something.  For now, just emit them as external.
485         case GlobalValue::ExternalLinkage:
486           // If external or appending, declare as a global symbol
487           O << "\t.globl " << name << "\n";
488           // FALL THROUGH
489         case GlobalValue::InternalLinkage:
490           SwitchSection(O, CurSection, ".data");
491           break;
492         case GlobalValue::GhostLinkage:
493           std::cerr << "Error: unmaterialized (GhostLinkage) function in asm!";
494           abort();
495         }
496
497         emitAlignment(Align);
498         O << name << ":\t\t\t\t; '" << I->getName() << "'\n";
499         emitGlobalConstant(C);
500       }
501     }
502
503   // Output stubs for dynamically-linked functions
504   for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
505        i != e; ++i)
506   {
507     if (PICEnabled) {
508     O << ".data\n";
509     O << ".section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32\n";
510     emitAlignment(2);
511     O << "L" << *i << "$stub:\n";
512     O << "\t.indirect_symbol " << *i << "\n";
513     O << "\tmflr r0\n";
514     O << "\tbcl 20,31,L0$" << *i << "\n";
515     O << "L0$" << *i << ":\n";
516     O << "\tmflr r11\n";
517     O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
518     O << "\tmtlr r0\n";
519     O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
520     O << "\tmtctr r12\n";
521     O << "\tbctr\n";
522     O << ".data\n";
523     O << ".lazy_symbol_pointer\n";
524     O << "L" << *i << "$lazy_ptr:\n";
525     O << "\t.indirect_symbol " << *i << "\n";
526     O << "\t.long dyld_stub_binding_helper\n";
527     } else {
528     O << "\t.section __TEXT,__symbol_stub1,symbol_stubs,pure_instructions,16\n";
529     emitAlignment(4);
530     O << "L" << *i << "$stub:\n";
531     O << "\t.indirect_symbol " << *i << "\n";
532     O << "\tlis r11,ha16(L" << *i << "$lazy_ptr)\n";
533     O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr)(r11)\n";
534     O << "\tmtctr r12\n";
535     O << "\tbctr\n";
536     O << "\t.lazy_symbol_pointer\n";
537     O << "L" << *i << "$lazy_ptr:\n";
538     O << "\t.indirect_symbol " << *i << "\n";
539     O << "\t.long dyld_stub_binding_helper\n";
540     }
541   }
542
543   O << "\n";
544
545   // Output stubs for external global variables
546   if (GVStubs.begin() != GVStubs.end())
547     O << ".data\n.non_lazy_symbol_pointer\n";
548   for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
549        i != e; ++i) {
550     O << "L" << *i << "$non_lazy_ptr:\n";
551     O << "\t.indirect_symbol " << *i << "\n";
552     O << "\t.long\t0\n";
553   }
554
555   // Output stubs for link-once variables
556   if (LinkOnceStubs.begin() != LinkOnceStubs.end())
557     O << ".data\n.align 2\n";
558   for (std::set<std::string>::iterator i = LinkOnceStubs.begin(),
559          e = LinkOnceStubs.end(); i != e; ++i) {
560     O << "L" << *i << "$non_lazy_ptr:\n"
561       << "\t.long\t" << *i << '\n';
562   }
563
564   AsmPrinter::doFinalization(M);
565   return false; // success
566 }
567
568 /// runOnMachineFunction - This uses the printMachineInstruction()
569 /// method to print assembly for each instruction.
570 ///
571 bool AIXAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
572   CurrentFnName = MF.getFunction()->getName();
573
574   // Print out constants referenced by the function
575   printConstantPool(MF.getConstantPool());
576
577   // Print out header for the function.
578   O << "\t.csect .text[PR]\n"
579     << "\t.align 2\n"
580     << "\t.globl "  << CurrentFnName << '\n'
581     << "\t.globl ." << CurrentFnName << '\n'
582     << "\t.csect "  << CurrentFnName << "[DS],3\n"
583     << CurrentFnName << ":\n"
584     << "\t.llong ." << CurrentFnName << ", TOC[tc0], 0\n"
585     << "\t.csect .text[PR]\n"
586     << '.' << CurrentFnName << ":\n";
587
588   // Print out code for the function.
589   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
590        I != E; ++I) {
591     // Print a label for the basic block.
592     O << "LBB" << CurrentFnName << "_" << I->getNumber() << ":\t# "
593       << I->getBasicBlock()->getName() << "\n";
594     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
595       II != E; ++II) {
596       // Print the assembly for the instruction.
597       O << "\t";
598       printMachineInstruction(II);
599     }
600   }
601   ++LabelNumber;
602
603   O << "LT.." << CurrentFnName << ":\n"
604     << "\t.long 0\n"
605     << "\t.byte 0,0,32,65,128,0,0,0\n"
606     << "\t.long LT.." << CurrentFnName << "-." << CurrentFnName << '\n'
607     << "\t.short 3\n"
608     << "\t.byte \"" << CurrentFnName << "\"\n"
609     << "\t.align 2\n";
610
611   // We didn't modify anything.
612   return false;
613 }
614
615 /// printConstantPool - Print to the current output stream assembly
616 /// representations of the constants in the constant pool MCP. This is
617 /// used to print out constants which have been "spilled to memory" by
618 /// the code generator.
619 ///
620 void AIXAsmPrinter::printConstantPool(MachineConstantPool *MCP) {
621   const std::vector<Constant*> &CP = MCP->getConstants();
622   const TargetData &TD = TM.getTargetData();
623
624   if (CP.empty()) return;
625
626   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
627     O << "\t.const\n";
628     O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
629       << "\n";
630     O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t;"
631       << *CP[i] << "\n";
632     emitGlobalConstant(CP[i]);
633   }
634 }
635
636 bool AIXAsmPrinter::doInitialization(Module &M) {
637   const TargetData &TD = TM.getTargetData();
638   std::string CurSection;
639
640   O << "\t.machine \"ppc64\"\n"
641     << "\t.toc\n"
642     << "\t.csect .text[PR]\n";
643
644   // Print out module-level global variables
645   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
646        I != E; ++I) {
647     if (!I->hasInitializer())
648       continue;
649
650     std::string Name = I->getName();
651     Constant *C = I->getInitializer();
652     // N.B.: We are defaulting to writable strings
653     if (I->hasExternalLinkage()) {
654       O << "\t.globl " << Name << '\n'
655         << "\t.csect .data[RW],3\n";
656     } else {
657       O << "\t.csect _global.rw_c[RW],3\n";
658     }
659     O << Name << ":\n";
660     emitGlobalConstant(C);
661   }
662
663   // Output labels for globals
664   if (M.global_begin() != M.global_end()) O << "\t.toc\n";
665   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
666        I != E; ++I) {
667     const GlobalVariable *GV = I;
668     // Do not output labels for unused variables
669     if (GV->isExternal() && GV->use_begin() == GV->use_end())
670       continue;
671
672     std::string Name = GV->getName();
673     std::string Label = "LC.." + utostr(LabelNumber++);
674     GVToLabelMap[GV] = Label;
675     O << Label << ":\n"
676       << "\t.tc " << Name << "[TC]," << Name;
677     if (GV->isExternal()) O << "[RW]";
678     O << '\n';
679   }
680
681   Mang = new Mangler(M, ".");
682   return false; // success
683 }
684
685 bool AIXAsmPrinter::doFinalization(Module &M) {
686   const TargetData &TD = TM.getTargetData();
687   // Print out module-level global variables
688   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
689        I != E; ++I) {
690     if (I->hasInitializer() || I->hasExternalLinkage())
691       continue;
692
693     std::string Name = I->getName();
694     if (I->hasInternalLinkage()) {
695       O << "\t.lcomm " << Name << ",16,_global.bss_c";
696     } else {
697       O << "\t.comm " << Name << "," << TD.getTypeSize(I->getType())
698         << "," << Log2_32((unsigned)TD.getTypeAlignment(I->getType()));
699     }
700     O << "\t\t# ";
701     WriteAsOperand(O, I, false, true, &M);
702     O << "\n";
703   }
704
705   O << "_section_.text:\n"
706     << "\t.csect .data[RW],3\n"
707     << "\t.llong _section_.text\n";
708
709   delete Mang;
710   return false; // success
711 }