blob: bb30570395a9afc86030f6c76a6749518e54a69b [file] [log] [blame]
Chris Lattner8da78af2002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Assembly/Writer.h
11//
Chris Lattner02b93992002-04-12 18:21:53 +000012// Note that these routines must be extremely tolerant of various errors in the
Chris Lattner8f77dae2003-05-08 02:44:12 +000013// LLVM code, because it can be used for debugging transformations.
Chris Lattner02b93992002-04-12 18:21:53 +000014//
Chris Lattner00950542001-06-06 20:29:01 +000015//===----------------------------------------------------------------------===//
16
Chris Lattnerda1fbcc2001-11-07 04:21:57 +000017#include "llvm/Assembly/CachedWriter.h"
Chris Lattner75cf7cf2002-04-08 22:03:40 +000018#include "llvm/Assembly/Writer.h"
Chris Lattnerf082b802002-07-23 18:07:49 +000019#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner95e5a2c2003-10-30 23:41:03 +000020#include "llvm/Assembly/AsmAnnotationWriter.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000021#include "llvm/Constants.h"
Chris Lattner3eb59c02002-04-29 18:46:50 +000022#include "llvm/DerivedTypes.h"
Vikram S. Adveb4dbb442002-07-14 23:14:45 +000023#include "llvm/Instruction.h"
Chris Lattner00950542001-06-06 20:29:01 +000024#include "llvm/iMemory.h"
Chris Lattnere02fa852001-10-13 06:42:36 +000025#include "llvm/iTerminators.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000026#include "llvm/iPHINode.h"
27#include "llvm/iOther.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000028#include "llvm/Module.h"
Chris Lattner007377f2001-09-07 16:36:04 +000029#include "llvm/SymbolTable.h"
Misha Brukman5cf1acf2004-04-28 15:31:21 +000030#include "llvm/Analysis/SlotCalculator.h"
31#include "llvm/Assembly/Writer.h"
Chris Lattner061269b2002-10-02 19:38:55 +000032#include "llvm/Support/CFG.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000033#include "Support/StringExtras.h"
34#include "Support/STLExtras.h"
Chris Lattner007377f2001-09-07 16:36:04 +000035#include <algorithm>
Chris Lattner31f84992003-11-21 20:23:48 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattnera6275cc2002-07-26 21:12:46 +000038static RegisterPass<PrintModulePass>
39X("printm", "Print module to stderr",PassInfo::Analysis|PassInfo::Optimization);
40static RegisterPass<PrintFunctionPass>
41Y("print","Print function to stderr",PassInfo::Analysis|PassInfo::Optimization);
Chris Lattnerf082b802002-07-23 18:07:49 +000042
Chris Lattner7b13f562003-05-08 02:08:14 +000043static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
44 bool PrintName,
45 std::map<const Type *, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +000046 SlotCalculator *Table);
47
Chris Lattner207b5bc2001-10-29 16:37:48 +000048static const Module *getModuleFromVal(const Value *V) {
Chris Lattner949a3622003-07-23 15:30:06 +000049 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000050 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000051 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000052 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000053 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +000054 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattner207b5bc2001-10-29 16:37:48 +000055 return M ? M->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000056 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000057 return GV->getParent();
Chris Lattner207b5bc2001-10-29 16:37:48 +000058 return 0;
59}
60
Chris Lattnerc1824992001-10-29 16:05:51 +000061static SlotCalculator *createSlotCalculator(const Value *V) {
62 assert(!isa<Type>(V) && "Can't create an SC for a type!");
Chris Lattner949a3622003-07-23 15:30:06 +000063 if (const Argument *FA = dyn_cast<Argument>(V)) {
Chris Lattner8ce75012004-01-14 02:49:34 +000064 return new SlotCalculator(FA->getParent(), false);
Chris Lattner949a3622003-07-23 15:30:06 +000065 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner8ce75012004-01-14 02:49:34 +000066 return new SlotCalculator(I->getParent()->getParent(), false);
Chris Lattner949a3622003-07-23 15:30:06 +000067 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Chris Lattner8ce75012004-01-14 02:49:34 +000068 return new SlotCalculator(BB->getParent(), false);
Chris Lattner949a3622003-07-23 15:30:06 +000069 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Chris Lattner8ce75012004-01-14 02:49:34 +000070 return new SlotCalculator(GV->getParent(), false);
Chris Lattner949a3622003-07-23 15:30:06 +000071 } else if (const Function *Func = dyn_cast<Function>(V)) {
Chris Lattner8ce75012004-01-14 02:49:34 +000072 return new SlotCalculator(Func, false);
Chris Lattnerc1824992001-10-29 16:05:51 +000073 }
74 return 0;
75}
Chris Lattner00950542001-06-06 20:29:01 +000076
Chris Lattner24b8a5d2003-08-22 05:40:38 +000077// getLLVMName - Turn the specified string into an 'LLVM name', which is either
78// prefixed with % (if the string only contains simple characters) or is
79// surrounded with ""'s (if it has special chars in it).
80static std::string getLLVMName(const std::string &Name) {
81 assert(!Name.empty() && "Cannot get empty name!");
82
83 // First character cannot start with a number...
84 if (Name[0] >= '0' && Name[0] <= '9')
85 return "\"" + Name + "\"";
86
87 // Scan to see if we have any characters that are not on the "white list"
88 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
89 char C = Name[i];
90 assert(C != '"' && "Illegal character in LLVM value name!");
91 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
92 C != '-' && C != '.' && C != '_')
93 return "\"" + Name + "\"";
94 }
95
96 // If we get here, then the identifier is legal to use as a "VarID".
97 return "%"+Name;
98}
99
Chris Lattner207b5bc2001-10-29 16:37:48 +0000100
Misha Brukmanab5c6002004-03-02 00:22:19 +0000101/// fillTypeNameTable - If the module has a symbol table, take all global types
102/// and stuff their names into the TypeNames map.
103///
Chris Lattner207b5bc2001-10-29 16:37:48 +0000104static void fillTypeNameTable(const Module *M,
Chris Lattner7b13f562003-05-08 02:08:14 +0000105 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner6e6026b2002-11-20 18:36:02 +0000106 if (!M) return;
107 const SymbolTable &ST = M->getSymbolTable();
Reid Spencer9231ac82004-05-25 08:53:40 +0000108 SymbolTable::type_const_iterator TI = ST.type_begin();
109 for (; TI != ST.type_end(); ++TI ) {
110 // As a heuristic, don't insert pointer to primitive types, because
111 // they are used too often to have a single useful name.
112 //
113 const Type *Ty = cast<Type>(TI->second);
114 if (!isa<PointerType>(Ty) ||
115 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
116 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
117 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattner207b5bc2001-10-29 16:37:48 +0000118 }
119}
120
121
122
Chris Lattner7b13f562003-05-08 02:08:14 +0000123static std::string calcTypeName(const Type *Ty,
124 std::vector<const Type *> &TypeStack,
125 std::map<const Type *, std::string> &TypeNames){
Chris Lattner88c17382003-10-30 00:22:33 +0000126 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
127 return Ty->getDescription(); // Base case
Chris Lattner207b5bc2001-10-29 16:37:48 +0000128
129 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000130 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000131 if (I != TypeNames.end()) return I->second;
132
Chris Lattner88c17382003-10-30 00:22:33 +0000133 if (isa<OpaqueType>(Ty))
134 return "opaque";
135
Chris Lattner207b5bc2001-10-29 16:37:48 +0000136 // Check to see if the Type is already on the stack...
137 unsigned Slot = 0, CurSize = TypeStack.size();
138 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
139
140 // This is another base case for the recursion. In this case, we know
141 // that we have looped back to a type that we have previously visited.
142 // Generate the appropriate upreference to handle this.
Chris Lattner207b5bc2001-10-29 16:37:48 +0000143 if (Slot < CurSize)
144 return "\\" + utostr(CurSize-Slot); // Here's the upreference
145
146 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
147
Chris Lattner7b13f562003-05-08 02:08:14 +0000148 std::string Result;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000149 switch (Ty->getPrimitiveID()) {
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000150 case Type::FunctionTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000151 const FunctionType *FTy = cast<FunctionType>(Ty);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000152 Result = calcTypeName(FTy->getReturnType(), TypeStack, TypeNames) + " (";
Chris Lattnerd5d89962004-02-09 04:14:01 +0000153 for (FunctionType::param_iterator I = FTy->param_begin(),
154 E = FTy->param_end(); I != E; ++I) {
155 if (I != FTy->param_begin())
Chris Lattner207b5bc2001-10-29 16:37:48 +0000156 Result += ", ";
157 Result += calcTypeName(*I, TypeStack, TypeNames);
158 }
Chris Lattner2761e9f2002-04-13 20:53:41 +0000159 if (FTy->isVarArg()) {
Chris Lattnerd5d89962004-02-09 04:14:01 +0000160 if (FTy->getNumParams()) Result += ", ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000161 Result += "...";
162 }
163 Result += ")";
164 break;
165 }
166 case Type::StructTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000167 const StructType *STy = cast<StructType>(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000168 Result = "{ ";
Chris Lattnerd21cd802004-02-09 04:37:31 +0000169 for (StructType::element_iterator I = STy->element_begin(),
170 E = STy->element_end(); I != E; ++I) {
171 if (I != STy->element_begin())
Chris Lattner207b5bc2001-10-29 16:37:48 +0000172 Result += ", ";
173 Result += calcTypeName(*I, TypeStack, TypeNames);
174 }
175 Result += " }";
176 break;
177 }
178 case Type::PointerTyID:
Chris Lattner949a3622003-07-23 15:30:06 +0000179 Result = calcTypeName(cast<PointerType>(Ty)->getElementType(),
Chris Lattner02b93992002-04-12 18:21:53 +0000180 TypeStack, TypeNames) + "*";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000181 break;
182 case Type::ArrayTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000183 const ArrayType *ATy = cast<ArrayType>(Ty);
Chris Lattnerff5c2962002-04-13 21:11:04 +0000184 Result = "[" + utostr(ATy->getNumElements()) + " x ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000185 Result += calcTypeName(ATy->getElementType(), TypeStack, TypeNames) + "]";
186 break;
187 }
Chris Lattner9e094c42003-05-14 17:50:47 +0000188 case Type::OpaqueTyID:
189 Result = "opaque";
190 break;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000191 default:
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000192 Result = "<unrecognized-type>";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000193 }
194
195 TypeStack.pop_back(); // Remove self from stack...
196 return Result;
197}
198
199
Misha Brukman9d0802e2004-03-01 19:48:13 +0000200/// printTypeInt - The internal guts of printing out a type that has a
201/// potentially named portion.
202///
Chris Lattner7b13f562003-05-08 02:08:14 +0000203static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
204 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner207b5bc2001-10-29 16:37:48 +0000205 // Primitive types always print out their description, regardless of whether
206 // they have been named or not.
207 //
Chris Lattnerdaf2a492003-10-30 00:12:51 +0000208 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
209 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000210
211 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000212 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000213 if (I != TypeNames.end()) return Out << I->second;
214
215 // Otherwise we have a type that has not been named but is a derived type.
216 // Carefully recurse the type hierarchy to print out any contained symbolic
217 // names.
218 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000219 std::vector<const Type *> TypeStack;
220 std::string TypeName = calcTypeName(Ty, TypeStack, TypeNames);
Chris Lattner697954c2002-01-20 22:54:45 +0000221 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
Chris Lattner207b5bc2001-10-29 16:37:48 +0000222 return Out << TypeName;
223}
224
Chris Lattnere51e03b2001-10-31 04:33:19 +0000225
Misha Brukman9d0802e2004-03-01 19:48:13 +0000226/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
227/// type, iff there is an entry in the modules symbol table for the specified
228/// type or one of it's component types. This is slower than a simple x << Type
229///
Chris Lattner31f84992003-11-21 20:23:48 +0000230std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
231 const Module *M) {
Chris Lattner207b5bc2001-10-29 16:37:48 +0000232 Out << " ";
233
234 // If they want us to print out a type, attempt to make it symbolic if there
235 // is a symbol table in the module...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000236 if (M) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000237 std::map<const Type *, std::string> TypeNames;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000238 fillTypeNameTable(M, TypeNames);
239
Chris Lattner7b8660d2001-10-29 16:40:32 +0000240 return printTypeInt(Out, Ty, TypeNames);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000241 } else {
Chris Lattner7b8660d2001-10-29 16:40:32 +0000242 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000243 }
244}
245
Chris Lattner7b13f562003-05-08 02:08:14 +0000246static void WriteConstantInt(std::ostream &Out, const Constant *CV,
247 bool PrintName,
248 std::map<const Type *, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +0000249 SlotCalculator *Table) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000250 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
251 Out << (CB == ConstantBool::True ? "true" : "false");
252 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
253 Out << CI->getValue();
254 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
255 Out << CI->getValue();
256 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
257 // We would like to output the FP constant value in exponential notation,
258 // but we cannot do this if doing so will lose precision. Check here to
259 // make sure that we only output it in exponential format if we can parse
260 // the value back and get the same value.
261 //
262 std::string StrVal = ftostr(CFP->getValue());
263
264 // Check to make sure that the stringized number is not some string like
265 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
266 // the string matches the "[-+]?[0-9]" regex.
267 //
268 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
269 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaekeb471a232003-06-17 23:55:35 +0000270 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner66e810b2002-04-18 18:53:13 +0000271 // Reparse stringized version!
272 if (atof(StrVal.c_str()) == CFP->getValue()) {
273 Out << StrVal; return;
274 }
275
276 // Otherwise we could not reparse it to exactly the same value, so we must
277 // output the string in hexadecimal format!
278 //
279 // Behave nicely in the face of C TBAA rules... see:
280 // http://www.nullstone.com/htmls/category/aliastyp.htm
281 //
282 double Val = CFP->getValue();
283 char *Ptr = (char*)&Val;
284 assert(sizeof(double) == sizeof(uint64_t) && sizeof(double) == 8 &&
285 "assuming that double is 64 bits!");
286 Out << "0x" << utohexstr(*(uint64_t*)Ptr);
287
Chris Lattnerde512b52004-02-15 05:55:15 +0000288 } else if (isa<ConstantAggregateZero>(CV)) {
289 Out << "zeroinitializer";
Chris Lattner66e810b2002-04-18 18:53:13 +0000290 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
291 // As a special case, print the array as a string if it is an array of
292 // ubytes or an array of sbytes with positive values.
293 //
294 const Type *ETy = CA->getType()->getElementType();
295 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
296
297 if (ETy == Type::SByteTy)
298 for (unsigned i = 0; i < CA->getNumOperands(); ++i)
299 if (cast<ConstantSInt>(CA->getOperand(i))->getValue() < 0) {
300 isString = false;
301 break;
302 }
303
304 if (isString) {
305 Out << "c\"";
306 for (unsigned i = 0; i < CA->getNumOperands(); ++i) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000307 unsigned char C = cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Chris Lattner66e810b2002-04-18 18:53:13 +0000308
Chris Lattnerfc944462002-07-31 23:56:44 +0000309 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner66e810b2002-04-18 18:53:13 +0000310 Out << C;
311 } else {
312 Out << '\\'
313 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
314 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
315 }
316 }
317 Out << "\"";
318
319 } else { // Cannot output in string format...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000320 Out << "[";
321 if (CA->getNumOperands()) {
322 Out << " ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000323 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000324 WriteAsOperandInternal(Out, CA->getOperand(0),
325 PrintName, TypeTable, Table);
326 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
327 Out << ", ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000328 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000329 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
330 TypeTable, Table);
331 }
332 }
333 Out << " ]";
334 }
335 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
336 Out << "{";
337 if (CS->getNumOperands()) {
338 Out << " ";
339 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
340
341 WriteAsOperandInternal(Out, CS->getOperand(0),
342 PrintName, TypeTable, Table);
343
344 for (unsigned i = 1; i < CS->getNumOperands(); i++) {
345 Out << ", ";
346 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
347
348 WriteAsOperandInternal(Out, CS->getOperand(i),
349 PrintName, TypeTable, Table);
350 }
351 }
352
353 Out << " }";
354 } else if (isa<ConstantPointerNull>(CV)) {
355 Out << "null";
356
Chris Lattner7e708292002-06-25 16:13:24 +0000357 } else if (const ConstantPointerRef *PR = dyn_cast<ConstantPointerRef>(CV)) {
Chris Lattner2ff95b62004-01-18 21:03:06 +0000358 WriteAsOperandInternal(Out, PR->getValue(), true, TypeTable, Table);
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000359
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000360 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattner38d87732003-03-06 23:23:32 +0000361 Out << CE->getOpcodeName() << " (";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000362
363 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
364 printTypeInt(Out, (*OI)->getType(), TypeTable);
365 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Table);
366 if (OI+1 != CE->op_end())
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000367 Out << ", ";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000368 }
369
Chris Lattner1c93e5b2002-08-16 21:17:11 +0000370 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner95586b82002-08-15 19:37:43 +0000371 Out << " to ";
372 printTypeInt(Out, CE->getType(), TypeTable);
373 }
Chris Lattner1c93e5b2002-08-16 21:17:11 +0000374 Out << ")";
Chris Lattner95586b82002-08-15 19:37:43 +0000375
Chris Lattner7a716ad2002-04-16 21:36:08 +0000376 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000377 Out << "<placeholder or erroneous Constant>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000378 }
379}
380
381
Misha Brukmanab5c6002004-03-02 00:22:19 +0000382/// WriteAsOperand - Write the name of the specified value out to the specified
383/// ostream. This can be useful when you just want to print int %reg126, not
384/// the whole instruction that generated it.
385///
Chris Lattner7b13f562003-05-08 02:08:14 +0000386static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
387 bool PrintName,
388 std::map<const Type*, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +0000389 SlotCalculator *Table) {
390 Out << " ";
391 if (PrintName && V->hasName()) {
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000392 Out << getLLVMName(V->getName());
Chris Lattner7a716ad2002-04-16 21:36:08 +0000393 } else {
Chris Lattner949a3622003-07-23 15:30:06 +0000394 if (const Constant *CV = dyn_cast<Constant>(V)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000395 WriteConstantInt(Out, CV, PrintName, TypeTable, Table);
396 } else {
397 int Slot;
398 if (Table) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000399 Slot = Table->getSlot(V);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000400 } else {
Chris Lattner949a3622003-07-23 15:30:06 +0000401 if (const Type *Ty = dyn_cast<Type>(V)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000402 Out << Ty->getDescription();
403 return;
404 }
405
406 Table = createSlotCalculator(V);
407 if (Table == 0) { Out << "BAD VALUE TYPE!"; return; }
408
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000409 Slot = Table->getSlot(V);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000410 delete Table;
411 }
412 if (Slot >= 0) Out << "%" << Slot;
413 else if (PrintName)
Misha Brukman9d0802e2004-03-01 19:48:13 +0000414 if (V->hasName())
415 Out << "<badref: " << getLLVMName(V->getName()) << ">";
416 else
417 Out << "<badref>"; // Not embedded into a location?
Chris Lattner7a716ad2002-04-16 21:36:08 +0000418 }
419 }
420}
421
422
Misha Brukman9d0802e2004-03-01 19:48:13 +0000423/// WriteAsOperand - Write the name of the specified value out to the specified
424/// ostream. This can be useful when you just want to print int %reg126, not
425/// the whole instruction that generated it.
426///
Chris Lattner31f84992003-11-21 20:23:48 +0000427std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukman9d0802e2004-03-01 19:48:13 +0000428 bool PrintType, bool PrintName,
429 const Module *Context) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000430 std::map<const Type *, std::string> TypeNames;
Chris Lattner607dc682002-07-10 16:48:17 +0000431 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000432
Chris Lattner6e6026b2002-11-20 18:36:02 +0000433 if (Context)
Chris Lattner607dc682002-07-10 16:48:17 +0000434 fillTypeNameTable(Context, TypeNames);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000435
436 if (PrintType)
437 printTypeInt(Out, V->getType(), TypeNames);
438
Brian Gaekecd4a3982003-11-16 23:08:27 +0000439 if (const Type *Ty = dyn_cast<Type> (V))
440 printTypeInt(Out, Ty, TypeNames);
441
Chris Lattner607dc682002-07-10 16:48:17 +0000442 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner622f7402001-07-20 19:15:21 +0000443 return Out;
444}
445
Chris Lattner31f84992003-11-21 20:23:48 +0000446namespace llvm {
Chris Lattnerd8c2e422001-07-12 23:35:26 +0000447
Chris Lattner007377f2001-09-07 16:36:04 +0000448class AssemblyWriter {
Misha Brukmane5242de2004-04-28 19:24:28 +0000449 std::ostream *Out;
Chris Lattner00950542001-06-06 20:29:01 +0000450 SlotCalculator &Table;
Chris Lattnerc1824992001-10-29 16:05:51 +0000451 const Module *TheModule;
Chris Lattner7b13f562003-05-08 02:08:14 +0000452 std::map<const Type *, std::string> TypeNames;
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000453 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner00950542001-06-06 20:29:01 +0000454public:
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000455 inline AssemblyWriter(std::ostream &o, SlotCalculator &Tab, const Module *M,
456 AssemblyAnnotationWriter *AAW)
Misha Brukmane5242de2004-04-28 19:24:28 +0000457 : Out(&o), Table(Tab), TheModule(M), AnnotationWriter(AAW) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000458
459 // If the module has a symbol table, take all global types and stuff their
460 // names into the TypeNames map.
461 //
Chris Lattner207b5bc2001-10-29 16:37:48 +0000462 fillTypeNameTable(M, TypeNames);
Chris Lattner00950542001-06-06 20:29:01 +0000463 }
464
Chris Lattnerc1824992001-10-29 16:05:51 +0000465 inline void write(const Module *M) { printModule(M); }
466 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner79df7c02002-03-26 18:01:55 +0000467 inline void write(const Function *F) { printFunction(F); }
Chris Lattnerc1824992001-10-29 16:05:51 +0000468 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner7e708292002-06-25 16:13:24 +0000469 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000470 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000471 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner00950542001-06-06 20:29:01 +0000472
Chris Lattner66e810b2002-04-18 18:53:13 +0000473 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
474
Misha Brukman5cf1acf2004-04-28 15:31:21 +0000475 const Module* getModule() { return TheModule; }
Misha Brukmane5242de2004-04-28 19:24:28 +0000476 void setStream(std::ostream &os) { Out = &os; }
Misha Brukman5cf1acf2004-04-28 15:31:21 +0000477
Chris Lattner00950542001-06-06 20:29:01 +0000478private :
Chris Lattnerc1824992001-10-29 16:05:51 +0000479 void printModule(const Module *M);
480 void printSymbolTable(const SymbolTable &ST);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000481 void printConstant(const Constant *CPV);
Chris Lattnerc1824992001-10-29 16:05:51 +0000482 void printGlobal(const GlobalVariable *GV);
Chris Lattner79df7c02002-03-26 18:01:55 +0000483 void printFunction(const Function *F);
Chris Lattner73e21422002-04-09 19:48:49 +0000484 void printArgument(const Argument *FA);
Chris Lattnerc1824992001-10-29 16:05:51 +0000485 void printBasicBlock(const BasicBlock *BB);
Chris Lattner7e708292002-06-25 16:13:24 +0000486 void printInstruction(const Instruction &I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000487
488 // printType - Go to extreme measures to attempt to print out a short,
489 // symbolic version of a type name.
490 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000491 std::ostream &printType(const Type *Ty) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000492 return printTypeInt(*Out, Ty, TypeNames);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000493 }
494
495 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
496 // without considering any symbolic types that we may have equal to it.
497 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000498 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattnerc1824992001-10-29 16:05:51 +0000499
Chris Lattnere02fa852001-10-13 06:42:36 +0000500 // printInfoComment - Print a little comment after the instruction indicating
501 // which slot it occupies.
Chris Lattner7e708292002-06-25 16:13:24 +0000502 void printInfoComment(const Value &V);
Chris Lattner00950542001-06-06 20:29:01 +0000503};
Chris Lattner31f84992003-11-21 20:23:48 +0000504} // end of anonymous namespace
Chris Lattner00950542001-06-06 20:29:01 +0000505
Misha Brukmanab5c6002004-03-02 00:22:19 +0000506/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
507/// without considering any symbolic types that we may have equal to it.
508///
Chris Lattner7b13f562003-05-08 02:08:14 +0000509std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner7e708292002-06-25 16:13:24 +0000510 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000511 printType(FTy->getReturnType()) << " (";
Chris Lattnerd5d89962004-02-09 04:14:01 +0000512 for (FunctionType::param_iterator I = FTy->param_begin(),
513 E = FTy->param_end(); I != E; ++I) {
514 if (I != FTy->param_begin())
Misha Brukmane5242de2004-04-28 19:24:28 +0000515 *Out << ", ";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000516 printType(*I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000517 }
518 if (FTy->isVarArg()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000519 if (FTy->getNumParams()) *Out << ", ";
520 *Out << "...";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000521 }
Misha Brukmane5242de2004-04-28 19:24:28 +0000522 *Out << ")";
Chris Lattner7e708292002-06-25 16:13:24 +0000523 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000524 *Out << "{ ";
Chris Lattnerd21cd802004-02-09 04:37:31 +0000525 for (StructType::element_iterator I = STy->element_begin(),
526 E = STy->element_end(); I != E; ++I) {
527 if (I != STy->element_begin())
Misha Brukmane5242de2004-04-28 19:24:28 +0000528 *Out << ", ";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000529 printType(*I);
530 }
Misha Brukmane5242de2004-04-28 19:24:28 +0000531 *Out << " }";
Chris Lattner7e708292002-06-25 16:13:24 +0000532 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000533 printType(PTy->getElementType()) << "*";
Chris Lattner7e708292002-06-25 16:13:24 +0000534 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000535 *Out << "[" << ATy->getNumElements() << " x ";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000536 printType(ATy->getElementType()) << "]";
Chris Lattner7e708292002-06-25 16:13:24 +0000537 } else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000538 *Out << "opaque";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000539 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000540 if (!Ty->isPrimitiveType())
Misha Brukmane5242de2004-04-28 19:24:28 +0000541 *Out << "<unknown derived type>";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000542 printType(Ty);
543 }
Misha Brukmane5242de2004-04-28 19:24:28 +0000544 return *Out;
Chris Lattner2761e9f2002-04-13 20:53:41 +0000545}
546
547
Chris Lattner007377f2001-09-07 16:36:04 +0000548void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
549 bool PrintName) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000550 if (PrintType) { *Out << " "; printType(Operand->getType()); }
551 WriteAsOperandInternal(*Out, Operand, PrintName, TypeNames, &Table);
Chris Lattner00950542001-06-06 20:29:01 +0000552}
553
Chris Lattner00950542001-06-06 20:29:01 +0000554
Chris Lattnerc1824992001-10-29 16:05:51 +0000555void AssemblyWriter::printModule(const Module *M) {
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000556 switch (M->getEndianness()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000557 case Module::LittleEndian: *Out << "target endian = little\n"; break;
558 case Module::BigEndian: *Out << "target endian = big\n"; break;
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000559 case Module::AnyEndianness: break;
560 }
561 switch (M->getPointerSize()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000562 case Module::Pointer32: *Out << "target pointersize = 32\n"; break;
563 case Module::Pointer64: *Out << "target pointersize = 64\n"; break;
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000564 case Module::AnyPointerSize: break;
565 }
566
Chris Lattner007377f2001-09-07 16:36:04 +0000567 // Loop over the symbol table, emitting all named constants...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000568 printSymbolTable(M->getSymbolTable());
Chris Lattner70cc3392001-09-10 07:58:01 +0000569
Chris Lattner7e708292002-06-25 16:13:24 +0000570 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
571 printGlobal(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000572
Misha Brukmane5242de2004-04-28 19:24:28 +0000573 *Out << "\nimplementation ; Functions:\n";
Vikram S. Adve5efa3cc2001-09-18 12:48:16 +0000574
Chris Lattnerb5794002002-04-07 22:49:37 +0000575 // Output all of the functions...
Chris Lattner7e708292002-06-25 16:13:24 +0000576 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
577 printFunction(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000578}
579
Chris Lattnerc1824992001-10-29 16:05:51 +0000580void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000581 if (GV->hasName()) *Out << getLLVMName(GV->getName()) << " = ";
Chris Lattnerd70684f2001-09-18 04:01:05 +0000582
Chris Lattner4ad02e72003-04-16 20:28:45 +0000583 if (!GV->hasInitializer())
Misha Brukmane5242de2004-04-28 19:24:28 +0000584 *Out << "external ";
Chris Lattner4ad02e72003-04-16 20:28:45 +0000585 else
586 switch (GV->getLinkage()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000587 case GlobalValue::InternalLinkage: *Out << "internal "; break;
588 case GlobalValue::LinkOnceLinkage: *Out << "linkonce "; break;
589 case GlobalValue::WeakLinkage: *Out << "weak "; break;
590 case GlobalValue::AppendingLinkage: *Out << "appending "; break;
Chris Lattner4ad02e72003-04-16 20:28:45 +0000591 case GlobalValue::ExternalLinkage: break;
592 }
Chris Lattnerd70684f2001-09-18 04:01:05 +0000593
Misha Brukmane5242de2004-04-28 19:24:28 +0000594 *Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner7a176752001-12-04 00:03:30 +0000595 printType(GV->getType()->getElementType());
Chris Lattnerd70684f2001-09-18 04:01:05 +0000596
597 if (GV->hasInitializer())
598 writeOperand(GV->getInitializer(), false, false);
599
Chris Lattner7e708292002-06-25 16:13:24 +0000600 printInfoComment(*GV);
Misha Brukmane5242de2004-04-28 19:24:28 +0000601 *Out << "\n";
Chris Lattner70cc3392001-09-10 07:58:01 +0000602}
603
Chris Lattner007377f2001-09-07 16:36:04 +0000604
Reid Spencer9231ac82004-05-25 08:53:40 +0000605// printSymbolTable - Run through symbol table looking for constants
606// and types. Emit their declarations.
Chris Lattnerc1824992001-10-29 16:05:51 +0000607void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencer9231ac82004-05-25 08:53:40 +0000608
609 // Print the types.
610 for (SymbolTable::type_const_iterator TI = ST.type_begin();
611 TI != ST.type_end(); ++TI ) {
612 *Out << "\t" << getLLVMName(TI->first) << " = type ";
613
614 // Make sure we print out at least one level of the type structure, so
615 // that we do not get %FILE = type %FILE
616 //
617 printTypeAtLeastOneLevel(TI->second) << "\n";
618 }
Chris Lattner007377f2001-09-07 16:36:04 +0000619
Reid Spencer9231ac82004-05-25 08:53:40 +0000620 // Print the constants, in type plane order.
621 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
622 PI != ST.plane_end(); ++PI ) {
623 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
624 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
625
626 for (; VI != VE; ++VI) {
627 const Value *V = VI->second;
Chris Lattner949a3622003-07-23 15:30:06 +0000628 if (const Constant *CPV = dyn_cast<Constant>(V)) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000629 printConstant(CPV);
Chris Lattner007377f2001-09-07 16:36:04 +0000630 }
631 }
Chris Lattner739a56d2001-07-15 06:35:59 +0000632 }
Chris Lattner00950542001-06-06 20:29:01 +0000633}
634
635
Misha Brukmanab5c6002004-03-02 00:22:19 +0000636/// printConstant - Print out a constant pool entry...
637///
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000638void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattner007377f2001-09-07 16:36:04 +0000639 // Don't print out unnamed constants, they will be inlined
640 if (!CPV->hasName()) return;
Chris Lattner00950542001-06-06 20:29:01 +0000641
Chris Lattner1333ed52001-07-26 16:29:38 +0000642 // Print out name...
Misha Brukmane5242de2004-04-28 19:24:28 +0000643 *Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner00950542001-06-06 20:29:01 +0000644
645 // Write the value out now...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000646 writeOperand(CPV, true, false);
Chris Lattner00950542001-06-06 20:29:01 +0000647
Chris Lattner7e708292002-06-25 16:13:24 +0000648 printInfoComment(*CPV);
Misha Brukmane5242de2004-04-28 19:24:28 +0000649 *Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000650}
651
Misha Brukmanab5c6002004-03-02 00:22:19 +0000652/// printFunction - Print all aspects of a function.
653///
Chris Lattner7e708292002-06-25 16:13:24 +0000654void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000655 // Print out the return type and name...
Misha Brukmane5242de2004-04-28 19:24:28 +0000656 *Out << "\n";
Chris Lattner4ad02e72003-04-16 20:28:45 +0000657
Misha Brukmane5242de2004-04-28 19:24:28 +0000658 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, *Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000659
Chris Lattner4ad02e72003-04-16 20:28:45 +0000660 if (F->isExternal())
Misha Brukmane5242de2004-04-28 19:24:28 +0000661 *Out << "declare ";
Chris Lattner4ad02e72003-04-16 20:28:45 +0000662 else
663 switch (F->getLinkage()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000664 case GlobalValue::InternalLinkage: *Out << "internal "; break;
665 case GlobalValue::LinkOnceLinkage: *Out << "linkonce "; break;
666 case GlobalValue::WeakLinkage: *Out << "weak "; break;
667 case GlobalValue::AppendingLinkage: *Out << "appending "; break;
Chris Lattner4ad02e72003-04-16 20:28:45 +0000668 case GlobalValue::ExternalLinkage: break;
669 }
670
Chris Lattnerb8565e32003-09-03 17:56:43 +0000671 printType(F->getReturnType()) << " ";
Chris Lattner4d45bd02003-10-18 05:57:43 +0000672 if (!F->getName().empty())
Misha Brukmane5242de2004-04-28 19:24:28 +0000673 *Out << getLLVMName(F->getName());
Chris Lattner4d45bd02003-10-18 05:57:43 +0000674 else
Misha Brukmane5242de2004-04-28 19:24:28 +0000675 *Out << "\"\"";
676 *Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000677 Table.incorporateFunction(F);
Chris Lattner007377f2001-09-07 16:36:04 +0000678
Chris Lattnerc1824992001-10-29 16:05:51 +0000679 // Loop over the arguments, printing them...
Chris Lattner7e708292002-06-25 16:13:24 +0000680 const FunctionType *FT = F->getFunctionType();
Chris Lattner007377f2001-09-07 16:36:04 +0000681
Chris Lattner69da5cf2002-10-13 20:57:00 +0000682 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
683 printArgument(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000684
685 // Finish printing arguments...
Chris Lattner7e708292002-06-25 16:13:24 +0000686 if (FT->isVarArg()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000687 if (FT->getNumParams()) *Out << ", ";
688 *Out << "..."; // Output varargs portion of signature!
Chris Lattner007377f2001-09-07 16:36:04 +0000689 }
Misha Brukmane5242de2004-04-28 19:24:28 +0000690 *Out << ")";
Chris Lattner007377f2001-09-07 16:36:04 +0000691
Chris Lattner7e708292002-06-25 16:13:24 +0000692 if (F->isExternal()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000693 *Out << "\n";
Chris Lattner03e2acb2002-05-06 03:00:40 +0000694 } else {
Misha Brukmane5242de2004-04-28 19:24:28 +0000695 *Out << " {";
Chris Lattner007377f2001-09-07 16:36:04 +0000696
Chris Lattnerb5794002002-04-07 22:49:37 +0000697 // Output all of its basic blocks... for the function
Chris Lattner7e708292002-06-25 16:13:24 +0000698 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
699 printBasicBlock(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000700
Misha Brukmane5242de2004-04-28 19:24:28 +0000701 *Out << "}\n";
Chris Lattner007377f2001-09-07 16:36:04 +0000702 }
703
Chris Lattnerb5794002002-04-07 22:49:37 +0000704 Table.purgeFunction();
Chris Lattner00950542001-06-06 20:29:01 +0000705}
706
Misha Brukmanab5c6002004-03-02 00:22:19 +0000707/// printArgument - This member is called for every argument that is passed into
708/// the function. Simply print it out
709///
Chris Lattner73e21422002-04-09 19:48:49 +0000710void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner00950542001-06-06 20:29:01 +0000711 // Insert commas as we go... the first arg doesn't get a comma
Misha Brukmane5242de2004-04-28 19:24:28 +0000712 if (Arg != &Arg->getParent()->afront()) *Out << ", ";
Chris Lattner00950542001-06-06 20:29:01 +0000713
714 // Output type...
Chris Lattnerc1824992001-10-29 16:05:51 +0000715 printType(Arg->getType());
Chris Lattner00950542001-06-06 20:29:01 +0000716
717 // Output name, if available...
718 if (Arg->hasName())
Misha Brukmane5242de2004-04-28 19:24:28 +0000719 *Out << " " << getLLVMName(Arg->getName());
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000720 else if (Table.getSlot(Arg) < 0)
Misha Brukmane5242de2004-04-28 19:24:28 +0000721 *Out << "<badref>";
Chris Lattner00950542001-06-06 20:29:01 +0000722}
723
Misha Brukmanab5c6002004-03-02 00:22:19 +0000724/// printBasicBlock - This member is called for each basic block in a method.
725///
Chris Lattnerc1824992001-10-29 16:05:51 +0000726void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner00950542001-06-06 20:29:01 +0000727 if (BB->hasName()) { // Print out the label if it exists...
Misha Brukmane5242de2004-04-28 19:24:28 +0000728 *Out << "\n" << BB->getName() << ":";
Chris Lattnerafc38682002-05-14 16:02:05 +0000729 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000730 int Slot = Table.getSlot(BB);
Misha Brukmane5242de2004-04-28 19:24:28 +0000731 *Out << "\n; <label>:";
Chris Lattner00950542001-06-06 20:29:01 +0000732 if (Slot >= 0)
Misha Brukmane5242de2004-04-28 19:24:28 +0000733 *Out << Slot; // Extra newline separates out label's
Chris Lattner00950542001-06-06 20:29:01 +0000734 else
Misha Brukmane5242de2004-04-28 19:24:28 +0000735 *Out << "<badref>";
Chris Lattner061269b2002-10-02 19:38:55 +0000736 }
Chris Lattner4e4d8622003-11-20 00:09:43 +0000737
738 if (BB->getParent() == 0)
Misha Brukmane5242de2004-04-28 19:24:28 +0000739 *Out << "\t\t; Error: Block without parent!";
Chris Lattner4e4d8622003-11-20 00:09:43 +0000740 else {
741 if (BB != &BB->getParent()->front()) { // Not the entry block?
742 // Output predecessors for the block...
Misha Brukmane5242de2004-04-28 19:24:28 +0000743 *Out << "\t\t;";
Chris Lattner4e4d8622003-11-20 00:09:43 +0000744 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
745
746 if (PI == PE) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000747 *Out << " No predecessors!";
Chris Lattner4e4d8622003-11-20 00:09:43 +0000748 } else {
Misha Brukmane5242de2004-04-28 19:24:28 +0000749 *Out << " preds =";
Chris Lattner40efcec2003-11-16 22:59:57 +0000750 writeOperand(*PI, false, true);
Chris Lattner4e4d8622003-11-20 00:09:43 +0000751 for (++PI; PI != PE; ++PI) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000752 *Out << ",";
Chris Lattner4e4d8622003-11-20 00:09:43 +0000753 writeOperand(*PI, false, true);
754 }
Chris Lattner40efcec2003-11-16 22:59:57 +0000755 }
Chris Lattner061269b2002-10-02 19:38:55 +0000756 }
Chris Lattner00950542001-06-06 20:29:01 +0000757 }
Chris Lattnerafc38682002-05-14 16:02:05 +0000758
Misha Brukmane5242de2004-04-28 19:24:28 +0000759 *Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000760
Misha Brukmane5242de2004-04-28 19:24:28 +0000761 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, *Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000762
Chris Lattner007377f2001-09-07 16:36:04 +0000763 // Output all of the instructions in the basic block...
Chris Lattner7e708292002-06-25 16:13:24 +0000764 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
765 printInstruction(*I);
Chris Lattner9f717ef2004-03-08 18:51:45 +0000766
Misha Brukmane5242de2004-04-28 19:24:28 +0000767 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, *Out);
Chris Lattner00950542001-06-06 20:29:01 +0000768}
769
Chris Lattnere02fa852001-10-13 06:42:36 +0000770
Misha Brukmanab5c6002004-03-02 00:22:19 +0000771/// printInfoComment - Print a little comment after the instruction indicating
772/// which slot it occupies.
773///
Chris Lattner7e708292002-06-25 16:13:24 +0000774void AssemblyWriter::printInfoComment(const Value &V) {
775 if (V.getType() != Type::VoidTy) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000776 *Out << "\t\t; <";
Chris Lattner7e708292002-06-25 16:13:24 +0000777 printType(V.getType()) << ">";
Chris Lattnere02fa852001-10-13 06:42:36 +0000778
Chris Lattner7e708292002-06-25 16:13:24 +0000779 if (!V.hasName()) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000780 int Slot = Table.getSlot(&V); // Print out the def slot taken...
Misha Brukmane5242de2004-04-28 19:24:28 +0000781 if (Slot >= 0) *Out << ":" << Slot;
782 else *Out << ":<badref>";
Chris Lattnere02fa852001-10-13 06:42:36 +0000783 }
Misha Brukmane5242de2004-04-28 19:24:28 +0000784 *Out << " [#uses=" << V.use_size() << "]"; // Output # uses
Chris Lattnere02fa852001-10-13 06:42:36 +0000785 }
786}
787
Misha Brukmanab5c6002004-03-02 00:22:19 +0000788/// printInstruction - This member is called for each Instruction in a method.
789///
Chris Lattner7e708292002-06-25 16:13:24 +0000790void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000791 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, *Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000792
Misha Brukmane5242de2004-04-28 19:24:28 +0000793 *Out << "\t";
Chris Lattner00950542001-06-06 20:29:01 +0000794
795 // Print out name if it exists...
Chris Lattner7e708292002-06-25 16:13:24 +0000796 if (I.hasName())
Misha Brukmane5242de2004-04-28 19:24:28 +0000797 *Out << getLLVMName(I.getName()) << " = ";
Chris Lattner00950542001-06-06 20:29:01 +0000798
Chris Lattnere5e475e2003-09-08 17:45:59 +0000799 // If this is a volatile load or store, print out the volatile marker
800 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
801 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()))
Misha Brukmane5242de2004-04-28 19:24:28 +0000802 *Out << "volatile ";
Chris Lattnere5e475e2003-09-08 17:45:59 +0000803
Chris Lattner00950542001-06-06 20:29:01 +0000804 // Print out the opcode...
Misha Brukmane5242de2004-04-28 19:24:28 +0000805 *Out << I.getOpcodeName();
Chris Lattner00950542001-06-06 20:29:01 +0000806
807 // Print out the type of the operands...
Chris Lattner7e708292002-06-25 16:13:24 +0000808 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner00950542001-06-06 20:29:01 +0000809
810 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner7e708292002-06-25 16:13:24 +0000811 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
812 writeOperand(I.getOperand(2), true);
Misha Brukmane5242de2004-04-28 19:24:28 +0000813 *Out << ",";
Chris Lattner00950542001-06-06 20:29:01 +0000814 writeOperand(Operand, true);
Misha Brukmane5242de2004-04-28 19:24:28 +0000815 *Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000816 writeOperand(I.getOperand(1), true);
Chris Lattner00950542001-06-06 20:29:01 +0000817
Chris Lattner94dc1f22002-04-13 18:34:38 +0000818 } else if (isa<SwitchInst>(I)) {
Chris Lattner00950542001-06-06 20:29:01 +0000819 // Special case switch statement to get formatting nice and correct...
Misha Brukmane5242de2004-04-28 19:24:28 +0000820 writeOperand(Operand , true); *Out << ",";
821 writeOperand(I.getOperand(1), true); *Out << " [";
Chris Lattner00950542001-06-06 20:29:01 +0000822
Chris Lattner7e708292002-06-25 16:13:24 +0000823 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000824 *Out << "\n\t\t";
825 writeOperand(I.getOperand(op ), true); *Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000826 writeOperand(I.getOperand(op+1), true);
Chris Lattner00950542001-06-06 20:29:01 +0000827 }
Misha Brukmane5242de2004-04-28 19:24:28 +0000828 *Out << "\n\t]";
Chris Lattnerb00c5822001-10-02 03:41:24 +0000829 } else if (isa<PHINode>(I)) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000830 *Out << " ";
Chris Lattner7e708292002-06-25 16:13:24 +0000831 printType(I.getType());
Misha Brukmane5242de2004-04-28 19:24:28 +0000832 *Out << " ";
Chris Lattner00950542001-06-06 20:29:01 +0000833
Chris Lattner7e708292002-06-25 16:13:24 +0000834 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000835 if (op) *Out << ", ";
836 *Out << "[";
837 writeOperand(I.getOperand(op ), false); *Out << ",";
838 writeOperand(I.getOperand(op+1), false); *Out << " ]";
Chris Lattnerc24d2082001-06-11 15:04:20 +0000839 }
Chris Lattnere02fa852001-10-13 06:42:36 +0000840 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000841 *Out << " void";
Chris Lattnere02fa852001-10-13 06:42:36 +0000842 } else if (isa<CallInst>(I)) {
Chris Lattner7a012292003-08-05 15:34:45 +0000843 const PointerType *PTy = cast<PointerType>(Operand->getType());
844 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
845 const Type *RetTy = FTy->getReturnType();
Chris Lattner268de042001-11-06 21:28:12 +0000846
Chris Lattner7a012292003-08-05 15:34:45 +0000847 // If possible, print out the short form of the call instruction. We can
Chris Lattnerb5794002002-04-07 22:49:37 +0000848 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner7a012292003-08-05 15:34:45 +0000849 // and if the return type is not a pointer to a function.
Chris Lattner268de042001-11-06 21:28:12 +0000850 //
Chris Lattner7a012292003-08-05 15:34:45 +0000851 if (!FTy->isVarArg() &&
Chris Lattner94dc1f22002-04-13 18:34:38 +0000852 (!isa<PointerType>(RetTy) ||
Chris Lattnerc1b27182002-07-25 20:58:51 +0000853 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000854 *Out << " "; printType(RetTy);
Chris Lattner268de042001-11-06 21:28:12 +0000855 writeOperand(Operand, false);
856 } else {
857 writeOperand(Operand, true);
858 }
Misha Brukmane5242de2004-04-28 19:24:28 +0000859 *Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000860 if (I.getNumOperands() > 1) writeOperand(I.getOperand(1), true);
861 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000862 *Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000863 writeOperand(I.getOperand(op), true);
Chris Lattner00950542001-06-06 20:29:01 +0000864 }
865
Misha Brukmane5242de2004-04-28 19:24:28 +0000866 *Out << " )";
Chris Lattner7e708292002-06-25 16:13:24 +0000867 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner7a012292003-08-05 15:34:45 +0000868 const PointerType *PTy = cast<PointerType>(Operand->getType());
869 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
870 const Type *RetTy = FTy->getReturnType();
871
872 // If possible, print out the short form of the invoke instruction. We can
873 // only do this if the first argument is a pointer to a nonvararg function,
874 // and if the return type is not a pointer to a function.
875 //
876 if (!FTy->isVarArg() &&
877 (!isa<PointerType>(RetTy) ||
878 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000879 *Out << " "; printType(RetTy);
Chris Lattner7a012292003-08-05 15:34:45 +0000880 writeOperand(Operand, false);
881 } else {
882 writeOperand(Operand, true);
883 }
884
Misha Brukmane5242de2004-04-28 19:24:28 +0000885 *Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000886 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
887 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000888 *Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000889 writeOperand(I.getOperand(op), true);
Chris Lattnere02fa852001-10-13 06:42:36 +0000890 }
891
Misha Brukmane5242de2004-04-28 19:24:28 +0000892 *Out << " )\n\t\t\tto";
Chris Lattnere02fa852001-10-13 06:42:36 +0000893 writeOperand(II->getNormalDest(), true);
Misha Brukmane5242de2004-04-28 19:24:28 +0000894 *Out << " unwind";
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000895 writeOperand(II->getUnwindDest(), true);
Chris Lattnere02fa852001-10-13 06:42:36 +0000896
Chris Lattner7e708292002-06-25 16:13:24 +0000897 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000898 *Out << " ";
Chris Lattner94dc1f22002-04-13 18:34:38 +0000899 printType(AI->getType()->getElementType());
900 if (AI->isArrayAllocation()) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000901 *Out << ",";
Chris Lattner94dc1f22002-04-13 18:34:38 +0000902 writeOperand(AI->getArraySize(), true);
Chris Lattner00950542001-06-06 20:29:01 +0000903 }
Chris Lattnere02fa852001-10-13 06:42:36 +0000904 } else if (isa<CastInst>(I)) {
Chris Lattner41495a22003-11-17 01:17:04 +0000905 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmane5242de2004-04-28 19:24:28 +0000906 *Out << " to ";
Chris Lattner7e708292002-06-25 16:13:24 +0000907 printType(I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +0000908 } else if (isa<VAArgInst>(I)) {
Chris Lattner41495a22003-11-17 01:17:04 +0000909 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmane5242de2004-04-28 19:24:28 +0000910 *Out << ", ";
Chris Lattner8f77dae2003-05-08 02:44:12 +0000911 printType(I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +0000912 } else if (const VANextInst *VAN = dyn_cast<VANextInst>(&I)) {
Chris Lattner41495a22003-11-17 01:17:04 +0000913 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmane5242de2004-04-28 19:24:28 +0000914 *Out << ", ";
Chris Lattner4d45bd02003-10-18 05:57:43 +0000915 printType(VAN->getArgType());
Chris Lattner00950542001-06-06 20:29:01 +0000916 } else if (Operand) { // Print the normal way...
917
918 // PrintAllTypes - Instructions who have operands of all the same type
919 // omit the type from all but the first operand. If the instruction has
920 // different type operands (for example br), then they are all printed.
921 bool PrintAllTypes = false;
922 const Type *TheType = Operand->getType();
Chris Lattner00950542001-06-06 20:29:01 +0000923
Chris Lattnercfdd1482004-03-12 05:53:14 +0000924 // Shift Left & Right print both types even for Ubyte LHS, and select prints
925 // types even if all operands are bools.
926 if (isa<ShiftInst>(I) || isa<SelectInst>(I)) {
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000927 PrintAllTypes = true;
928 } else {
929 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
930 Operand = I.getOperand(i);
931 if (Operand->getType() != TheType) {
932 PrintAllTypes = true; // We have differing types! Print them all!
933 break;
934 }
Chris Lattner00950542001-06-06 20:29:01 +0000935 }
936 }
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000937
Chris Lattnerc1824992001-10-29 16:05:51 +0000938 if (!PrintAllTypes) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000939 *Out << " ";
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000940 printType(TheType);
Chris Lattnerc1824992001-10-29 16:05:51 +0000941 }
Chris Lattner00950542001-06-06 20:29:01 +0000942
Chris Lattner7e708292002-06-25 16:13:24 +0000943 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmane5242de2004-04-28 19:24:28 +0000944 if (i) *Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000945 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner00950542001-06-06 20:29:01 +0000946 }
947 }
948
Chris Lattnere02fa852001-10-13 06:42:36 +0000949 printInfoComment(I);
Misha Brukmane5242de2004-04-28 19:24:28 +0000950 *Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000951}
952
953
954//===----------------------------------------------------------------------===//
955// External Interface declarations
956//===----------------------------------------------------------------------===//
957
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000958void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner2ff95b62004-01-18 21:03:06 +0000959 SlotCalculator SlotTable(this, false);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000960 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000961 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000962}
963
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000964void GlobalVariable::print(std::ostream &o) const {
Chris Lattner2ff95b62004-01-18 21:03:06 +0000965 SlotCalculator SlotTable(getParent(), false);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000966 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000967 W.write(this);
Chris Lattnerb0e45232001-09-10 20:08:19 +0000968}
969
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000970void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner2ff95b62004-01-18 21:03:06 +0000971 SlotCalculator SlotTable(getParent(), false);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000972 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner00950542001-06-06 20:29:01 +0000973
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000974 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000975}
976
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000977void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner2ff95b62004-01-18 21:03:06 +0000978 SlotCalculator SlotTable(getParent(), false);
Chris Lattnerc1824992001-10-29 16:05:51 +0000979 AssemblyWriter W(o, SlotTable,
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000980 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000981 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000982}
983
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000984void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000985 const Function *F = getParent() ? getParent()->getParent() : 0;
Chris Lattner2ff95b62004-01-18 21:03:06 +0000986 SlotCalculator SlotTable(F, false);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000987 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner00950542001-06-06 20:29:01 +0000988
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000989 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000990}
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000991
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000992void Constant::print(std::ostream &o) const {
993 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner3bc06b32002-09-10 15:53:49 +0000994
995 // Handle CPR's special, because they have context information...
996 if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(this)) {
997 CPR->getValue()->print(o); // Print as a global value, with context info.
998 return;
999 }
1000
Chris Lattner66e810b2002-04-18 18:53:13 +00001001 o << " " << getType()->getDescription() << " ";
1002
Chris Lattner7b13f562003-05-08 02:08:14 +00001003 std::map<const Type *, std::string> TypeTable;
Chris Lattner66e810b2002-04-18 18:53:13 +00001004 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001005}
1006
1007void Type::print(std::ostream &o) const {
1008 if (this == 0)
1009 o << "<null Type>";
1010 else
1011 o << getDescription();
1012}
1013
Chris Lattner73e21422002-04-09 19:48:49 +00001014void Argument::print(std::ostream &o) const {
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001015 o << getType() << " " << getName();
1016}
1017
1018void Value::dump() const { print(std::cerr); }
Reid Spencer9231ac82004-05-25 08:53:40 +00001019void Type::dump() const { print(std::cerr); }
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001020
1021//===----------------------------------------------------------------------===//
1022// CachedWriter Class Implementation
1023//===----------------------------------------------------------------------===//
1024
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001025void CachedWriter::setModule(const Module *M) {
1026 delete SC; delete AW;
1027 if (M) {
Chris Lattner8ce75012004-01-14 02:49:34 +00001028 SC = new SlotCalculator(M, false);
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001029 AW = new AssemblyWriter(*Out, *SC, M, 0);
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001030 } else {
1031 SC = 0; AW = 0;
1032 }
1033}
1034
1035CachedWriter::~CachedWriter() {
1036 delete AW;
1037 delete SC;
1038}
1039
1040CachedWriter &CachedWriter::operator<<(const Value *V) {
1041 assert(AW && SC && "CachedWriter does not have a current module!");
1042 switch (V->getValueType()) {
1043 case Value::ConstantVal:
Chris Lattner66e810b2002-04-18 18:53:13 +00001044 case Value::ArgumentVal: AW->writeOperand(V, true, true); break;
Chris Lattner949a3622003-07-23 15:30:06 +00001045 case Value::TypeVal: AW->write(cast<Type>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001046 case Value::InstructionVal: AW->write(cast<Instruction>(V)); break;
1047 case Value::BasicBlockVal: AW->write(cast<BasicBlock>(V)); break;
Chris Lattner79df7c02002-03-26 18:01:55 +00001048 case Value::FunctionVal: AW->write(cast<Function>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001049 case Value::GlobalVariableVal: AW->write(cast<GlobalVariable>(V)); break;
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001050 default: *Out << "<unknown value type: " << V->getValueType() << ">"; break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001051 }
1052 return *this;
1053}
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001054
1055CachedWriter& CachedWriter::operator<<(const Type *X) {
1056 if (SymbolicTypes) {
1057 const Module *M = AW->getModule();
1058 if (M) WriteTypeSymbolic(*Out, X, M);
1059 return *this;
1060 } else
1061 return *this << (const Value*)X;
1062}
Misha Brukmane5242de2004-04-28 19:24:28 +00001063
1064void CachedWriter::setStream(std::ostream &os) {
1065 Out = &os;
1066 if (AW) AW->setStream(os);
1067}
Reid Spencer9231ac82004-05-25 08:53:40 +00001068
1069// vim: sw=2