blob: 2ebce7243bc96a5f03d287b1591a429318996f24 [file] [log] [blame]
Chris Lattner8da78af2002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
Chris Lattner00950542001-06-06 20:29:01 +00002//
3// This library implements the functionality defined in llvm/Assembly/Writer.h
4//
Chris Lattner02b93992002-04-12 18:21:53 +00005// Note that these routines must be extremely tolerant of various errors in the
Chris Lattner8f77dae2003-05-08 02:44:12 +00006// LLVM code, because it can be used for debugging transformations.
Chris Lattner02b93992002-04-12 18:21:53 +00007//
Chris Lattner00950542001-06-06 20:29:01 +00008//===----------------------------------------------------------------------===//
9
Chris Lattnerda1fbcc2001-11-07 04:21:57 +000010#include "llvm/Assembly/CachedWriter.h"
Chris Lattner75cf7cf2002-04-08 22:03:40 +000011#include "llvm/Assembly/Writer.h"
Chris Lattnerf082b802002-07-23 18:07:49 +000012#include "llvm/Assembly/PrintModulePass.h"
Chris Lattnerb5794002002-04-07 22:49:37 +000013#include "llvm/SlotCalculator.h"
Chris Lattner3eb59c02002-04-29 18:46:50 +000014#include "llvm/DerivedTypes.h"
Vikram S. Adveb4dbb442002-07-14 23:14:45 +000015#include "llvm/Instruction.h"
Chris Lattner00950542001-06-06 20:29:01 +000016#include "llvm/Module.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000017#include "llvm/Constants.h"
Chris Lattner00950542001-06-06 20:29:01 +000018#include "llvm/iMemory.h"
Chris Lattnere02fa852001-10-13 06:42:36 +000019#include "llvm/iTerminators.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000020#include "llvm/iPHINode.h"
21#include "llvm/iOther.h"
Chris Lattner007377f2001-09-07 16:36:04 +000022#include "llvm/SymbolTable.h"
Chris Lattner061269b2002-10-02 19:38:55 +000023#include "llvm/Support/CFG.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000024#include "Support/StringExtras.h"
25#include "Support/STLExtras.h"
Chris Lattner007377f2001-09-07 16:36:04 +000026#include <algorithm>
Chris Lattnerc1824992001-10-29 16:05:51 +000027
Chris Lattnera6275cc2002-07-26 21:12:46 +000028static RegisterPass<PrintModulePass>
29X("printm", "Print module to stderr",PassInfo::Analysis|PassInfo::Optimization);
30static RegisterPass<PrintFunctionPass>
31Y("print","Print function to stderr",PassInfo::Analysis|PassInfo::Optimization);
Chris Lattnerf082b802002-07-23 18:07:49 +000032
Chris Lattner7b13f562003-05-08 02:08:14 +000033static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
34 bool PrintName,
35 std::map<const Type *, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +000036 SlotCalculator *Table);
37
Chris Lattner207b5bc2001-10-29 16:37:48 +000038static const Module *getModuleFromVal(const Value *V) {
Chris Lattner949a3622003-07-23 15:30:06 +000039 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000040 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000041 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000042 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000043 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +000044 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattner207b5bc2001-10-29 16:37:48 +000045 return M ? M->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000046 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000047 return GV->getParent();
Chris Lattner207b5bc2001-10-29 16:37:48 +000048 return 0;
49}
50
Chris Lattnerc1824992001-10-29 16:05:51 +000051static SlotCalculator *createSlotCalculator(const Value *V) {
52 assert(!isa<Type>(V) && "Can't create an SC for a type!");
Chris Lattner949a3622003-07-23 15:30:06 +000053 if (const Argument *FA = dyn_cast<Argument>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +000054 return new SlotCalculator(FA->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000055 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattnerc1824992001-10-29 16:05:51 +000056 return new SlotCalculator(I->getParent()->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000057 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Chris Lattnerc1824992001-10-29 16:05:51 +000058 return new SlotCalculator(BB->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000059 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Chris Lattnerc1824992001-10-29 16:05:51 +000060 return new SlotCalculator(GV->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000061 } else if (const Function *Func = dyn_cast<Function>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +000062 return new SlotCalculator(Func, true);
Chris Lattnerc1824992001-10-29 16:05:51 +000063 }
64 return 0;
65}
Chris Lattner00950542001-06-06 20:29:01 +000066
Chris Lattner207b5bc2001-10-29 16:37:48 +000067
68// If the module has a symbol table, take all global types and stuff their
69// names into the TypeNames map.
70//
71static void fillTypeNameTable(const Module *M,
Chris Lattner7b13f562003-05-08 02:08:14 +000072 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner6e6026b2002-11-20 18:36:02 +000073 if (!M) return;
74 const SymbolTable &ST = M->getSymbolTable();
75 SymbolTable::const_iterator PI = ST.find(Type::TypeTy);
76 if (PI != ST.end()) {
77 SymbolTable::type_const_iterator I = PI->second.begin();
78 for (; I != PI->second.end(); ++I) {
79 // As a heuristic, don't insert pointer to primitive types, because
80 // they are used too often to have a single useful name.
81 //
Chris Lattner949a3622003-07-23 15:30:06 +000082 const Type *Ty = cast<Type>(I->second);
Chris Lattner6e6026b2002-11-20 18:36:02 +000083 if (!isa<PointerType>(Ty) ||
84 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType())
85 TypeNames.insert(std::make_pair(Ty, "%"+I->first));
Chris Lattner207b5bc2001-10-29 16:37:48 +000086 }
87 }
88}
89
90
91
Chris Lattner7b13f562003-05-08 02:08:14 +000092static std::string calcTypeName(const Type *Ty,
93 std::vector<const Type *> &TypeStack,
94 std::map<const Type *, std::string> &TypeNames){
Chris Lattner207b5bc2001-10-29 16:37:48 +000095 if (Ty->isPrimitiveType()) return Ty->getDescription(); // Base case
96
97 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +000098 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +000099 if (I != TypeNames.end()) return I->second;
100
101 // Check to see if the Type is already on the stack...
102 unsigned Slot = 0, CurSize = TypeStack.size();
103 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
104
105 // This is another base case for the recursion. In this case, we know
106 // that we have looped back to a type that we have previously visited.
107 // Generate the appropriate upreference to handle this.
108 //
109 if (Slot < CurSize)
110 return "\\" + utostr(CurSize-Slot); // Here's the upreference
111
112 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
113
Chris Lattner7b13f562003-05-08 02:08:14 +0000114 std::string Result;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000115 switch (Ty->getPrimitiveID()) {
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000116 case Type::FunctionTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000117 const FunctionType *FTy = cast<FunctionType>(Ty);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000118 Result = calcTypeName(FTy->getReturnType(), TypeStack, TypeNames) + " (";
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000119 for (FunctionType::ParamTypes::const_iterator
Chris Lattner2761e9f2002-04-13 20:53:41 +0000120 I = FTy->getParamTypes().begin(),
121 E = FTy->getParamTypes().end(); I != E; ++I) {
122 if (I != FTy->getParamTypes().begin())
Chris Lattner207b5bc2001-10-29 16:37:48 +0000123 Result += ", ";
124 Result += calcTypeName(*I, TypeStack, TypeNames);
125 }
Chris Lattner2761e9f2002-04-13 20:53:41 +0000126 if (FTy->isVarArg()) {
127 if (!FTy->getParamTypes().empty()) Result += ", ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000128 Result += "...";
129 }
130 Result += ")";
131 break;
132 }
133 case Type::StructTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000134 const StructType *STy = cast<StructType>(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000135 Result = "{ ";
136 for (StructType::ElementTypes::const_iterator
137 I = STy->getElementTypes().begin(),
138 E = STy->getElementTypes().end(); I != E; ++I) {
139 if (I != STy->getElementTypes().begin())
140 Result += ", ";
141 Result += calcTypeName(*I, TypeStack, TypeNames);
142 }
143 Result += " }";
144 break;
145 }
146 case Type::PointerTyID:
Chris Lattner949a3622003-07-23 15:30:06 +0000147 Result = calcTypeName(cast<PointerType>(Ty)->getElementType(),
Chris Lattner02b93992002-04-12 18:21:53 +0000148 TypeStack, TypeNames) + "*";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000149 break;
150 case Type::ArrayTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000151 const ArrayType *ATy = cast<ArrayType>(Ty);
Chris Lattnerff5c2962002-04-13 21:11:04 +0000152 Result = "[" + utostr(ATy->getNumElements()) + " x ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000153 Result += calcTypeName(ATy->getElementType(), TypeStack, TypeNames) + "]";
154 break;
155 }
Chris Lattner9e094c42003-05-14 17:50:47 +0000156 case Type::OpaqueTyID:
157 Result = "opaque";
158 break;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000159 default:
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000160 Result = "<unrecognized-type>";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000161 }
162
163 TypeStack.pop_back(); // Remove self from stack...
164 return Result;
165}
166
167
168// printTypeInt - The internal guts of printing out a type that has a
169// potentially named portion.
170//
Chris Lattner7b13f562003-05-08 02:08:14 +0000171static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
172 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner207b5bc2001-10-29 16:37:48 +0000173 // Primitive types always print out their description, regardless of whether
174 // they have been named or not.
175 //
176 if (Ty->isPrimitiveType()) return Out << Ty->getDescription();
177
178 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000179 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000180 if (I != TypeNames.end()) return Out << I->second;
181
182 // Otherwise we have a type that has not been named but is a derived type.
183 // Carefully recurse the type hierarchy to print out any contained symbolic
184 // names.
185 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000186 std::vector<const Type *> TypeStack;
187 std::string TypeName = calcTypeName(Ty, TypeStack, TypeNames);
Chris Lattner697954c2002-01-20 22:54:45 +0000188 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
Chris Lattner207b5bc2001-10-29 16:37:48 +0000189 return Out << TypeName;
190}
191
Chris Lattnere51e03b2001-10-31 04:33:19 +0000192
Chris Lattner207b5bc2001-10-29 16:37:48 +0000193// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
194// type, iff there is an entry in the modules symbol table for the specified
195// type or one of it's component types. This is slower than a simple x << Type;
196//
Chris Lattner7b13f562003-05-08 02:08:14 +0000197std::ostream &WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
198 const Module *M) {
Chris Lattner207b5bc2001-10-29 16:37:48 +0000199 Out << " ";
200
201 // If they want us to print out a type, attempt to make it symbolic if there
202 // is a symbol table in the module...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000203 if (M) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000204 std::map<const Type *, std::string> TypeNames;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000205 fillTypeNameTable(M, TypeNames);
206
Chris Lattner7b8660d2001-10-29 16:40:32 +0000207 return printTypeInt(Out, Ty, TypeNames);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000208 } else {
Chris Lattner7b8660d2001-10-29 16:40:32 +0000209 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000210 }
211}
212
Chris Lattner7b13f562003-05-08 02:08:14 +0000213static void WriteConstantInt(std::ostream &Out, const Constant *CV,
214 bool PrintName,
215 std::map<const Type *, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +0000216 SlotCalculator *Table) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000217 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
218 Out << (CB == ConstantBool::True ? "true" : "false");
219 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
220 Out << CI->getValue();
221 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
222 Out << CI->getValue();
223 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
224 // We would like to output the FP constant value in exponential notation,
225 // but we cannot do this if doing so will lose precision. Check here to
226 // make sure that we only output it in exponential format if we can parse
227 // the value back and get the same value.
228 //
229 std::string StrVal = ftostr(CFP->getValue());
230
231 // Check to make sure that the stringized number is not some string like
232 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
233 // the string matches the "[-+]?[0-9]" regex.
234 //
235 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
236 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaekeb471a232003-06-17 23:55:35 +0000237 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner66e810b2002-04-18 18:53:13 +0000238 // Reparse stringized version!
239 if (atof(StrVal.c_str()) == CFP->getValue()) {
240 Out << StrVal; return;
241 }
242
243 // Otherwise we could not reparse it to exactly the same value, so we must
244 // output the string in hexadecimal format!
245 //
246 // Behave nicely in the face of C TBAA rules... see:
247 // http://www.nullstone.com/htmls/category/aliastyp.htm
248 //
249 double Val = CFP->getValue();
250 char *Ptr = (char*)&Val;
251 assert(sizeof(double) == sizeof(uint64_t) && sizeof(double) == 8 &&
252 "assuming that double is 64 bits!");
253 Out << "0x" << utohexstr(*(uint64_t*)Ptr);
254
255 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattnere9a64ea2003-06-28 20:08:24 +0000256 if (CA->getNumOperands() > 5 && CA->isNullValue()) {
257 Out << "zeroinitializer";
258 return;
259 }
260
Chris Lattner66e810b2002-04-18 18:53:13 +0000261 // As a special case, print the array as a string if it is an array of
262 // ubytes or an array of sbytes with positive values.
263 //
264 const Type *ETy = CA->getType()->getElementType();
265 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
266
267 if (ETy == Type::SByteTy)
268 for (unsigned i = 0; i < CA->getNumOperands(); ++i)
269 if (cast<ConstantSInt>(CA->getOperand(i))->getValue() < 0) {
270 isString = false;
271 break;
272 }
273
274 if (isString) {
275 Out << "c\"";
276 for (unsigned i = 0; i < CA->getNumOperands(); ++i) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000277 unsigned char C = cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Chris Lattner66e810b2002-04-18 18:53:13 +0000278
Chris Lattnerfc944462002-07-31 23:56:44 +0000279 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner66e810b2002-04-18 18:53:13 +0000280 Out << C;
281 } else {
282 Out << '\\'
283 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
284 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
285 }
286 }
287 Out << "\"";
288
289 } else { // Cannot output in string format...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000290 Out << "[";
291 if (CA->getNumOperands()) {
292 Out << " ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000293 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000294 WriteAsOperandInternal(Out, CA->getOperand(0),
295 PrintName, TypeTable, Table);
296 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
297 Out << ", ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000298 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000299 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
300 TypeTable, Table);
301 }
302 }
303 Out << " ]";
304 }
305 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Chris Lattnere9a64ea2003-06-28 20:08:24 +0000306 if (CS->getNumOperands() > 5 && CS->isNullValue()) {
307 Out << "zeroinitializer";
308 return;
309 }
310
Chris Lattner7a716ad2002-04-16 21:36:08 +0000311 Out << "{";
312 if (CS->getNumOperands()) {
313 Out << " ";
314 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
315
316 WriteAsOperandInternal(Out, CS->getOperand(0),
317 PrintName, TypeTable, Table);
318
319 for (unsigned i = 1; i < CS->getNumOperands(); i++) {
320 Out << ", ";
321 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
322
323 WriteAsOperandInternal(Out, CS->getOperand(i),
324 PrintName, TypeTable, Table);
325 }
326 }
327
328 Out << " }";
329 } else if (isa<ConstantPointerNull>(CV)) {
330 Out << "null";
331
Chris Lattner7e708292002-06-25 16:13:24 +0000332 } else if (const ConstantPointerRef *PR = dyn_cast<ConstantPointerRef>(CV)) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000333 const GlobalValue *V = PR->getValue();
334 if (V->hasName()) {
335 Out << "%" << V->getName();
336 } else if (Table) {
337 int Slot = Table->getValSlot(V);
338 if (Slot >= 0)
339 Out << "%" << Slot;
340 else
341 Out << "<pointer reference badref>";
342 } else {
343 Out << "<pointer reference without context info>";
344 }
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000345
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000346 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattner38d87732003-03-06 23:23:32 +0000347 Out << CE->getOpcodeName() << " (";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000348
349 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
350 printTypeInt(Out, (*OI)->getType(), TypeTable);
351 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Table);
352 if (OI+1 != CE->op_end())
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000353 Out << ", ";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000354 }
355
Chris Lattner1c93e5b2002-08-16 21:17:11 +0000356 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner95586b82002-08-15 19:37:43 +0000357 Out << " to ";
358 printTypeInt(Out, CE->getType(), TypeTable);
359 }
Chris Lattner1c93e5b2002-08-16 21:17:11 +0000360 Out << ")";
Chris Lattner95586b82002-08-15 19:37:43 +0000361
Chris Lattner7a716ad2002-04-16 21:36:08 +0000362 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000363 Out << "<placeholder or erroneous Constant>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000364 }
365}
366
367
368// WriteAsOperand - Write the name of the specified value out to the specified
369// ostream. This can be useful when you just want to print int %reg126, not the
370// whole instruction that generated it.
371//
Chris Lattner7b13f562003-05-08 02:08:14 +0000372static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
373 bool PrintName,
374 std::map<const Type*, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +0000375 SlotCalculator *Table) {
376 Out << " ";
377 if (PrintName && V->hasName()) {
378 Out << "%" << V->getName();
379 } else {
Chris Lattner949a3622003-07-23 15:30:06 +0000380 if (const Constant *CV = dyn_cast<Constant>(V)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000381 WriteConstantInt(Out, CV, PrintName, TypeTable, Table);
382 } else {
383 int Slot;
384 if (Table) {
385 Slot = Table->getValSlot(V);
386 } else {
Chris Lattner949a3622003-07-23 15:30:06 +0000387 if (const Type *Ty = dyn_cast<Type>(V)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000388 Out << Ty->getDescription();
389 return;
390 }
391
392 Table = createSlotCalculator(V);
393 if (Table == 0) { Out << "BAD VALUE TYPE!"; return; }
394
395 Slot = Table->getValSlot(V);
396 delete Table;
397 }
398 if (Slot >= 0) Out << "%" << Slot;
399 else if (PrintName)
400 Out << "<badref>"; // Not embeded into a location?
401 }
402 }
403}
404
405
Chris Lattner207b5bc2001-10-29 16:37:48 +0000406
407// WriteAsOperand - Write the name of the specified value out to the specified
408// ostream. This can be useful when you just want to print int %reg126, not the
409// whole instruction that generated it.
410//
Chris Lattner7b13f562003-05-08 02:08:14 +0000411std::ostream &WriteAsOperand(std::ostream &Out, const Value *V, bool PrintType,
412 bool PrintName, const Module *Context) {
413 std::map<const Type *, std::string> TypeNames;
Chris Lattner607dc682002-07-10 16:48:17 +0000414 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000415
Chris Lattner6e6026b2002-11-20 18:36:02 +0000416 if (Context)
Chris Lattner607dc682002-07-10 16:48:17 +0000417 fillTypeNameTable(Context, TypeNames);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000418
419 if (PrintType)
420 printTypeInt(Out, V->getType(), TypeNames);
421
Chris Lattner607dc682002-07-10 16:48:17 +0000422 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner622f7402001-07-20 19:15:21 +0000423 return Out;
424}
425
426
Chris Lattnerd8c2e422001-07-12 23:35:26 +0000427
Chris Lattner007377f2001-09-07 16:36:04 +0000428class AssemblyWriter {
Chris Lattner7b13f562003-05-08 02:08:14 +0000429 std::ostream &Out;
Chris Lattner00950542001-06-06 20:29:01 +0000430 SlotCalculator &Table;
Chris Lattnerc1824992001-10-29 16:05:51 +0000431 const Module *TheModule;
Chris Lattner7b13f562003-05-08 02:08:14 +0000432 std::map<const Type *, std::string> TypeNames;
Chris Lattner00950542001-06-06 20:29:01 +0000433public:
Chris Lattner7b13f562003-05-08 02:08:14 +0000434 inline AssemblyWriter(std::ostream &o, SlotCalculator &Tab, const Module *M)
Chris Lattnerc1824992001-10-29 16:05:51 +0000435 : Out(o), Table(Tab), TheModule(M) {
436
437 // If the module has a symbol table, take all global types and stuff their
438 // names into the TypeNames map.
439 //
Chris Lattner207b5bc2001-10-29 16:37:48 +0000440 fillTypeNameTable(M, TypeNames);
Chris Lattner00950542001-06-06 20:29:01 +0000441 }
442
Chris Lattnerc1824992001-10-29 16:05:51 +0000443 inline void write(const Module *M) { printModule(M); }
444 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner79df7c02002-03-26 18:01:55 +0000445 inline void write(const Function *F) { printFunction(F); }
Chris Lattnerc1824992001-10-29 16:05:51 +0000446 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner7e708292002-06-25 16:13:24 +0000447 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000448 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000449 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner00950542001-06-06 20:29:01 +0000450
Chris Lattner66e810b2002-04-18 18:53:13 +0000451 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
452
Chris Lattner00950542001-06-06 20:29:01 +0000453private :
Chris Lattnerc1824992001-10-29 16:05:51 +0000454 void printModule(const Module *M);
455 void printSymbolTable(const SymbolTable &ST);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000456 void printConstant(const Constant *CPV);
Chris Lattnerc1824992001-10-29 16:05:51 +0000457 void printGlobal(const GlobalVariable *GV);
Chris Lattner79df7c02002-03-26 18:01:55 +0000458 void printFunction(const Function *F);
Chris Lattner73e21422002-04-09 19:48:49 +0000459 void printArgument(const Argument *FA);
Chris Lattnerc1824992001-10-29 16:05:51 +0000460 void printBasicBlock(const BasicBlock *BB);
Chris Lattner7e708292002-06-25 16:13:24 +0000461 void printInstruction(const Instruction &I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000462
463 // printType - Go to extreme measures to attempt to print out a short,
464 // symbolic version of a type name.
465 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000466 std::ostream &printType(const Type *Ty) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000467 return printTypeInt(Out, Ty, TypeNames);
468 }
469
470 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
471 // without considering any symbolic types that we may have equal to it.
472 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000473 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattnerc1824992001-10-29 16:05:51 +0000474
Chris Lattnere02fa852001-10-13 06:42:36 +0000475 // printInfoComment - Print a little comment after the instruction indicating
476 // which slot it occupies.
Chris Lattner7e708292002-06-25 16:13:24 +0000477 void printInfoComment(const Value &V);
Chris Lattner00950542001-06-06 20:29:01 +0000478};
479
480
Chris Lattner2761e9f2002-04-13 20:53:41 +0000481// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
482// without considering any symbolic types that we may have equal to it.
483//
Chris Lattner7b13f562003-05-08 02:08:14 +0000484std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner7e708292002-06-25 16:13:24 +0000485 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000486 printType(FTy->getReturnType()) << " (";
487 for (FunctionType::ParamTypes::const_iterator
488 I = FTy->getParamTypes().begin(),
489 E = FTy->getParamTypes().end(); I != E; ++I) {
490 if (I != FTy->getParamTypes().begin())
491 Out << ", ";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000492 printType(*I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000493 }
494 if (FTy->isVarArg()) {
495 if (!FTy->getParamTypes().empty()) Out << ", ";
496 Out << "...";
497 }
498 Out << ")";
Chris Lattner7e708292002-06-25 16:13:24 +0000499 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000500 Out << "{ ";
501 for (StructType::ElementTypes::const_iterator
502 I = STy->getElementTypes().begin(),
503 E = STy->getElementTypes().end(); I != E; ++I) {
504 if (I != STy->getElementTypes().begin())
505 Out << ", ";
506 printType(*I);
507 }
508 Out << " }";
Chris Lattner7e708292002-06-25 16:13:24 +0000509 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000510 printType(PTy->getElementType()) << "*";
Chris Lattner7e708292002-06-25 16:13:24 +0000511 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000512 Out << "[" << ATy->getNumElements() << " x ";
513 printType(ATy->getElementType()) << "]";
Chris Lattner7e708292002-06-25 16:13:24 +0000514 } else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Chris Lattner26c69152003-06-01 03:45:51 +0000515 Out << "opaque";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000516 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000517 if (!Ty->isPrimitiveType())
518 Out << "<unknown derived type>";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000519 printType(Ty);
520 }
521 return Out;
522}
523
524
Chris Lattner007377f2001-09-07 16:36:04 +0000525void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
526 bool PrintName) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000527 if (PrintType) { Out << " "; printType(Operand->getType()); }
Chris Lattner7a716ad2002-04-16 21:36:08 +0000528 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Table);
Chris Lattner00950542001-06-06 20:29:01 +0000529}
530
Chris Lattner00950542001-06-06 20:29:01 +0000531
Chris Lattnerc1824992001-10-29 16:05:51 +0000532void AssemblyWriter::printModule(const Module *M) {
Chris Lattner61a909a2003-04-22 19:07:19 +0000533 Out << "target endian = " << (M->isLittleEndian() ? "little" : "big") << "\n";
534 Out << "target pointersize = " << (M->has32BitPointers() ? 32 : 64) << "\n";
535
Chris Lattner007377f2001-09-07 16:36:04 +0000536 // Loop over the symbol table, emitting all named constants...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000537 printSymbolTable(M->getSymbolTable());
Chris Lattner70cc3392001-09-10 07:58:01 +0000538
Chris Lattner7e708292002-06-25 16:13:24 +0000539 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
540 printGlobal(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000541
Chris Lattner03e2acb2002-05-06 03:00:40 +0000542 Out << "\nimplementation ; Functions:\n";
Vikram S. Adve5efa3cc2001-09-18 12:48:16 +0000543
Chris Lattnerb5794002002-04-07 22:49:37 +0000544 // Output all of the functions...
Chris Lattner7e708292002-06-25 16:13:24 +0000545 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
546 printFunction(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000547}
548
Chris Lattnerc1824992001-10-29 16:05:51 +0000549void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Chris Lattner70cc3392001-09-10 07:58:01 +0000550 if (GV->hasName()) Out << "%" << GV->getName() << " = ";
Chris Lattnerd70684f2001-09-18 04:01:05 +0000551
Chris Lattner4ad02e72003-04-16 20:28:45 +0000552 if (!GV->hasInitializer())
553 Out << "external ";
554 else
555 switch (GV->getLinkage()) {
556 case GlobalValue::InternalLinkage: Out << "internal "; break;
557 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
558 case GlobalValue::AppendingLinkage: Out << "appending "; break;
559 case GlobalValue::ExternalLinkage: break;
560 }
Chris Lattnerd70684f2001-09-18 04:01:05 +0000561
Chris Lattnerc1824992001-10-29 16:05:51 +0000562 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner7a176752001-12-04 00:03:30 +0000563 printType(GV->getType()->getElementType());
Chris Lattnerd70684f2001-09-18 04:01:05 +0000564
565 if (GV->hasInitializer())
566 writeOperand(GV->getInitializer(), false, false);
567
Chris Lattner7e708292002-06-25 16:13:24 +0000568 printInfoComment(*GV);
Chris Lattner697954c2002-01-20 22:54:45 +0000569 Out << "\n";
Chris Lattner70cc3392001-09-10 07:58:01 +0000570}
571
Chris Lattner007377f2001-09-07 16:36:04 +0000572
Chris Lattnerc1824992001-10-29 16:05:51 +0000573// printSymbolTable - Run through symbol table looking for named constants
Chris Lattner007377f2001-09-07 16:36:04 +0000574// if a named constant is found, emit it's declaration...
575//
Chris Lattnerc1824992001-10-29 16:05:51 +0000576void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Chris Lattner007377f2001-09-07 16:36:04 +0000577 for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) {
578 SymbolTable::type_const_iterator I = ST.type_begin(TI->first);
579 SymbolTable::type_const_iterator End = ST.type_end(TI->first);
580
581 for (; I != End; ++I) {
582 const Value *V = I->second;
Chris Lattner949a3622003-07-23 15:30:06 +0000583 if (const Constant *CPV = dyn_cast<Constant>(V)) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000584 printConstant(CPV);
Chris Lattner949a3622003-07-23 15:30:06 +0000585 } else if (const Type *Ty = dyn_cast<Type>(V)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000586 Out << "\t%" << I->first << " = type ";
587
588 // Make sure we print out at least one level of the type structure, so
589 // that we do not get %FILE = type %FILE
590 //
591 printTypeAtLeastOneLevel(Ty) << "\n";
Chris Lattner007377f2001-09-07 16:36:04 +0000592 }
593 }
Chris Lattner739a56d2001-07-15 06:35:59 +0000594 }
Chris Lattner00950542001-06-06 20:29:01 +0000595}
596
597
Chris Lattnerc1824992001-10-29 16:05:51 +0000598// printConstant - Print out a constant pool entry...
Chris Lattner00950542001-06-06 20:29:01 +0000599//
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000600void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattner007377f2001-09-07 16:36:04 +0000601 // Don't print out unnamed constants, they will be inlined
602 if (!CPV->hasName()) return;
Chris Lattner00950542001-06-06 20:29:01 +0000603
Chris Lattner1333ed52001-07-26 16:29:38 +0000604 // Print out name...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000605 Out << "\t%" << CPV->getName() << " =";
Chris Lattner00950542001-06-06 20:29:01 +0000606
607 // Write the value out now...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000608 writeOperand(CPV, true, false);
Chris Lattner00950542001-06-06 20:29:01 +0000609
Chris Lattner7e708292002-06-25 16:13:24 +0000610 printInfoComment(*CPV);
Chris Lattner697954c2002-01-20 22:54:45 +0000611 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000612}
613
Chris Lattnerb5794002002-04-07 22:49:37 +0000614// printFunction - Print all aspects of a function.
Chris Lattner00950542001-06-06 20:29:01 +0000615//
Chris Lattner7e708292002-06-25 16:13:24 +0000616void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000617 // Print out the return type and name...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000618 Out << "\n";
619
620 if (F->isExternal())
621 Out << "declare ";
622 else
623 switch (F->getLinkage()) {
624 case GlobalValue::InternalLinkage: Out << "internal "; break;
625 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
626 case GlobalValue::AppendingLinkage: Out << "appending "; break;
627 case GlobalValue::ExternalLinkage: break;
628 }
629
Chris Lattner7e708292002-06-25 16:13:24 +0000630 printType(F->getReturnType()) << " %" << F->getName() << "(";
631 Table.incorporateFunction(F);
Chris Lattner007377f2001-09-07 16:36:04 +0000632
Chris Lattnerc1824992001-10-29 16:05:51 +0000633 // Loop over the arguments, printing them...
Chris Lattner7e708292002-06-25 16:13:24 +0000634 const FunctionType *FT = F->getFunctionType();
Chris Lattner007377f2001-09-07 16:36:04 +0000635
Chris Lattner69da5cf2002-10-13 20:57:00 +0000636 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
637 printArgument(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000638
639 // Finish printing arguments...
Chris Lattner7e708292002-06-25 16:13:24 +0000640 if (FT->isVarArg()) {
641 if (FT->getParamTypes().size()) Out << ", ";
Chris Lattner007377f2001-09-07 16:36:04 +0000642 Out << "..."; // Output varargs portion of signature!
643 }
Chris Lattner03e2acb2002-05-06 03:00:40 +0000644 Out << ")";
Chris Lattner007377f2001-09-07 16:36:04 +0000645
Chris Lattner7e708292002-06-25 16:13:24 +0000646 if (F->isExternal()) {
Chris Lattner03e2acb2002-05-06 03:00:40 +0000647 Out << "\n";
648 } else {
649 Out << " {";
Chris Lattner007377f2001-09-07 16:36:04 +0000650
Chris Lattnerb5794002002-04-07 22:49:37 +0000651 // Output all of its basic blocks... for the function
Chris Lattner7e708292002-06-25 16:13:24 +0000652 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
653 printBasicBlock(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000654
Chris Lattner03e2acb2002-05-06 03:00:40 +0000655 Out << "}\n";
Chris Lattner007377f2001-09-07 16:36:04 +0000656 }
657
Chris Lattnerb5794002002-04-07 22:49:37 +0000658 Table.purgeFunction();
Chris Lattner00950542001-06-06 20:29:01 +0000659}
660
Chris Lattner73e21422002-04-09 19:48:49 +0000661// printArgument - This member is called for every argument that
Chris Lattnerb5794002002-04-07 22:49:37 +0000662// is passed into the function. Simply print it out
Chris Lattner00950542001-06-06 20:29:01 +0000663//
Chris Lattner73e21422002-04-09 19:48:49 +0000664void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner00950542001-06-06 20:29:01 +0000665 // Insert commas as we go... the first arg doesn't get a comma
Chris Lattner7e708292002-06-25 16:13:24 +0000666 if (Arg != &Arg->getParent()->afront()) Out << ", ";
Chris Lattner00950542001-06-06 20:29:01 +0000667
668 // Output type...
Chris Lattnerc1824992001-10-29 16:05:51 +0000669 printType(Arg->getType());
Chris Lattner00950542001-06-06 20:29:01 +0000670
671 // Output name, if available...
672 if (Arg->hasName())
673 Out << " %" << Arg->getName();
674 else if (Table.getValSlot(Arg) < 0)
675 Out << "<badref>";
Chris Lattner00950542001-06-06 20:29:01 +0000676}
677
Chris Lattnerc1824992001-10-29 16:05:51 +0000678// printBasicBlock - This member is called for each basic block in a methd.
Chris Lattner00950542001-06-06 20:29:01 +0000679//
Chris Lattnerc1824992001-10-29 16:05:51 +0000680void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner00950542001-06-06 20:29:01 +0000681 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattner061269b2002-10-02 19:38:55 +0000682 Out << "\n" << BB->getName() << ":";
Chris Lattnerafc38682002-05-14 16:02:05 +0000683 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Chris Lattner00950542001-06-06 20:29:01 +0000684 int Slot = Table.getValSlot(BB);
Chris Lattnerb9a45782001-06-07 16:58:55 +0000685 Out << "\n; <label>:";
Chris Lattner00950542001-06-06 20:29:01 +0000686 if (Slot >= 0)
Misha Brukmanbc0e9982003-07-14 17:20:40 +0000687 Out << Slot; // Extra newline separates out label's
Chris Lattner00950542001-06-06 20:29:01 +0000688 else
Chris Lattnerb9a45782001-06-07 16:58:55 +0000689 Out << "<badref>";
Chris Lattner061269b2002-10-02 19:38:55 +0000690 }
691
692 // Output predecessors for the block...
693 Out << "\t\t;";
694 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
695
696 if (PI == PE) {
697 Out << " No predecessors!";
698 } else {
699 Out << " preds =";
700 writeOperand(*PI, false, true);
701 for (++PI; PI != PE; ++PI) {
702 Out << ",";
703 writeOperand(*PI, false, true);
704 }
Chris Lattner00950542001-06-06 20:29:01 +0000705 }
Chris Lattnerafc38682002-05-14 16:02:05 +0000706
707 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000708
Chris Lattner007377f2001-09-07 16:36:04 +0000709 // Output all of the instructions in the basic block...
Chris Lattner7e708292002-06-25 16:13:24 +0000710 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
711 printInstruction(*I);
Chris Lattner00950542001-06-06 20:29:01 +0000712}
713
Chris Lattnere02fa852001-10-13 06:42:36 +0000714
715// printInfoComment - Print a little comment after the instruction indicating
716// which slot it occupies.
717//
Chris Lattner7e708292002-06-25 16:13:24 +0000718void AssemblyWriter::printInfoComment(const Value &V) {
719 if (V.getType() != Type::VoidTy) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000720 Out << "\t\t; <";
Chris Lattner7e708292002-06-25 16:13:24 +0000721 printType(V.getType()) << ">";
Chris Lattnere02fa852001-10-13 06:42:36 +0000722
Chris Lattner7e708292002-06-25 16:13:24 +0000723 if (!V.hasName()) {
724 int Slot = Table.getValSlot(&V); // Print out the def slot taken...
Chris Lattnere02fa852001-10-13 06:42:36 +0000725 if (Slot >= 0) Out << ":" << Slot;
726 else Out << ":<badref>";
727 }
Chris Lattner7e708292002-06-25 16:13:24 +0000728 Out << " [#uses=" << V.use_size() << "]"; // Output # uses
Chris Lattnere02fa852001-10-13 06:42:36 +0000729 }
730}
731
Chris Lattnerc1824992001-10-29 16:05:51 +0000732// printInstruction - This member is called for each Instruction in a methd.
Chris Lattner00950542001-06-06 20:29:01 +0000733//
Chris Lattner7e708292002-06-25 16:13:24 +0000734void AssemblyWriter::printInstruction(const Instruction &I) {
Chris Lattner00950542001-06-06 20:29:01 +0000735 Out << "\t";
736
737 // Print out name if it exists...
Chris Lattner7e708292002-06-25 16:13:24 +0000738 if (I.hasName())
739 Out << "%" << I.getName() << " = ";
Chris Lattner00950542001-06-06 20:29:01 +0000740
741 // Print out the opcode...
Chris Lattner7e708292002-06-25 16:13:24 +0000742 Out << I.getOpcodeName();
Chris Lattner00950542001-06-06 20:29:01 +0000743
744 // Print out the type of the operands...
Chris Lattner7e708292002-06-25 16:13:24 +0000745 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner00950542001-06-06 20:29:01 +0000746
747 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner7e708292002-06-25 16:13:24 +0000748 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
749 writeOperand(I.getOperand(2), true);
Chris Lattner00950542001-06-06 20:29:01 +0000750 Out << ",";
751 writeOperand(Operand, true);
752 Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000753 writeOperand(I.getOperand(1), true);
Chris Lattner00950542001-06-06 20:29:01 +0000754
Chris Lattner94dc1f22002-04-13 18:34:38 +0000755 } else if (isa<SwitchInst>(I)) {
Chris Lattner00950542001-06-06 20:29:01 +0000756 // Special case switch statement to get formatting nice and correct...
Chris Lattner7e708292002-06-25 16:13:24 +0000757 writeOperand(Operand , true); Out << ",";
758 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner00950542001-06-06 20:29:01 +0000759
Chris Lattner7e708292002-06-25 16:13:24 +0000760 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Chris Lattner00950542001-06-06 20:29:01 +0000761 Out << "\n\t\t";
Chris Lattner7e708292002-06-25 16:13:24 +0000762 writeOperand(I.getOperand(op ), true); Out << ",";
763 writeOperand(I.getOperand(op+1), true);
Chris Lattner00950542001-06-06 20:29:01 +0000764 }
765 Out << "\n\t]";
Chris Lattnerb00c5822001-10-02 03:41:24 +0000766 } else if (isa<PHINode>(I)) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000767 Out << " ";
Chris Lattner7e708292002-06-25 16:13:24 +0000768 printType(I.getType());
Chris Lattnereed1fc72001-11-06 08:33:46 +0000769 Out << " ";
Chris Lattner00950542001-06-06 20:29:01 +0000770
Chris Lattner7e708292002-06-25 16:13:24 +0000771 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Chris Lattner8f410ca2001-11-06 01:48:45 +0000772 if (op) Out << ", ";
773 Out << "[";
Chris Lattner7e708292002-06-25 16:13:24 +0000774 writeOperand(I.getOperand(op ), false); Out << ",";
775 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattnerc24d2082001-06-11 15:04:20 +0000776 }
Chris Lattnere02fa852001-10-13 06:42:36 +0000777 } else if (isa<ReturnInst>(I) && !Operand) {
Chris Lattner00950542001-06-06 20:29:01 +0000778 Out << " void";
Chris Lattnere02fa852001-10-13 06:42:36 +0000779 } else if (isa<CallInst>(I)) {
Chris Lattner268de042001-11-06 21:28:12 +0000780 const PointerType *PTy = dyn_cast<PointerType>(Operand->getType());
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000781 const FunctionType*MTy = PTy ? dyn_cast<FunctionType>(PTy->getElementType()):0;
Chris Lattner268de042001-11-06 21:28:12 +0000782 const Type *RetTy = MTy ? MTy->getReturnType() : 0;
783
784 // If possible, print out the short form of the call instruction, but we can
Chris Lattnerb5794002002-04-07 22:49:37 +0000785 // only do this if the first argument is a pointer to a nonvararg function,
786 // and if the value returned is not a pointer to a function.
Chris Lattner268de042001-11-06 21:28:12 +0000787 //
Chris Lattner94dc1f22002-04-13 18:34:38 +0000788 if (RetTy && MTy && !MTy->isVarArg() &&
789 (!isa<PointerType>(RetTy) ||
Chris Lattnerc1b27182002-07-25 20:58:51 +0000790 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Chris Lattner268de042001-11-06 21:28:12 +0000791 Out << " "; printType(RetTy);
792 writeOperand(Operand, false);
793 } else {
794 writeOperand(Operand, true);
795 }
Chris Lattner00950542001-06-06 20:29:01 +0000796 Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000797 if (I.getNumOperands() > 1) writeOperand(I.getOperand(1), true);
798 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Chris Lattner00950542001-06-06 20:29:01 +0000799 Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000800 writeOperand(I.getOperand(op), true);
Chris Lattner00950542001-06-06 20:29:01 +0000801 }
802
803 Out << " )";
Chris Lattner7e708292002-06-25 16:13:24 +0000804 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattnere02fa852001-10-13 06:42:36 +0000805 // TODO: Should try to print out short form of the Invoke instruction
806 writeOperand(Operand, true);
807 Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000808 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
809 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Chris Lattnere02fa852001-10-13 06:42:36 +0000810 Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000811 writeOperand(I.getOperand(op), true);
Chris Lattnere02fa852001-10-13 06:42:36 +0000812 }
813
814 Out << " )\n\t\t\tto";
815 writeOperand(II->getNormalDest(), true);
816 Out << " except";
817 writeOperand(II->getExceptionalDest(), true);
818
Chris Lattner7e708292002-06-25 16:13:24 +0000819 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000820 Out << " ";
Chris Lattner94dc1f22002-04-13 18:34:38 +0000821 printType(AI->getType()->getElementType());
822 if (AI->isArrayAllocation()) {
Chris Lattnerc8b25d42001-07-07 08:36:50 +0000823 Out << ",";
Chris Lattner94dc1f22002-04-13 18:34:38 +0000824 writeOperand(AI->getArraySize(), true);
Chris Lattner00950542001-06-06 20:29:01 +0000825 }
Chris Lattnere02fa852001-10-13 06:42:36 +0000826 } else if (isa<CastInst>(I)) {
Chris Lattner8f77dae2003-05-08 02:44:12 +0000827 writeOperand(Operand, true);
Chris Lattnerc1824992001-10-29 16:05:51 +0000828 Out << " to ";
Chris Lattner7e708292002-06-25 16:13:24 +0000829 printType(I.getType());
Chris Lattner8f77dae2003-05-08 02:44:12 +0000830 } else if (isa<VarArgInst>(I)) {
831 writeOperand(Operand, true);
832 Out << ", ";
833 printType(I.getType());
Chris Lattner00950542001-06-06 20:29:01 +0000834 } else if (Operand) { // Print the normal way...
835
836 // PrintAllTypes - Instructions who have operands of all the same type
837 // omit the type from all but the first operand. If the instruction has
838 // different type operands (for example br), then they are all printed.
839 bool PrintAllTypes = false;
840 const Type *TheType = Operand->getType();
Chris Lattner00950542001-06-06 20:29:01 +0000841
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000842 // Shift Left & Right print both types even for Ubyte LHS
843 if (isa<ShiftInst>(I)) {
844 PrintAllTypes = true;
845 } else {
846 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
847 Operand = I.getOperand(i);
848 if (Operand->getType() != TheType) {
849 PrintAllTypes = true; // We have differing types! Print them all!
850 break;
851 }
Chris Lattner00950542001-06-06 20:29:01 +0000852 }
853 }
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000854
Chris Lattnerc1824992001-10-29 16:05:51 +0000855 if (!PrintAllTypes) {
856 Out << " ";
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000857 printType(TheType);
Chris Lattnerc1824992001-10-29 16:05:51 +0000858 }
Chris Lattner00950542001-06-06 20:29:01 +0000859
Chris Lattner7e708292002-06-25 16:13:24 +0000860 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Chris Lattner00950542001-06-06 20:29:01 +0000861 if (i) Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000862 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner00950542001-06-06 20:29:01 +0000863 }
864 }
865
Chris Lattnere02fa852001-10-13 06:42:36 +0000866 printInfoComment(I);
Chris Lattner697954c2002-01-20 22:54:45 +0000867 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000868}
869
870
871//===----------------------------------------------------------------------===//
872// External Interface declarations
873//===----------------------------------------------------------------------===//
874
875
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000876void Module::print(std::ostream &o) const {
877 SlotCalculator SlotTable(this, true);
878 AssemblyWriter W(o, SlotTable, this);
879 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000880}
881
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000882void GlobalVariable::print(std::ostream &o) const {
883 SlotCalculator SlotTable(getParent(), true);
884 AssemblyWriter W(o, SlotTable, getParent());
885 W.write(this);
Chris Lattnerb0e45232001-09-10 20:08:19 +0000886}
887
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000888void Function::print(std::ostream &o) const {
889 SlotCalculator SlotTable(getParent(), true);
890 AssemblyWriter W(o, SlotTable, getParent());
Chris Lattner00950542001-06-06 20:29:01 +0000891
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000892 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000893}
894
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000895void BasicBlock::print(std::ostream &o) const {
896 SlotCalculator SlotTable(getParent(), true);
Chris Lattnerc1824992001-10-29 16:05:51 +0000897 AssemblyWriter W(o, SlotTable,
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000898 getParent() ? getParent()->getParent() : 0);
899 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000900}
901
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000902void Instruction::print(std::ostream &o) const {
903 const Function *F = getParent() ? getParent()->getParent() : 0;
Chris Lattner79df7c02002-03-26 18:01:55 +0000904 SlotCalculator SlotTable(F, true);
905 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0);
Chris Lattner00950542001-06-06 20:29:01 +0000906
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000907 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000908}
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000909
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000910void Constant::print(std::ostream &o) const {
911 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner3bc06b32002-09-10 15:53:49 +0000912
913 // Handle CPR's special, because they have context information...
914 if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(this)) {
915 CPR->getValue()->print(o); // Print as a global value, with context info.
916 return;
917 }
918
Chris Lattner66e810b2002-04-18 18:53:13 +0000919 o << " " << getType()->getDescription() << " ";
920
Chris Lattner7b13f562003-05-08 02:08:14 +0000921 std::map<const Type *, std::string> TypeTable;
Chris Lattner66e810b2002-04-18 18:53:13 +0000922 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000923}
924
925void Type::print(std::ostream &o) const {
926 if (this == 0)
927 o << "<null Type>";
928 else
929 o << getDescription();
930}
931
Chris Lattner73e21422002-04-09 19:48:49 +0000932void Argument::print(std::ostream &o) const {
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000933 o << getType() << " " << getName();
934}
935
936void Value::dump() const { print(std::cerr); }
937
938//===----------------------------------------------------------------------===//
939// CachedWriter Class Implementation
940//===----------------------------------------------------------------------===//
941
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000942void CachedWriter::setModule(const Module *M) {
943 delete SC; delete AW;
944 if (M) {
945 SC = new SlotCalculator(M, true);
946 AW = new AssemblyWriter(Out, *SC, M);
947 } else {
948 SC = 0; AW = 0;
949 }
950}
951
952CachedWriter::~CachedWriter() {
953 delete AW;
954 delete SC;
955}
956
957CachedWriter &CachedWriter::operator<<(const Value *V) {
958 assert(AW && SC && "CachedWriter does not have a current module!");
959 switch (V->getValueType()) {
960 case Value::ConstantVal:
Chris Lattner66e810b2002-04-18 18:53:13 +0000961 case Value::ArgumentVal: AW->writeOperand(V, true, true); break;
Chris Lattner949a3622003-07-23 15:30:06 +0000962 case Value::TypeVal: AW->write(cast<Type>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000963 case Value::InstructionVal: AW->write(cast<Instruction>(V)); break;
964 case Value::BasicBlockVal: AW->write(cast<BasicBlock>(V)); break;
Chris Lattner79df7c02002-03-26 18:01:55 +0000965 case Value::FunctionVal: AW->write(cast<Function>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000966 case Value::GlobalVariableVal: AW->write(cast<GlobalVariable>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000967 default: Out << "<unknown value type: " << V->getValueType() << ">"; break;
968 }
969 return *this;
970}