blob: 0d0a5b3cc130740deddae204303b547554d765b1 [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001//===-- Writer.cpp - Library for Printing VM assembly files ------*- C++ -*--=//
2//
3// This library implements the functionality defined in llvm/Assembly/Writer.h
4//
5// This library uses the Analysis library to figure out offsets for
6// variables in the method tables...
7//
8// TODO: print out the type name instead of the full type if a particular type
9// is in the symbol table...
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm/Assembly/Writer.h"
14#include "llvm/Analysis/SlotCalculator.h"
15#include "llvm/Module.h"
16#include "llvm/Method.h"
17#include "llvm/BasicBlock.h"
18#include "llvm/ConstPoolVals.h"
19#include "llvm/iOther.h"
20#include "llvm/iMemory.h"
21
Chris Lattner2e9fee42001-07-12 23:35:26 +000022void DebugValue(const Value *V) {
23 cerr << V << endl;
24}
25
Chris Lattner5e5abe32001-07-20 19:15:21 +000026// WriteAsOperand - Write the name of the specified value out to the specified
27// ostream. This can be useful when you just want to print int %reg126, not the
28// whole instruction that generated it.
29//
30ostream &WriteAsOperand(ostream &Out, const Value *V, bool PrintType,
31 bool PrintName, SlotCalculator *Table) {
32 if (PrintType)
33 Out << " " << V->getType();
34
35 if (V->hasName() && PrintName) {
36 Out << " %" << V->getName();
37 } else {
38 if (const ConstPoolVal *CPV = V->castConstant()) {
39 Out << " " << CPV->getStrValue();
40 } else {
41 int Slot;
42 if (Table) {
43 Slot = Table->getValSlot(V);
44 } else {
45 if (const Type *Ty = V->castType()) {
46 return Out << " " << Ty;
47 } else if (const MethodArgument *MA = V->castMethodArgument()) {
48 Table = new SlotCalculator(MA->getParent(), true);
49 } else if (const Instruction *I = V->castInstruction()) {
50 Table = new SlotCalculator(I->getParent()->getParent(), true);
51 } else if (const BasicBlock *BB = V->castBasicBlock()) {
52 Table = new SlotCalculator(BB->getParent(), true);
53 } else if (const Method *Meth = V->castMethod()) {
54 Table = new SlotCalculator(Meth, true);
55 } else if (const Module *Mod = V->castModule()) {
56 Table = new SlotCalculator(Mod, true);
57 } else {
58 return Out << "BAD VALUE TYPE!";
59 }
60 Slot = Table->getValSlot(V);
61 delete Table;
62 }
63 if (Slot >= 0) Out << " %" << Slot;
64 else if (PrintName)
65 Out << "<badref>"; // Not embeded into a location?
66 }
67 }
68 return Out;
69}
70
71
Chris Lattner2e9fee42001-07-12 23:35:26 +000072
Chris Lattner2f7c9632001-06-06 20:29:01 +000073class AssemblyWriter : public ModuleAnalyzer {
74 ostream &Out;
75 SlotCalculator &Table;
76public:
77 inline AssemblyWriter(ostream &o, SlotCalculator &Tab) : Out(o), Table(Tab) {
78 }
79
80 inline void write(const Module *M) { processModule(M); }
81 inline void write(const Method *M) { processMethod(M); }
82 inline void write(const BasicBlock *BB) { processBasicBlock(BB); }
83 inline void write(const Instruction *I) { processInstruction(I); }
84 inline void write(const ConstPoolVal *CPV) { processConstant(CPV); }
85
86protected:
87 virtual bool visitMethod(const Method *M);
88 virtual bool processConstPool(const ConstantPool &CP, bool isMethod);
89 virtual bool processConstant(const ConstPoolVal *CPV);
90 virtual bool processMethod(const Method *M);
91 virtual bool processMethodArgument(const MethodArgument *MA);
92 virtual bool processBasicBlock(const BasicBlock *BB);
93 virtual bool processInstruction(const Instruction *I);
94
95private :
96 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
97};
98
99
100
101// visitMethod - This member is called after the above two steps, visting each
102// method, because they are effectively values that go into the constant pool.
103//
104bool AssemblyWriter::visitMethod(const Method *M) {
105 return false;
106}
107
108bool AssemblyWriter::processConstPool(const ConstantPool &CP, bool isMethod) {
109 // Done printing arguments...
Chris Lattner90e0d462001-07-25 22:47:55 +0000110 if (isMethod) {
Chris Lattner2091efb2001-07-28 17:49:02 +0000111 const MethodType *MT = CP.getParentV()->castMethodAsserting()->getType()->
112 isMethodType();
113 if (MT->isVarArg()) {
114 if (MT->getParamTypes().size())
115 Out << ", ";
116 Out << "..."; // Output varargs portion of signature!
117 }
Chris Lattner90e0d462001-07-25 22:47:55 +0000118 Out << ")\n";
119 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000120
121 ModuleAnalyzer::processConstPool(CP, isMethod);
122
Chris Lattnera7620d92001-07-15 06:35:59 +0000123 if (isMethod) {
124 if (!CP.getParentV()->castMethodAsserting()->isExternal())
125 Out << "begin";
126 } else {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000127 Out << "implementation\n";
Chris Lattnera7620d92001-07-15 06:35:59 +0000128 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000129 return false;
130}
131
132
133// processConstant - Print out a constant pool entry...
134//
135bool AssemblyWriter::processConstant(const ConstPoolVal *CPV) {
Chris Lattneree998be2001-07-26 16:29:38 +0000136 if (!CPV->hasName())
137 return false; // Don't print out unnamed constants, they will be inlined
Chris Lattner2f7c9632001-06-06 20:29:01 +0000138
Chris Lattneree998be2001-07-26 16:29:38 +0000139 // Print out name...
140 Out << "\t%" << CPV->getName() << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000141
Chris Lattneree998be2001-07-26 16:29:38 +0000142 // Print out the constant type...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000143 Out << CPV->getType();
144
145 // Write the value out now...
146 writeOperand(CPV, false, false);
147
148 if (!CPV->hasName() && CPV->getType() != Type::VoidTy) {
149 int Slot = Table.getValSlot(CPV); // Print out the def slot taken...
150 Out << "\t\t; <" << CPV->getType() << ">:";
151 if (Slot >= 0) Out << Slot;
152 else Out << "<badref>";
153 }
154
155 Out << endl;
156 return false;
157}
158
159// processMethod - Process all aspects of a method.
160//
161bool AssemblyWriter::processMethod(const Method *M) {
162 // Print out the return type and name...
Chris Lattnera7620d92001-07-15 06:35:59 +0000163 Out << "\n" << (M->isExternal() ? "declare " : "")
164 << M->getReturnType() << " \"" << M->getName() << "\"(";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000165 Table.incorporateMethod(M);
166 ModuleAnalyzer::processMethod(M);
167 Table.purgeMethod();
Chris Lattnera7620d92001-07-15 06:35:59 +0000168 if (!M->isExternal())
169 Out << "end\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000170 return false;
171}
172
173// processMethodArgument - This member is called for every argument that
174// is passed into the method. Simply print it out
175//
176bool AssemblyWriter::processMethodArgument(const MethodArgument *Arg) {
177 // Insert commas as we go... the first arg doesn't get a comma
178 if (Arg != Arg->getParent()->getArgumentList().front()) Out << ", ";
179
180 // Output type...
181 Out << Arg->getType();
182
183 // Output name, if available...
184 if (Arg->hasName())
185 Out << " %" << Arg->getName();
186 else if (Table.getValSlot(Arg) < 0)
187 Out << "<badref>";
188
189 return false;
190}
191
192// processBasicBlock - This member is called for each basic block in a methd.
193//
194bool AssemblyWriter::processBasicBlock(const BasicBlock *BB) {
195 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattnera2f01872001-06-07 16:58:55 +0000196 Out << "\n" << BB->getName() << ":";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000197 } else {
198 int Slot = Table.getValSlot(BB);
Chris Lattnera2f01872001-06-07 16:58:55 +0000199 Out << "\n; <label>:";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000200 if (Slot >= 0)
Chris Lattnera2f01872001-06-07 16:58:55 +0000201 Out << Slot; // Extra newline seperates out label's
Chris Lattner2f7c9632001-06-06 20:29:01 +0000202 else
Chris Lattnera2f01872001-06-07 16:58:55 +0000203 Out << "<badref>";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000204 }
Chris Lattnera2f01872001-06-07 16:58:55 +0000205 Out << "\t\t\t\t\t;[#uses=" << BB->use_size() << "]\n"; // Output # uses
Chris Lattner2f7c9632001-06-06 20:29:01 +0000206
207 ModuleAnalyzer::processBasicBlock(BB);
208 return false;
209}
210
211// processInstruction - This member is called for each Instruction in a methd.
212//
213bool AssemblyWriter::processInstruction(const Instruction *I) {
214 Out << "\t";
215
216 // Print out name if it exists...
217 if (I && I->hasName())
218 Out << "%" << I->getName() << " = ";
219
220 // Print out the opcode...
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000221 Out << I->getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000222
223 // Print out the type of the operands...
Chris Lattnera073acb2001-07-07 08:36:50 +0000224 const Value *Operand = I->getNumOperands() ? I->getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000225
226 // Special case conditional branches to swizzle the condition out to the front
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000227 if (I->getOpcode() == Instruction::Br && I->getNumOperands() > 1) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000228 writeOperand(I->getOperand(2), true);
229 Out << ",";
230 writeOperand(Operand, true);
231 Out << ",";
232 writeOperand(I->getOperand(1), true);
233
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000234 } else if (I->getOpcode() == Instruction::Switch) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000235 // Special case switch statement to get formatting nice and correct...
236 writeOperand(Operand , true); Out << ",";
237 writeOperand(I->getOperand(1), true); Out << " [";
238
Chris Lattnera073acb2001-07-07 08:36:50 +0000239 for (unsigned op = 2, Eop = I->getNumOperands(); op < Eop; op += 2) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000240 Out << "\n\t\t";
Chris Lattnera073acb2001-07-07 08:36:50 +0000241 writeOperand(I->getOperand(op ), true); Out << ",";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000242 writeOperand(I->getOperand(op+1), true);
243 }
244 Out << "\n\t]";
Chris Lattner4cee8d82001-06-27 23:41:11 +0000245 } else if (I->isPHINode()) {
Chris Lattner931ef3b2001-06-11 15:04:20 +0000246 Out << " " << Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000247
Chris Lattner931ef3b2001-06-11 15:04:20 +0000248 Out << " ["; writeOperand(Operand, false); Out << ",";
Chris Lattner4b94e232001-06-21 05:29:56 +0000249 writeOperand(I->getOperand(1), false); Out << " ]";
Chris Lattnera073acb2001-07-07 08:36:50 +0000250 for (unsigned op = 2, Eop = I->getNumOperands(); op < Eop; op += 2) {
251 Out << ", [";
252 writeOperand(I->getOperand(op ), false); Out << ",";
Chris Lattner4b94e232001-06-21 05:29:56 +0000253 writeOperand(I->getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +0000254 }
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000255 } else if (I->getOpcode() == Instruction::Ret && !Operand) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000256 Out << " void";
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000257 } else if (I->getOpcode() == Instruction::Call) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000258 writeOperand(Operand, true);
259 Out << "(";
Chris Lattnera073acb2001-07-07 08:36:50 +0000260 if (I->getNumOperands() > 1) writeOperand(I->getOperand(1), true);
261 for (unsigned op = 2, Eop = I->getNumOperands(); op < Eop; ++op) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000262 Out << ",";
Chris Lattnera073acb2001-07-07 08:36:50 +0000263 writeOperand(I->getOperand(op), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000264 }
265
266 Out << " )";
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000267 } else if (I->getOpcode() == Instruction::Malloc ||
268 I->getOpcode() == Instruction::Alloca) {
Chris Lattnera073acb2001-07-07 08:36:50 +0000269 Out << " " << ((const PointerType*)I->getType())->getValueType();
270 if (I->getNumOperands()) {
271 Out << ",";
272 writeOperand(I->getOperand(0), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000273 }
Chris Lattnera6821822001-07-08 04:57:15 +0000274 } else if (I->getOpcode() == Instruction::Cast) {
275 writeOperand(Operand, true);
276 Out << " to " << I->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000277 } else if (Operand) { // Print the normal way...
278
279 // PrintAllTypes - Instructions who have operands of all the same type
280 // omit the type from all but the first operand. If the instruction has
281 // different type operands (for example br), then they are all printed.
282 bool PrintAllTypes = false;
283 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000284
Chris Lattnera073acb2001-07-07 08:36:50 +0000285 for (unsigned i = 1, E = I->getNumOperands(); i != E; ++i) {
286 Operand = I->getOperand(i);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000287 if (Operand->getType() != TheType) {
288 PrintAllTypes = true; // We have differing types! Print them all!
289 break;
290 }
291 }
292
293 if (!PrintAllTypes)
294 Out << " " << I->getOperand(0)->getType();
295
Chris Lattnera073acb2001-07-07 08:36:50 +0000296 for (unsigned i = 0, E = I->getNumOperands(); i != E; ++i) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000297 if (i) Out << ",";
Chris Lattnera073acb2001-07-07 08:36:50 +0000298 writeOperand(I->getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000299 }
300 }
301
302 // Print a little comment after the instruction indicating which slot it
303 // occupies.
304 //
Chris Lattnera2f01872001-06-07 16:58:55 +0000305 if (I->getType() != Type::VoidTy) {
306 Out << "\t\t; <" << I->getType() << ">";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000307
Chris Lattnera2f01872001-06-07 16:58:55 +0000308 if (!I->hasName()) {
309 int Slot = Table.getValSlot(I); // Print out the def slot taken...
310 if (Slot >= 0) Out << ":" << Slot;
311 else Out << ":<badref>";
312 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000313 Out << "\t[#uses=" << I->use_size() << "]"; // Output # uses
314 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000315 Out << endl;
316
317 return false;
318}
319
320
321void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
322 bool PrintName) {
Chris Lattner5e5abe32001-07-20 19:15:21 +0000323 WriteAsOperand(Out, Operand, PrintType, PrintName, &Table);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000324}
325
326
327//===----------------------------------------------------------------------===//
328// External Interface declarations
329//===----------------------------------------------------------------------===//
330
331
332
333void WriteToAssembly(const Module *M, ostream &o) {
334 if (M == 0) { o << "<null> module\n"; return; }
335 SlotCalculator SlotTable(M, true);
336 AssemblyWriter W(o, SlotTable);
337
338 W.write(M);
339}
340
341void WriteToAssembly(const Method *M, ostream &o) {
342 if (M == 0) { o << "<null> method\n"; return; }
343 SlotCalculator SlotTable(M->getParent(), true);
344 AssemblyWriter W(o, SlotTable);
345
346 W.write(M);
347}
348
349
350void WriteToAssembly(const BasicBlock *BB, ostream &o) {
351 if (BB == 0) { o << "<null> basic block\n"; return; }
352
353 SlotCalculator SlotTable(BB->getParent(), true);
354 AssemblyWriter W(o, SlotTable);
355
356 W.write(BB);
357}
358
359void WriteToAssembly(const ConstPoolVal *CPV, ostream &o) {
360 if (CPV == 0) { o << "<null> constant pool value\n"; return; }
Chris Lattner2091efb2001-07-28 17:49:02 +0000361 WriteAsOperand(o, CPV, true, true, 0);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000362}
363
364void WriteToAssembly(const Instruction *I, ostream &o) {
365 if (I == 0) { o << "<null> instruction\n"; return; }
366
367 SlotCalculator SlotTable(I->getParent() ? I->getParent()->getParent() : 0,
368 true);
369 AssemblyWriter W(o, SlotTable);
370
371 W.write(I);
372}