982ef5e851948838e192f391219d434472dc0da2
[oota-llvm.git] / lib / Target / Alpha / AsmPrinter / AlphaAsmPrinter.cpp
1 //===-- AlphaAsmPrinter.cpp - Alpha LLVM assembly writer ------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // 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 Alpha assembly language.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "asm-printer"
16 #include "Alpha.h"
17 #include "AlphaInstrInfo.h"
18 #include "AlphaTargetMachine.h"
19 #include "llvm/Module.h"
20 #include "llvm/MDNode.h"
21 #include "llvm/Type.h"
22 #include "llvm/Assembly/Writer.h"
23 #include "llvm/CodeGen/AsmPrinter.h"
24 #include "llvm/CodeGen/DwarfWriter.h"
25 #include "llvm/Target/TargetAsmInfo.h"
26 #include "llvm/Target/TargetMachine.h"
27 #include "llvm/Support/Compiler.h"
28 #include "llvm/Support/Mangler.h"
29 #include "llvm/Support/raw_ostream.h"
30 #include "llvm/ADT/Statistic.h"
31 using namespace llvm;
32
33 STATISTIC(EmittedInsts, "Number of machine instrs printed");
34
35 namespace {
36   struct VISIBILITY_HIDDEN AlphaAsmPrinter : public AsmPrinter {
37     /// Unique incrementer for label values for referencing Global values.
38     ///
39
40     explicit AlphaAsmPrinter(raw_ostream &o, TargetMachine &tm,
41                              const TargetAsmInfo *T, bool V)
42       : AsmPrinter(o, tm, T, V) {}
43
44     virtual const char *getPassName() const {
45       return "Alpha Assembly Printer";
46     }
47     bool printInstruction(const MachineInstr *MI);
48     void printOp(const MachineOperand &MO, bool IsCallOp = false);
49     void printOperand(const MachineInstr *MI, int opNum);
50     void printBaseOffsetPair (const MachineInstr *MI, int i, bool brackets=true);
51     void printModuleLevelGV(const GlobalVariable* GVar);
52     bool runOnMachineFunction(MachineFunction &F);
53     bool doInitialization(Module &M);
54     bool doFinalization(Module &M);
55
56     bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
57                          unsigned AsmVariant, const char *ExtraCode);
58     bool PrintAsmMemoryOperand(const MachineInstr *MI,
59                                unsigned OpNo,
60                                unsigned AsmVariant,
61                                const char *ExtraCode);
62   };
63 } // end of anonymous namespace
64
65 /// createAlphaCodePrinterPass - Returns a pass that prints the Alpha
66 /// assembly code for a MachineFunction to the given output stream,
67 /// using the given target machine description.  This should work
68 /// regardless of whether the function is in SSA form.
69 ///
70 FunctionPass *llvm::createAlphaCodePrinterPass(raw_ostream &o,
71                                                TargetMachine &tm,
72                                                bool verbose) {
73   return new AlphaAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
74 }
75
76 #include "AlphaGenAsmWriter.inc"
77
78 void AlphaAsmPrinter::printOperand(const MachineInstr *MI, int opNum)
79 {
80   const MachineOperand &MO = MI->getOperand(opNum);
81   if (MO.getType() == MachineOperand::MO_Register) {
82     assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
83            "Not physreg??");
84     O << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
85   } else if (MO.isImm()) {
86     O << MO.getImm();
87     assert(MO.getImm() < (1 << 30));
88   } else {
89     printOp(MO);
90   }
91 }
92
93
94 void AlphaAsmPrinter::printOp(const MachineOperand &MO, bool IsCallOp) {
95   const TargetRegisterInfo &RI = *TM.getRegisterInfo();
96
97   switch (MO.getType()) {
98   case MachineOperand::MO_Register:
99     O << RI.get(MO.getReg()).AsmName;
100     return;
101
102   case MachineOperand::MO_Immediate:
103     cerr << "printOp() does not handle immediate values\n";
104     abort();
105     return;
106
107   case MachineOperand::MO_MachineBasicBlock:
108     printBasicBlockLabel(MO.getMBB());
109     return;
110
111   case MachineOperand::MO_ConstantPoolIndex:
112     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
113       << MO.getIndex();
114     return;
115
116   case MachineOperand::MO_ExternalSymbol:
117     O << MO.getSymbolName();
118     return;
119
120   case MachineOperand::MO_GlobalAddress: {
121     GlobalValue *GV = MO.getGlobal();
122     O << Mang->getValueName(GV);
123     return;
124   }
125
126   case MachineOperand::MO_JumpTableIndex:
127     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
128       << '_' << MO.getIndex();
129     return;
130
131   default:
132     O << "<unknown operand type: " << MO.getType() << ">";
133     return;
134   }
135 }
136
137 /// runOnMachineFunction - This uses the printMachineInstruction()
138 /// method to print assembly for each instruction.
139 ///
140 bool AlphaAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
141   this->MF = &MF;
142
143   SetupMachineFunction(MF);
144   O << "\n\n";
145
146   // Print out constants referenced by the function
147   EmitConstantPool(MF.getConstantPool());
148
149   // Print out jump tables referenced by the function
150   EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
151
152   // Print out labels for the function.
153   const Function *F = MF.getFunction();
154   SwitchToSection(TAI->SectionForGlobal(F));
155
156   EmitAlignment(MF.getAlignment(), F);
157   switch (F->getLinkage()) {
158   default: assert(0 && "Unknown linkage type!");
159   case Function::InternalLinkage:  // Symbols default to internal.
160   case Function::PrivateLinkage:
161     break;
162    case Function::ExternalLinkage:
163      O << "\t.globl " << CurrentFnName << "\n";
164      break;
165   case Function::WeakAnyLinkage:
166   case Function::WeakODRLinkage:
167   case Function::LinkOnceAnyLinkage:
168   case Function::LinkOnceODRLinkage:
169     O << TAI->getWeakRefDirective() << CurrentFnName << "\n";
170     break;
171   }
172
173   printVisibility(CurrentFnName, F->getVisibility());
174
175   O << "\t.ent " << CurrentFnName << "\n";
176
177   O << CurrentFnName << ":\n";
178
179   // Print out code for the function.
180   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
181        I != E; ++I) {
182     if (I != MF.begin()) {
183       printBasicBlockLabel(I, true, true);
184       O << '\n';
185     }
186     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
187          II != E; ++II) {
188       // Print the assembly for the instruction.
189       ++EmittedInsts;
190       if (!printInstruction(II)) {
191         assert(0 && "Unhandled instruction in asm writer!");
192         abort();
193       }
194     }
195   }
196
197   O << "\t.end " << CurrentFnName << "\n";
198
199   // We didn't modify anything.
200   return false;
201 }
202
203 bool AlphaAsmPrinter::doInitialization(Module &M)
204 {
205   if(TM.getSubtarget<AlphaSubtarget>().hasCT())
206     O << "\t.arch ev6\n"; //This might need to be ev67, so leave this test here
207   else
208     O << "\t.arch ev6\n";
209   O << "\t.set noat\n";
210   return AsmPrinter::doInitialization(M);
211 }
212
213 void AlphaAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
214   const TargetData *TD = TM.getTargetData();
215
216   if (!GVar->hasInitializer()) return;  // External global require no code
217
218   // Check to see if this is a special global used by LLVM, if so, emit it.
219   if (EmitSpecialLLVMGlobal(GVar))
220     return;
221
222   std::string name = Mang->getValueName(GVar);
223   Constant *C = GVar->getInitializer();
224   if (isa<MDNode>(C) || isa<MDString>(C))
225     return;
226   unsigned Size = TD->getTypeAllocSize(C->getType());
227   unsigned Align = TD->getPreferredAlignmentLog(GVar);
228
229   // 0: Switch to section
230   SwitchToSection(TAI->SectionForGlobal(GVar));
231
232   // 1: Check visibility
233   printVisibility(name, GVar->getVisibility());
234
235   // 2: Kind
236   switch (GVar->getLinkage()) {
237    case GlobalValue::LinkOnceAnyLinkage:
238    case GlobalValue::LinkOnceODRLinkage:
239    case GlobalValue::WeakAnyLinkage:
240    case GlobalValue::WeakODRLinkage:
241    case GlobalValue::CommonLinkage:
242     O << TAI->getWeakRefDirective() << name << '\n';
243     break;
244    case GlobalValue::AppendingLinkage:
245    case GlobalValue::ExternalLinkage:
246       O << TAI->getGlobalDirective() << name << "\n";
247       break;
248     case GlobalValue::InternalLinkage:
249     case GlobalValue::PrivateLinkage:
250       break;
251     default:
252       assert(0 && "Unknown linkage type!");
253       cerr << "Unknown linkage type!\n";
254       abort();
255     }
256
257   // 3: Type, Size, Align
258   if (TAI->hasDotTypeDotSizeDirective()) {
259     O << "\t.type\t" << name << ", @object\n";
260     O << "\t.size\t" << name << ", " << Size << "\n";
261   }
262
263   EmitAlignment(Align, GVar);
264
265   O << name << ":\n";
266
267   EmitGlobalConstant(C);
268   O << '\n';
269 }
270
271 bool AlphaAsmPrinter::doFinalization(Module &M) {
272   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
273        I != E; ++I)
274     printModuleLevelGV(I);
275
276   return AsmPrinter::doFinalization(M);
277 }
278
279 /// PrintAsmOperand - Print out an operand for an inline asm expression.
280 ///
281 bool AlphaAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
282                                       unsigned AsmVariant,
283                                       const char *ExtraCode) {
284   printOperand(MI, OpNo);
285   return false;
286 }
287
288 bool AlphaAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
289                                             unsigned OpNo,
290                                             unsigned AsmVariant,
291                                             const char *ExtraCode) {
292   if (ExtraCode && ExtraCode[0])
293     return true; // Unknown modifier.
294   O << "0(";
295   printOperand(MI, OpNo);
296   O << ")";
297   return false;
298 }
299
300 // Force static initialization.
301 extern "C" void LLVMInitializeAlphaAsmPrinter() { }
302
303 namespace {
304   static struct Register {
305     Register() {
306       AlphaTargetMachine::registerAsmPrinter(createAlphaCodePrinterPass);
307     }
308   } Registrator;
309 }