blob: f61c54713d385ae749e8102eafef28de4a9a5886 [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"
Chris Lattnerda975502001-09-10 07:58:01 +000017#include "llvm/GlobalVariable.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000018#include "llvm/BasicBlock.h"
19#include "llvm/ConstPoolVals.h"
20#include "llvm/iOther.h"
21#include "llvm/iMemory.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000022#include "llvm/Support/STLExtras.h"
23#include "llvm/SymbolTable.h"
24#include <algorithm>
Chris Lattner2f7c9632001-06-06 20:29:01 +000025
Chris Lattner2e9fee42001-07-12 23:35:26 +000026void DebugValue(const Value *V) {
27 cerr << V << endl;
28}
29
Chris Lattner5e5abe32001-07-20 19:15:21 +000030// WriteAsOperand - Write the name of the specified value out to the specified
31// ostream. This can be useful when you just want to print int %reg126, not the
32// whole instruction that generated it.
33//
34ostream &WriteAsOperand(ostream &Out, const Value *V, bool PrintType,
35 bool PrintName, SlotCalculator *Table) {
36 if (PrintType)
37 Out << " " << V->getType();
38
Chris Lattnerfee714f2001-09-07 16:36:04 +000039 if (PrintName && V->hasName()) {
Chris Lattner5e5abe32001-07-20 19:15:21 +000040 Out << " %" << V->getName();
41 } else {
42 if (const ConstPoolVal *CPV = V->castConstant()) {
43 Out << " " << CPV->getStrValue();
44 } else {
45 int Slot;
46 if (Table) {
47 Slot = Table->getValSlot(V);
48 } else {
49 if (const Type *Ty = V->castType()) {
50 return Out << " " << Ty;
51 } else if (const MethodArgument *MA = V->castMethodArgument()) {
52 Table = new SlotCalculator(MA->getParent(), true);
53 } else if (const Instruction *I = V->castInstruction()) {
54 Table = new SlotCalculator(I->getParent()->getParent(), true);
55 } else if (const BasicBlock *BB = V->castBasicBlock()) {
56 Table = new SlotCalculator(BB->getParent(), true);
57 } else if (const Method *Meth = V->castMethod()) {
58 Table = new SlotCalculator(Meth, true);
59 } else if (const Module *Mod = V->castModule()) {
60 Table = new SlotCalculator(Mod, true);
61 } else {
62 return Out << "BAD VALUE TYPE!";
63 }
64 Slot = Table->getValSlot(V);
65 delete Table;
66 }
67 if (Slot >= 0) Out << " %" << Slot;
68 else if (PrintName)
69 Out << "<badref>"; // Not embeded into a location?
70 }
71 }
72 return Out;
73}
74
75
Chris Lattner2e9fee42001-07-12 23:35:26 +000076
Chris Lattnerfee714f2001-09-07 16:36:04 +000077class AssemblyWriter {
Chris Lattner2f7c9632001-06-06 20:29:01 +000078 ostream &Out;
79 SlotCalculator &Table;
80public:
81 inline AssemblyWriter(ostream &o, SlotCalculator &Tab) : Out(o), Table(Tab) {
82 }
83
84 inline void write(const Module *M) { processModule(M); }
Chris Lattnerda975502001-09-10 07:58:01 +000085 inline void write(const GlobalVariable *G) { processGlobal(G); }
Chris Lattner2f7c9632001-06-06 20:29:01 +000086 inline void write(const Method *M) { processMethod(M); }
87 inline void write(const BasicBlock *BB) { processBasicBlock(BB); }
88 inline void write(const Instruction *I) { processInstruction(I); }
89 inline void write(const ConstPoolVal *CPV) { processConstant(CPV); }
90
Chris Lattner2f7c9632001-06-06 20:29:01 +000091private :
Chris Lattnerfee714f2001-09-07 16:36:04 +000092 void processModule(const Module *M);
93 void processSymbolTable(const SymbolTable &ST);
94 void processConstant(const ConstPoolVal *CPV);
Chris Lattnerda975502001-09-10 07:58:01 +000095 void processGlobal(const GlobalVariable *GV);
Chris Lattnerfee714f2001-09-07 16:36:04 +000096 void processMethod(const Method *M);
97 void processMethodArgument(const MethodArgument *MA);
98 void processBasicBlock(const BasicBlock *BB);
99 void processInstruction(const Instruction *I);
Chris Lattnerda975502001-09-10 07:58:01 +0000100
Chris Lattner2f7c9632001-06-06 20:29:01 +0000101 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
102};
103
104
Chris Lattnerfee714f2001-09-07 16:36:04 +0000105void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
106 bool PrintName) {
107 WriteAsOperand(Out, Operand, PrintType, PrintName, &Table);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000108}
109
Chris Lattner2f7c9632001-06-06 20:29:01 +0000110
Chris Lattnerfee714f2001-09-07 16:36:04 +0000111void AssemblyWriter::processModule(const Module *M) {
112 // Loop over the symbol table, emitting all named constants...
113 if (M->hasSymbolTable())
114 processSymbolTable(*M->getSymbolTable());
Chris Lattnerda975502001-09-10 07:58:01 +0000115
116 for_each(M->gbegin(), M->gend(),
117 bind_obj(this, &AssemblyWriter::processGlobal));
118
Chris Lattnerfee714f2001-09-07 16:36:04 +0000119 Out << "implementation\n";
120
121 // Output all of the methods...
122 for_each(M->begin(), M->end(), bind_obj(this,&AssemblyWriter::processMethod));
123}
124
Chris Lattnerda975502001-09-10 07:58:01 +0000125void AssemblyWriter::processGlobal(const GlobalVariable *GV) {
Chris Lattnerda975502001-09-10 07:58:01 +0000126 if (GV->hasName()) Out << "%" << GV->getName() << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000127
128 if (!GV->hasInitializer()) Out << "uninitialized ";
129
130 Out << (GV->isConstant() ? "constant " : "global ")
131 << GV->getType()->getValueType()->getDescription();
132
133 if (GV->hasInitializer())
134 writeOperand(GV->getInitializer(), false, false);
135
136 Out << endl;
Chris Lattnerda975502001-09-10 07:58:01 +0000137}
138
Chris Lattnerfee714f2001-09-07 16:36:04 +0000139
140// processSymbolTable - Run through symbol table looking for named constants
141// if a named constant is found, emit it's declaration...
142//
143void AssemblyWriter::processSymbolTable(const SymbolTable &ST) {
144 for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) {
145 SymbolTable::type_const_iterator I = ST.type_begin(TI->first);
146 SymbolTable::type_const_iterator End = ST.type_end(TI->first);
147
148 for (; I != End; ++I) {
149 const Value *V = I->second;
150 if (const ConstPoolVal *CPV = V->castConstant()) {
151 processConstant(CPV);
152 } else if (const Type *Ty = V->castType()) {
153 Out << "\t%" << I->first << " = type " << Ty->getDescription() << endl;
154 }
155 }
Chris Lattnera7620d92001-07-15 06:35:59 +0000156 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000157}
158
159
160// processConstant - Print out a constant pool entry...
161//
Chris Lattnerfee714f2001-09-07 16:36:04 +0000162void AssemblyWriter::processConstant(const ConstPoolVal *CPV) {
163 // Don't print out unnamed constants, they will be inlined
164 if (!CPV->hasName()) return;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000165
Chris Lattneree998be2001-07-26 16:29:38 +0000166 // Print out name...
167 Out << "\t%" << CPV->getName() << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000168
Chris Lattneree998be2001-07-26 16:29:38 +0000169 // Print out the constant type...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000170 Out << CPV->getType();
171
172 // Write the value out now...
173 writeOperand(CPV, false, false);
174
175 if (!CPV->hasName() && CPV->getType() != Type::VoidTy) {
176 int Slot = Table.getValSlot(CPV); // Print out the def slot taken...
177 Out << "\t\t; <" << CPV->getType() << ">:";
178 if (Slot >= 0) Out << Slot;
179 else Out << "<badref>";
180 }
181
182 Out << endl;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000183}
184
185// processMethod - Process all aspects of a method.
186//
Chris Lattnerfee714f2001-09-07 16:36:04 +0000187void AssemblyWriter::processMethod(const Method *M) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000188 // Print out the return type and name...
Chris Lattnera7620d92001-07-15 06:35:59 +0000189 Out << "\n" << (M->isExternal() ? "declare " : "")
190 << M->getReturnType() << " \"" << M->getName() << "\"(";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000191 Table.incorporateMethod(M);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000192
193 // Loop over the arguments, processing them...
194 for_each(M->getArgumentList().begin(), M->getArgumentList().end(),
195 bind_obj(this, &AssemblyWriter::processMethodArgument));
196
197
198 // Finish printing arguments...
199 const MethodType *MT = (const MethodType*)M->getType();
200 if (MT->isVarArg()) {
201 if (MT->getParamTypes().size()) Out << ", ";
202 Out << "..."; // Output varargs portion of signature!
203 }
204 Out << ")\n";
205
206 if (!M->isExternal()) {
207 // Loop over the symbol table, emitting all named constants...
208 if (M->hasSymbolTable())
209 processSymbolTable(*M->getSymbolTable());
210
211 Out << "begin";
212
213 // Output all of its basic blocks... for the method
214 for_each(M->begin(), M->end(),
215 bind_obj(this, &AssemblyWriter::processBasicBlock));
216
Chris Lattnera7620d92001-07-15 06:35:59 +0000217 Out << "end\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +0000218 }
219
220 Table.purgeMethod();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000221}
222
223// processMethodArgument - This member is called for every argument that
224// is passed into the method. Simply print it out
225//
Chris Lattnerfee714f2001-09-07 16:36:04 +0000226void AssemblyWriter::processMethodArgument(const MethodArgument *Arg) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000227 // Insert commas as we go... the first arg doesn't get a comma
228 if (Arg != Arg->getParent()->getArgumentList().front()) Out << ", ";
229
230 // Output type...
231 Out << Arg->getType();
232
233 // Output name, if available...
234 if (Arg->hasName())
235 Out << " %" << Arg->getName();
236 else if (Table.getValSlot(Arg) < 0)
237 Out << "<badref>";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000238}
239
240// processBasicBlock - This member is called for each basic block in a methd.
241//
Chris Lattnerfee714f2001-09-07 16:36:04 +0000242void AssemblyWriter::processBasicBlock(const BasicBlock *BB) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000243 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattnera2f01872001-06-07 16:58:55 +0000244 Out << "\n" << BB->getName() << ":";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000245 } else {
246 int Slot = Table.getValSlot(BB);
Chris Lattnera2f01872001-06-07 16:58:55 +0000247 Out << "\n; <label>:";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000248 if (Slot >= 0)
Chris Lattnera2f01872001-06-07 16:58:55 +0000249 Out << Slot; // Extra newline seperates out label's
Chris Lattner2f7c9632001-06-06 20:29:01 +0000250 else
Chris Lattnera2f01872001-06-07 16:58:55 +0000251 Out << "<badref>";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000252 }
Chris Lattnera2f01872001-06-07 16:58:55 +0000253 Out << "\t\t\t\t\t;[#uses=" << BB->use_size() << "]\n"; // Output # uses
Chris Lattner2f7c9632001-06-06 20:29:01 +0000254
Chris Lattnerfee714f2001-09-07 16:36:04 +0000255 // Output all of the instructions in the basic block...
256 for_each(BB->begin(), BB->end(),
257 bind_obj(this, &AssemblyWriter::processInstruction));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000258}
259
260// processInstruction - This member is called for each Instruction in a methd.
261//
Chris Lattnerfee714f2001-09-07 16:36:04 +0000262void AssemblyWriter::processInstruction(const Instruction *I) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000263 Out << "\t";
264
265 // Print out name if it exists...
266 if (I && I->hasName())
267 Out << "%" << I->getName() << " = ";
268
269 // Print out the opcode...
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000270 Out << I->getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000271
272 // Print out the type of the operands...
Chris Lattnera073acb2001-07-07 08:36:50 +0000273 const Value *Operand = I->getNumOperands() ? I->getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000274
275 // Special case conditional branches to swizzle the condition out to the front
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000276 if (I->getOpcode() == Instruction::Br && I->getNumOperands() > 1) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000277 writeOperand(I->getOperand(2), true);
278 Out << ",";
279 writeOperand(Operand, true);
280 Out << ",";
281 writeOperand(I->getOperand(1), true);
282
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000283 } else if (I->getOpcode() == Instruction::Switch) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000284 // Special case switch statement to get formatting nice and correct...
285 writeOperand(Operand , true); Out << ",";
286 writeOperand(I->getOperand(1), true); Out << " [";
287
Chris Lattnera073acb2001-07-07 08:36:50 +0000288 for (unsigned op = 2, Eop = I->getNumOperands(); op < Eop; op += 2) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000289 Out << "\n\t\t";
Chris Lattnera073acb2001-07-07 08:36:50 +0000290 writeOperand(I->getOperand(op ), true); Out << ",";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000291 writeOperand(I->getOperand(op+1), true);
292 }
293 Out << "\n\t]";
Chris Lattner4cee8d82001-06-27 23:41:11 +0000294 } else if (I->isPHINode()) {
Chris Lattner931ef3b2001-06-11 15:04:20 +0000295 Out << " " << Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000296
Chris Lattner931ef3b2001-06-11 15:04:20 +0000297 Out << " ["; writeOperand(Operand, false); Out << ",";
Chris Lattner4b94e232001-06-21 05:29:56 +0000298 writeOperand(I->getOperand(1), false); Out << " ]";
Chris Lattnera073acb2001-07-07 08:36:50 +0000299 for (unsigned op = 2, Eop = I->getNumOperands(); op < Eop; op += 2) {
300 Out << ", [";
301 writeOperand(I->getOperand(op ), false); Out << ",";
Chris Lattner4b94e232001-06-21 05:29:56 +0000302 writeOperand(I->getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +0000303 }
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000304 } else if (I->getOpcode() == Instruction::Ret && !Operand) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000305 Out << " void";
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000306 } else if (I->getOpcode() == Instruction::Call) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000307 writeOperand(Operand, true);
308 Out << "(";
Chris Lattnera073acb2001-07-07 08:36:50 +0000309 if (I->getNumOperands() > 1) writeOperand(I->getOperand(1), true);
310 for (unsigned op = 2, Eop = I->getNumOperands(); op < Eop; ++op) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000311 Out << ",";
Chris Lattnera073acb2001-07-07 08:36:50 +0000312 writeOperand(I->getOperand(op), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000313 }
314
315 Out << " )";
Chris Lattnerb1ca9cb2001-07-07 19:24:15 +0000316 } else if (I->getOpcode() == Instruction::Malloc ||
317 I->getOpcode() == Instruction::Alloca) {
Chris Lattnera073acb2001-07-07 08:36:50 +0000318 Out << " " << ((const PointerType*)I->getType())->getValueType();
319 if (I->getNumOperands()) {
320 Out << ",";
321 writeOperand(I->getOperand(0), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000322 }
Chris Lattnera6821822001-07-08 04:57:15 +0000323 } else if (I->getOpcode() == Instruction::Cast) {
324 writeOperand(Operand, true);
325 Out << " to " << I->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000326 } else if (Operand) { // Print the normal way...
327
328 // PrintAllTypes - Instructions who have operands of all the same type
329 // omit the type from all but the first operand. If the instruction has
330 // different type operands (for example br), then they are all printed.
331 bool PrintAllTypes = false;
332 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000333
Chris Lattnera073acb2001-07-07 08:36:50 +0000334 for (unsigned i = 1, E = I->getNumOperands(); i != E; ++i) {
335 Operand = I->getOperand(i);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000336 if (Operand->getType() != TheType) {
337 PrintAllTypes = true; // We have differing types! Print them all!
338 break;
339 }
340 }
341
342 if (!PrintAllTypes)
343 Out << " " << I->getOperand(0)->getType();
344
Chris Lattnera073acb2001-07-07 08:36:50 +0000345 for (unsigned i = 0, E = I->getNumOperands(); i != E; ++i) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000346 if (i) Out << ",";
Chris Lattnera073acb2001-07-07 08:36:50 +0000347 writeOperand(I->getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000348 }
349 }
350
351 // Print a little comment after the instruction indicating which slot it
352 // occupies.
353 //
Chris Lattnera2f01872001-06-07 16:58:55 +0000354 if (I->getType() != Type::VoidTy) {
355 Out << "\t\t; <" << I->getType() << ">";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000356
Chris Lattnera2f01872001-06-07 16:58:55 +0000357 if (!I->hasName()) {
358 int Slot = Table.getValSlot(I); // Print out the def slot taken...
359 if (Slot >= 0) Out << ":" << Slot;
360 else Out << ":<badref>";
361 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000362 Out << "\t[#uses=" << I->use_size() << "]"; // Output # uses
363 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000364 Out << endl;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000365}
366
367
368//===----------------------------------------------------------------------===//
369// External Interface declarations
370//===----------------------------------------------------------------------===//
371
372
373
374void WriteToAssembly(const Module *M, ostream &o) {
375 if (M == 0) { o << "<null> module\n"; return; }
376 SlotCalculator SlotTable(M, true);
377 AssemblyWriter W(o, SlotTable);
378
379 W.write(M);
380}
381
Chris Lattneradfe0d12001-09-10 20:08:19 +0000382void WriteToAssembly(const GlobalVariable *G, ostream &o) {
383 if (G == 0) { o << "<null> global variable\n"; return; }
384 SlotCalculator SlotTable(G->getParent(), true);
385 AssemblyWriter W(o, SlotTable);
386 W.write(G);
387}
388
Chris Lattner2f7c9632001-06-06 20:29:01 +0000389void WriteToAssembly(const Method *M, ostream &o) {
390 if (M == 0) { o << "<null> method\n"; return; }
391 SlotCalculator SlotTable(M->getParent(), true);
392 AssemblyWriter W(o, SlotTable);
393
394 W.write(M);
395}
396
397
398void WriteToAssembly(const BasicBlock *BB, ostream &o) {
399 if (BB == 0) { o << "<null> basic block\n"; return; }
400
401 SlotCalculator SlotTable(BB->getParent(), true);
402 AssemblyWriter W(o, SlotTable);
403
404 W.write(BB);
405}
406
407void WriteToAssembly(const ConstPoolVal *CPV, ostream &o) {
408 if (CPV == 0) { o << "<null> constant pool value\n"; return; }
Chris Lattner2091efb2001-07-28 17:49:02 +0000409 WriteAsOperand(o, CPV, true, true, 0);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000410}
411
412void WriteToAssembly(const Instruction *I, ostream &o) {
413 if (I == 0) { o << "<null> instruction\n"; return; }
414
415 SlotCalculator SlotTable(I->getParent() ? I->getParent()->getParent() : 0,
416 true);
417 AssemblyWriter W(o, SlotTable);
418
419 W.write(I);
420}