blob: 40e0129db2503cac37eb63de19da8e67a870c778 [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 Lattnerb5794002002-04-07 22:49:37 +000020#include "llvm/SlotCalculator.h"
Chris Lattner3eb59c02002-04-29 18:46:50 +000021#include "llvm/DerivedTypes.h"
Vikram S. Adveb4dbb442002-07-14 23:14:45 +000022#include "llvm/Instruction.h"
Chris Lattner00950542001-06-06 20:29:01 +000023#include "llvm/Module.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000024#include "llvm/Constants.h"
Chris Lattner00950542001-06-06 20:29:01 +000025#include "llvm/iMemory.h"
Chris Lattnere02fa852001-10-13 06:42:36 +000026#include "llvm/iTerminators.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000027#include "llvm/iPHINode.h"
28#include "llvm/iOther.h"
Chris Lattner007377f2001-09-07 16:36:04 +000029#include "llvm/SymbolTable.h"
Chris Lattner061269b2002-10-02 19:38:55 +000030#include "llvm/Support/CFG.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000031#include "Support/StringExtras.h"
32#include "Support/STLExtras.h"
Chris Lattner007377f2001-09-07 16:36:04 +000033#include <algorithm>
Chris Lattnerc1824992001-10-29 16:05:51 +000034
Chris Lattnera6275cc2002-07-26 21:12:46 +000035static RegisterPass<PrintModulePass>
36X("printm", "Print module to stderr",PassInfo::Analysis|PassInfo::Optimization);
37static RegisterPass<PrintFunctionPass>
38Y("print","Print function to stderr",PassInfo::Analysis|PassInfo::Optimization);
Chris Lattnerf082b802002-07-23 18:07:49 +000039
Chris Lattner7b13f562003-05-08 02:08:14 +000040static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
41 bool PrintName,
42 std::map<const Type *, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +000043 SlotCalculator *Table);
44
Chris Lattner207b5bc2001-10-29 16:37:48 +000045static const Module *getModuleFromVal(const Value *V) {
Chris Lattner949a3622003-07-23 15:30:06 +000046 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000047 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000048 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000049 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000050 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +000051 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattner207b5bc2001-10-29 16:37:48 +000052 return M ? M->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +000053 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +000054 return GV->getParent();
Chris Lattner207b5bc2001-10-29 16:37:48 +000055 return 0;
56}
57
Chris Lattnerc1824992001-10-29 16:05:51 +000058static SlotCalculator *createSlotCalculator(const Value *V) {
59 assert(!isa<Type>(V) && "Can't create an SC for a type!");
Chris Lattner949a3622003-07-23 15:30:06 +000060 if (const Argument *FA = dyn_cast<Argument>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +000061 return new SlotCalculator(FA->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000062 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattnerc1824992001-10-29 16:05:51 +000063 return new SlotCalculator(I->getParent()->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000064 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Chris Lattnerc1824992001-10-29 16:05:51 +000065 return new SlotCalculator(BB->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000066 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Chris Lattnerc1824992001-10-29 16:05:51 +000067 return new SlotCalculator(GV->getParent(), true);
Chris Lattner949a3622003-07-23 15:30:06 +000068 } else if (const Function *Func = dyn_cast<Function>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +000069 return new SlotCalculator(Func, true);
Chris Lattnerc1824992001-10-29 16:05:51 +000070 }
71 return 0;
72}
Chris Lattner00950542001-06-06 20:29:01 +000073
Chris Lattner24b8a5d2003-08-22 05:40:38 +000074// getLLVMName - Turn the specified string into an 'LLVM name', which is either
75// prefixed with % (if the string only contains simple characters) or is
76// surrounded with ""'s (if it has special chars in it).
77static std::string getLLVMName(const std::string &Name) {
78 assert(!Name.empty() && "Cannot get empty name!");
79
80 // First character cannot start with a number...
81 if (Name[0] >= '0' && Name[0] <= '9')
82 return "\"" + Name + "\"";
83
84 // Scan to see if we have any characters that are not on the "white list"
85 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
86 char C = Name[i];
87 assert(C != '"' && "Illegal character in LLVM value name!");
88 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
89 C != '-' && C != '.' && C != '_')
90 return "\"" + Name + "\"";
91 }
92
93 // If we get here, then the identifier is legal to use as a "VarID".
94 return "%"+Name;
95}
96
Chris Lattner207b5bc2001-10-29 16:37:48 +000097
98// If the module has a symbol table, take all global types and stuff their
99// names into the TypeNames map.
100//
101static void fillTypeNameTable(const Module *M,
Chris Lattner7b13f562003-05-08 02:08:14 +0000102 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner6e6026b2002-11-20 18:36:02 +0000103 if (!M) return;
104 const SymbolTable &ST = M->getSymbolTable();
105 SymbolTable::const_iterator PI = ST.find(Type::TypeTy);
106 if (PI != ST.end()) {
107 SymbolTable::type_const_iterator I = PI->second.begin();
108 for (; I != PI->second.end(); ++I) {
109 // As a heuristic, don't insert pointer to primitive types, because
110 // they are used too often to have a single useful name.
111 //
Chris Lattner949a3622003-07-23 15:30:06 +0000112 const Type *Ty = cast<Type>(I->second);
Chris Lattner6e6026b2002-11-20 18:36:02 +0000113 if (!isa<PointerType>(Ty) ||
Chris Lattner88c17382003-10-30 00:22:33 +0000114 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
115 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000116 TypeNames.insert(std::make_pair(Ty, getLLVMName(I->first)));
Chris Lattner207b5bc2001-10-29 16:37:48 +0000117 }
118 }
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.
143 //
144 if (Slot < CurSize)
145 return "\\" + utostr(CurSize-Slot); // Here's the upreference
146
147 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
148
Chris Lattner7b13f562003-05-08 02:08:14 +0000149 std::string Result;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000150 switch (Ty->getPrimitiveID()) {
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000151 case Type::FunctionTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000152 const FunctionType *FTy = cast<FunctionType>(Ty);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000153 Result = calcTypeName(FTy->getReturnType(), TypeStack, TypeNames) + " (";
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000154 for (FunctionType::ParamTypes::const_iterator
Chris Lattner2761e9f2002-04-13 20:53:41 +0000155 I = FTy->getParamTypes().begin(),
156 E = FTy->getParamTypes().end(); I != E; ++I) {
157 if (I != FTy->getParamTypes().begin())
Chris Lattner207b5bc2001-10-29 16:37:48 +0000158 Result += ", ";
159 Result += calcTypeName(*I, TypeStack, TypeNames);
160 }
Chris Lattner2761e9f2002-04-13 20:53:41 +0000161 if (FTy->isVarArg()) {
162 if (!FTy->getParamTypes().empty()) Result += ", ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000163 Result += "...";
164 }
165 Result += ")";
166 break;
167 }
168 case Type::StructTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000169 const StructType *STy = cast<StructType>(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000170 Result = "{ ";
171 for (StructType::ElementTypes::const_iterator
172 I = STy->getElementTypes().begin(),
173 E = STy->getElementTypes().end(); I != E; ++I) {
174 if (I != STy->getElementTypes().begin())
175 Result += ", ";
176 Result += calcTypeName(*I, TypeStack, TypeNames);
177 }
178 Result += " }";
179 break;
180 }
181 case Type::PointerTyID:
Chris Lattner949a3622003-07-23 15:30:06 +0000182 Result = calcTypeName(cast<PointerType>(Ty)->getElementType(),
Chris Lattner02b93992002-04-12 18:21:53 +0000183 TypeStack, TypeNames) + "*";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000184 break;
185 case Type::ArrayTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000186 const ArrayType *ATy = cast<ArrayType>(Ty);
Chris Lattnerff5c2962002-04-13 21:11:04 +0000187 Result = "[" + utostr(ATy->getNumElements()) + " x ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000188 Result += calcTypeName(ATy->getElementType(), TypeStack, TypeNames) + "]";
189 break;
190 }
Chris Lattner9e094c42003-05-14 17:50:47 +0000191 case Type::OpaqueTyID:
192 Result = "opaque";
193 break;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000194 default:
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000195 Result = "<unrecognized-type>";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000196 }
197
198 TypeStack.pop_back(); // Remove self from stack...
199 return Result;
200}
201
202
203// printTypeInt - The internal guts of printing out a type that has a
204// potentially named portion.
205//
Chris Lattner7b13f562003-05-08 02:08:14 +0000206static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
207 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner207b5bc2001-10-29 16:37:48 +0000208 // Primitive types always print out their description, regardless of whether
209 // they have been named or not.
210 //
Chris Lattnerdaf2a492003-10-30 00:12:51 +0000211 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
212 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000213
214 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000215 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000216 if (I != TypeNames.end()) return Out << I->second;
217
218 // Otherwise we have a type that has not been named but is a derived type.
219 // Carefully recurse the type hierarchy to print out any contained symbolic
220 // names.
221 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000222 std::vector<const Type *> TypeStack;
223 std::string TypeName = calcTypeName(Ty, TypeStack, TypeNames);
Chris Lattner697954c2002-01-20 22:54:45 +0000224 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
Chris Lattner207b5bc2001-10-29 16:37:48 +0000225 return Out << TypeName;
226}
227
Chris Lattnere51e03b2001-10-31 04:33:19 +0000228
Chris Lattner207b5bc2001-10-29 16:37:48 +0000229// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
230// type, iff there is an entry in the modules symbol table for the specified
231// type or one of it's component types. This is slower than a simple x << Type;
232//
Chris Lattner7b13f562003-05-08 02:08:14 +0000233std::ostream &WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
234 const Module *M) {
Chris Lattner207b5bc2001-10-29 16:37:48 +0000235 Out << " ";
236
237 // If they want us to print out a type, attempt to make it symbolic if there
238 // is a symbol table in the module...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000239 if (M) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000240 std::map<const Type *, std::string> TypeNames;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000241 fillTypeNameTable(M, TypeNames);
242
Chris Lattner7b8660d2001-10-29 16:40:32 +0000243 return printTypeInt(Out, Ty, TypeNames);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000244 } else {
Chris Lattner7b8660d2001-10-29 16:40:32 +0000245 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000246 }
247}
248
Chris Lattner7b13f562003-05-08 02:08:14 +0000249static void WriteConstantInt(std::ostream &Out, const Constant *CV,
250 bool PrintName,
251 std::map<const Type *, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +0000252 SlotCalculator *Table) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000253 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
254 Out << (CB == ConstantBool::True ? "true" : "false");
255 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
256 Out << CI->getValue();
257 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
258 Out << CI->getValue();
259 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
260 // We would like to output the FP constant value in exponential notation,
261 // but we cannot do this if doing so will lose precision. Check here to
262 // make sure that we only output it in exponential format if we can parse
263 // the value back and get the same value.
264 //
265 std::string StrVal = ftostr(CFP->getValue());
266
267 // Check to make sure that the stringized number is not some string like
268 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
269 // the string matches the "[-+]?[0-9]" regex.
270 //
271 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
272 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaekeb471a232003-06-17 23:55:35 +0000273 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner66e810b2002-04-18 18:53:13 +0000274 // Reparse stringized version!
275 if (atof(StrVal.c_str()) == CFP->getValue()) {
276 Out << StrVal; return;
277 }
278
279 // Otherwise we could not reparse it to exactly the same value, so we must
280 // output the string in hexadecimal format!
281 //
282 // Behave nicely in the face of C TBAA rules... see:
283 // http://www.nullstone.com/htmls/category/aliastyp.htm
284 //
285 double Val = CFP->getValue();
286 char *Ptr = (char*)&Val;
287 assert(sizeof(double) == sizeof(uint64_t) && sizeof(double) == 8 &&
288 "assuming that double is 64 bits!");
289 Out << "0x" << utohexstr(*(uint64_t*)Ptr);
290
291 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattnere9a64ea2003-06-28 20:08:24 +0000292 if (CA->getNumOperands() > 5 && CA->isNullValue()) {
293 Out << "zeroinitializer";
294 return;
295 }
296
Chris Lattner66e810b2002-04-18 18:53:13 +0000297 // As a special case, print the array as a string if it is an array of
298 // ubytes or an array of sbytes with positive values.
299 //
300 const Type *ETy = CA->getType()->getElementType();
301 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
302
303 if (ETy == Type::SByteTy)
304 for (unsigned i = 0; i < CA->getNumOperands(); ++i)
305 if (cast<ConstantSInt>(CA->getOperand(i))->getValue() < 0) {
306 isString = false;
307 break;
308 }
309
310 if (isString) {
311 Out << "c\"";
312 for (unsigned i = 0; i < CA->getNumOperands(); ++i) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000313 unsigned char C = cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Chris Lattner66e810b2002-04-18 18:53:13 +0000314
Chris Lattnerfc944462002-07-31 23:56:44 +0000315 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner66e810b2002-04-18 18:53:13 +0000316 Out << C;
317 } else {
318 Out << '\\'
319 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
320 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
321 }
322 }
323 Out << "\"";
324
325 } else { // Cannot output in string format...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000326 Out << "[";
327 if (CA->getNumOperands()) {
328 Out << " ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000329 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000330 WriteAsOperandInternal(Out, CA->getOperand(0),
331 PrintName, TypeTable, Table);
332 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
333 Out << ", ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000334 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000335 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
336 TypeTable, Table);
337 }
338 }
339 Out << " ]";
340 }
341 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Chris Lattnere9a64ea2003-06-28 20:08:24 +0000342 if (CS->getNumOperands() > 5 && CS->isNullValue()) {
343 Out << "zeroinitializer";
344 return;
345 }
346
Chris Lattner7a716ad2002-04-16 21:36:08 +0000347 Out << "{";
348 if (CS->getNumOperands()) {
349 Out << " ";
350 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
351
352 WriteAsOperandInternal(Out, CS->getOperand(0),
353 PrintName, TypeTable, Table);
354
355 for (unsigned i = 1; i < CS->getNumOperands(); i++) {
356 Out << ", ";
357 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
358
359 WriteAsOperandInternal(Out, CS->getOperand(i),
360 PrintName, TypeTable, Table);
361 }
362 }
363
364 Out << " }";
365 } else if (isa<ConstantPointerNull>(CV)) {
366 Out << "null";
367
Chris Lattner7e708292002-06-25 16:13:24 +0000368 } else if (const ConstantPointerRef *PR = dyn_cast<ConstantPointerRef>(CV)) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000369 const GlobalValue *V = PR->getValue();
370 if (V->hasName()) {
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000371 Out << getLLVMName(V->getName());
Chris Lattner66e810b2002-04-18 18:53:13 +0000372 } else if (Table) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000373 int Slot = Table->getSlot(V);
Chris Lattner66e810b2002-04-18 18:53:13 +0000374 if (Slot >= 0)
375 Out << "%" << Slot;
376 else
377 Out << "<pointer reference badref>";
378 } else {
379 Out << "<pointer reference without context info>";
380 }
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000381
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000382 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattner38d87732003-03-06 23:23:32 +0000383 Out << CE->getOpcodeName() << " (";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000384
385 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
386 printTypeInt(Out, (*OI)->getType(), TypeTable);
387 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Table);
388 if (OI+1 != CE->op_end())
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000389 Out << ", ";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000390 }
391
Chris Lattner1c93e5b2002-08-16 21:17:11 +0000392 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner95586b82002-08-15 19:37:43 +0000393 Out << " to ";
394 printTypeInt(Out, CE->getType(), TypeTable);
395 }
Chris Lattner1c93e5b2002-08-16 21:17:11 +0000396 Out << ")";
Chris Lattner95586b82002-08-15 19:37:43 +0000397
Chris Lattner7a716ad2002-04-16 21:36:08 +0000398 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000399 Out << "<placeholder or erroneous Constant>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000400 }
401}
402
403
404// WriteAsOperand - Write the name of the specified value out to the specified
405// ostream. This can be useful when you just want to print int %reg126, not the
406// whole instruction that generated it.
407//
Chris Lattner7b13f562003-05-08 02:08:14 +0000408static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
409 bool PrintName,
410 std::map<const Type*, std::string> &TypeTable,
Chris Lattner7a716ad2002-04-16 21:36:08 +0000411 SlotCalculator *Table) {
412 Out << " ";
413 if (PrintName && V->hasName()) {
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000414 Out << getLLVMName(V->getName());
Chris Lattner7a716ad2002-04-16 21:36:08 +0000415 } else {
Chris Lattner949a3622003-07-23 15:30:06 +0000416 if (const Constant *CV = dyn_cast<Constant>(V)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000417 WriteConstantInt(Out, CV, PrintName, TypeTable, Table);
418 } else {
419 int Slot;
420 if (Table) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000421 Slot = Table->getSlot(V);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000422 } else {
Chris Lattner949a3622003-07-23 15:30:06 +0000423 if (const Type *Ty = dyn_cast<Type>(V)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000424 Out << Ty->getDescription();
425 return;
426 }
427
428 Table = createSlotCalculator(V);
429 if (Table == 0) { Out << "BAD VALUE TYPE!"; return; }
430
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000431 Slot = Table->getSlot(V);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000432 delete Table;
433 }
434 if (Slot >= 0) Out << "%" << Slot;
435 else if (PrintName)
Misha Brukman6b634522003-10-10 17:54:14 +0000436 Out << "<badref>"; // Not embedded into a location?
Chris Lattner7a716ad2002-04-16 21:36:08 +0000437 }
438 }
439}
440
441
Chris Lattner207b5bc2001-10-29 16:37:48 +0000442
443// WriteAsOperand - Write the name of the specified value out to the specified
444// ostream. This can be useful when you just want to print int %reg126, not the
445// whole instruction that generated it.
446//
Chris Lattner7b13f562003-05-08 02:08:14 +0000447std::ostream &WriteAsOperand(std::ostream &Out, const Value *V, bool PrintType,
448 bool PrintName, const Module *Context) {
449 std::map<const Type *, std::string> TypeNames;
Chris Lattner607dc682002-07-10 16:48:17 +0000450 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000451
Chris Lattner6e6026b2002-11-20 18:36:02 +0000452 if (Context)
Chris Lattner607dc682002-07-10 16:48:17 +0000453 fillTypeNameTable(Context, TypeNames);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000454
455 if (PrintType)
456 printTypeInt(Out, V->getType(), TypeNames);
457
Chris Lattner607dc682002-07-10 16:48:17 +0000458 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner622f7402001-07-20 19:15:21 +0000459 return Out;
460}
461
462
Chris Lattnerd8c2e422001-07-12 23:35:26 +0000463
Chris Lattner007377f2001-09-07 16:36:04 +0000464class AssemblyWriter {
Chris Lattner7b13f562003-05-08 02:08:14 +0000465 std::ostream &Out;
Chris Lattner00950542001-06-06 20:29:01 +0000466 SlotCalculator &Table;
Chris Lattnerc1824992001-10-29 16:05:51 +0000467 const Module *TheModule;
Chris Lattner7b13f562003-05-08 02:08:14 +0000468 std::map<const Type *, std::string> TypeNames;
Chris Lattner00950542001-06-06 20:29:01 +0000469public:
Chris Lattner7b13f562003-05-08 02:08:14 +0000470 inline AssemblyWriter(std::ostream &o, SlotCalculator &Tab, const Module *M)
Chris Lattnerc1824992001-10-29 16:05:51 +0000471 : Out(o), Table(Tab), TheModule(M) {
472
473 // If the module has a symbol table, take all global types and stuff their
474 // names into the TypeNames map.
475 //
Chris Lattner207b5bc2001-10-29 16:37:48 +0000476 fillTypeNameTable(M, TypeNames);
Chris Lattner00950542001-06-06 20:29:01 +0000477 }
478
Chris Lattnerc1824992001-10-29 16:05:51 +0000479 inline void write(const Module *M) { printModule(M); }
480 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner79df7c02002-03-26 18:01:55 +0000481 inline void write(const Function *F) { printFunction(F); }
Chris Lattnerc1824992001-10-29 16:05:51 +0000482 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner7e708292002-06-25 16:13:24 +0000483 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000484 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000485 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner00950542001-06-06 20:29:01 +0000486
Chris Lattner66e810b2002-04-18 18:53:13 +0000487 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
488
Chris Lattner00950542001-06-06 20:29:01 +0000489private :
Chris Lattnerc1824992001-10-29 16:05:51 +0000490 void printModule(const Module *M);
491 void printSymbolTable(const SymbolTable &ST);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000492 void printConstant(const Constant *CPV);
Chris Lattnerc1824992001-10-29 16:05:51 +0000493 void printGlobal(const GlobalVariable *GV);
Chris Lattner79df7c02002-03-26 18:01:55 +0000494 void printFunction(const Function *F);
Chris Lattner73e21422002-04-09 19:48:49 +0000495 void printArgument(const Argument *FA);
Chris Lattnerc1824992001-10-29 16:05:51 +0000496 void printBasicBlock(const BasicBlock *BB);
Chris Lattner7e708292002-06-25 16:13:24 +0000497 void printInstruction(const Instruction &I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000498
499 // printType - Go to extreme measures to attempt to print out a short,
500 // symbolic version of a type name.
501 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000502 std::ostream &printType(const Type *Ty) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000503 return printTypeInt(Out, Ty, TypeNames);
504 }
505
506 // 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 +0000509 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattnerc1824992001-10-29 16:05:51 +0000510
Chris Lattnere02fa852001-10-13 06:42:36 +0000511 // printInfoComment - Print a little comment after the instruction indicating
512 // which slot it occupies.
Chris Lattner7e708292002-06-25 16:13:24 +0000513 void printInfoComment(const Value &V);
Chris Lattner00950542001-06-06 20:29:01 +0000514};
515
516
Chris Lattner2761e9f2002-04-13 20:53:41 +0000517// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
518// without considering any symbolic types that we may have equal to it.
519//
Chris Lattner7b13f562003-05-08 02:08:14 +0000520std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner7e708292002-06-25 16:13:24 +0000521 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000522 printType(FTy->getReturnType()) << " (";
523 for (FunctionType::ParamTypes::const_iterator
524 I = FTy->getParamTypes().begin(),
525 E = FTy->getParamTypes().end(); I != E; ++I) {
526 if (I != FTy->getParamTypes().begin())
527 Out << ", ";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000528 printType(*I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000529 }
530 if (FTy->isVarArg()) {
531 if (!FTy->getParamTypes().empty()) Out << ", ";
532 Out << "...";
533 }
534 Out << ")";
Chris Lattner7e708292002-06-25 16:13:24 +0000535 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000536 Out << "{ ";
537 for (StructType::ElementTypes::const_iterator
538 I = STy->getElementTypes().begin(),
539 E = STy->getElementTypes().end(); I != E; ++I) {
540 if (I != STy->getElementTypes().begin())
541 Out << ", ";
542 printType(*I);
543 }
544 Out << " }";
Chris Lattner7e708292002-06-25 16:13:24 +0000545 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000546 printType(PTy->getElementType()) << "*";
Chris Lattner7e708292002-06-25 16:13:24 +0000547 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000548 Out << "[" << ATy->getNumElements() << " x ";
549 printType(ATy->getElementType()) << "]";
Chris Lattner7e708292002-06-25 16:13:24 +0000550 } else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Chris Lattner26c69152003-06-01 03:45:51 +0000551 Out << "opaque";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000552 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000553 if (!Ty->isPrimitiveType())
554 Out << "<unknown derived type>";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000555 printType(Ty);
556 }
557 return Out;
558}
559
560
Chris Lattner007377f2001-09-07 16:36:04 +0000561void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
562 bool PrintName) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000563 if (PrintType) { Out << " "; printType(Operand->getType()); }
Chris Lattner7a716ad2002-04-16 21:36:08 +0000564 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Table);
Chris Lattner00950542001-06-06 20:29:01 +0000565}
566
Chris Lattner00950542001-06-06 20:29:01 +0000567
Chris Lattnerc1824992001-10-29 16:05:51 +0000568void AssemblyWriter::printModule(const Module *M) {
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000569 switch (M->getEndianness()) {
570 case Module::LittleEndian: Out << "target endian = little\n"; break;
571 case Module::BigEndian: Out << "target endian = big\n"; break;
572 case Module::AnyEndianness: break;
573 }
574 switch (M->getPointerSize()) {
575 case Module::Pointer32: Out << "target pointersize = 32\n"; break;
576 case Module::Pointer64: Out << "target pointersize = 64\n"; break;
577 case Module::AnyPointerSize: break;
578 }
579
Chris Lattner007377f2001-09-07 16:36:04 +0000580 // Loop over the symbol table, emitting all named constants...
Chris Lattner6e6026b2002-11-20 18:36:02 +0000581 printSymbolTable(M->getSymbolTable());
Chris Lattner70cc3392001-09-10 07:58:01 +0000582
Chris Lattner7e708292002-06-25 16:13:24 +0000583 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
584 printGlobal(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000585
Chris Lattner03e2acb2002-05-06 03:00:40 +0000586 Out << "\nimplementation ; Functions:\n";
Vikram S. Adve5efa3cc2001-09-18 12:48:16 +0000587
Chris Lattnerb5794002002-04-07 22:49:37 +0000588 // Output all of the functions...
Chris Lattner7e708292002-06-25 16:13:24 +0000589 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
590 printFunction(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000591}
592
Chris Lattnerc1824992001-10-29 16:05:51 +0000593void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000594 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattnerd70684f2001-09-18 04:01:05 +0000595
Chris Lattner4ad02e72003-04-16 20:28:45 +0000596 if (!GV->hasInitializer())
597 Out << "external ";
598 else
599 switch (GV->getLinkage()) {
Chris Lattner72ac148d2003-10-16 18:29:00 +0000600 case GlobalValue::InternalLinkage: Out << "internal "; break;
601 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
602 case GlobalValue::WeakLinkage: Out << "weak "; break;
Chris Lattner4ad02e72003-04-16 20:28:45 +0000603 case GlobalValue::AppendingLinkage: Out << "appending "; break;
604 case GlobalValue::ExternalLinkage: break;
605 }
Chris Lattnerd70684f2001-09-18 04:01:05 +0000606
Chris Lattnerc1824992001-10-29 16:05:51 +0000607 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner7a176752001-12-04 00:03:30 +0000608 printType(GV->getType()->getElementType());
Chris Lattnerd70684f2001-09-18 04:01:05 +0000609
610 if (GV->hasInitializer())
611 writeOperand(GV->getInitializer(), false, false);
612
Chris Lattner7e708292002-06-25 16:13:24 +0000613 printInfoComment(*GV);
Chris Lattner697954c2002-01-20 22:54:45 +0000614 Out << "\n";
Chris Lattner70cc3392001-09-10 07:58:01 +0000615}
616
Chris Lattner007377f2001-09-07 16:36:04 +0000617
Chris Lattnerc1824992001-10-29 16:05:51 +0000618// printSymbolTable - Run through symbol table looking for named constants
Chris Lattner007377f2001-09-07 16:36:04 +0000619// if a named constant is found, emit it's declaration...
620//
Chris Lattnerc1824992001-10-29 16:05:51 +0000621void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Chris Lattner007377f2001-09-07 16:36:04 +0000622 for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) {
623 SymbolTable::type_const_iterator I = ST.type_begin(TI->first);
624 SymbolTable::type_const_iterator End = ST.type_end(TI->first);
625
626 for (; I != End; ++I) {
627 const Value *V = I->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 Lattner949a3622003-07-23 15:30:06 +0000630 } else if (const Type *Ty = dyn_cast<Type>(V)) {
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000631 Out << "\t" << getLLVMName(I->first) << " = type ";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000632
633 // Make sure we print out at least one level of the type structure, so
634 // that we do not get %FILE = type %FILE
635 //
636 printTypeAtLeastOneLevel(Ty) << "\n";
Chris Lattner007377f2001-09-07 16:36:04 +0000637 }
638 }
Chris Lattner739a56d2001-07-15 06:35:59 +0000639 }
Chris Lattner00950542001-06-06 20:29:01 +0000640}
641
642
Chris Lattnerc1824992001-10-29 16:05:51 +0000643// printConstant - Print out a constant pool entry...
Chris Lattner00950542001-06-06 20:29:01 +0000644//
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000645void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattner007377f2001-09-07 16:36:04 +0000646 // Don't print out unnamed constants, they will be inlined
647 if (!CPV->hasName()) return;
Chris Lattner00950542001-06-06 20:29:01 +0000648
Chris Lattner1333ed52001-07-26 16:29:38 +0000649 // Print out name...
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000650 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner00950542001-06-06 20:29:01 +0000651
652 // Write the value out now...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000653 writeOperand(CPV, true, false);
Chris Lattner00950542001-06-06 20:29:01 +0000654
Chris Lattner7e708292002-06-25 16:13:24 +0000655 printInfoComment(*CPV);
Chris Lattner697954c2002-01-20 22:54:45 +0000656 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000657}
658
Chris Lattnerb5794002002-04-07 22:49:37 +0000659// printFunction - Print all aspects of a function.
Chris Lattner00950542001-06-06 20:29:01 +0000660//
Chris Lattner7e708292002-06-25 16:13:24 +0000661void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000662 // Print out the return type and name...
Chris Lattner4ad02e72003-04-16 20:28:45 +0000663 Out << "\n";
664
665 if (F->isExternal())
666 Out << "declare ";
667 else
668 switch (F->getLinkage()) {
Chris Lattner72ac148d2003-10-16 18:29:00 +0000669 case GlobalValue::InternalLinkage: Out << "internal "; break;
670 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
671 case GlobalValue::WeakLinkage: Out << "weak "; break;
Chris Lattner4ad02e72003-04-16 20:28:45 +0000672 case GlobalValue::AppendingLinkage: Out << "appending "; break;
673 case GlobalValue::ExternalLinkage: break;
674 }
675
Chris Lattnerb8565e32003-09-03 17:56:43 +0000676 printType(F->getReturnType()) << " ";
Chris Lattner4d45bd02003-10-18 05:57:43 +0000677 if (!F->getName().empty())
678 Out << getLLVMName(F->getName());
679 else
680 Out << "\"\"";
Chris Lattnerb8565e32003-09-03 17:56:43 +0000681 Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000682 Table.incorporateFunction(F);
Chris Lattner007377f2001-09-07 16:36:04 +0000683
Chris Lattnerc1824992001-10-29 16:05:51 +0000684 // Loop over the arguments, printing them...
Chris Lattner7e708292002-06-25 16:13:24 +0000685 const FunctionType *FT = F->getFunctionType();
Chris Lattner007377f2001-09-07 16:36:04 +0000686
Chris Lattner69da5cf2002-10-13 20:57:00 +0000687 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
688 printArgument(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000689
690 // Finish printing arguments...
Chris Lattner7e708292002-06-25 16:13:24 +0000691 if (FT->isVarArg()) {
692 if (FT->getParamTypes().size()) Out << ", ";
Chris Lattner007377f2001-09-07 16:36:04 +0000693 Out << "..."; // Output varargs portion of signature!
694 }
Chris Lattner03e2acb2002-05-06 03:00:40 +0000695 Out << ")";
Chris Lattner007377f2001-09-07 16:36:04 +0000696
Chris Lattner7e708292002-06-25 16:13:24 +0000697 if (F->isExternal()) {
Chris Lattner03e2acb2002-05-06 03:00:40 +0000698 Out << "\n";
699 } else {
700 Out << " {";
Chris Lattner007377f2001-09-07 16:36:04 +0000701
Chris Lattnerb5794002002-04-07 22:49:37 +0000702 // Output all of its basic blocks... for the function
Chris Lattner7e708292002-06-25 16:13:24 +0000703 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
704 printBasicBlock(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000705
Chris Lattner03e2acb2002-05-06 03:00:40 +0000706 Out << "}\n";
Chris Lattner007377f2001-09-07 16:36:04 +0000707 }
708
Chris Lattnerb5794002002-04-07 22:49:37 +0000709 Table.purgeFunction();
Chris Lattner00950542001-06-06 20:29:01 +0000710}
711
Chris Lattner73e21422002-04-09 19:48:49 +0000712// printArgument - This member is called for every argument that
Chris Lattnerb5794002002-04-07 22:49:37 +0000713// is passed into the function. Simply print it out
Chris Lattner00950542001-06-06 20:29:01 +0000714//
Chris Lattner73e21422002-04-09 19:48:49 +0000715void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner00950542001-06-06 20:29:01 +0000716 // Insert commas as we go... the first arg doesn't get a comma
Chris Lattner7e708292002-06-25 16:13:24 +0000717 if (Arg != &Arg->getParent()->afront()) Out << ", ";
Chris Lattner00950542001-06-06 20:29:01 +0000718
719 // Output type...
Chris Lattnerc1824992001-10-29 16:05:51 +0000720 printType(Arg->getType());
Chris Lattner00950542001-06-06 20:29:01 +0000721
722 // Output name, if available...
723 if (Arg->hasName())
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000724 Out << " " << getLLVMName(Arg->getName());
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000725 else if (Table.getSlot(Arg) < 0)
Chris Lattner00950542001-06-06 20:29:01 +0000726 Out << "<badref>";
Chris Lattner00950542001-06-06 20:29:01 +0000727}
728
Misha Brukman6b634522003-10-10 17:54:14 +0000729// printBasicBlock - This member is called for each basic block in a method.
Chris Lattner00950542001-06-06 20:29:01 +0000730//
Chris Lattnerc1824992001-10-29 16:05:51 +0000731void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner00950542001-06-06 20:29:01 +0000732 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattner061269b2002-10-02 19:38:55 +0000733 Out << "\n" << BB->getName() << ":";
Chris Lattnerafc38682002-05-14 16:02:05 +0000734 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000735 int Slot = Table.getSlot(BB);
Chris Lattnerb9a45782001-06-07 16:58:55 +0000736 Out << "\n; <label>:";
Chris Lattner00950542001-06-06 20:29:01 +0000737 if (Slot >= 0)
Misha Brukmanbc0e9982003-07-14 17:20:40 +0000738 Out << Slot; // Extra newline separates out label's
Chris Lattner00950542001-06-06 20:29:01 +0000739 else
Chris Lattnerb9a45782001-06-07 16:58:55 +0000740 Out << "<badref>";
Chris Lattner061269b2002-10-02 19:38:55 +0000741 }
742
743 // Output predecessors for the block...
744 Out << "\t\t;";
745 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
746
747 if (PI == PE) {
748 Out << " No predecessors!";
749 } else {
750 Out << " preds =";
751 writeOperand(*PI, false, true);
752 for (++PI; PI != PE; ++PI) {
753 Out << ",";
754 writeOperand(*PI, false, true);
755 }
Chris Lattner00950542001-06-06 20:29:01 +0000756 }
Chris Lattnerafc38682002-05-14 16:02:05 +0000757
758 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000759
Chris Lattner007377f2001-09-07 16:36:04 +0000760 // Output all of the instructions in the basic block...
Chris Lattner7e708292002-06-25 16:13:24 +0000761 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
762 printInstruction(*I);
Chris Lattner00950542001-06-06 20:29:01 +0000763}
764
Chris Lattnere02fa852001-10-13 06:42:36 +0000765
766// printInfoComment - Print a little comment after the instruction indicating
767// which slot it occupies.
768//
Chris Lattner7e708292002-06-25 16:13:24 +0000769void AssemblyWriter::printInfoComment(const Value &V) {
770 if (V.getType() != Type::VoidTy) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000771 Out << "\t\t; <";
Chris Lattner7e708292002-06-25 16:13:24 +0000772 printType(V.getType()) << ">";
Chris Lattnere02fa852001-10-13 06:42:36 +0000773
Chris Lattner7e708292002-06-25 16:13:24 +0000774 if (!V.hasName()) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000775 int Slot = Table.getSlot(&V); // Print out the def slot taken...
Chris Lattnere02fa852001-10-13 06:42:36 +0000776 if (Slot >= 0) Out << ":" << Slot;
777 else Out << ":<badref>";
778 }
Chris Lattner7e708292002-06-25 16:13:24 +0000779 Out << " [#uses=" << V.use_size() << "]"; // Output # uses
Chris Lattnere02fa852001-10-13 06:42:36 +0000780 }
781}
782
Misha Brukman6b634522003-10-10 17:54:14 +0000783// printInstruction - This member is called for each Instruction in a method.
Chris Lattner00950542001-06-06 20:29:01 +0000784//
Chris Lattner7e708292002-06-25 16:13:24 +0000785void AssemblyWriter::printInstruction(const Instruction &I) {
Chris Lattner00950542001-06-06 20:29:01 +0000786 Out << "\t";
787
788 // Print out name if it exists...
Chris Lattner7e708292002-06-25 16:13:24 +0000789 if (I.hasName())
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000790 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner00950542001-06-06 20:29:01 +0000791
Chris Lattnere5e475e2003-09-08 17:45:59 +0000792 // If this is a volatile load or store, print out the volatile marker
793 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
794 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()))
795 Out << "volatile ";
796
Chris Lattner00950542001-06-06 20:29:01 +0000797 // Print out the opcode...
Chris Lattner7e708292002-06-25 16:13:24 +0000798 Out << I.getOpcodeName();
Chris Lattner00950542001-06-06 20:29:01 +0000799
800 // Print out the type of the operands...
Chris Lattner7e708292002-06-25 16:13:24 +0000801 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner00950542001-06-06 20:29:01 +0000802
803 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner7e708292002-06-25 16:13:24 +0000804 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
805 writeOperand(I.getOperand(2), true);
Chris Lattner00950542001-06-06 20:29:01 +0000806 Out << ",";
807 writeOperand(Operand, true);
808 Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000809 writeOperand(I.getOperand(1), true);
Chris Lattner00950542001-06-06 20:29:01 +0000810
Chris Lattner94dc1f22002-04-13 18:34:38 +0000811 } else if (isa<SwitchInst>(I)) {
Chris Lattner00950542001-06-06 20:29:01 +0000812 // Special case switch statement to get formatting nice and correct...
Chris Lattner7e708292002-06-25 16:13:24 +0000813 writeOperand(Operand , true); Out << ",";
814 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner00950542001-06-06 20:29:01 +0000815
Chris Lattner7e708292002-06-25 16:13:24 +0000816 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Chris Lattner00950542001-06-06 20:29:01 +0000817 Out << "\n\t\t";
Chris Lattner7e708292002-06-25 16:13:24 +0000818 writeOperand(I.getOperand(op ), true); Out << ",";
819 writeOperand(I.getOperand(op+1), true);
Chris Lattner00950542001-06-06 20:29:01 +0000820 }
821 Out << "\n\t]";
Chris Lattnerb00c5822001-10-02 03:41:24 +0000822 } else if (isa<PHINode>(I)) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000823 Out << " ";
Chris Lattner7e708292002-06-25 16:13:24 +0000824 printType(I.getType());
Chris Lattnereed1fc72001-11-06 08:33:46 +0000825 Out << " ";
Chris Lattner00950542001-06-06 20:29:01 +0000826
Chris Lattner7e708292002-06-25 16:13:24 +0000827 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Chris Lattner8f410ca2001-11-06 01:48:45 +0000828 if (op) Out << ", ";
829 Out << "[";
Chris Lattner7e708292002-06-25 16:13:24 +0000830 writeOperand(I.getOperand(op ), false); Out << ",";
831 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattnerc24d2082001-06-11 15:04:20 +0000832 }
Chris Lattnere02fa852001-10-13 06:42:36 +0000833 } else if (isa<ReturnInst>(I) && !Operand) {
Chris Lattner00950542001-06-06 20:29:01 +0000834 Out << " void";
Chris Lattnere02fa852001-10-13 06:42:36 +0000835 } else if (isa<CallInst>(I)) {
Chris Lattner7a012292003-08-05 15:34:45 +0000836 const PointerType *PTy = cast<PointerType>(Operand->getType());
837 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
838 const Type *RetTy = FTy->getReturnType();
Chris Lattner268de042001-11-06 21:28:12 +0000839
Chris Lattner7a012292003-08-05 15:34:45 +0000840 // If possible, print out the short form of the call instruction. We can
Chris Lattnerb5794002002-04-07 22:49:37 +0000841 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner7a012292003-08-05 15:34:45 +0000842 // and if the return type is not a pointer to a function.
Chris Lattner268de042001-11-06 21:28:12 +0000843 //
Chris Lattner7a012292003-08-05 15:34:45 +0000844 if (!FTy->isVarArg() &&
Chris Lattner94dc1f22002-04-13 18:34:38 +0000845 (!isa<PointerType>(RetTy) ||
Chris Lattnerc1b27182002-07-25 20:58:51 +0000846 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Chris Lattner268de042001-11-06 21:28:12 +0000847 Out << " "; printType(RetTy);
848 writeOperand(Operand, false);
849 } else {
850 writeOperand(Operand, true);
851 }
Chris Lattner00950542001-06-06 20:29:01 +0000852 Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000853 if (I.getNumOperands() > 1) writeOperand(I.getOperand(1), true);
854 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Chris Lattner00950542001-06-06 20:29:01 +0000855 Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000856 writeOperand(I.getOperand(op), true);
Chris Lattner00950542001-06-06 20:29:01 +0000857 }
858
859 Out << " )";
Chris Lattner7e708292002-06-25 16:13:24 +0000860 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner7a012292003-08-05 15:34:45 +0000861 const PointerType *PTy = cast<PointerType>(Operand->getType());
862 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
863 const Type *RetTy = FTy->getReturnType();
864
865 // If possible, print out the short form of the invoke instruction. We can
866 // only do this if the first argument is a pointer to a nonvararg function,
867 // and if the return type is not a pointer to a function.
868 //
869 if (!FTy->isVarArg() &&
870 (!isa<PointerType>(RetTy) ||
871 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
872 Out << " "; printType(RetTy);
873 writeOperand(Operand, false);
874 } else {
875 writeOperand(Operand, true);
876 }
877
Chris Lattnere02fa852001-10-13 06:42:36 +0000878 Out << "(";
Chris Lattner7e708292002-06-25 16:13:24 +0000879 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
880 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Chris Lattnere02fa852001-10-13 06:42:36 +0000881 Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000882 writeOperand(I.getOperand(op), true);
Chris Lattnere02fa852001-10-13 06:42:36 +0000883 }
884
885 Out << " )\n\t\t\tto";
886 writeOperand(II->getNormalDest(), true);
887 Out << " except";
888 writeOperand(II->getExceptionalDest(), true);
889
Chris Lattner7e708292002-06-25 16:13:24 +0000890 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000891 Out << " ";
Chris Lattner94dc1f22002-04-13 18:34:38 +0000892 printType(AI->getType()->getElementType());
893 if (AI->isArrayAllocation()) {
Chris Lattnerc8b25d42001-07-07 08:36:50 +0000894 Out << ",";
Chris Lattner94dc1f22002-04-13 18:34:38 +0000895 writeOperand(AI->getArraySize(), true);
Chris Lattner00950542001-06-06 20:29:01 +0000896 }
Chris Lattnere02fa852001-10-13 06:42:36 +0000897 } else if (isa<CastInst>(I)) {
Chris Lattner8f77dae2003-05-08 02:44:12 +0000898 writeOperand(Operand, true);
Chris Lattnerc1824992001-10-29 16:05:51 +0000899 Out << " to ";
Chris Lattner7e708292002-06-25 16:13:24 +0000900 printType(I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +0000901 } else if (isa<VAArgInst>(I)) {
Chris Lattner8f77dae2003-05-08 02:44:12 +0000902 writeOperand(Operand, true);
903 Out << ", ";
904 printType(I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +0000905 } else if (const VANextInst *VAN = dyn_cast<VANextInst>(&I)) {
906 writeOperand(Operand, true);
907 Out << ", ";
908 printType(VAN->getArgType());
Chris Lattner00950542001-06-06 20:29:01 +0000909 } else if (Operand) { // Print the normal way...
910
911 // PrintAllTypes - Instructions who have operands of all the same type
912 // omit the type from all but the first operand. If the instruction has
913 // different type operands (for example br), then they are all printed.
914 bool PrintAllTypes = false;
915 const Type *TheType = Operand->getType();
Chris Lattner00950542001-06-06 20:29:01 +0000916
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000917 // Shift Left & Right print both types even for Ubyte LHS
918 if (isa<ShiftInst>(I)) {
919 PrintAllTypes = true;
920 } else {
921 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
922 Operand = I.getOperand(i);
923 if (Operand->getType() != TheType) {
924 PrintAllTypes = true; // We have differing types! Print them all!
925 break;
926 }
Chris Lattner00950542001-06-06 20:29:01 +0000927 }
928 }
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000929
Chris Lattnerc1824992001-10-29 16:05:51 +0000930 if (!PrintAllTypes) {
931 Out << " ";
Chris Lattnerffd9bf42003-04-16 20:20:02 +0000932 printType(TheType);
Chris Lattnerc1824992001-10-29 16:05:51 +0000933 }
Chris Lattner00950542001-06-06 20:29:01 +0000934
Chris Lattner7e708292002-06-25 16:13:24 +0000935 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Chris Lattner00950542001-06-06 20:29:01 +0000936 if (i) Out << ",";
Chris Lattner7e708292002-06-25 16:13:24 +0000937 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner00950542001-06-06 20:29:01 +0000938 }
939 }
940
Chris Lattnere02fa852001-10-13 06:42:36 +0000941 printInfoComment(I);
Chris Lattner697954c2002-01-20 22:54:45 +0000942 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000943}
944
945
946//===----------------------------------------------------------------------===//
947// External Interface declarations
948//===----------------------------------------------------------------------===//
949
950
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000951void Module::print(std::ostream &o) const {
952 SlotCalculator SlotTable(this, true);
953 AssemblyWriter W(o, SlotTable, this);
954 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000955}
956
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000957void GlobalVariable::print(std::ostream &o) const {
958 SlotCalculator SlotTable(getParent(), true);
959 AssemblyWriter W(o, SlotTable, getParent());
960 W.write(this);
Chris Lattnerb0e45232001-09-10 20:08:19 +0000961}
962
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000963void Function::print(std::ostream &o) const {
964 SlotCalculator SlotTable(getParent(), true);
965 AssemblyWriter W(o, SlotTable, getParent());
Chris Lattner00950542001-06-06 20:29:01 +0000966
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000967 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000968}
969
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000970void BasicBlock::print(std::ostream &o) const {
971 SlotCalculator SlotTable(getParent(), true);
Chris Lattnerc1824992001-10-29 16:05:51 +0000972 AssemblyWriter W(o, SlotTable,
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000973 getParent() ? getParent()->getParent() : 0);
974 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000975}
976
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000977void Instruction::print(std::ostream &o) const {
978 const Function *F = getParent() ? getParent()->getParent() : 0;
Chris Lattner79df7c02002-03-26 18:01:55 +0000979 SlotCalculator SlotTable(F, true);
980 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0);
Chris Lattner00950542001-06-06 20:29:01 +0000981
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000982 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +0000983}
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000984
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000985void Constant::print(std::ostream &o) const {
986 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner3bc06b32002-09-10 15:53:49 +0000987
988 // Handle CPR's special, because they have context information...
989 if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(this)) {
990 CPR->getValue()->print(o); // Print as a global value, with context info.
991 return;
992 }
993
Chris Lattner66e810b2002-04-18 18:53:13 +0000994 o << " " << getType()->getDescription() << " ";
995
Chris Lattner7b13f562003-05-08 02:08:14 +0000996 std::map<const Type *, std::string> TypeTable;
Chris Lattner66e810b2002-04-18 18:53:13 +0000997 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +0000998}
999
1000void Type::print(std::ostream &o) const {
1001 if (this == 0)
1002 o << "<null Type>";
1003 else
1004 o << getDescription();
1005}
1006
Chris Lattner73e21422002-04-09 19:48:49 +00001007void Argument::print(std::ostream &o) const {
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001008 o << getType() << " " << getName();
1009}
1010
1011void Value::dump() const { print(std::cerr); }
1012
1013//===----------------------------------------------------------------------===//
1014// CachedWriter Class Implementation
1015//===----------------------------------------------------------------------===//
1016
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001017void CachedWriter::setModule(const Module *M) {
1018 delete SC; delete AW;
1019 if (M) {
1020 SC = new SlotCalculator(M, true);
1021 AW = new AssemblyWriter(Out, *SC, M);
1022 } else {
1023 SC = 0; AW = 0;
1024 }
1025}
1026
1027CachedWriter::~CachedWriter() {
1028 delete AW;
1029 delete SC;
1030}
1031
1032CachedWriter &CachedWriter::operator<<(const Value *V) {
1033 assert(AW && SC && "CachedWriter does not have a current module!");
1034 switch (V->getValueType()) {
1035 case Value::ConstantVal:
Chris Lattner66e810b2002-04-18 18:53:13 +00001036 case Value::ArgumentVal: AW->writeOperand(V, true, true); break;
Chris Lattner949a3622003-07-23 15:30:06 +00001037 case Value::TypeVal: AW->write(cast<Type>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001038 case Value::InstructionVal: AW->write(cast<Instruction>(V)); break;
1039 case Value::BasicBlockVal: AW->write(cast<BasicBlock>(V)); break;
Chris Lattner79df7c02002-03-26 18:01:55 +00001040 case Value::FunctionVal: AW->write(cast<Function>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001041 case Value::GlobalVariableVal: AW->write(cast<GlobalVariable>(V)); break;
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001042 default: Out << "<unknown value type: " << V->getValueType() << ">"; break;
1043 }
1044 return *this;
1045}