blob: 83fc35bbedf71522695e057fa5c0d0249f055d5c [file] [log] [blame]
Chris Lattner8da78af2002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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 Lattner75cf7cf2002-04-08 22:03:40 +000017#include "llvm/Assembly/Writer.h"
Chris Lattnerf082b802002-07-23 18:07:49 +000018#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner95e5a2c2003-10-30 23:41:03 +000019#include "llvm/Assembly/AsmAnnotationWriter.h"
Chris Lattnerd5118982005-05-06 20:26:43 +000020#include "llvm/CallingConv.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"
Chris Lattner863517a2006-01-25 18:57:27 +000023#include "llvm/InlineAsm.h"
Vikram S. Adveb4dbb442002-07-14 23:14:45 +000024#include "llvm/Instruction.h"
Misha Brukman44336292004-07-29 16:53:53 +000025#include "llvm/Instructions.h"
Nick Lewycky21cc4462009-04-04 07:22:01 +000026#include "llvm/Metadata.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000027#include "llvm/Module.h"
Reid Spenceref9b9a72007-02-05 20:47:22 +000028#include "llvm/ValueSymbolTable.h"
Reid Spencer78d033e2007-01-06 07:24:44 +000029#include "llvm/TypeSymbolTable.h"
Chris Lattner413fd232009-03-01 00:03:38 +000030#include "llvm/ADT/DenseSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/StringExtras.h"
32#include "llvm/ADT/STLExtras.h"
Bill Wendling8f487662006-11-28 02:09:03 +000033#include "llvm/Support/CFG.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000034#include "llvm/Support/MathExtras.h"
Chris Lattner45d4c732008-08-17 04:17:45 +000035#include "llvm/Support/raw_ostream.h"
Chris Lattner007377f2001-09-07 16:36:04 +000036#include <algorithm>
Reid Spencer4ad513c2007-05-22 19:27:35 +000037#include <cctype>
Chris Lattner31f84992003-11-21 20:23:48 +000038using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000039
Reid Spenceredd5d9e2005-05-15 16:13:11 +000040// Make virtual table appear in this compilation unit.
41AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
42
Chris Lattner6ab910b2008-08-19 04:36:02 +000043//===----------------------------------------------------------------------===//
44// Helper Functions
45//===----------------------------------------------------------------------===//
46
47static const Module *getModuleFromVal(const Value *V) {
48 if (const Argument *MA = dyn_cast<Argument>(V))
49 return MA->getParent() ? MA->getParent()->getParent() : 0;
50
51 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
52 return BB->getParent() ? BB->getParent()->getParent() : 0;
53
54 if (const Instruction *I = dyn_cast<Instruction>(V)) {
55 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
56 return M ? M->getParent() : 0;
57 }
58
59 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
60 return GV->getParent();
61 return 0;
62}
63
Daniel Dunbare9da1332008-10-28 19:33:02 +000064// PrintEscapedString - Print each character of the specified string, escaping
65// it if it is not printable or if it is an escape char.
66static void PrintEscapedString(const char *Str, unsigned Length,
67 raw_ostream &Out) {
68 for (unsigned i = 0; i != Length; ++i) {
69 unsigned char C = Str[i];
Nick Lewycky34a40862009-03-15 06:39:52 +000070 if (isprint(C) && C != '\\' && C != '"')
Daniel Dunbare9da1332008-10-28 19:33:02 +000071 Out << C;
72 else
73 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
74 }
75}
76
77// PrintEscapedString - Print each character of the specified string, escaping
78// it if it is not printable or if it is an escape char.
79static void PrintEscapedString(const std::string &Str, raw_ostream &Out) {
80 PrintEscapedString(Str.c_str(), Str.size(), Out);
81}
82
Chris Lattner6ab910b2008-08-19 04:36:02 +000083enum PrefixType {
84 GlobalPrefix,
85 LabelPrefix,
Daniel Dunbarcad35802008-10-14 23:28:09 +000086 LocalPrefix,
87 NoPrefix
Chris Lattner6ab910b2008-08-19 04:36:02 +000088};
89
90/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
91/// prefixed with % (if the string only contains simple characters) or is
92/// surrounded with ""'s (if it has special chars in it). Print it out.
Chris Lattner944fac72008-08-23 22:23:09 +000093static void PrintLLVMName(raw_ostream &OS, const char *NameStr,
Chris Lattner52b26de2008-08-19 05:16:28 +000094 unsigned NameLen, PrefixType Prefix) {
95 assert(NameStr && "Cannot get empty name!");
Chris Lattner6ab910b2008-08-19 04:36:02 +000096 switch (Prefix) {
Chris Lattner52b26de2008-08-19 05:16:28 +000097 default: assert(0 && "Bad prefix!");
Daniel Dunbarcad35802008-10-14 23:28:09 +000098 case NoPrefix: break;
Chris Lattner52b26de2008-08-19 05:16:28 +000099 case GlobalPrefix: OS << '@'; break;
100 case LabelPrefix: break;
101 case LocalPrefix: OS << '%'; break;
Nick Lewycky04234832009-03-19 06:31:22 +0000102 }
Chris Lattner6ab910b2008-08-19 04:36:02 +0000103
104 // Scan the name to see if it needs quotes first.
Daniel Dunbare9da1332008-10-28 19:33:02 +0000105 bool NeedsQuotes = isdigit(NameStr[0]);
Chris Lattner6ab910b2008-08-19 04:36:02 +0000106 if (!NeedsQuotes) {
107 for (unsigned i = 0; i != NameLen; ++i) {
108 char C = NameStr[i];
109 if (!isalnum(C) && C != '-' && C != '.' && C != '_') {
110 NeedsQuotes = true;
111 break;
112 }
113 }
114 }
115
116 // If we didn't need any quotes, just write out the name in one blast.
117 if (!NeedsQuotes) {
118 OS.write(NameStr, NameLen);
119 return;
120 }
121
122 // Okay, we need quotes. Output the quotes and escape any scary characters as
123 // needed.
124 OS << '"';
Daniel Dunbare9da1332008-10-28 19:33:02 +0000125 PrintEscapedString(NameStr, NameLen, OS);
Chris Lattner6ab910b2008-08-19 04:36:02 +0000126 OS << '"';
127}
128
129/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
130/// prefixed with % (if the string only contains simple characters) or is
131/// surrounded with ""'s (if it has special chars in it). Print it out.
Chris Lattner944fac72008-08-23 22:23:09 +0000132static void PrintLLVMName(raw_ostream &OS, const Value *V) {
Chris Lattner52b26de2008-08-19 05:16:28 +0000133 PrintLLVMName(OS, V->getNameStart(), V->getNameLen(),
Chris Lattner6ab910b2008-08-19 04:36:02 +0000134 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
135}
136
Chris Lattner9cc34462009-02-28 20:25:14 +0000137//===----------------------------------------------------------------------===//
138// TypePrinting Class: Type printing machinery
139//===----------------------------------------------------------------------===//
140
Chris Lattner87185e82009-02-28 23:03:55 +0000141static DenseMap<const Type *, std::string> &getTypeNamesMap(void *M) {
142 return *static_cast<DenseMap<const Type *, std::string>*>(M);
Chris Lattnerd8030a72009-02-28 22:34:45 +0000143}
144
145void TypePrinting::clear() {
146 getTypeNamesMap(TypeNames).clear();
147}
Chris Lattner9cc34462009-02-28 20:25:14 +0000148
Chris Lattnere9fa33e2009-02-28 23:20:19 +0000149bool TypePrinting::hasTypeName(const Type *Ty) const {
150 return getTypeNamesMap(TypeNames).count(Ty);
151}
152
153void TypePrinting::addTypeName(const Type *Ty, const std::string &N) {
154 getTypeNamesMap(TypeNames).insert(std::make_pair(Ty, N));
155}
156
157
158TypePrinting::TypePrinting() {
Chris Lattner87185e82009-02-28 23:03:55 +0000159 TypeNames = new DenseMap<const Type *, std::string>();
Chris Lattner9cc34462009-02-28 20:25:14 +0000160}
161
Chris Lattnerd8030a72009-02-28 22:34:45 +0000162TypePrinting::~TypePrinting() {
163 delete &getTypeNamesMap(TypeNames);
164}
165
Chris Lattner534361e2009-02-28 20:49:40 +0000166/// CalcTypeName - Write the specified type to the specified raw_ostream, making
167/// use of type names or up references to shorten the type name where possible.
168void TypePrinting::CalcTypeName(const Type *Ty,
Chris Lattnerb840cac2009-02-28 20:34:19 +0000169 SmallVectorImpl<const Type *> &TypeStack,
Chris Lattnerd2b6cb02009-03-01 01:16:21 +0000170 raw_ostream &OS, bool IgnoreTopLevelName) {
Chris Lattner9cc34462009-02-28 20:25:14 +0000171 // Check to see if the type is named.
Chris Lattnerd2b6cb02009-03-01 01:16:21 +0000172 if (!IgnoreTopLevelName) {
Nick Lewycky04234832009-03-19 06:31:22 +0000173 DenseMap<const Type *, std::string> &TM = getTypeNamesMap(TypeNames);
Chris Lattnerd2b6cb02009-03-01 01:16:21 +0000174 DenseMap<const Type *, std::string>::iterator I = TM.find(Ty);
175 if (I != TM.end()) {
176 OS << I->second;
177 return;
178 }
Chris Lattner9cc34462009-02-28 20:25:14 +0000179 }
180
181 // Check to see if the Type is already on the stack...
182 unsigned Slot = 0, CurSize = TypeStack.size();
183 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
184
185 // This is another base case for the recursion. In this case, we know
186 // that we have looped back to a type that we have previously visited.
187 // Generate the appropriate upreference to handle this.
188 if (Slot < CurSize) {
Chris Lattner30794262009-02-28 21:27:31 +0000189 OS << '\\' << unsigned(CurSize-Slot); // Here's the upreference
Chris Lattner9cc34462009-02-28 20:25:14 +0000190 return;
191 }
192
193 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
194
195 switch (Ty->getTypeID()) {
Chris Lattner30794262009-02-28 21:27:31 +0000196 case Type::VoidTyID: OS << "void"; break;
197 case Type::FloatTyID: OS << "float"; break;
198 case Type::DoubleTyID: OS << "double"; break;
199 case Type::X86_FP80TyID: OS << "x86_fp80"; break;
200 case Type::FP128TyID: OS << "fp128"; break;
201 case Type::PPC_FP128TyID: OS << "ppc_fp128"; break;
202 case Type::LabelTyID: OS << "label"; break;
Chris Lattner583ffd82009-02-28 21:18:43 +0000203 case Type::IntegerTyID:
Chris Lattner30794262009-02-28 21:27:31 +0000204 OS << 'i' << cast<IntegerType>(Ty)->getBitWidth();
Chris Lattner583ffd82009-02-28 21:18:43 +0000205 break;
206
Chris Lattner36942d72009-02-28 20:35:42 +0000207 case Type::FunctionTyID: {
208 const FunctionType *FTy = cast<FunctionType>(Ty);
Chris Lattner30794262009-02-28 21:27:31 +0000209 CalcTypeName(FTy->getReturnType(), TypeStack, OS);
210 OS << " (";
Chris Lattner36942d72009-02-28 20:35:42 +0000211 for (FunctionType::param_iterator I = FTy->param_begin(),
212 E = FTy->param_end(); I != E; ++I) {
213 if (I != FTy->param_begin())
Chris Lattner30794262009-02-28 21:27:31 +0000214 OS << ", ";
215 CalcTypeName(*I, TypeStack, OS);
Chris Lattner9cc34462009-02-28 20:25:14 +0000216 }
Chris Lattner36942d72009-02-28 20:35:42 +0000217 if (FTy->isVarArg()) {
Chris Lattner30794262009-02-28 21:27:31 +0000218 if (FTy->getNumParams()) OS << ", ";
219 OS << "...";
Chris Lattner9cc34462009-02-28 20:25:14 +0000220 }
Chris Lattner30794262009-02-28 21:27:31 +0000221 OS << ')';
Chris Lattner36942d72009-02-28 20:35:42 +0000222 break;
223 }
224 case Type::StructTyID: {
225 const StructType *STy = cast<StructType>(Ty);
226 if (STy->isPacked())
Chris Lattner30794262009-02-28 21:27:31 +0000227 OS << '<';
228 OS << "{ ";
Chris Lattner36942d72009-02-28 20:35:42 +0000229 for (StructType::element_iterator I = STy->element_begin(),
230 E = STy->element_end(); I != E; ++I) {
Chris Lattner30794262009-02-28 21:27:31 +0000231 CalcTypeName(*I, TypeStack, OS);
Chris Lattner36942d72009-02-28 20:35:42 +0000232 if (next(I) != STy->element_end())
Chris Lattner30794262009-02-28 21:27:31 +0000233 OS << ',';
234 OS << ' ';
Chris Lattner9cc34462009-02-28 20:25:14 +0000235 }
Chris Lattner30794262009-02-28 21:27:31 +0000236 OS << '}';
Chris Lattner36942d72009-02-28 20:35:42 +0000237 if (STy->isPacked())
Chris Lattner30794262009-02-28 21:27:31 +0000238 OS << '>';
Chris Lattner36942d72009-02-28 20:35:42 +0000239 break;
240 }
241 case Type::PointerTyID: {
242 const PointerType *PTy = cast<PointerType>(Ty);
Chris Lattner30794262009-02-28 21:27:31 +0000243 CalcTypeName(PTy->getElementType(), TypeStack, OS);
Chris Lattner36942d72009-02-28 20:35:42 +0000244 if (unsigned AddressSpace = PTy->getAddressSpace())
Chris Lattner30794262009-02-28 21:27:31 +0000245 OS << " addrspace(" << AddressSpace << ')';
246 OS << '*';
Chris Lattner36942d72009-02-28 20:35:42 +0000247 break;
248 }
249 case Type::ArrayTyID: {
250 const ArrayType *ATy = cast<ArrayType>(Ty);
Chris Lattner30794262009-02-28 21:27:31 +0000251 OS << '[' << ATy->getNumElements() << " x ";
252 CalcTypeName(ATy->getElementType(), TypeStack, OS);
253 OS << ']';
Chris Lattner36942d72009-02-28 20:35:42 +0000254 break;
255 }
256 case Type::VectorTyID: {
257 const VectorType *PTy = cast<VectorType>(Ty);
Chris Lattner30794262009-02-28 21:27:31 +0000258 OS << "<" << PTy->getNumElements() << " x ";
259 CalcTypeName(PTy->getElementType(), TypeStack, OS);
260 OS << '>';
Chris Lattner36942d72009-02-28 20:35:42 +0000261 break;
262 }
263 case Type::OpaqueTyID:
Chris Lattner30794262009-02-28 21:27:31 +0000264 OS << "opaque";
Chris Lattner36942d72009-02-28 20:35:42 +0000265 break;
266 default:
Chris Lattner30794262009-02-28 21:27:31 +0000267 OS << "<unrecognized-type>";
Chris Lattner36942d72009-02-28 20:35:42 +0000268 break;
Chris Lattner9cc34462009-02-28 20:25:14 +0000269 }
270
Chris Lattner534361e2009-02-28 20:49:40 +0000271 TypeStack.pop_back(); // Remove self from stack.
Chris Lattner9cc34462009-02-28 20:25:14 +0000272}
273
274/// printTypeInt - The internal guts of printing out a type that has a
275/// potentially named portion.
276///
Chris Lattnerd2b6cb02009-03-01 01:16:21 +0000277void TypePrinting::print(const Type *Ty, raw_ostream &OS,
278 bool IgnoreTopLevelName) {
Chris Lattner9cc34462009-02-28 20:25:14 +0000279 // Check to see if the type is named.
Chris Lattner87185e82009-02-28 23:03:55 +0000280 DenseMap<const Type*, std::string> &TM = getTypeNamesMap(TypeNames);
Chris Lattnerd2b6cb02009-03-01 01:16:21 +0000281 if (!IgnoreTopLevelName) {
282 DenseMap<const Type*, std::string>::iterator I = TM.find(Ty);
283 if (I != TM.end()) {
284 OS << I->second;
285 return;
286 }
Chris Lattner9cc34462009-02-28 20:25:14 +0000287 }
288
289 // Otherwise we have a type that has not been named but is a derived type.
290 // Carefully recurse the type hierarchy to print out any contained symbolic
291 // names.
Chris Lattnerb840cac2009-02-28 20:34:19 +0000292 SmallVector<const Type *, 16> TypeStack;
Chris Lattner9cc34462009-02-28 20:25:14 +0000293 std::string TypeName;
Chris Lattner534361e2009-02-28 20:49:40 +0000294
295 raw_string_ostream TypeOS(TypeName);
Chris Lattnerd2b6cb02009-03-01 01:16:21 +0000296 CalcTypeName(Ty, TypeStack, TypeOS, IgnoreTopLevelName);
Chris Lattner534361e2009-02-28 20:49:40 +0000297 OS << TypeOS.str();
298
299 // Cache type name for later use.
Chris Lattnerd2b6cb02009-03-01 01:16:21 +0000300 if (!IgnoreTopLevelName)
301 TM.insert(std::make_pair(Ty, TypeOS.str()));
Chris Lattner9cc34462009-02-28 20:25:14 +0000302}
303
Chris Lattner413fd232009-03-01 00:03:38 +0000304namespace {
305 class TypeFinder {
306 // To avoid walking constant expressions multiple times and other IR
307 // objects, we keep several helper maps.
308 DenseSet<const Value*> VisitedConstants;
309 DenseSet<const Type*> VisitedTypes;
310
311 TypePrinting &TP;
312 std::vector<const Type*> &NumberedTypes;
313 public:
314 TypeFinder(TypePrinting &tp, std::vector<const Type*> &numberedTypes)
315 : TP(tp), NumberedTypes(numberedTypes) {}
316
317 void Run(const Module &M) {
Chris Lattner88485862009-03-01 00:32:33 +0000318 // Get types from the type symbol table. This gets opaque types referened
319 // only through derived named types.
320 const TypeSymbolTable &ST = M.getTypeSymbolTable();
321 for (TypeSymbolTable::const_iterator TI = ST.begin(), E = ST.end();
322 TI != E; ++TI)
323 IncorporateType(TI->second);
324
Chris Lattner413fd232009-03-01 00:03:38 +0000325 // Get types from global variables.
326 for (Module::const_global_iterator I = M.global_begin(),
327 E = M.global_end(); I != E; ++I) {
328 IncorporateType(I->getType());
329 if (I->hasInitializer())
330 IncorporateValue(I->getInitializer());
331 }
332
333 // Get types from aliases.
334 for (Module::const_alias_iterator I = M.alias_begin(),
335 E = M.alias_end(); I != E; ++I) {
336 IncorporateType(I->getType());
337 IncorporateValue(I->getAliasee());
338 }
339
340 // Get types from functions.
341 for (Module::const_iterator FI = M.begin(), E = M.end(); FI != E; ++FI) {
342 IncorporateType(FI->getType());
343
344 for (Function::const_iterator BB = FI->begin(), E = FI->end();
345 BB != E;++BB)
346 for (BasicBlock::const_iterator II = BB->begin(),
347 E = BB->end(); II != E; ++II) {
348 const Instruction &I = *II;
349 // Incorporate the type of the instruction and all its operands.
350 IncorporateType(I.getType());
351 for (User::const_op_iterator OI = I.op_begin(), OE = I.op_end();
352 OI != OE; ++OI)
353 IncorporateValue(*OI);
354 }
355 }
356 }
357
358 private:
359 void IncorporateType(const Type *Ty) {
360 // Check to see if we're already visited this type.
Chris Lattner88485862009-03-01 00:32:33 +0000361 if (!VisitedTypes.insert(Ty).second)
Chris Lattner413fd232009-03-01 00:03:38 +0000362 return;
363
364 // If this is a structure or opaque type, add a name for the type.
Nick Lewycky21cc4462009-04-04 07:22:01 +0000365 if (((isa<StructType>(Ty) && cast<StructType>(Ty)->getNumElements())
366 || isa<OpaqueType>(Ty)) && !TP.hasTypeName(Ty)) {
Chris Lattner413fd232009-03-01 00:03:38 +0000367 TP.addTypeName(Ty, "%"+utostr(unsigned(NumberedTypes.size())));
368 NumberedTypes.push_back(Ty);
369 }
370
371 // Recursively walk all contained types.
372 for (Type::subtype_iterator I = Ty->subtype_begin(),
373 E = Ty->subtype_end(); I != E; ++I)
374 IncorporateType(*I);
375 }
376
377 /// IncorporateValue - This method is used to walk operand lists finding
378 /// types hiding in constant expressions and other operands that won't be
379 /// walked in other ways. GlobalValues, basic blocks, instructions, and
380 /// inst operands are all explicitly enumerated.
381 void IncorporateValue(const Value *V) {
382 if (V == 0 || !isa<Constant>(V) || isa<GlobalValue>(V)) return;
383
384 // Already visited?
385 if (!VisitedConstants.insert(V).second)
386 return;
387
388 // Check this type.
389 IncorporateType(V->getType());
390
391 // Look in operands for types.
392 const Constant *C = cast<Constant>(V);
393 for (Constant::const_op_iterator I = C->op_begin(),
394 E = C->op_end(); I != E;++I)
395 IncorporateValue(*I);
396 }
397 };
398} // end anonymous namespace
399
400
401/// AddModuleTypesToPrinter - Add all of the symbolic type names for types in
402/// the specified module to the TypePrinter and all numbered types to it and the
403/// NumberedTypes table.
404static void AddModuleTypesToPrinter(TypePrinting &TP,
405 std::vector<const Type*> &NumberedTypes,
406 const Module *M) {
Chris Lattnere9fa33e2009-02-28 23:20:19 +0000407 if (M == 0) return;
408
409 // If the module has a symbol table, take all global types and stuff their
410 // names into the TypeNames map.
411 const TypeSymbolTable &ST = M->getTypeSymbolTable();
412 for (TypeSymbolTable::const_iterator TI = ST.begin(), E = ST.end();
413 TI != E; ++TI) {
414 const Type *Ty = cast<Type>(TI->second);
415
416 // As a heuristic, don't insert pointer to primitive types, because
417 // they are used too often to have a single useful name.
418 if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
419 const Type *PETy = PTy->getElementType();
420 if ((PETy->isPrimitiveType() || PETy->isInteger()) &&
421 !isa<OpaqueType>(PETy))
422 continue;
423 }
424
425 // Likewise don't insert primitives either.
426 if (Ty->isInteger() || Ty->isPrimitiveType())
427 continue;
428
429 // Get the name as a string and insert it into TypeNames.
430 std::string NameStr;
431 raw_string_ostream NameOS(NameStr);
432 PrintLLVMName(NameOS, TI->first.c_str(), TI->first.length(), LocalPrefix);
433 TP.addTypeName(Ty, NameOS.str());
434 }
Chris Lattner413fd232009-03-01 00:03:38 +0000435
436 // Walk the entire module to find references to unnamed structure and opaque
437 // types. This is required for correctness by opaque types (because multiple
438 // uses of an unnamed opaque type needs to be referred to by the same ID) and
439 // it shrinks complex recursive structure types substantially in some cases.
440 TypeFinder(TP, NumberedTypes).Run(*M);
Chris Lattnere9fa33e2009-02-28 23:20:19 +0000441}
442
Chris Lattner9cc34462009-02-28 20:25:14 +0000443
Chris Lattner9cc34462009-02-28 20:25:14 +0000444/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
445/// type, iff there is an entry in the modules symbol table for the specified
Chris Lattnerc2871372009-02-28 21:05:51 +0000446/// type or one of it's component types.
Chris Lattner9cc34462009-02-28 20:25:14 +0000447///
Chris Lattnere9fa33e2009-02-28 23:20:19 +0000448void llvm::WriteTypeSymbolic(raw_ostream &OS, const Type *Ty, const Module *M) {
449 TypePrinting Printer;
Chris Lattner413fd232009-03-01 00:03:38 +0000450 std::vector<const Type*> NumberedTypes;
451 AddModuleTypesToPrinter(Printer, NumberedTypes, M);
Chris Lattnere9fa33e2009-02-28 23:20:19 +0000452 Printer.print(Ty, OS);
Chris Lattner9cc34462009-02-28 20:25:14 +0000453}
454
Chris Lattner6ab910b2008-08-19 04:36:02 +0000455//===----------------------------------------------------------------------===//
456// SlotTracker Class: Enumerate slot numbers for unnamed values
457//===----------------------------------------------------------------------===//
458
Chris Lattnerb64871a2008-08-19 04:28:07 +0000459namespace {
460
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000461/// This class provides computation of slot numbers for LLVM Assembly writing.
Chris Lattner45d4c732008-08-17 04:17:45 +0000462///
Chris Lattner0d9574a2008-08-19 04:26:57 +0000463class SlotTracker {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000464public:
Chris Lattner45d4c732008-08-17 04:17:45 +0000465 /// ValueMap - A mapping of Values to slot numbers
Chris Lattner92255072008-08-17 17:25:25 +0000466 typedef DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner45d4c732008-08-17 04:17:45 +0000467
468private:
469 /// TheModule - The module for which we are holding slot numbers
470 const Module* TheModule;
471
472 /// TheFunction - The function for which we are holding slot numbers
473 const Function* TheFunction;
474 bool FunctionProcessed;
475
476 /// mMap - The TypePlanes map for the module level data
477 ValueMap mMap;
478 unsigned mNext;
479
480 /// fMap - The TypePlanes map for the function level data
481 ValueMap fMap;
482 unsigned fNext;
483
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000484public:
Chris Lattner45d4c732008-08-17 04:17:45 +0000485 /// Construct from a module
Chris Lattner0d9574a2008-08-19 04:26:57 +0000486 explicit SlotTracker(const Module *M);
Chris Lattner45d4c732008-08-17 04:17:45 +0000487 /// Construct from a function, starting out in incorp state.
Chris Lattner0d9574a2008-08-19 04:26:57 +0000488 explicit SlotTracker(const Function *F);
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000489
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000490 /// Return the slot number of the specified value in it's type
Chris Lattner0d9574a2008-08-19 04:26:57 +0000491 /// plane. If something is not in the SlotTracker, return -1.
Chris Lattner22379bc2007-01-11 03:54:27 +0000492 int getLocalSlot(const Value *V);
493 int getGlobalSlot(const GlobalValue *V);
Reid Spencerfc621e22004-06-09 15:26:53 +0000494
Misha Brukmanfd939082005-04-21 23:48:37 +0000495 /// If you'd like to deal with a function instead of just a module, use
Chris Lattner0d9574a2008-08-19 04:26:57 +0000496 /// this method to get its data into the SlotTracker.
Misha Brukmanfd939082005-04-21 23:48:37 +0000497 void incorporateFunction(const Function *F) {
498 TheFunction = F;
Reid Spencer28531c72004-08-16 07:46:33 +0000499 FunctionProcessed = false;
500 }
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000501
Misha Brukmanfd939082005-04-21 23:48:37 +0000502 /// After calling incorporateFunction, use this method to remove the
Chris Lattner0d9574a2008-08-19 04:26:57 +0000503 /// most recently incorporated function from the SlotTracker. This
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000504 /// will reset the state of the machine back to just the module contents.
505 void purgeFunction();
506
Chris Lattner45d4c732008-08-17 04:17:45 +0000507 // Implementation Details
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000508private:
Reid Spencerb03de0c2004-05-26 21:56:09 +0000509 /// This function does the actual initialization.
510 inline void initialize();
511
Chris Lattner9446bbe2007-01-09 07:55:49 +0000512 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
513 void CreateModuleSlot(const GlobalValue *V);
514
515 /// CreateFunctionSlot - Insert the specified Value* into the slot table.
516 void CreateFunctionSlot(const Value *V);
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000517
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000518 /// Add all of the module level global variables (and their initializers)
519 /// and function declarations, but not the contents of those functions.
520 void processModule();
521
Reid Spencerb03de0c2004-05-26 21:56:09 +0000522 /// Add all of the functions arguments, basic blocks, and instructions
523 void processFunction();
524
Chris Lattner0d9574a2008-08-19 04:26:57 +0000525 SlotTracker(const SlotTracker &); // DO NOT IMPLEMENT
526 void operator=(const SlotTracker &); // DO NOT IMPLEMENT
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000527};
528
Chris Lattnerb64871a2008-08-19 04:28:07 +0000529} // end anonymous namespace
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000530
Chris Lattner6ab910b2008-08-19 04:36:02 +0000531
532static SlotTracker *createSlotTracker(const Value *V) {
533 if (const Argument *FA = dyn_cast<Argument>(V))
534 return new SlotTracker(FA->getParent());
535
536 if (const Instruction *I = dyn_cast<Instruction>(V))
537 return new SlotTracker(I->getParent()->getParent());
538
539 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
540 return new SlotTracker(BB->getParent());
541
542 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
543 return new SlotTracker(GV->getParent());
544
545 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
546 return new SlotTracker(GA->getParent());
547
548 if (const Function *Func = dyn_cast<Function>(V))
549 return new SlotTracker(Func);
550
551 return 0;
552}
553
554#if 0
Chris Lattner24233032008-08-19 04:47:09 +0000555#define ST_DEBUG(X) cerr << X
Chris Lattner6ab910b2008-08-19 04:36:02 +0000556#else
Chris Lattner24233032008-08-19 04:47:09 +0000557#define ST_DEBUG(X)
Chris Lattner6ab910b2008-08-19 04:36:02 +0000558#endif
559
560// Module level constructor. Causes the contents of the Module (sans functions)
561// to be added to the slot table.
562SlotTracker::SlotTracker(const Module *M)
Chris Lattnercfb5a202008-08-19 05:06:27 +0000563 : TheModule(M), TheFunction(0), FunctionProcessed(false), mNext(0), fNext(0) {
Chris Lattner6ab910b2008-08-19 04:36:02 +0000564}
565
566// Function level constructor. Causes the contents of the Module and the one
567// function provided to be added to the slot table.
568SlotTracker::SlotTracker(const Function *F)
Chris Lattnercfb5a202008-08-19 05:06:27 +0000569 : TheModule(F ? F->getParent() : 0), TheFunction(F), FunctionProcessed(false),
570 mNext(0), fNext(0) {
Chris Lattner6ab910b2008-08-19 04:36:02 +0000571}
572
573inline void SlotTracker::initialize() {
574 if (TheModule) {
575 processModule();
576 TheModule = 0; ///< Prevent re-processing next time we're called.
577 }
Chris Lattnercfb5a202008-08-19 05:06:27 +0000578
Chris Lattner6ab910b2008-08-19 04:36:02 +0000579 if (TheFunction && !FunctionProcessed)
580 processFunction();
581}
582
583// Iterate through all the global variables, functions, and global
584// variable initializers and create slots for them.
585void SlotTracker::processModule() {
Chris Lattner24233032008-08-19 04:47:09 +0000586 ST_DEBUG("begin processModule!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000587
588 // Add all of the unnamed global variables to the value table.
589 for (Module::const_global_iterator I = TheModule->global_begin(),
590 E = TheModule->global_end(); I != E; ++I)
591 if (!I->hasName())
592 CreateModuleSlot(I);
593
594 // Add all the unnamed functions to the table.
595 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
596 I != E; ++I)
597 if (!I->hasName())
598 CreateModuleSlot(I);
599
Chris Lattner24233032008-08-19 04:47:09 +0000600 ST_DEBUG("end processModule!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000601}
602
603
604// Process the arguments, basic blocks, and instructions of a function.
605void SlotTracker::processFunction() {
Chris Lattner24233032008-08-19 04:47:09 +0000606 ST_DEBUG("begin processFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000607 fNext = 0;
608
609 // Add all the function arguments with no names.
610 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
611 AE = TheFunction->arg_end(); AI != AE; ++AI)
612 if (!AI->hasName())
613 CreateFunctionSlot(AI);
614
Chris Lattner24233032008-08-19 04:47:09 +0000615 ST_DEBUG("Inserting Instructions:\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000616
617 // Add all of the basic blocks and instructions with no names.
618 for (Function::const_iterator BB = TheFunction->begin(),
619 E = TheFunction->end(); BB != E; ++BB) {
620 if (!BB->hasName())
621 CreateFunctionSlot(BB);
622 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
623 if (I->getType() != Type::VoidTy && !I->hasName())
624 CreateFunctionSlot(I);
625 }
626
627 FunctionProcessed = true;
628
Chris Lattner24233032008-08-19 04:47:09 +0000629 ST_DEBUG("end processFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000630}
631
632/// Clean up after incorporating a function. This is the only way to get out of
633/// the function incorporation state that affects get*Slot/Create*Slot. Function
634/// incorporation state is indicated by TheFunction != 0.
635void SlotTracker::purgeFunction() {
Chris Lattner24233032008-08-19 04:47:09 +0000636 ST_DEBUG("begin purgeFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000637 fMap.clear(); // Simply discard the function level map
638 TheFunction = 0;
639 FunctionProcessed = false;
Chris Lattner24233032008-08-19 04:47:09 +0000640 ST_DEBUG("end purgeFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000641}
642
643/// getGlobalSlot - Get the slot number of a global value.
644int SlotTracker::getGlobalSlot(const GlobalValue *V) {
645 // Check for uninitialized state and do lazy initialization.
646 initialize();
647
648 // Find the type plane in the module map
649 ValueMap::iterator MI = mMap.find(V);
Dan Gohmanaeaf2452008-10-01 19:58:59 +0000650 return MI == mMap.end() ? -1 : (int)MI->second;
Chris Lattner6ab910b2008-08-19 04:36:02 +0000651}
652
653
654/// getLocalSlot - Get the slot number for a value that is local to a function.
655int SlotTracker::getLocalSlot(const Value *V) {
656 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
657
658 // Check for uninitialized state and do lazy initialization.
659 initialize();
660
661 ValueMap::iterator FI = fMap.find(V);
Dan Gohmanaeaf2452008-10-01 19:58:59 +0000662 return FI == fMap.end() ? -1 : (int)FI->second;
Chris Lattner6ab910b2008-08-19 04:36:02 +0000663}
664
665
666/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
667void SlotTracker::CreateModuleSlot(const GlobalValue *V) {
668 assert(V && "Can't insert a null Value into SlotTracker!");
669 assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
670 assert(!V->hasName() && "Doesn't need a slot!");
671
672 unsigned DestSlot = mNext++;
673 mMap[V] = DestSlot;
674
Chris Lattner24233032008-08-19 04:47:09 +0000675 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner6ab910b2008-08-19 04:36:02 +0000676 DestSlot << " [");
677 // G = Global, F = Function, A = Alias, o = other
Chris Lattner24233032008-08-19 04:47:09 +0000678 ST_DEBUG((isa<GlobalVariable>(V) ? 'G' :
Chris Lattner6ab910b2008-08-19 04:36:02 +0000679 (isa<Function>(V) ? 'F' :
680 (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n");
681}
682
683
684/// CreateSlot - Create a new slot for the specified value if it has no name.
685void SlotTracker::CreateFunctionSlot(const Value *V) {
686 assert(V->getType() != Type::VoidTy && !V->hasName() &&
687 "Doesn't need a slot!");
688
689 unsigned DestSlot = fNext++;
690 fMap[V] = DestSlot;
691
692 // G = Global, F = Function, o = other
Chris Lattner24233032008-08-19 04:47:09 +0000693 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner6ab910b2008-08-19 04:36:02 +0000694 DestSlot << " [o]\n");
695}
696
697
698
699//===----------------------------------------------------------------------===//
700// AsmWriter Implementation
701//===----------------------------------------------------------------------===//
Chris Lattnerf082b802002-07-23 18:07:49 +0000702
Chris Lattner944fac72008-08-23 22:23:09 +0000703static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
Chris Lattner9cc34462009-02-28 20:25:14 +0000704 TypePrinting &TypePrinter,
Chris Lattner0d9574a2008-08-19 04:26:57 +0000705 SlotTracker *Machine);
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000706
Chris Lattnerc97536e2008-08-17 04:40:13 +0000707
Chris Lattner207b5bc2001-10-29 16:37:48 +0000708
Chris Lattner82c4bc72006-12-06 06:40:49 +0000709static const char *getPredicateText(unsigned predicate) {
Reid Spencer81dfeb32006-12-04 05:19:18 +0000710 const char * pred = "unknown";
711 switch (predicate) {
712 case FCmpInst::FCMP_FALSE: pred = "false"; break;
713 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
714 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
715 case FCmpInst::FCMP_OGE: pred = "oge"; break;
716 case FCmpInst::FCMP_OLT: pred = "olt"; break;
717 case FCmpInst::FCMP_OLE: pred = "ole"; break;
718 case FCmpInst::FCMP_ONE: pred = "one"; break;
719 case FCmpInst::FCMP_ORD: pred = "ord"; break;
720 case FCmpInst::FCMP_UNO: pred = "uno"; break;
721 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
722 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
723 case FCmpInst::FCMP_UGE: pred = "uge"; break;
724 case FCmpInst::FCMP_ULT: pred = "ult"; break;
725 case FCmpInst::FCMP_ULE: pred = "ule"; break;
726 case FCmpInst::FCMP_UNE: pred = "une"; break;
727 case FCmpInst::FCMP_TRUE: pred = "true"; break;
728 case ICmpInst::ICMP_EQ: pred = "eq"; break;
729 case ICmpInst::ICMP_NE: pred = "ne"; break;
730 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
731 case ICmpInst::ICMP_SGE: pred = "sge"; break;
732 case ICmpInst::ICMP_SLT: pred = "slt"; break;
733 case ICmpInst::ICMP_SLE: pred = "sle"; break;
734 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
735 case ICmpInst::ICMP_UGE: pred = "uge"; break;
736 case ICmpInst::ICMP_ULT: pred = "ult"; break;
737 case ICmpInst::ICMP_ULE: pred = "ule"; break;
738 }
739 return pred;
740}
741
Chris Lattner944fac72008-08-23 22:23:09 +0000742static void WriteConstantInt(raw_ostream &Out, const Constant *CV,
Chris Lattner9cc34462009-02-28 20:25:14 +0000743 TypePrinting &TypePrinter, SlotTracker *Machine) {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000744 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattnerfad86b02008-08-17 07:19:36 +0000745 if (CI->getType() == Type::Int1Ty) {
Reid Spencer579dca12007-01-12 04:24:46 +0000746 Out << (CI->getZExtValue() ? "true" : "false");
Chris Lattnerfad86b02008-08-17 07:19:36 +0000747 return;
748 }
749 Out << CI->getValue();
750 return;
751 }
752
753 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000754 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble ||
755 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) {
756 // We would like to output the FP constant value in exponential notation,
757 // but we cannot do this if doing so will lose precision. Check here to
758 // make sure that we only output it in exponential format if we can parse
759 // the value back and get the same value.
760 //
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000761 bool ignored;
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000762 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
Chris Lattnerfad86b02008-08-17 07:19:36 +0000763 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
764 CFP->getValueAPF().convertToFloat();
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000765 std::string StrVal = ftostr(CFP->getValueAPF());
Chris Lattner66e810b2002-04-18 18:53:13 +0000766
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000767 // Check to make sure that the stringized number is not some string like
768 // "Inf" or NaN, that atof will accept, but the lexer will not. Check
769 // that the string matches the "[-+]?[0-9]" regex.
770 //
771 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
772 ((StrVal[0] == '-' || StrVal[0] == '+') &&
773 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
774 // Reparse stringized version!
775 if (atof(StrVal.c_str()) == Val) {
776 Out << StrVal;
777 return;
778 }
Chris Lattner66e810b2002-04-18 18:53:13 +0000779 }
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000780 // Otherwise we could not reparse it to exactly the same value, so we must
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000781 // output the string in hexadecimal format! Note that loading and storing
782 // floating point types changes the bits of NaNs on some hosts, notably
783 // x86, so we must not use these types.
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000784 assert(sizeof(double) == sizeof(uint64_t) &&
785 "assuming that double is 64 bits!");
Chris Lattnerc6a13462008-11-10 04:30:26 +0000786 char Buffer[40];
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000787 APFloat apf = CFP->getValueAPF();
788 // Floats are represented in ASCII IR as double, convert.
789 if (!isDouble)
790 apf.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
791 &ignored);
792 Out << "0x" <<
793 utohex_buffer(uint64_t(apf.bitcastToAPInt().getZExtValue()),
794 Buffer+40);
Chris Lattnercfb5a202008-08-19 05:06:27 +0000795 return;
796 }
797
798 // Some form of long double. These appear as a magic letter identifying
799 // the type, then a fixed number of hex digits.
800 Out << "0x";
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000801 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended) {
Chris Lattnercfb5a202008-08-19 05:06:27 +0000802 Out << 'K';
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000803 // api needed to prevent premature destruction
804 APInt api = CFP->getValueAPF().bitcastToAPInt();
805 const uint64_t* p = api.getRawData();
806 uint64_t word = p[1];
807 int shiftcount=12;
808 int width = api.getBitWidth();
809 for (int j=0; j<width; j+=4, shiftcount-=4) {
810 unsigned int nibble = (word>>shiftcount) & 15;
811 if (nibble < 10)
812 Out << (unsigned char)(nibble + '0');
813 else
814 Out << (unsigned char)(nibble - 10 + 'A');
815 if (shiftcount == 0 && j+4 < width) {
816 word = *p;
817 shiftcount = 64;
818 if (width-j-4 < 64)
819 shiftcount = width-j-4;
820 }
821 }
822 return;
823 } else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad)
Chris Lattnercfb5a202008-08-19 05:06:27 +0000824 Out << 'L';
825 else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
826 Out << 'M';
827 else
828 assert(0 && "Unsupported floating point type");
829 // api needed to prevent premature destruction
Dale Johannesen7111b022008-10-09 18:53:47 +0000830 APInt api = CFP->getValueAPF().bitcastToAPInt();
Chris Lattnercfb5a202008-08-19 05:06:27 +0000831 const uint64_t* p = api.getRawData();
832 uint64_t word = *p;
833 int shiftcount=60;
834 int width = api.getBitWidth();
835 for (int j=0; j<width; j+=4, shiftcount-=4) {
836 unsigned int nibble = (word>>shiftcount) & 15;
837 if (nibble < 10)
838 Out << (unsigned char)(nibble + '0');
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000839 else
Chris Lattnercfb5a202008-08-19 05:06:27 +0000840 Out << (unsigned char)(nibble - 10 + 'A');
841 if (shiftcount == 0 && j+4 < width) {
842 word = *(++p);
843 shiftcount = 64;
844 if (width-j-4 < 64)
845 shiftcount = width-j-4;
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000846 }
847 }
Chris Lattnercfb5a202008-08-19 05:06:27 +0000848 return;
849 }
850
851 if (isa<ConstantAggregateZero>(CV)) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000852 Out << "zeroinitializer";
Chris Lattnercfb5a202008-08-19 05:06:27 +0000853 return;
854 }
855
856 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000857 // As a special case, print the array as a string if it is an array of
Dan Gohman9b38d7d2008-05-12 16:34:30 +0000858 // i8 with ConstantInt values.
Misha Brukmanfd939082005-04-21 23:48:37 +0000859 //
Chris Lattner66e810b2002-04-18 18:53:13 +0000860 const Type *ETy = CA->getType()->getElementType();
Chris Lattner18365502006-01-23 23:03:36 +0000861 if (CA->isString()) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000862 Out << "c\"";
Chris Lattner18365502006-01-23 23:03:36 +0000863 PrintEscapedString(CA->getAsString(), Out);
Chris Lattnercfb5a202008-08-19 05:06:27 +0000864 Out << '"';
Chris Lattner66e810b2002-04-18 18:53:13 +0000865 } else { // Cannot output in string format...
Misha Brukman40c732c2004-06-04 21:11:51 +0000866 Out << '[';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000867 if (CA->getNumOperands()) {
Chris Lattner0f7364b2009-02-28 21:26:53 +0000868 TypePrinter.print(ETy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000869 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000870 WriteAsOperandInternal(Out, CA->getOperand(0),
Chris Lattner9cc34462009-02-28 20:25:14 +0000871 TypePrinter, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000872 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
873 Out << ", ";
Chris Lattner0f7364b2009-02-28 21:26:53 +0000874 TypePrinter.print(ETy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000875 Out << ' ';
Chris Lattner9cc34462009-02-28 20:25:14 +0000876 WriteAsOperandInternal(Out, CA->getOperand(i), TypePrinter, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000877 }
878 }
Dan Gohman8dae1382008-09-14 17:21:12 +0000879 Out << ']';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000880 }
Chris Lattnercfb5a202008-08-19 05:06:27 +0000881 return;
882 }
883
884 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth43f344a2007-01-08 18:21:30 +0000885 if (CS->getType()->isPacked())
886 Out << '<';
Misha Brukman40c732c2004-06-04 21:11:51 +0000887 Out << '{';
Jim Laskeya3f332b2006-02-25 12:27:03 +0000888 unsigned N = CS->getNumOperands();
889 if (N) {
Chris Lattner24233032008-08-19 04:47:09 +0000890 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +0000891 TypePrinter.print(CS->getOperand(0)->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000892 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000893
Chris Lattner9cc34462009-02-28 20:25:14 +0000894 WriteAsOperandInternal(Out, CS->getOperand(0), TypePrinter, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000895
Jim Laskeya3f332b2006-02-25 12:27:03 +0000896 for (unsigned i = 1; i < N; i++) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000897 Out << ", ";
Chris Lattner0f7364b2009-02-28 21:26:53 +0000898 TypePrinter.print(CS->getOperand(i)->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000899 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000900
Chris Lattner9cc34462009-02-28 20:25:14 +0000901 WriteAsOperandInternal(Out, CS->getOperand(i), TypePrinter, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000902 }
Dan Gohman8dae1382008-09-14 17:21:12 +0000903 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000904 }
Jim Laskeya3f332b2006-02-25 12:27:03 +0000905
Dan Gohman8dae1382008-09-14 17:21:12 +0000906 Out << '}';
Andrew Lenharth43f344a2007-01-08 18:21:30 +0000907 if (CS->getType()->isPacked())
908 Out << '>';
Chris Lattnercfb5a202008-08-19 05:06:27 +0000909 return;
910 }
911
912 if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
913 const Type *ETy = CP->getType()->getElementType();
914 assert(CP->getNumOperands() > 0 &&
915 "Number of operands for a PackedConst must be > 0");
Dan Gohman7dfa07f2009-02-11 00:25:25 +0000916 Out << '<';
Chris Lattner0f7364b2009-02-28 21:26:53 +0000917 TypePrinter.print(ETy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000918 Out << ' ';
Chris Lattner9cc34462009-02-28 20:25:14 +0000919 WriteAsOperandInternal(Out, CP->getOperand(0), TypePrinter, Machine);
Chris Lattnercfb5a202008-08-19 05:06:27 +0000920 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
Chris Lattner4667b712008-08-19 05:26:17 +0000921 Out << ", ";
Chris Lattner0f7364b2009-02-28 21:26:53 +0000922 TypePrinter.print(ETy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000923 Out << ' ';
Chris Lattner9cc34462009-02-28 20:25:14 +0000924 WriteAsOperandInternal(Out, CP->getOperand(i), TypePrinter, Machine);
Chris Lattnercfb5a202008-08-19 05:06:27 +0000925 }
Dan Gohman7dfa07f2009-02-11 00:25:25 +0000926 Out << '>';
Chris Lattnercfb5a202008-08-19 05:06:27 +0000927 return;
928 }
929
930 if (isa<ConstantPointerNull>(CV)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000931 Out << "null";
Chris Lattnercfb5a202008-08-19 05:06:27 +0000932 return;
933 }
934
935 if (isa<UndefValue>(CV)) {
Chris Lattnerb976e662004-10-16 18:08:06 +0000936 Out << "undef";
Chris Lattnercfb5a202008-08-19 05:06:27 +0000937 return;
938 }
Nick Lewycky21cc4462009-04-04 07:22:01 +0000939
940 if (const MDString *S = dyn_cast<MDString>(CV)) {
941 Out << "!\"";
942 PrintEscapedString(S->begin(), S->size(), Out);
943 Out << '"';
944 return;
945 }
Chris Lattnerb976e662004-10-16 18:08:06 +0000946
Nick Lewycky21cc4462009-04-04 07:22:01 +0000947 if (const MDNode *N = dyn_cast<MDNode>(CV)) {
948 Out << "!{";
949 for (MDNode::const_op_iterator I = N->op_begin(), E = N->op_end(); I != E;){
950 TypePrinter.print((*I)->getType(), Out);
951 Out << ' ';
952 WriteAsOperandInternal(Out, *I, TypePrinter, Machine);
953 if (++I != E)
954 Out << ", ";
955 }
956 Out << "}";
957 return;
958 }
959
Chris Lattnercfb5a202008-08-19 05:06:27 +0000960 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer81dfeb32006-12-04 05:19:18 +0000961 Out << CE->getOpcodeName();
962 if (CE->isCompare())
Chris Lattnercfb5a202008-08-19 05:06:27 +0000963 Out << ' ' << getPredicateText(CE->getPredicate());
Reid Spencer81dfeb32006-12-04 05:19:18 +0000964 Out << " (";
Misha Brukmanfd939082005-04-21 23:48:37 +0000965
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000966 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
Chris Lattner0f7364b2009-02-28 21:26:53 +0000967 TypePrinter.print((*OI)->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000968 Out << ' ';
Chris Lattner9cc34462009-02-28 20:25:14 +0000969 WriteAsOperandInternal(Out, *OI, TypePrinter, Machine);
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000970 if (OI+1 != CE->op_end())
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000971 Out << ", ";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000972 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000973
Dan Gohman995be7d2008-05-31 19:12:39 +0000974 if (CE->hasIndices()) {
975 const SmallVector<unsigned, 4> &Indices = CE->getIndices();
976 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
977 Out << ", " << Indices[i];
978 }
979
Reid Spencer3da59db2006-11-27 01:05:10 +0000980 if (CE->isCast()) {
Chris Lattner95586b82002-08-15 19:37:43 +0000981 Out << " to ";
Chris Lattner0f7364b2009-02-28 21:26:53 +0000982 TypePrinter.print(CE->getType(), Out);
Chris Lattner95586b82002-08-15 19:37:43 +0000983 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000984
Misha Brukman40c732c2004-06-04 21:11:51 +0000985 Out << ')';
Chris Lattnercfb5a202008-08-19 05:06:27 +0000986 return;
Chris Lattner7a716ad2002-04-16 21:36:08 +0000987 }
Chris Lattnercfb5a202008-08-19 05:06:27 +0000988
989 Out << "<placeholder or erroneous Constant>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000990}
991
992
Misha Brukmanab5c6002004-03-02 00:22:19 +0000993/// WriteAsOperand - Write the name of the specified value out to the specified
994/// ostream. This can be useful when you just want to print int %reg126, not
995/// the whole instruction that generated it.
996///
Chris Lattner944fac72008-08-23 22:23:09 +0000997static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
Chris Lattner9cc34462009-02-28 20:25:14 +0000998 TypePrinting &TypePrinter,
Chris Lattner0d9574a2008-08-19 04:26:57 +0000999 SlotTracker *Machine) {
Chris Lattnerc97536e2008-08-17 04:40:13 +00001000 if (V->hasName()) {
1001 PrintLLVMName(Out, V);
1002 return;
1003 }
1004
1005 const Constant *CV = dyn_cast<Constant>(V);
1006 if (CV && !isa<GlobalValue>(CV)) {
Chris Lattner9cc34462009-02-28 20:25:14 +00001007 WriteConstantInt(Out, CV, TypePrinter, Machine);
Chris Lattnercfb5a202008-08-19 05:06:27 +00001008 return;
1009 }
1010
1011 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
Chris Lattnerc97536e2008-08-17 04:40:13 +00001012 Out << "asm ";
1013 if (IA->hasSideEffects())
1014 Out << "sideeffect ";
1015 Out << '"';
1016 PrintEscapedString(IA->getAsmString(), Out);
1017 Out << "\", \"";
1018 PrintEscapedString(IA->getConstraintString(), Out);
1019 Out << '"';
Chris Lattnercfb5a202008-08-19 05:06:27 +00001020 return;
1021 }
1022
1023 char Prefix = '%';
1024 int Slot;
1025 if (Machine) {
1026 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
1027 Slot = Machine->getGlobalSlot(GV);
1028 Prefix = '@';
1029 } else {
1030 Slot = Machine->getLocalSlot(V);
1031 }
Chris Lattnerc97536e2008-08-17 04:40:13 +00001032 } else {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001033 Machine = createSlotTracker(V);
Chris Lattnerc97536e2008-08-17 04:40:13 +00001034 if (Machine) {
1035 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
1036 Slot = Machine->getGlobalSlot(GV);
1037 Prefix = '@';
1038 } else {
1039 Slot = Machine->getLocalSlot(V);
1040 }
Chris Lattner80cd1152006-01-25 22:26:05 +00001041 } else {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001042 Slot = -1;
Chris Lattner7a716ad2002-04-16 21:36:08 +00001043 }
Chris Lattnercfb5a202008-08-19 05:06:27 +00001044 delete Machine;
Chris Lattner7a716ad2002-04-16 21:36:08 +00001045 }
Chris Lattnercfb5a202008-08-19 05:06:27 +00001046
1047 if (Slot != -1)
1048 Out << Prefix << Slot;
1049 else
1050 Out << "<badref>";
Chris Lattner7a716ad2002-04-16 21:36:08 +00001051}
1052
Misha Brukman9d0802e2004-03-01 19:48:13 +00001053/// WriteAsOperand - Write the name of the specified value out to the specified
1054/// ostream. This can be useful when you just want to print int %reg126, not
1055/// the whole instruction that generated it.
1056///
Chris Lattner24233032008-08-19 04:47:09 +00001057void llvm::WriteAsOperand(std::ostream &Out, const Value *V, bool PrintType,
1058 const Module *Context) {
Chris Lattner944fac72008-08-23 22:23:09 +00001059 raw_os_ostream OS(Out);
1060 WriteAsOperand(OS, V, PrintType, Context);
1061}
1062
1063void llvm::WriteAsOperand(raw_ostream &Out, const Value *V, bool PrintType,
1064 const Module *Context) {
Chris Lattner607dc682002-07-10 16:48:17 +00001065 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattner207b5bc2001-10-29 16:37:48 +00001066
Chris Lattnere9fa33e2009-02-28 23:20:19 +00001067 TypePrinting TypePrinter;
Chris Lattner413fd232009-03-01 00:03:38 +00001068 std::vector<const Type*> NumberedTypes;
1069 AddModuleTypesToPrinter(TypePrinter, NumberedTypes, Context);
Dan Gohman8dae1382008-09-14 17:21:12 +00001070 if (PrintType) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001071 TypePrinter.print(V->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +00001072 Out << ' ';
1073 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001074
Chris Lattner9cc34462009-02-28 20:25:14 +00001075 WriteAsOperandInternal(Out, V, TypePrinter, 0);
Chris Lattner622f7402001-07-20 19:15:21 +00001076}
1077
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001078
Chris Lattnercfb5a202008-08-19 05:06:27 +00001079namespace {
Chris Lattnerd8c2e422001-07-12 23:35:26 +00001080
Chris Lattner007377f2001-09-07 16:36:04 +00001081class AssemblyWriter {
Chris Lattner944fac72008-08-23 22:23:09 +00001082 raw_ostream &Out;
Chris Lattner0d9574a2008-08-19 04:26:57 +00001083 SlotTracker &Machine;
Chris Lattnerc1824992001-10-29 16:05:51 +00001084 const Module *TheModule;
Chris Lattner9cc34462009-02-28 20:25:14 +00001085 TypePrinting TypePrinter;
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001086 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner413fd232009-03-01 00:03:38 +00001087 std::vector<const Type*> NumberedTypes;
Chris Lattner00950542001-06-06 20:29:01 +00001088public:
Chris Lattner944fac72008-08-23 22:23:09 +00001089 inline AssemblyWriter(raw_ostream &o, SlotTracker &Mac, const Module *M,
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001090 AssemblyAnnotationWriter *AAW)
Chris Lattnere9fa33e2009-02-28 23:20:19 +00001091 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner413fd232009-03-01 00:03:38 +00001092 AddModuleTypesToPrinter(TypePrinter, NumberedTypes, M);
Chris Lattner00950542001-06-06 20:29:01 +00001093 }
1094
Chris Lattner413fd232009-03-01 00:03:38 +00001095 void write(const Module *M) { printModule(M); }
Chris Lattner944fac72008-08-23 22:23:09 +00001096
1097 void write(const GlobalValue *G) {
1098 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(G))
1099 printGlobal(GV);
1100 else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(G))
1101 printAlias(GA);
1102 else if (const Function *F = dyn_cast<Function>(G))
1103 printFunction(F);
1104 else
1105 assert(0 && "Unknown global");
1106 }
1107
Chris Lattnercfb5a202008-08-19 05:06:27 +00001108 void write(const BasicBlock *BB) { printBasicBlock(BB); }
1109 void write(const Instruction *I) { printInstruction(*I); }
Chris Lattner00950542001-06-06 20:29:01 +00001110
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001111 void writeOperand(const Value *Op, bool PrintType);
Devang Pateleaf42ab2008-09-23 23:03:40 +00001112 void writeParamOperand(const Value *Operand, Attributes Attrs);
Chris Lattner66e810b2002-04-18 18:53:13 +00001113
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001114 const Module* getModule() { return TheModule; }
1115
Misha Brukmanf771bea2004-11-15 19:30:05 +00001116private:
Chris Lattnerc1824992001-10-29 16:05:51 +00001117 void printModule(const Module *M);
Reid Spencer78d033e2007-01-06 07:24:44 +00001118 void printTypeSymbolTable(const TypeSymbolTable &ST);
Chris Lattnerc1824992001-10-29 16:05:51 +00001119 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001120 void printAlias(const GlobalAlias *GV);
Chris Lattner79df7c02002-03-26 18:01:55 +00001121 void printFunction(const Function *F);
Devang Pateleaf42ab2008-09-23 23:03:40 +00001122 void printArgument(const Argument *FA, Attributes Attrs);
Chris Lattnerc1824992001-10-29 16:05:51 +00001123 void printBasicBlock(const BasicBlock *BB);
Chris Lattner7e708292002-06-25 16:13:24 +00001124 void printInstruction(const Instruction &I);
Chris Lattner2761e9f2002-04-13 20:53:41 +00001125
Chris Lattnere02fa852001-10-13 06:42:36 +00001126 // printInfoComment - Print a little comment after the instruction indicating
1127 // which slot it occupies.
Chris Lattner7e708292002-06-25 16:13:24 +00001128 void printInfoComment(const Value &V);
Chris Lattner00950542001-06-06 20:29:01 +00001129};
Chris Lattner413fd232009-03-01 00:03:38 +00001130} // end of anonymous namespace
Chris Lattner00950542001-06-06 20:29:01 +00001131
Chris Lattner2761e9f2002-04-13 20:53:41 +00001132
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001133void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
1134 if (Operand == 0) {
Chris Lattneraab18202005-02-24 16:58:29 +00001135 Out << "<null operand!>";
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001136 } else {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001137 if (PrintType) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001138 TypePrinter.print(Operand->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +00001139 Out << ' ';
Chris Lattnercfb5a202008-08-19 05:06:27 +00001140 }
Chris Lattner9cc34462009-02-28 20:25:14 +00001141 WriteAsOperandInternal(Out, Operand, TypePrinter, &Machine);
Chris Lattneraab18202005-02-24 16:58:29 +00001142 }
Chris Lattner00950542001-06-06 20:29:01 +00001143}
1144
Dale Johannesen0d51e7e2008-02-19 21:38:47 +00001145void AssemblyWriter::writeParamOperand(const Value *Operand,
Devang Pateleaf42ab2008-09-23 23:03:40 +00001146 Attributes Attrs) {
Duncan Sandsdc024672007-11-27 13:23:08 +00001147 if (Operand == 0) {
1148 Out << "<null operand!>";
1149 } else {
Duncan Sandsdc024672007-11-27 13:23:08 +00001150 // Print the type
Chris Lattner0f7364b2009-02-28 21:26:53 +00001151 TypePrinter.print(Operand->getType(), Out);
Duncan Sandsdc024672007-11-27 13:23:08 +00001152 // Print parameter attributes list
Devang Patel05988662008-09-25 21:00:45 +00001153 if (Attrs != Attribute::None)
1154 Out << ' ' << Attribute::getAsString(Attrs);
Dan Gohman8dae1382008-09-14 17:21:12 +00001155 Out << ' ';
Duncan Sandsdc024672007-11-27 13:23:08 +00001156 // Print the operand
Chris Lattner9cc34462009-02-28 20:25:14 +00001157 WriteAsOperandInternal(Out, Operand, TypePrinter, &Machine);
Duncan Sandsdc024672007-11-27 13:23:08 +00001158 }
1159}
Chris Lattner00950542001-06-06 20:29:01 +00001160
Chris Lattnerc1824992001-10-29 16:05:51 +00001161void AssemblyWriter::printModule(const Module *M) {
Chris Lattner31ab1b32005-03-02 23:12:40 +00001162 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanfd939082005-04-21 23:48:37 +00001163 // Don't print the ID if it will start a new line (which would
Chris Lattner31ab1b32005-03-02 23:12:40 +00001164 // require a comment char before it).
1165 M->getModuleIdentifier().find('\n') == std::string::npos)
1166 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
1167
Owen Andersoncf7ff2b2006-10-18 02:21:12 +00001168 if (!M->getDataLayout().empty())
Chris Lattnerd2f9e602006-10-22 06:06:56 +00001169 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencercddc86f2004-07-25 21:44:54 +00001170 if (!M->getTargetTriple().empty())
Reid Spencerc9a1f0d2004-07-25 21:29:43 +00001171 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanfd939082005-04-21 23:48:37 +00001172
Chris Lattnercc041ba2006-01-24 04:13:11 +00001173 if (!M->getModuleInlineAsm().empty()) {
Chris Lattner42a162e2006-01-24 00:45:30 +00001174 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnercc041ba2006-01-24 04:13:11 +00001175 std::string Asm = M->getModuleInlineAsm();
Chris Lattner42a162e2006-01-24 00:45:30 +00001176 size_t CurPos = 0;
1177 size_t NewLine = Asm.find_first_of('\n', CurPos);
1178 while (NewLine != std::string::npos) {
1179 // We found a newline, print the portion of the asm string from the
1180 // last newline up to this newline.
1181 Out << "module asm \"";
1182 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1183 Out);
1184 Out << "\"\n";
1185 CurPos = NewLine+1;
1186 NewLine = Asm.find_first_of('\n', CurPos);
1187 }
Chris Lattner71cdba32006-01-24 00:40:17 +00001188 Out << "module asm \"";
Chris Lattner42a162e2006-01-24 00:45:30 +00001189 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner18365502006-01-23 23:03:36 +00001190 Out << "\"\n";
1191 }
1192
Chris Lattner44da7d72004-09-14 05:06:58 +00001193 // Loop over the dependent libraries and emit them.
Chris Lattnercfe97b72004-09-14 04:51:44 +00001194 Module::lib_iterator LI = M->lib_begin();
1195 Module::lib_iterator LE = M->lib_end();
Reid Spencercddc86f2004-07-25 21:44:54 +00001196 if (LI != LE) {
Chris Lattnercfe97b72004-09-14 04:51:44 +00001197 Out << "deplibs = [ ";
1198 while (LI != LE) {
Chris Lattner44da7d72004-09-14 05:06:58 +00001199 Out << '"' << *LI << '"';
Reid Spencerc9a1f0d2004-07-25 21:29:43 +00001200 ++LI;
Chris Lattnercfe97b72004-09-14 04:51:44 +00001201 if (LI != LE)
1202 Out << ", ";
Reid Spencerc9a1f0d2004-07-25 21:29:43 +00001203 }
1204 Out << " ]\n";
Reid Spencer83f6a772004-07-25 18:08:18 +00001205 }
Reid Spencere59eaf42004-09-13 23:44:23 +00001206
Chris Lattner413fd232009-03-01 00:03:38 +00001207 // Loop over the symbol table, emitting all id'd types.
Reid Spencer78d033e2007-01-06 07:24:44 +00001208 printTypeSymbolTable(M->getTypeSymbolTable());
Misha Brukmanfd939082005-04-21 23:48:37 +00001209
Chris Lattnerd6d826c2006-12-06 04:41:52 +00001210 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
1211 I != E; ++I)
Chris Lattner7e708292002-06-25 16:13:24 +00001212 printGlobal(I);
Chris Lattner69dacfc2007-04-26 02:24:10 +00001213
1214 // Output all aliases.
1215 if (!M->alias_empty()) Out << "\n";
1216 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
1217 I != E; ++I)
1218 printAlias(I);
Chris Lattner007377f2001-09-07 16:36:04 +00001219
Chris Lattner44da7d72004-09-14 05:06:58 +00001220 // Output all of the functions.
Chris Lattner7e708292002-06-25 16:13:24 +00001221 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
1222 printFunction(I);
Chris Lattner007377f2001-09-07 16:36:04 +00001223}
1224
Chris Lattner944fac72008-08-23 22:23:09 +00001225static void PrintLinkage(GlobalValue::LinkageTypes LT, raw_ostream &Out) {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001226 switch (LT) {
Duncan Sands667d4b82009-03-07 15:45:40 +00001227 case GlobalValue::PrivateLinkage: Out << "private "; break;
1228 case GlobalValue::InternalLinkage: Out << "internal "; break;
1229 case GlobalValue::LinkOnceAnyLinkage: Out << "linkonce "; break;
1230 case GlobalValue::LinkOnceODRLinkage: Out << "linkonce_odr "; break;
1231 case GlobalValue::WeakAnyLinkage: Out << "weak "; break;
1232 case GlobalValue::WeakODRLinkage: Out << "weak_odr "; break;
Duncan Sands4dc2b392009-03-11 20:14:15 +00001233 case GlobalValue::CommonLinkage: Out << "common "; break;
Duncan Sands667d4b82009-03-07 15:45:40 +00001234 case GlobalValue::AppendingLinkage: Out << "appending "; break;
1235 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
1236 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001237 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
Chris Lattnercfb5a202008-08-19 05:06:27 +00001238 case GlobalValue::ExternalLinkage: break;
1239 case GlobalValue::GhostLinkage:
1240 Out << "GhostLinkage not allowed in AsmWriter!\n";
1241 abort();
1242 }
1243}
Duncan Sands667d4b82009-03-07 15:45:40 +00001244
Chris Lattnercfb5a202008-08-19 05:06:27 +00001245
1246static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
Chris Lattner944fac72008-08-23 22:23:09 +00001247 raw_ostream &Out) {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001248 switch (Vis) {
1249 default: assert(0 && "Invalid visibility style!");
1250 case GlobalValue::DefaultVisibility: break;
1251 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1252 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
1253 }
1254}
1255
Chris Lattnerc1824992001-10-29 16:05:51 +00001256void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Chris Lattnerc97536e2008-08-17 04:40:13 +00001257 if (GV->hasName()) {
1258 PrintLLVMName(Out, GV);
1259 Out << " = ";
1260 }
Chris Lattnerd70684f2001-09-18 04:01:05 +00001261
Chris Lattner52b26de2008-08-19 05:16:28 +00001262 if (!GV->hasInitializer() && GV->hasExternalLinkage())
1263 Out << "external ";
1264
1265 PrintLinkage(GV->getLinkage(), Out);
1266 PrintVisibility(GV->getVisibility(), Out);
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001267
1268 if (GV->isThreadLocal()) Out << "thread_local ";
Chris Lattnerdf986172009-01-02 07:01:27 +00001269 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1270 Out << "addrspace(" << AddressSpace << ") ";
Misha Brukman0313e0b2004-06-21 21:53:56 +00001271 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner0f7364b2009-02-28 21:26:53 +00001272 TypePrinter.print(GV->getType()->getElementType(), Out);
Chris Lattnerd70684f2001-09-18 04:01:05 +00001273
Dan Gohman8dae1382008-09-14 17:21:12 +00001274 if (GV->hasInitializer()) {
1275 Out << ' ';
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001276 writeOperand(GV->getInitializer(), false);
Dan Gohman8dae1382008-09-14 17:21:12 +00001277 }
Christopher Lambfe63fb92007-12-11 08:59:05 +00001278
Chris Lattner60962db2005-11-12 00:10:19 +00001279 if (GV->hasSection())
1280 Out << ", section \"" << GV->getSection() << '"';
1281 if (GV->getAlignment())
Chris Lattner30caa282005-11-06 06:48:53 +00001282 Out << ", align " << GV->getAlignment();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001283
Chris Lattner7e708292002-06-25 16:13:24 +00001284 printInfoComment(*GV);
Chris Lattnercfb5a202008-08-19 05:06:27 +00001285 Out << '\n';
Chris Lattner70cc3392001-09-10 07:58:01 +00001286}
1287
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001288void AssemblyWriter::printAlias(const GlobalAlias *GA) {
Dale Johannesen24f07dc2008-06-03 18:14:29 +00001289 // Don't crash when dumping partially built GA
1290 if (!GA->hasName())
1291 Out << "<<nameless>> = ";
Chris Lattnerc97536e2008-08-17 04:40:13 +00001292 else {
1293 PrintLLVMName(Out, GA);
1294 Out << " = ";
1295 }
Chris Lattnercfb5a202008-08-19 05:06:27 +00001296 PrintVisibility(GA->getVisibility(), Out);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001297
1298 Out << "alias ";
1299
Chris Lattnercfb5a202008-08-19 05:06:27 +00001300 PrintLinkage(GA->getLinkage(), Out);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001301
Anton Korobeynikovc6c98af2007-04-29 18:02:48 +00001302 const Constant *Aliasee = GA->getAliasee();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001303
1304 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001305 TypePrinter.print(GV->getType(), Out);
Chris Lattnerc97536e2008-08-17 04:40:13 +00001306 Out << ' ';
1307 PrintLLVMName(Out, GV);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001308 } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001309 TypePrinter.print(F->getFunctionType(), Out);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001310 Out << "* ";
1311
Chris Lattner9cc34462009-02-28 20:25:14 +00001312 WriteAsOperandInternal(Out, F, TypePrinter, &Machine);
Anton Korobeynikov591858a2008-03-22 08:17:17 +00001313 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Aliasee)) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001314 TypePrinter.print(GA->getType(), Out);
1315 Out << ' ';
Chris Lattnerc97536e2008-08-17 04:40:13 +00001316 PrintLLVMName(Out, GA);
Anton Korobeynikova80e1182007-04-28 13:45:00 +00001317 } else {
1318 const ConstantExpr *CE = 0;
1319 if ((CE = dyn_cast<ConstantExpr>(Aliasee)) &&
1320 (CE->getOpcode() == Instruction::BitCast)) {
1321 writeOperand(CE, false);
1322 } else
1323 assert(0 && "Unsupported aliasee");
1324 }
1325
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001326 printInfoComment(*GA);
Chris Lattner52b26de2008-08-19 05:16:28 +00001327 Out << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001328}
1329
Reid Spencer78d033e2007-01-06 07:24:44 +00001330void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
Chris Lattner413fd232009-03-01 00:03:38 +00001331 // Emit all numbered types.
1332 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i) {
1333 Out << "\ttype ";
1334
1335 // Make sure we print out at least one level of the type structure, so
1336 // that we do not get %2 = type %2
1337 TypePrinter.printAtLeastOneLevel(NumberedTypes[i], Out);
1338 Out << "\t\t; type %" << i << '\n';
1339 }
1340
1341 // Print the named types.
Reid Spencer78d033e2007-01-06 07:24:44 +00001342 for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
1343 TI != TE; ++TI) {
Chris Lattner52b26de2008-08-19 05:16:28 +00001344 Out << '\t';
1345 PrintLLVMName(Out, &TI->first[0], TI->first.size(), LocalPrefix);
1346 Out << " = type ";
Reid Spencer9231ac82004-05-25 08:53:40 +00001347
1348 // Make sure we print out at least one level of the type structure, so
1349 // that we do not get %FILE = type %FILE
Chris Lattner0f7364b2009-02-28 21:26:53 +00001350 TypePrinter.printAtLeastOneLevel(TI->second, Out);
Chris Lattnercfb5a202008-08-19 05:06:27 +00001351 Out << '\n';
Reid Spencer9231ac82004-05-25 08:53:40 +00001352 }
Reid Spencer78d033e2007-01-06 07:24:44 +00001353}
1354
Misha Brukmanab5c6002004-03-02 00:22:19 +00001355/// printFunction - Print all aspects of a function.
1356///
Chris Lattner7e708292002-06-25 16:13:24 +00001357void AssemblyWriter::printFunction(const Function *F) {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001358 // Print out the return type and name.
1359 Out << '\n';
Chris Lattner4ad02e72003-04-16 20:28:45 +00001360
Misha Brukman0313e0b2004-06-21 21:53:56 +00001361 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001362
Reid Spencer5cbf9852007-01-30 20:08:39 +00001363 if (F->isDeclaration())
Chris Lattner3aa60662007-08-19 22:15:26 +00001364 Out << "declare ";
1365 else
Reid Spencerb951bc02006-12-29 20:29:48 +00001366 Out << "define ";
Chris Lattnercfb5a202008-08-19 05:06:27 +00001367
1368 PrintLinkage(F->getLinkage(), Out);
1369 PrintVisibility(F->getVisibility(), Out);
Chris Lattner4ad02e72003-04-16 20:28:45 +00001370
Chris Lattnerd5118982005-05-06 20:26:43 +00001371 // Print the calling convention.
1372 switch (F->getCallingConv()) {
1373 case CallingConv::C: break; // default
Anton Korobeynikovf8248682006-09-20 22:03:51 +00001374 case CallingConv::Fast: Out << "fastcc "; break;
1375 case CallingConv::Cold: Out << "coldcc "; break;
1376 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1377 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerd5118982005-05-06 20:26:43 +00001378 default: Out << "cc" << F->getCallingConv() << " "; break;
1379 }
1380
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001381 const FunctionType *FT = F->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00001382 const AttrListPtr &Attrs = F->getAttributes();
Devang Patel652203f2008-09-29 20:49:50 +00001383 Attributes RetAttrs = Attrs.getRetAttributes();
1384 if (RetAttrs != Attribute::None)
1385 Out << Attribute::getAsString(Attrs.getRetAttributes()) << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001386 TypePrinter.print(F->getReturnType(), Out);
Chris Lattner4667b712008-08-19 05:26:17 +00001387 Out << ' ';
Chris Lattner9cc34462009-02-28 20:25:14 +00001388 WriteAsOperandInternal(Out, F, TypePrinter, &Machine);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001389 Out << '(';
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001390 Machine.incorporateFunction(F);
Chris Lattner007377f2001-09-07 16:36:04 +00001391
Chris Lattnerc1824992001-10-29 16:05:51 +00001392 // Loop over the arguments, printing them...
Chris Lattner007377f2001-09-07 16:36:04 +00001393
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001394 unsigned Idx = 1;
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001395 if (!F->isDeclaration()) {
1396 // If this isn't a declaration, print the argument names as well.
1397 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1398 I != E; ++I) {
1399 // Insert commas as we go... the first arg doesn't get a comma
1400 if (I != F->arg_begin()) Out << ", ";
Devang Patel19c87462008-09-26 22:53:05 +00001401 printArgument(I, Attrs.getParamAttributes(Idx));
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001402 Idx++;
1403 }
1404 } else {
1405 // Otherwise, print the types from the function type.
1406 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1407 // Insert commas as we go... the first arg doesn't get a comma
1408 if (i) Out << ", ";
1409
1410 // Output type...
Chris Lattner0f7364b2009-02-28 21:26:53 +00001411 TypePrinter.print(FT->getParamType(i), Out);
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001412
Devang Patel19c87462008-09-26 22:53:05 +00001413 Attributes ArgAttrs = Attrs.getParamAttributes(i+1);
Devang Patel05988662008-09-25 21:00:45 +00001414 if (ArgAttrs != Attribute::None)
1415 Out << ' ' << Attribute::getAsString(ArgAttrs);
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001416 }
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001417 }
Chris Lattner007377f2001-09-07 16:36:04 +00001418
1419 // Finish printing arguments...
Chris Lattner7e708292002-06-25 16:13:24 +00001420 if (FT->isVarArg()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001421 if (FT->getNumParams()) Out << ", ";
1422 Out << "..."; // Output varargs portion of signature!
Chris Lattner007377f2001-09-07 16:36:04 +00001423 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001424 Out << ')';
Devang Patel19c87462008-09-26 22:53:05 +00001425 Attributes FnAttrs = Attrs.getFnAttributes();
1426 if (FnAttrs != Attribute::None)
1427 Out << ' ' << Attribute::getAsString(Attrs.getFnAttributes());
Chris Lattner60962db2005-11-12 00:10:19 +00001428 if (F->hasSection())
1429 Out << " section \"" << F->getSection() << '"';
Chris Lattner30caa282005-11-06 06:48:53 +00001430 if (F->getAlignment())
1431 Out << " align " << F->getAlignment();
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001432 if (F->hasGC())
1433 Out << " gc \"" << F->getGC() << '"';
Reid Spencer5cbf9852007-01-30 20:08:39 +00001434 if (F->isDeclaration()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001435 Out << "\n";
Chris Lattner03e2acb2002-05-06 03:00:40 +00001436 } else {
Chris Lattnera1b58582008-04-21 06:12:55 +00001437 Out << " {";
Misha Brukmanfd939082005-04-21 23:48:37 +00001438
Chris Lattnerb5794002002-04-07 22:49:37 +00001439 // Output all of its basic blocks... for the function
Chris Lattner7e708292002-06-25 16:13:24 +00001440 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1441 printBasicBlock(I);
Chris Lattner007377f2001-09-07 16:36:04 +00001442
Misha Brukman0313e0b2004-06-21 21:53:56 +00001443 Out << "}\n";
Chris Lattner007377f2001-09-07 16:36:04 +00001444 }
1445
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001446 Machine.purgeFunction();
Chris Lattner00950542001-06-06 20:29:01 +00001447}
1448
Misha Brukmanab5c6002004-03-02 00:22:19 +00001449/// printArgument - This member is called for every argument that is passed into
1450/// the function. Simply print it out
1451///
Dale Johannesen0d51e7e2008-02-19 21:38:47 +00001452void AssemblyWriter::printArgument(const Argument *Arg,
Devang Pateleaf42ab2008-09-23 23:03:40 +00001453 Attributes Attrs) {
Chris Lattner00950542001-06-06 20:29:01 +00001454 // Output type...
Chris Lattner0f7364b2009-02-28 21:26:53 +00001455 TypePrinter.print(Arg->getType(), Out);
Misha Brukmanfd939082005-04-21 23:48:37 +00001456
Duncan Sandsdc024672007-11-27 13:23:08 +00001457 // Output parameter attributes list
Devang Patel05988662008-09-25 21:00:45 +00001458 if (Attrs != Attribute::None)
1459 Out << ' ' << Attribute::getAsString(Attrs);
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001460
Chris Lattner00950542001-06-06 20:29:01 +00001461 // Output name, if available...
Chris Lattnerc97536e2008-08-17 04:40:13 +00001462 if (Arg->hasName()) {
1463 Out << ' ';
1464 PrintLLVMName(Out, Arg);
1465 }
Chris Lattner00950542001-06-06 20:29:01 +00001466}
1467
Misha Brukmanab5c6002004-03-02 00:22:19 +00001468/// printBasicBlock - This member is called for each basic block in a method.
1469///
Chris Lattnerc1824992001-10-29 16:05:51 +00001470void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Nick Lewycky280a6e62008-04-25 16:53:59 +00001471 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattnerc97536e2008-08-17 04:40:13 +00001472 Out << "\n";
Chris Lattner52b26de2008-08-19 05:16:28 +00001473 PrintLLVMName(Out, BB->getNameStart(), BB->getNameLen(), LabelPrefix);
Chris Lattnerc97536e2008-08-17 04:40:13 +00001474 Out << ':';
Nick Lewycky280a6e62008-04-25 16:53:59 +00001475 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Chris Lattner96c5b2f2008-04-21 04:20:33 +00001476 Out << "\n; <label>:";
Chris Lattner22379bc2007-01-11 03:54:27 +00001477 int Slot = Machine.getLocalSlot(BB);
Chris Lattner69566452004-06-09 19:41:19 +00001478 if (Slot != -1)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001479 Out << Slot;
Chris Lattner69566452004-06-09 19:41:19 +00001480 else
Misha Brukman0313e0b2004-06-21 21:53:56 +00001481 Out << "<badref>";
Chris Lattner061269b2002-10-02 19:38:55 +00001482 }
Chris Lattner4e4d8622003-11-20 00:09:43 +00001483
1484 if (BB->getParent() == 0)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001485 Out << "\t\t; Error: Block without parent!";
Chris Lattnereb411292008-04-22 02:45:44 +00001486 else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
1487 // Output predecessors for the block...
1488 Out << "\t\t;";
1489 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
1490
1491 if (PI == PE) {
1492 Out << " No predecessors!";
1493 } else {
Dan Gohman8dae1382008-09-14 17:21:12 +00001494 Out << " preds = ";
Chris Lattnereb411292008-04-22 02:45:44 +00001495 writeOperand(*PI, false);
1496 for (++PI; PI != PE; ++PI) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001497 Out << ", ";
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001498 writeOperand(*PI, false);
Chris Lattner40efcec2003-11-16 22:59:57 +00001499 }
Chris Lattner061269b2002-10-02 19:38:55 +00001500 }
Chris Lattner00950542001-06-06 20:29:01 +00001501 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001502
Chris Lattnereb411292008-04-22 02:45:44 +00001503 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +00001504
Misha Brukman0313e0b2004-06-21 21:53:56 +00001505 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001506
Chris Lattner007377f2001-09-07 16:36:04 +00001507 // Output all of the instructions in the basic block...
Chris Lattner7e708292002-06-25 16:13:24 +00001508 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1509 printInstruction(*I);
Chris Lattner9f717ef2004-03-08 18:51:45 +00001510
Misha Brukman0313e0b2004-06-21 21:53:56 +00001511 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner00950542001-06-06 20:29:01 +00001512}
1513
Chris Lattnere02fa852001-10-13 06:42:36 +00001514
Misha Brukmanab5c6002004-03-02 00:22:19 +00001515/// printInfoComment - Print a little comment after the instruction indicating
1516/// which slot it occupies.
1517///
Chris Lattner7e708292002-06-25 16:13:24 +00001518void AssemblyWriter::printInfoComment(const Value &V) {
1519 if (V.getType() != Type::VoidTy) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001520 Out << "\t\t; <";
Chris Lattner0f7364b2009-02-28 21:26:53 +00001521 TypePrinter.print(V.getType(), Out);
Chris Lattner4667b712008-08-19 05:26:17 +00001522 Out << '>';
Chris Lattnere02fa852001-10-13 06:42:36 +00001523
Chris Lattner828db8a2008-08-29 17:19:30 +00001524 if (!V.hasName() && !isa<Instruction>(V)) {
Chris Lattner22379bc2007-01-11 03:54:27 +00001525 int SlotNum;
1526 if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1527 SlotNum = Machine.getGlobalSlot(GV);
1528 else
1529 SlotNum = Machine.getLocalSlot(&V);
Chris Lattner69566452004-06-09 19:41:19 +00001530 if (SlotNum == -1)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001531 Out << ":<badref>";
Reid Spencerfc621e22004-06-09 15:26:53 +00001532 else
Misha Brukman0313e0b2004-06-21 21:53:56 +00001533 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattnere02fa852001-10-13 06:42:36 +00001534 }
Chris Lattner5c461402005-02-01 01:24:01 +00001535 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattnere02fa852001-10-13 06:42:36 +00001536 }
1537}
1538
Reid Spencer3a9ec242006-08-28 01:02:49 +00001539// This member is called for each Instruction in a function..
Chris Lattner7e708292002-06-25 16:13:24 +00001540void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001541 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001542
Chris Lattnerab49ee72008-08-23 22:52:27 +00001543 Out << '\t';
Chris Lattner00950542001-06-06 20:29:01 +00001544
1545 // Print out name if it exists...
Chris Lattnerc97536e2008-08-17 04:40:13 +00001546 if (I.hasName()) {
1547 PrintLLVMName(Out, &I);
1548 Out << " = ";
Chris Lattner828db8a2008-08-29 17:19:30 +00001549 } else if (I.getType() != Type::VoidTy) {
1550 // Print out the def slot taken.
1551 int SlotNum = Machine.getLocalSlot(&I);
1552 if (SlotNum == -1)
1553 Out << "<badref> = ";
1554 else
1555 Out << '%' << SlotNum << " = ";
Chris Lattnerc97536e2008-08-17 04:40:13 +00001556 }
Chris Lattner00950542001-06-06 20:29:01 +00001557
Chris Lattnerddb6db42005-05-06 05:51:46 +00001558 // If this is a volatile load or store, print out the volatile marker.
Chris Lattnere5e475e2003-09-08 17:45:59 +00001559 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattnerddb6db42005-05-06 05:51:46 +00001560 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001561 Out << "volatile ";
Chris Lattnerddb6db42005-05-06 05:51:46 +00001562 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1563 // If this is a call, check if it's a tail call.
1564 Out << "tail ";
1565 }
Chris Lattnere5e475e2003-09-08 17:45:59 +00001566
Chris Lattner00950542001-06-06 20:29:01 +00001567 // Print out the opcode...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001568 Out << I.getOpcodeName();
Chris Lattner00950542001-06-06 20:29:01 +00001569
Reid Spencer74f16422006-12-03 06:27:29 +00001570 // Print out the compare instruction predicates
Nate Begemanac80ade2008-05-12 19:01:56 +00001571 if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
Chris Lattnerab49ee72008-08-23 22:52:27 +00001572 Out << ' ' << getPredicateText(CI->getPredicate());
Reid Spencer74f16422006-12-03 06:27:29 +00001573
Chris Lattner00950542001-06-06 20:29:01 +00001574 // Print out the type of the operands...
Chris Lattner7e708292002-06-25 16:13:24 +00001575 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner00950542001-06-06 20:29:01 +00001576
1577 // Special case conditional branches to swizzle the condition out to the front
Gabor Greifccd27fb2009-02-09 15:45:06 +00001578 if (isa<BranchInst>(I) && cast<BranchInst>(I).isConditional()) {
1579 BranchInst &BI(cast<BranchInst>(I));
Dan Gohman8dae1382008-09-14 17:21:12 +00001580 Out << ' ';
Gabor Greifccd27fb2009-02-09 15:45:06 +00001581 writeOperand(BI.getCondition(), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001582 Out << ", ";
Gabor Greifccd27fb2009-02-09 15:45:06 +00001583 writeOperand(BI.getSuccessor(0), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001584 Out << ", ";
Gabor Greifccd27fb2009-02-09 15:45:06 +00001585 writeOperand(BI.getSuccessor(1), true);
Chris Lattner00950542001-06-06 20:29:01 +00001586
Chris Lattner94dc1f22002-04-13 18:34:38 +00001587 } else if (isa<SwitchInst>(I)) {
Chris Lattner00950542001-06-06 20:29:01 +00001588 // Special case switch statement to get formatting nice and correct...
Dan Gohman8dae1382008-09-14 17:21:12 +00001589 Out << ' ';
Chris Lattnerab49ee72008-08-23 22:52:27 +00001590 writeOperand(Operand , true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001591 Out << ", ";
Chris Lattnerab49ee72008-08-23 22:52:27 +00001592 writeOperand(I.getOperand(1), true);
1593 Out << " [";
Chris Lattner00950542001-06-06 20:29:01 +00001594
Chris Lattner7e708292002-06-25 16:13:24 +00001595 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001596 Out << "\n\t\t";
Chris Lattnerab49ee72008-08-23 22:52:27 +00001597 writeOperand(I.getOperand(op ), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001598 Out << ", ";
Chris Lattner7e708292002-06-25 16:13:24 +00001599 writeOperand(I.getOperand(op+1), true);
Chris Lattner00950542001-06-06 20:29:01 +00001600 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001601 Out << "\n\t]";
Chris Lattnerb00c5822001-10-02 03:41:24 +00001602 } else if (isa<PHINode>(I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001603 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001604 TypePrinter.print(I.getType(), Out);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001605 Out << ' ';
Chris Lattner00950542001-06-06 20:29:01 +00001606
Chris Lattner7e708292002-06-25 16:13:24 +00001607 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001608 if (op) Out << ", ";
Dan Gohman8dae1382008-09-14 17:21:12 +00001609 Out << "[ ";
1610 writeOperand(I.getOperand(op ), false); Out << ", ";
Misha Brukman0313e0b2004-06-21 21:53:56 +00001611 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattnerc24d2082001-06-11 15:04:20 +00001612 }
Dan Gohman995be7d2008-05-31 19:12:39 +00001613 } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001614 Out << ' ';
Dan Gohman995be7d2008-05-31 19:12:39 +00001615 writeOperand(I.getOperand(0), true);
1616 for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
1617 Out << ", " << *i;
1618 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001619 Out << ' ';
1620 writeOperand(I.getOperand(0), true); Out << ", ";
Dan Gohman995be7d2008-05-31 19:12:39 +00001621 writeOperand(I.getOperand(1), true);
1622 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
1623 Out << ", " << *i;
Devang Patel57ef4f42008-02-23 00:35:18 +00001624 } else if (isa<ReturnInst>(I) && !Operand) {
1625 Out << " void";
Chris Lattnerd5118982005-05-06 20:26:43 +00001626 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1627 // Print the calling convention being used.
1628 switch (CI->getCallingConv()) {
1629 case CallingConv::C: break; // default
Chris Lattner0deaab82006-05-19 21:58:52 +00001630 case CallingConv::Fast: Out << " fastcc"; break;
1631 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerb28a6dc2007-11-18 18:32:16 +00001632 case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break;
1633 case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break;
Chris Lattnerd5118982005-05-06 20:26:43 +00001634 default: Out << " cc" << CI->getCallingConv(); break;
1635 }
1636
Reid Spencerb138a062007-04-09 06:10:42 +00001637 const PointerType *PTy = cast<PointerType>(Operand->getType());
1638 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1639 const Type *RetTy = FTy->getReturnType();
Devang Patel05988662008-09-25 21:00:45 +00001640 const AttrListPtr &PAL = CI->getAttributes();
Chris Lattner268de042001-11-06 21:28:12 +00001641
Devang Patel652203f2008-09-29 20:49:50 +00001642 if (PAL.getRetAttributes() != Attribute::None)
1643 Out << ' ' << Attribute::getAsString(PAL.getRetAttributes());
1644
Chris Lattner7a012292003-08-05 15:34:45 +00001645 // If possible, print out the short form of the call instruction. We can
Chris Lattnerb5794002002-04-07 22:49:37 +00001646 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner7a012292003-08-05 15:34:45 +00001647 // and if the return type is not a pointer to a function.
Chris Lattner268de042001-11-06 21:28:12 +00001648 //
Dan Gohman8dae1382008-09-14 17:21:12 +00001649 Out << ' ';
Chris Lattner7a012292003-08-05 15:34:45 +00001650 if (!FTy->isVarArg() &&
Misha Brukmanfd939082005-04-21 23:48:37 +00001651 (!isa<PointerType>(RetTy) ||
Chris Lattnerc1b27182002-07-25 20:58:51 +00001652 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001653 TypePrinter.print(RetTy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +00001654 Out << ' ';
Chris Lattner268de042001-11-06 21:28:12 +00001655 writeOperand(Operand, false);
1656 } else {
1657 writeOperand(Operand, true);
1658 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001659 Out << '(';
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001660 for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1661 if (op > 1)
Dan Gohman8dae1382008-09-14 17:21:12 +00001662 Out << ", ";
Devang Patel19c87462008-09-26 22:53:05 +00001663 writeParamOperand(I.getOperand(op), PAL.getParamAttributes(op));
Chris Lattner00950542001-06-06 20:29:01 +00001664 }
Dan Gohman8dae1382008-09-14 17:21:12 +00001665 Out << ')';
Devang Patel19c87462008-09-26 22:53:05 +00001666 if (PAL.getFnAttributes() != Attribute::None)
1667 Out << ' ' << Attribute::getAsString(PAL.getFnAttributes());
Chris Lattner7e708292002-06-25 16:13:24 +00001668 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Reid Spencerb138a062007-04-09 06:10:42 +00001669 const PointerType *PTy = cast<PointerType>(Operand->getType());
1670 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1671 const Type *RetTy = FTy->getReturnType();
Devang Patel05988662008-09-25 21:00:45 +00001672 const AttrListPtr &PAL = II->getAttributes();
Chris Lattner7a012292003-08-05 15:34:45 +00001673
Chris Lattnerd5118982005-05-06 20:26:43 +00001674 // Print the calling convention being used.
1675 switch (II->getCallingConv()) {
1676 case CallingConv::C: break; // default
Chris Lattner0deaab82006-05-19 21:58:52 +00001677 case CallingConv::Fast: Out << " fastcc"; break;
1678 case CallingConv::Cold: Out << " coldcc"; break;
Dan Gohman8dae1382008-09-14 17:21:12 +00001679 case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break;
1680 case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break;
Chris Lattnerd5118982005-05-06 20:26:43 +00001681 default: Out << " cc" << II->getCallingConv(); break;
1682 }
1683
Devang Patel652203f2008-09-29 20:49:50 +00001684 if (PAL.getRetAttributes() != Attribute::None)
1685 Out << ' ' << Attribute::getAsString(PAL.getRetAttributes());
1686
Chris Lattner7a012292003-08-05 15:34:45 +00001687 // If possible, print out the short form of the invoke instruction. We can
1688 // only do this if the first argument is a pointer to a nonvararg function,
1689 // and if the return type is not a pointer to a function.
1690 //
Dan Gohman2b6c3d92008-10-15 18:02:08 +00001691 Out << ' ';
Chris Lattner7a012292003-08-05 15:34:45 +00001692 if (!FTy->isVarArg() &&
Misha Brukmanfd939082005-04-21 23:48:37 +00001693 (!isa<PointerType>(RetTy) ||
Chris Lattner7a012292003-08-05 15:34:45 +00001694 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001695 TypePrinter.print(RetTy, Out);
Dan Gohman2b6c3d92008-10-15 18:02:08 +00001696 Out << ' ';
Chris Lattner7a012292003-08-05 15:34:45 +00001697 writeOperand(Operand, false);
1698 } else {
1699 writeOperand(Operand, true);
1700 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001701 Out << '(';
Bill Wendling9a507cd2009-03-13 21:15:59 +00001702 for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1703 if (op > 3)
Dan Gohman8dae1382008-09-14 17:21:12 +00001704 Out << ", ";
Bill Wendling9a507cd2009-03-13 21:15:59 +00001705 writeParamOperand(I.getOperand(op), PAL.getParamAttributes(op-2));
Chris Lattnere02fa852001-10-13 06:42:36 +00001706 }
1707
Dan Gohman8dae1382008-09-14 17:21:12 +00001708 Out << ')';
Devang Patel19c87462008-09-26 22:53:05 +00001709 if (PAL.getFnAttributes() != Attribute::None)
1710 Out << ' ' << Attribute::getAsString(PAL.getFnAttributes());
1711
Dan Gohman8dae1382008-09-14 17:21:12 +00001712 Out << "\n\t\t\tto ";
Chris Lattnere02fa852001-10-13 06:42:36 +00001713 writeOperand(II->getNormalDest(), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001714 Out << " unwind ";
Chris Lattneraeb2a1d2004-02-08 21:44:31 +00001715 writeOperand(II->getUnwindDest(), true);
Chris Lattnere02fa852001-10-13 06:42:36 +00001716
Chris Lattner7e708292002-06-25 16:13:24 +00001717 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001718 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001719 TypePrinter.print(AI->getType()->getElementType(), Out);
Chris Lattner94dc1f22002-04-13 18:34:38 +00001720 if (AI->isArrayAllocation()) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001721 Out << ", ";
Chris Lattner94dc1f22002-04-13 18:34:38 +00001722 writeOperand(AI->getArraySize(), true);
Chris Lattner00950542001-06-06 20:29:01 +00001723 }
Nate Begeman14b05292005-11-05 09:21:28 +00001724 if (AI->getAlignment()) {
Chris Lattner9fad0b92005-11-05 21:20:34 +00001725 Out << ", align " << AI->getAlignment();
Nate Begeman14b05292005-11-05 09:21:28 +00001726 }
Chris Lattnere02fa852001-10-13 06:42:36 +00001727 } else if (isa<CastInst>(I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001728 if (Operand) {
1729 Out << ' ';
1730 writeOperand(Operand, true); // Work with broken code
1731 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001732 Out << " to ";
Chris Lattner0f7364b2009-02-28 21:26:53 +00001733 TypePrinter.print(I.getType(), Out);
Chris Lattner4d45bd02003-10-18 05:57:43 +00001734 } else if (isa<VAArgInst>(I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001735 if (Operand) {
1736 Out << ' ';
1737 writeOperand(Operand, true); // Work with broken code
1738 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001739 Out << ", ";
Chris Lattner0f7364b2009-02-28 21:26:53 +00001740 TypePrinter.print(I.getType(), Out);
1741 } else if (Operand) { // Print the normal way.
Chris Lattner00950542001-06-06 20:29:01 +00001742
Misha Brukmanfd939082005-04-21 23:48:37 +00001743 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner00950542001-06-06 20:29:01 +00001744 // omit the type from all but the first operand. If the instruction has
1745 // different type operands (for example br), then they are all printed.
1746 bool PrintAllTypes = false;
1747 const Type *TheType = Operand->getType();
Chris Lattner00950542001-06-06 20:29:01 +00001748
Reid Spencerebe57e32007-02-02 13:54:55 +00001749 // Select, Store and ShuffleVector always print all types.
Devang Patel64947682008-03-04 22:05:14 +00001750 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
1751 || isa<ReturnInst>(I)) {
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001752 PrintAllTypes = true;
1753 } else {
1754 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1755 Operand = I.getOperand(i);
Nuno Lopes6ad2b2a2009-01-15 18:40:57 +00001756 // note that Operand shouldn't be null, but the test helps make dump()
1757 // more tolerant of malformed IR
Nuno Lopesa8c78a92009-01-14 17:51:41 +00001758 if (Operand && Operand->getType() != TheType) {
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001759 PrintAllTypes = true; // We have differing types! Print them all!
1760 break;
1761 }
Chris Lattner00950542001-06-06 20:29:01 +00001762 }
1763 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001764
Chris Lattnerc1824992001-10-29 16:05:51 +00001765 if (!PrintAllTypes) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001766 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001767 TypePrinter.print(TheType, Out);
Chris Lattnerc1824992001-10-29 16:05:51 +00001768 }
Chris Lattner00950542001-06-06 20:29:01 +00001769
Dan Gohman8dae1382008-09-14 17:21:12 +00001770 Out << ' ';
Chris Lattner7e708292002-06-25 16:13:24 +00001771 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001772 if (i) Out << ", ";
Chris Lattner7e708292002-06-25 16:13:24 +00001773 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner00950542001-06-06 20:29:01 +00001774 }
1775 }
Christopher Lamb43c7f372007-04-22 19:24:39 +00001776
1777 // Print post operand alignment for load/store
1778 if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1779 Out << ", align " << cast<LoadInst>(I).getAlignment();
1780 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1781 Out << ", align " << cast<StoreInst>(I).getAlignment();
1782 }
Chris Lattner00950542001-06-06 20:29:01 +00001783
Chris Lattnere02fa852001-10-13 06:42:36 +00001784 printInfoComment(I);
Chris Lattnerab49ee72008-08-23 22:52:27 +00001785 Out << '\n';
Chris Lattner00950542001-06-06 20:29:01 +00001786}
1787
1788
1789//===----------------------------------------------------------------------===//
1790// External Interface declarations
1791//===----------------------------------------------------------------------===//
1792
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001793void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner944fac72008-08-23 22:23:09 +00001794 raw_os_ostream OS(o);
1795 print(OS, AAW);
1796}
1797void Module::print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const {
Chris Lattner0d9574a2008-08-19 04:26:57 +00001798 SlotTracker SlotTable(this);
Chris Lattner944fac72008-08-23 22:23:09 +00001799 AssemblyWriter W(OS, SlotTable, this, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001800 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001801}
1802
Misha Brukmanfd939082005-04-21 23:48:37 +00001803void Type::print(std::ostream &o) const {
Chris Lattner944fac72008-08-23 22:23:09 +00001804 raw_os_ostream OS(o);
1805 print(OS);
1806}
1807
Chris Lattner6d4306e2009-02-28 21:11:05 +00001808void Type::print(raw_ostream &OS) const {
1809 if (this == 0) {
1810 OS << "<null Type>";
1811 return;
1812 }
Chris Lattnere9fa33e2009-02-28 23:20:19 +00001813 TypePrinting().print(this, OS);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001814}
1815
Chris Lattner944fac72008-08-23 22:23:09 +00001816void Value::print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const {
1817 if (this == 0) {
1818 OS << "printing a <null> value\n";
1819 return;
1820 }
1821
1822 if (const Instruction *I = dyn_cast<Instruction>(this)) {
1823 const Function *F = I->getParent() ? I->getParent()->getParent() : 0;
1824 SlotTracker SlotTable(F);
1825 AssemblyWriter W(OS, SlotTable, F ? F->getParent() : 0, AAW);
1826 W.write(I);
1827 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(this)) {
1828 SlotTracker SlotTable(BB->getParent());
1829 AssemblyWriter W(OS, SlotTable,
1830 BB->getParent() ? BB->getParent()->getParent() : 0, AAW);
1831 W.write(BB);
1832 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
1833 SlotTracker SlotTable(GV->getParent());
1834 AssemblyWriter W(OS, SlotTable, GV->getParent(), 0);
1835 W.write(GV);
1836 } else if (const Constant *C = dyn_cast<Constant>(this)) {
Chris Lattnere9fa33e2009-02-28 23:20:19 +00001837 TypePrinting TypePrinter;
Chris Lattner0f7364b2009-02-28 21:26:53 +00001838 TypePrinter.print(C->getType(), OS);
Chris Lattner6d4306e2009-02-28 21:11:05 +00001839 OS << ' ';
Chris Lattner9cc34462009-02-28 20:25:14 +00001840 WriteConstantInt(OS, C, TypePrinter, 0);
Chris Lattner944fac72008-08-23 22:23:09 +00001841 } else if (const Argument *A = dyn_cast<Argument>(this)) {
1842 WriteAsOperand(OS, this, true,
1843 A->getParent() ? A->getParent()->getParent() : 0);
1844 } else if (isa<InlineAsm>(this)) {
1845 WriteAsOperand(OS, this, true, 0);
1846 } else {
Dan Gohmand71703d2008-12-03 21:37:21 +00001847 assert(0 && "Unknown value to print out!");
Chris Lattner944fac72008-08-23 22:23:09 +00001848 }
1849}
1850
1851void Value::print(std::ostream &O, AssemblyAnnotationWriter *AAW) const {
1852 raw_os_ostream OS(O);
1853 print(OS, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001854}
1855
Chris Lattner7059e532008-08-25 17:03:15 +00001856// Value::dump - allow easy printing of Values from the debugger.
Dan Gohmanf871ccb2009-03-23 15:57:19 +00001857void Value::dump() const { print(errs()); errs() << '\n'; }
Reid Spencerfa452c02004-05-25 18:14:38 +00001858
Chris Lattner7059e532008-08-25 17:03:15 +00001859// Type::dump - allow easy printing of Types from the debugger.
Chris Lattner795daec2008-10-01 20:16:19 +00001860// This one uses type names from the given context module
1861void Type::dump(const Module *Context) const {
1862 WriteTypeSymbolic(errs(), this, Context);
1863 errs() << '\n';
Chris Lattner795daec2008-10-01 20:16:19 +00001864}
1865
Chris Lattnerc2871372009-02-28 21:05:51 +00001866// Type::dump - allow easy printing of Types from the debugger.
1867void Type::dump() const { dump(0); }
1868
Chris Lattner7059e532008-08-25 17:03:15 +00001869// Module::dump() - Allow printing of Modules from the debugger.
Dan Gohmanf871ccb2009-03-23 15:57:19 +00001870void Module::dump() const { print(errs(), 0); }