Teach the addressing mode stuff to fold "%lo" into 'ri' addressing modes,
[oota-llvm.git] / lib / Target / SparcV8 / SparcV8AsmPrinter.cpp
1 //===-- SparcV8AsmPrinter.cpp - SparcV8 LLVM assembly writer --------------===//
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 GAS-format Sparc V8 assembly language.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "SparcV8.h"
16 #include "SparcV8InstrInfo.h"
17 #include "llvm/Constants.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/Module.h"
20 #include "llvm/Assembly/Writer.h"
21 #include "llvm/CodeGen/AsmPrinter.h"
22 #include "llvm/CodeGen/MachineFunctionPass.h"
23 #include "llvm/CodeGen/MachineConstantPool.h"
24 #include "llvm/CodeGen/MachineInstr.h"
25 #include "llvm/Target/TargetMachine.h"
26 #include "llvm/Support/Mangler.h"
27 #include "llvm/ADT/Statistic.h"
28 #include "llvm/ADT/StringExtras.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/MathExtras.h"
31 #include <cctype>
32 using namespace llvm;
33
34 namespace {
35   Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
36
37   struct SparcV8AsmPrinter : public AsmPrinter {
38     SparcV8AsmPrinter(std::ostream &O, TargetMachine &TM) : AsmPrinter(O, TM) {
39       Data16bitsDirective = "\t.half\t";
40       Data32bitsDirective = "\t.word\t";
41       Data64bitsDirective = "\t.xword\t";
42       ZeroDirective = 0;  // no .zero or .space!
43     }
44
45     /// We name each basic block in a Function with a unique number, so
46     /// that we can consistently refer to them later. This is cleared
47     /// at the beginning of each call to runOnMachineFunction().
48     ///
49     typedef std::map<const Value *, unsigned> ValueMapTy;
50     ValueMapTy NumberForBB;
51
52     virtual const char *getPassName() const {
53       return "SparcV8 Assembly Printer";
54     }
55
56     void printOperand(const MachineInstr *MI, int opNum);
57     void printMemOperand(const MachineInstr *MI, int opNum);
58     bool printInstruction(const MachineInstr *MI);  // autogenerated.
59     bool runOnMachineFunction(MachineFunction &F);
60     bool doInitialization(Module &M);
61     bool doFinalization(Module &M);
62   };
63 } // end of anonymous namespace
64
65 #include "SparcV8GenAsmWriter.inc"
66
67 /// createSparcV8CodePrinterPass - Returns a pass that prints the SparcV8
68 /// assembly code for a MachineFunction to the given output stream,
69 /// using the given target machine description.  This should work
70 /// regardless of whether the function is in SSA form.
71 ///
72 FunctionPass *llvm::createSparcV8CodePrinterPass (std::ostream &o,
73                                                   TargetMachine &tm) {
74   return new SparcV8AsmPrinter(o, tm);
75 }
76
77 /// runOnMachineFunction - This uses the printMachineInstruction()
78 /// method to print assembly for each instruction.
79 ///
80 bool SparcV8AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
81   SetupMachineFunction(MF);
82
83   // Print out constants referenced by the function
84   EmitConstantPool(MF.getConstantPool());
85
86   // BBNumber is used here so that a given Printer will never give two
87   // BBs the same name. (If you have a better way, please let me know!)
88   static unsigned BBNumber = 0;
89
90   O << "\n\n";
91   // What's my mangled name?
92   CurrentFnName = Mang->getValueName(MF.getFunction());
93
94   // Print out labels for the function.
95   O << "\t.text\n";
96   O << "\t.align 16\n";
97   O << "\t.globl\t" << CurrentFnName << "\n";
98   O << "\t.type\t" << CurrentFnName << ", #function\n";
99   O << CurrentFnName << ":\n";
100
101   // Number each basic block so that we can consistently refer to them
102   // in PC-relative references.
103   NumberForBB.clear();
104   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
105        I != E; ++I) {
106     NumberForBB[I->getBasicBlock()] = BBNumber++;
107   }
108
109   // Print out code for the function.
110   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
111        I != E; ++I) {
112     // Print a label for the basic block.
113     O << ".LBB" << Mang->getValueName(MF.getFunction ())
114       << "_" << I->getNumber () << ":\t! "
115       << I->getBasicBlock ()->getName () << "\n";
116     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
117          II != E; ++II) {
118       // Print the assembly for the instruction.
119       O << "\t";
120       printInstruction(II);
121       ++EmittedInsts;
122     }
123   }
124
125   // We didn't modify anything.
126   return false;
127 }
128
129 void SparcV8AsmPrinter::printOperand(const MachineInstr *MI, int opNum) {
130   const MachineOperand &MO = MI->getOperand (opNum);
131   const MRegisterInfo &RI = *TM.getRegisterInfo();
132   bool CloseParen = false;
133   if (MI->getOpcode() == V8::SETHIi && !MO.isRegister() && !MO.isImmediate()) {
134     O << "%hi(";
135     CloseParen = true;
136   } else if (MI->getOpcode() ==V8::ORri &&!MO.isRegister() &&!MO.isImmediate())
137   {
138     O << "%lo(";
139     CloseParen = true;
140   }
141   switch (MO.getType()) {
142   case MachineOperand::MO_VirtualRegister:
143     if (Value *V = MO.getVRegValueOrNull()) {
144       O << "<" << V->getName() << ">";
145       break;
146     }
147     // FALLTHROUGH
148   case MachineOperand::MO_MachineRegister:
149     if (MRegisterInfo::isPhysicalRegister(MO.getReg()))
150       O << "%" << LowercaseString (RI.get(MO.getReg()).Name);
151     else
152       O << "%reg" << MO.getReg();
153     break;
154
155   case MachineOperand::MO_SignExtendedImmed:
156   case MachineOperand::MO_UnextendedImmed:
157     O << (int)MO.getImmedValue();
158     break;
159   case MachineOperand::MO_MachineBasicBlock: {
160     MachineBasicBlock *MBBOp = MO.getMachineBasicBlock();
161     O << ".LBB" << Mang->getValueName(MBBOp->getParent()->getFunction())
162       << "_" << MBBOp->getNumber () << "\t! "
163       << MBBOp->getBasicBlock ()->getName ();
164     return;
165   }
166   case MachineOperand::MO_PCRelativeDisp:
167     std::cerr << "Shouldn't use addPCDisp() when building SparcV8 MachineInstrs";
168     abort ();
169     return;
170   case MachineOperand::MO_GlobalAddress:
171     O << Mang->getValueName(MO.getGlobal());
172     break;
173   case MachineOperand::MO_ExternalSymbol:
174     O << MO.getSymbolName();
175     break;
176   case MachineOperand::MO_ConstantPoolIndex:
177     O << PrivateGlobalPrefix << "CPI" << getFunctionNumber() << "_"
178       << MO.getConstantPoolIndex();
179     break;
180   default:
181     O << "<unknown operand type>"; abort (); break;
182   }
183   if (CloseParen) O << ")";
184 }
185
186 void SparcV8AsmPrinter::printMemOperand(const MachineInstr *MI, int opNum) {
187   printOperand(MI, opNum);
188   O << "+";
189   if (MI->getOperand(opNum+1).getType() == MachineOperand::MO_GlobalAddress) {
190     O << "%lo(";
191     printOperand(MI, opNum+1);
192     O << ")";
193   } else {
194     printOperand(MI, opNum+1);
195   }
196 }
197
198
199 bool SparcV8AsmPrinter::doInitialization(Module &M) {
200   Mang = new Mangler(M);
201   return false; // success
202 }
203
204 bool SparcV8AsmPrinter::doFinalization(Module &M) {
205   const TargetData &TD = TM.getTargetData();
206
207   // Print out module-level global variables here.
208   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
209     if (I->hasInitializer()) {   // External global require no code
210       O << "\n\n";
211       std::string name = Mang->getValueName(I);
212       Constant *C = I->getInitializer();
213       unsigned Size = TD.getTypeSize(C->getType());
214       unsigned Align = TD.getTypeAlignment(C->getType());
215
216       if (C->isNullValue() &&
217           (I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
218            I->hasWeakLinkage() /* FIXME: Verify correct */)) {
219         SwitchSection(".data", I);
220         if (I->hasInternalLinkage())
221           O << "\t.local " << name << "\n";
222
223         O << "\t.comm " << name << "," << TD.getTypeSize(C->getType())
224           << "," << (unsigned)TD.getTypeAlignment(C->getType());
225         O << "\t\t! ";
226         WriteAsOperand(O, I, true, true, &M);
227         O << "\n";
228       } else {
229         switch (I->getLinkage()) {
230         case GlobalValue::LinkOnceLinkage:
231         case GlobalValue::WeakLinkage:   // FIXME: Verify correct for weak.
232           // Nonnull linkonce -> weak
233           O << "\t.weak " << name << "\n";
234           SwitchSection("", I);
235           O << "\t.section\t\".llvm.linkonce.d." << name
236             << "\",\"aw\",@progbits\n";
237           break;
238
239         case GlobalValue::AppendingLinkage:
240           // FIXME: appending linkage variables should go into a section of
241           // their name or something.  For now, just emit them as external.
242         case GlobalValue::ExternalLinkage:
243           // If external or appending, declare as a global symbol
244           O << "\t.globl " << name << "\n";
245           // FALL THROUGH
246         case GlobalValue::InternalLinkage:
247           if (C->isNullValue())
248             SwitchSection(".bss", I);
249           else
250             SwitchSection(".data", I);
251           break;
252         case GlobalValue::GhostLinkage:
253           std::cerr << "Should not have any unmaterialized functions!\n";
254           abort();
255         }
256
257         O << "\t.align " << Align << "\n";
258         O << "\t.type " << name << ",#object\n";
259         O << "\t.size " << name << "," << Size << "\n";
260         O << name << ":\t\t\t\t! ";
261         WriteAsOperand(O, I, true, true, &M);
262         O << " = ";
263         WriteAsOperand(O, C, false, false, &M);
264         O << "\n";
265         EmitGlobalConstant(C);
266       }
267     }
268
269   AsmPrinter::doFinalization(M);
270   return false; // success
271 }