blob: 146cabaeb406894cfa21888e619b83239ce59f2d [file] [log] [blame]
Chris Lattnerf7e79482002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Assembly/Writer.h
11//
Chris Lattner189088e2002-04-12 18:21:53 +000012// Note that these routines must be extremely tolerant of various errors in the
Chris Lattnerf70da102003-05-08 02:44:12 +000013// LLVM code, because it can be used for debugging transformations.
Chris Lattner189088e2002-04-12 18:21:53 +000014//
Chris Lattner2f7c9632001-06-06 20:29:01 +000015//===----------------------------------------------------------------------===//
16
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +000017#include "llvm/Assembly/Writer.h"
Chris Lattner7f8845a2002-07-23 18:07:49 +000018#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner8339f7d2003-10-30 23:41:03 +000019#include "llvm/Assembly/AsmAnnotationWriter.h"
Chris Lattnerf7b6d312005-05-06 20:26:43 +000020#include "llvm/CallingConv.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000021#include "llvm/Constants.h"
Chris Lattner913d18f2002-04-29 18:46:50 +000022#include "llvm/DerivedTypes.h"
Chris Lattner8bbcda22006-01-25 18:57:27 +000023#include "llvm/InlineAsm.h"
Vikram S. Adveb952b542002-07-14 23:14:45 +000024#include "llvm/Instruction.h"
Misha Brukman2d3fa9e2004-07-29 16:53:53 +000025#include "llvm/Instructions.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000026#include "llvm/Module.h"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000027#include "llvm/ValueSymbolTable.h"
Reid Spencer32af9e82007-01-06 07:24:44 +000028#include "llvm/TypeSymbolTable.h"
Chris Lattnera204d412008-08-17 17:25:25 +000029#include "llvm/ADT/DenseMap.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000030#include "llvm/ADT/StringExtras.h"
31#include "llvm/ADT/STLExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000032#include "llvm/Support/CFG.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000033#include "llvm/Support/MathExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000034#include "llvm/Support/Streams.h"
Chris Lattner393b7cd2008-08-17 04:17:45 +000035#include "llvm/Support/raw_ostream.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000036#include <algorithm>
Reid Spencerbdf03b42007-05-22 19:27:35 +000037#include <cctype>
Chris Lattner189d19f2003-11-21 20:23:48 +000038using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000039
Reid Spencer294715b2005-05-15 16:13:11 +000040// Make virtual table appear in this compilation unit.
41AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
42
Chris Lattner3eee99c2008-08-19 04:36:02 +000043char PrintModulePass::ID = 0;
44static RegisterPass<PrintModulePass>
45X("printm", "Print module to stderr");
46char PrintFunctionPass::ID = 0;
47static RegisterPass<PrintFunctionPass>
48Y("print","Print function to stderr");
49
50
51//===----------------------------------------------------------------------===//
52// Helper Functions
53//===----------------------------------------------------------------------===//
54
55static const Module *getModuleFromVal(const Value *V) {
56 if (const Argument *MA = dyn_cast<Argument>(V))
57 return MA->getParent() ? MA->getParent()->getParent() : 0;
58
59 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
60 return BB->getParent() ? BB->getParent()->getParent() : 0;
61
62 if (const Instruction *I = dyn_cast<Instruction>(V)) {
63 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
64 return M ? M->getParent() : 0;
65 }
66
67 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
68 return GV->getParent();
69 return 0;
70}
71
72
73/// NameNeedsQuotes - Return true if the specified llvm name should be wrapped
74/// with ""'s.
75static std::string QuoteNameIfNeeded(const std::string &Name) {
76 std::string result;
77 bool needsQuotes = Name[0] >= '0' && Name[0] <= '9';
78 // Scan the name to see if it needs quotes and to replace funky chars with
79 // their octal equivalent.
80 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
81 char C = Name[i];
82 assert(C != '"' && "Illegal character in LLVM value name!");
83 if (isalnum(C) || C == '-' || C == '.' || C == '_')
84 result += C;
85 else if (C == '\\') {
86 needsQuotes = true;
87 result += "\\\\";
88 } else if (isprint(C)) {
89 needsQuotes = true;
90 result += C;
91 } else {
92 needsQuotes = true;
93 result += "\\";
94 char hex1 = (C >> 4) & 0x0F;
95 if (hex1 < 10)
96 result += hex1 + '0';
97 else
98 result += hex1 - 10 + 'A';
99 char hex2 = C & 0x0F;
100 if (hex2 < 10)
101 result += hex2 + '0';
102 else
103 result += hex2 - 10 + 'A';
104 }
105 }
106 if (needsQuotes) {
107 result.insert(0,"\"");
108 result += '"';
109 }
110 return result;
111}
112
Chris Lattner585297e82008-08-19 05:26:17 +0000113/// getLLVMName - Turn the specified string into an 'LLVM name', which is
114/// surrounded with ""'s and escaped if it has special chars in it.
Chris Lattner3eee99c2008-08-19 04:36:02 +0000115static std::string getLLVMName(const std::string &Name) {
116 assert(!Name.empty() && "Cannot get empty name!");
Chris Lattner585297e82008-08-19 05:26:17 +0000117 return QuoteNameIfNeeded(Name);
Chris Lattner3eee99c2008-08-19 04:36:02 +0000118}
119
120enum PrefixType {
121 GlobalPrefix,
122 LabelPrefix,
123 LocalPrefix
124};
125
126/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
127/// prefixed with % (if the string only contains simple characters) or is
128/// surrounded with ""'s (if it has special chars in it). Print it out.
Chris Lattner1508d3f2008-08-19 05:16:28 +0000129static void PrintLLVMName(std::ostream &OS, const char *NameStr,
130 unsigned NameLen, PrefixType Prefix) {
131 assert(NameStr && "Cannot get empty name!");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000132 switch (Prefix) {
Chris Lattner1508d3f2008-08-19 05:16:28 +0000133 default: assert(0 && "Bad prefix!");
134 case GlobalPrefix: OS << '@'; break;
135 case LabelPrefix: break;
136 case LocalPrefix: OS << '%'; break;
Chris Lattner3eee99c2008-08-19 04:36:02 +0000137 }
138
139 // Scan the name to see if it needs quotes first.
Chris Lattner3eee99c2008-08-19 04:36:02 +0000140 bool NeedsQuotes = NameStr[0] >= '0' && NameStr[0] <= '9';
141 if (!NeedsQuotes) {
142 for (unsigned i = 0; i != NameLen; ++i) {
143 char C = NameStr[i];
144 if (!isalnum(C) && C != '-' && C != '.' && C != '_') {
145 NeedsQuotes = true;
146 break;
147 }
148 }
149 }
150
151 // If we didn't need any quotes, just write out the name in one blast.
152 if (!NeedsQuotes) {
153 OS.write(NameStr, NameLen);
154 return;
155 }
156
157 // Okay, we need quotes. Output the quotes and escape any scary characters as
158 // needed.
159 OS << '"';
160 for (unsigned i = 0; i != NameLen; ++i) {
161 char C = NameStr[i];
162 assert(C != '"' && "Illegal character in LLVM value name!");
163 if (C == '\\') {
164 OS << "\\\\";
165 } else if (isprint(C)) {
166 OS << C;
167 } else {
168 OS << '\\';
169 char hex1 = (C >> 4) & 0x0F;
170 if (hex1 < 10)
171 OS << (char)(hex1 + '0');
172 else
173 OS << (char)(hex1 - 10 + 'A');
174 char hex2 = C & 0x0F;
175 if (hex2 < 10)
176 OS << (char)(hex2 + '0');
177 else
178 OS << (char)(hex2 - 10 + 'A');
179 }
180 }
181 OS << '"';
182}
183
184/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
185/// prefixed with % (if the string only contains simple characters) or is
186/// surrounded with ""'s (if it has special chars in it). Print it out.
187static void PrintLLVMName(std::ostream &OS, const Value *V) {
Chris Lattner1508d3f2008-08-19 05:16:28 +0000188 PrintLLVMName(OS, V->getNameStart(), V->getNameLen(),
Chris Lattner3eee99c2008-08-19 04:36:02 +0000189 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
190}
191
192
193
194//===----------------------------------------------------------------------===//
195// SlotTracker Class: Enumerate slot numbers for unnamed values
196//===----------------------------------------------------------------------===//
197
Chris Lattner3ee58762008-08-19 04:28:07 +0000198namespace {
199
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000200/// This class provides computation of slot numbers for LLVM Assembly writing.
Chris Lattner393b7cd2008-08-17 04:17:45 +0000201///
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000202class SlotTracker {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000203public:
Chris Lattner393b7cd2008-08-17 04:17:45 +0000204 /// ValueMap - A mapping of Values to slot numbers
Chris Lattnera204d412008-08-17 17:25:25 +0000205 typedef DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner393b7cd2008-08-17 04:17:45 +0000206
207private:
208 /// TheModule - The module for which we are holding slot numbers
209 const Module* TheModule;
210
211 /// TheFunction - The function for which we are holding slot numbers
212 const Function* TheFunction;
213 bool FunctionProcessed;
214
215 /// mMap - The TypePlanes map for the module level data
216 ValueMap mMap;
217 unsigned mNext;
218
219 /// fMap - The TypePlanes map for the function level data
220 ValueMap fMap;
221 unsigned fNext;
222
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000223public:
Chris Lattner393b7cd2008-08-17 04:17:45 +0000224 /// Construct from a module
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000225 explicit SlotTracker(const Module *M);
Chris Lattner393b7cd2008-08-17 04:17:45 +0000226 /// Construct from a function, starting out in incorp state.
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000227 explicit SlotTracker(const Function *F);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000228
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000229 /// Return the slot number of the specified value in it's type
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000230 /// plane. If something is not in the SlotTracker, return -1.
Chris Lattner5e043322007-01-11 03:54:27 +0000231 int getLocalSlot(const Value *V);
232 int getGlobalSlot(const GlobalValue *V);
Reid Spencer8beac692004-06-09 15:26:53 +0000233
Misha Brukmanb1c93172005-04-21 23:48:37 +0000234 /// If you'd like to deal with a function instead of just a module, use
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000235 /// this method to get its data into the SlotTracker.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000236 void incorporateFunction(const Function *F) {
237 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000238 FunctionProcessed = false;
239 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000240
Misha Brukmanb1c93172005-04-21 23:48:37 +0000241 /// After calling incorporateFunction, use this method to remove the
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000242 /// most recently incorporated function from the SlotTracker. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000243 /// will reset the state of the machine back to just the module contents.
244 void purgeFunction();
245
Chris Lattner393b7cd2008-08-17 04:17:45 +0000246 // Implementation Details
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000247private:
Reid Spencer56010e42004-05-26 21:56:09 +0000248 /// This function does the actual initialization.
249 inline void initialize();
250
Chris Lattnerea862a32007-01-09 07:55:49 +0000251 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
252 void CreateModuleSlot(const GlobalValue *V);
253
254 /// CreateFunctionSlot - Insert the specified Value* into the slot table.
255 void CreateFunctionSlot(const Value *V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000256
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000257 /// Add all of the module level global variables (and their initializers)
258 /// and function declarations, but not the contents of those functions.
259 void processModule();
260
Reid Spencer56010e42004-05-26 21:56:09 +0000261 /// Add all of the functions arguments, basic blocks, and instructions
262 void processFunction();
263
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000264 SlotTracker(const SlotTracker &); // DO NOT IMPLEMENT
265 void operator=(const SlotTracker &); // DO NOT IMPLEMENT
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000266};
267
Chris Lattner3ee58762008-08-19 04:28:07 +0000268} // end anonymous namespace
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000269
Chris Lattner3eee99c2008-08-19 04:36:02 +0000270
271static SlotTracker *createSlotTracker(const Value *V) {
272 if (const Argument *FA = dyn_cast<Argument>(V))
273 return new SlotTracker(FA->getParent());
274
275 if (const Instruction *I = dyn_cast<Instruction>(V))
276 return new SlotTracker(I->getParent()->getParent());
277
278 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
279 return new SlotTracker(BB->getParent());
280
281 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
282 return new SlotTracker(GV->getParent());
283
284 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
285 return new SlotTracker(GA->getParent());
286
287 if (const Function *Func = dyn_cast<Function>(V))
288 return new SlotTracker(Func);
289
290 return 0;
291}
292
293#if 0
Chris Lattner604e3512008-08-19 04:47:09 +0000294#define ST_DEBUG(X) cerr << X
Chris Lattner3eee99c2008-08-19 04:36:02 +0000295#else
Chris Lattner604e3512008-08-19 04:47:09 +0000296#define ST_DEBUG(X)
Chris Lattner3eee99c2008-08-19 04:36:02 +0000297#endif
298
299// Module level constructor. Causes the contents of the Module (sans functions)
300// to be added to the slot table.
301SlotTracker::SlotTracker(const Module *M)
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000302 : TheModule(M), TheFunction(0), FunctionProcessed(false), mNext(0), fNext(0) {
Chris Lattner3eee99c2008-08-19 04:36:02 +0000303}
304
305// Function level constructor. Causes the contents of the Module and the one
306// function provided to be added to the slot table.
307SlotTracker::SlotTracker(const Function *F)
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000308 : TheModule(F ? F->getParent() : 0), TheFunction(F), FunctionProcessed(false),
309 mNext(0), fNext(0) {
Chris Lattner3eee99c2008-08-19 04:36:02 +0000310}
311
312inline void SlotTracker::initialize() {
313 if (TheModule) {
314 processModule();
315 TheModule = 0; ///< Prevent re-processing next time we're called.
316 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000317
Chris Lattner3eee99c2008-08-19 04:36:02 +0000318 if (TheFunction && !FunctionProcessed)
319 processFunction();
320}
321
322// Iterate through all the global variables, functions, and global
323// variable initializers and create slots for them.
324void SlotTracker::processModule() {
Chris Lattner604e3512008-08-19 04:47:09 +0000325 ST_DEBUG("begin processModule!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000326
327 // Add all of the unnamed global variables to the value table.
328 for (Module::const_global_iterator I = TheModule->global_begin(),
329 E = TheModule->global_end(); I != E; ++I)
330 if (!I->hasName())
331 CreateModuleSlot(I);
332
333 // Add all the unnamed functions to the table.
334 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
335 I != E; ++I)
336 if (!I->hasName())
337 CreateModuleSlot(I);
338
Chris Lattner604e3512008-08-19 04:47:09 +0000339 ST_DEBUG("end processModule!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000340}
341
342
343// Process the arguments, basic blocks, and instructions of a function.
344void SlotTracker::processFunction() {
Chris Lattner604e3512008-08-19 04:47:09 +0000345 ST_DEBUG("begin processFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000346 fNext = 0;
347
348 // Add all the function arguments with no names.
349 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
350 AE = TheFunction->arg_end(); AI != AE; ++AI)
351 if (!AI->hasName())
352 CreateFunctionSlot(AI);
353
Chris Lattner604e3512008-08-19 04:47:09 +0000354 ST_DEBUG("Inserting Instructions:\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000355
356 // Add all of the basic blocks and instructions with no names.
357 for (Function::const_iterator BB = TheFunction->begin(),
358 E = TheFunction->end(); BB != E; ++BB) {
359 if (!BB->hasName())
360 CreateFunctionSlot(BB);
361 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
362 if (I->getType() != Type::VoidTy && !I->hasName())
363 CreateFunctionSlot(I);
364 }
365
366 FunctionProcessed = true;
367
Chris Lattner604e3512008-08-19 04:47:09 +0000368 ST_DEBUG("end processFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000369}
370
371/// Clean up after incorporating a function. This is the only way to get out of
372/// the function incorporation state that affects get*Slot/Create*Slot. Function
373/// incorporation state is indicated by TheFunction != 0.
374void SlotTracker::purgeFunction() {
Chris Lattner604e3512008-08-19 04:47:09 +0000375 ST_DEBUG("begin purgeFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000376 fMap.clear(); // Simply discard the function level map
377 TheFunction = 0;
378 FunctionProcessed = false;
Chris Lattner604e3512008-08-19 04:47:09 +0000379 ST_DEBUG("end purgeFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000380}
381
382/// getGlobalSlot - Get the slot number of a global value.
383int SlotTracker::getGlobalSlot(const GlobalValue *V) {
384 // Check for uninitialized state and do lazy initialization.
385 initialize();
386
387 // Find the type plane in the module map
388 ValueMap::iterator MI = mMap.find(V);
389 return MI == mMap.end() ? -1 : MI->second;
390}
391
392
393/// getLocalSlot - Get the slot number for a value that is local to a function.
394int SlotTracker::getLocalSlot(const Value *V) {
395 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
396
397 // Check for uninitialized state and do lazy initialization.
398 initialize();
399
400 ValueMap::iterator FI = fMap.find(V);
401 return FI == fMap.end() ? -1 : FI->second;
402}
403
404
405/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
406void SlotTracker::CreateModuleSlot(const GlobalValue *V) {
407 assert(V && "Can't insert a null Value into SlotTracker!");
408 assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
409 assert(!V->hasName() && "Doesn't need a slot!");
410
411 unsigned DestSlot = mNext++;
412 mMap[V] = DestSlot;
413
Chris Lattner604e3512008-08-19 04:47:09 +0000414 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner3eee99c2008-08-19 04:36:02 +0000415 DestSlot << " [");
416 // G = Global, F = Function, A = Alias, o = other
Chris Lattner604e3512008-08-19 04:47:09 +0000417 ST_DEBUG((isa<GlobalVariable>(V) ? 'G' :
Chris Lattner3eee99c2008-08-19 04:36:02 +0000418 (isa<Function>(V) ? 'F' :
419 (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n");
420}
421
422
423/// CreateSlot - Create a new slot for the specified value if it has no name.
424void SlotTracker::CreateFunctionSlot(const Value *V) {
425 assert(V->getType() != Type::VoidTy && !V->hasName() &&
426 "Doesn't need a slot!");
427
428 unsigned DestSlot = fNext++;
429 fMap[V] = DestSlot;
430
431 // G = Global, F = Function, o = other
Chris Lattner604e3512008-08-19 04:47:09 +0000432 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner3eee99c2008-08-19 04:36:02 +0000433 DestSlot << " [o]\n");
434}
435
436
437
438//===----------------------------------------------------------------------===//
439// AsmWriter Implementation
440//===----------------------------------------------------------------------===//
Chris Lattner7f8845a2002-07-23 18:07:49 +0000441
Misha Brukmanb1c93172005-04-21 23:48:37 +0000442static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnera9f0a112006-12-06 05:50:41 +0000443 std::map<const Type *, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000444 SlotTracker *Machine);
Reid Spencer58d30f22004-07-04 11:50:43 +0000445
Chris Lattner033935d2008-08-17 04:40:13 +0000446
Chris Lattnerb86620e2001-10-29 16:37:48 +0000447
Misha Brukmanc566ca362004-03-02 00:22:19 +0000448/// fillTypeNameTable - If the module has a symbol table, take all global types
449/// and stuff their names into the TypeNames map.
450///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000451static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000452 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000453 if (!M) return;
Reid Spencer32af9e82007-01-06 07:24:44 +0000454 const TypeSymbolTable &ST = M->getTypeSymbolTable();
455 TypeSymbolTable::const_iterator TI = ST.begin();
456 for (; TI != ST.end(); ++TI) {
Reid Spencere7e96712004-05-25 08:53:40 +0000457 // As a heuristic, don't insert pointer to primitive types, because
458 // they are used too often to have a single useful name.
459 //
460 const Type *Ty = cast<Type>(TI->second);
461 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000462 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
Chris Lattner03c49532007-01-15 02:27:26 +0000463 !cast<PointerType>(Ty)->getElementType()->isInteger() ||
Reid Spencer56010e42004-05-26 21:56:09 +0000464 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Chris Lattner585297e82008-08-19 05:26:17 +0000465 TypeNames.insert(std::make_pair(Ty, '%' + getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000466 }
467}
468
469
470
Misha Brukmanb1c93172005-04-21 23:48:37 +0000471static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000472 std::vector<const Type *> &TypeStack,
473 std::map<const Type *, std::string> &TypeNames,
Chris Lattner585297e82008-08-19 05:26:17 +0000474 std::string &Result) {
Chris Lattner03c49532007-01-15 02:27:26 +0000475 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
John Criswellcd116ba2004-06-01 14:54:08 +0000476 Result += Ty->getDescription(); // Base case
477 return;
478 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000479
480 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000481 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000482 if (I != TypeNames.end()) {
483 Result += I->second;
484 return;
485 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000486
John Criswellcd116ba2004-06-01 14:54:08 +0000487 if (isa<OpaqueType>(Ty)) {
488 Result += "opaque";
489 return;
490 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000491
Chris Lattnerb86620e2001-10-29 16:37:48 +0000492 // Check to see if the Type is already on the stack...
493 unsigned Slot = 0, CurSize = TypeStack.size();
494 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
495
Misha Brukmanb1c93172005-04-21 23:48:37 +0000496 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000497 // that we have looped back to a type that we have previously visited.
498 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000499 if (Slot < CurSize) {
500 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
501 return;
502 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000503
504 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000505
Chris Lattner6b727592004-06-17 18:19:28 +0000506 switch (Ty->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000507 case Type::IntegerTyID: {
508 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc8721592007-01-12 07:25:20 +0000509 Result += "i" + utostr(BitWidth);
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000510 break;
511 }
Chris Lattner91db5822002-03-29 03:44:36 +0000512 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000513 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000514 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
515 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000516 for (FunctionType::param_iterator I = FTy->param_begin(),
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000517 E = FTy->param_end(); I != E; ++I) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000518 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000519 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000520 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000521 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000522 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000523 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000524 Result += "...";
525 }
526 Result += ")";
527 break;
528 }
529 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000530 const StructType *STy = cast<StructType>(Ty);
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000531 if (STy->isPacked())
532 Result += '<';
John Criswellcd116ba2004-06-01 14:54:08 +0000533 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000534 for (StructType::element_iterator I = STy->element_begin(),
535 E = STy->element_end(); I != E; ++I) {
536 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000537 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000538 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000539 }
540 Result += " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000541 if (STy->isPacked())
542 Result += '>';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000543 break;
544 }
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000545 case Type::PointerTyID: {
546 const PointerType *PTy = cast<PointerType>(Ty);
Chris Lattner585297e82008-08-19 05:26:17 +0000547 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000548 if (unsigned AddressSpace = PTy->getAddressSpace())
549 Result += " addrspace(" + utostr(AddressSpace) + ")";
John Criswellcd116ba2004-06-01 14:54:08 +0000550 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000551 break;
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000552 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000553 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000554 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000555 Result += "[" + utostr(ATy->getNumElements()) + " x ";
556 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
557 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000558 break;
559 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000560 case Type::VectorTyID: {
561 const VectorType *PTy = cast<VectorType>(Ty);
Brian Gaeke02209042004-08-20 06:00:58 +0000562 Result += "<" + utostr(PTy->getNumElements()) + " x ";
563 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
564 Result += ">";
565 break;
566 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000567 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000568 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000569 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000570 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000571 Result += "<unrecognized-type>";
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000572 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000573 }
574
575 TypeStack.pop_back(); // Remove self from stack...
Chris Lattnerb86620e2001-10-29 16:37:48 +0000576}
577
578
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000579/// printTypeInt - The internal guts of printing out a type that has a
580/// potentially named portion.
581///
Chris Lattner585297e82008-08-19 05:26:17 +0000582static void printTypeInt(std::ostream &Out, const Type *Ty,
583 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000584 // Primitive types always print out their description, regardless of whether
585 // they have been named or not.
586 //
Chris Lattner585297e82008-08-19 05:26:17 +0000587 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
588 Out << Ty->getDescription();
589 return;
590 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000591
592 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000593 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner585297e82008-08-19 05:26:17 +0000594 if (I != TypeNames.end()) {
595 Out << I->second;
596 return;
597 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000598
599 // Otherwise we have a type that has not been named but is a derived type.
600 // Carefully recurse the type hierarchy to print out any contained symbolic
601 // names.
602 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000603 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000604 std::string TypeName;
605 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000606 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
Chris Lattner585297e82008-08-19 05:26:17 +0000607 Out << TypeName;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000608}
609
Chris Lattner34b95182001-10-31 04:33:19 +0000610
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000611/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
612/// type, iff there is an entry in the modules symbol table for the specified
613/// type or one of it's component types. This is slower than a simple x << Type
614///
Chris Lattner604e3512008-08-19 04:47:09 +0000615void llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
616 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000617 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000618
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000619 // If they want us to print out a type, but there is no context, we can't
620 // print it symbolically.
Chris Lattner604e3512008-08-19 04:47:09 +0000621 if (!M) {
622 Out << Ty->getDescription();
623 } else {
624 std::map<const Type *, std::string> TypeNames;
625 fillTypeNameTable(M, TypeNames);
626 printTypeInt(Out, Ty, TypeNames);
627 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000628}
629
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000630// PrintEscapedString - Print each character of the specified string, escaping
631// it if it is not printable or if it is an escape char.
632static void PrintEscapedString(const std::string &Str, std::ostream &Out) {
633 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
634 unsigned char C = Str[i];
635 if (isprint(C) && C != '"' && C != '\\') {
636 Out << C;
637 } else {
638 Out << '\\'
639 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
640 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
641 }
642 }
643}
644
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000645static const char *getPredicateText(unsigned predicate) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000646 const char * pred = "unknown";
647 switch (predicate) {
648 case FCmpInst::FCMP_FALSE: pred = "false"; break;
649 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
650 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
651 case FCmpInst::FCMP_OGE: pred = "oge"; break;
652 case FCmpInst::FCMP_OLT: pred = "olt"; break;
653 case FCmpInst::FCMP_OLE: pred = "ole"; break;
654 case FCmpInst::FCMP_ONE: pred = "one"; break;
655 case FCmpInst::FCMP_ORD: pred = "ord"; break;
656 case FCmpInst::FCMP_UNO: pred = "uno"; break;
657 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
658 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
659 case FCmpInst::FCMP_UGE: pred = "uge"; break;
660 case FCmpInst::FCMP_ULT: pred = "ult"; break;
661 case FCmpInst::FCMP_ULE: pred = "ule"; break;
662 case FCmpInst::FCMP_UNE: pred = "une"; break;
663 case FCmpInst::FCMP_TRUE: pred = "true"; break;
664 case ICmpInst::ICMP_EQ: pred = "eq"; break;
665 case ICmpInst::ICMP_NE: pred = "ne"; break;
666 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
667 case ICmpInst::ICMP_SGE: pred = "sge"; break;
668 case ICmpInst::ICMP_SLT: pred = "slt"; break;
669 case ICmpInst::ICMP_SLE: pred = "sle"; break;
670 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
671 case ICmpInst::ICMP_UGE: pred = "uge"; break;
672 case ICmpInst::ICMP_ULT: pred = "ult"; break;
673 case ICmpInst::ICMP_ULE: pred = "ule"; break;
674 }
675 return pred;
676}
677
Misha Brukmanb1c93172005-04-21 23:48:37 +0000678static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000679 std::map<const Type *, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000680 SlotTracker *Machine) {
Zhou Sheng75b871f2007-01-11 12:24:14 +0000681 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattner17f71652008-08-17 07:19:36 +0000682 if (CI->getType() == Type::Int1Ty) {
Reid Spencercddc9df2007-01-12 04:24:46 +0000683 Out << (CI->getZExtValue() ? "true" : "false");
Chris Lattner17f71652008-08-17 07:19:36 +0000684 return;
685 }
686 Out << CI->getValue();
687 return;
688 }
689
690 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Dale Johannesen028084e2007-09-12 03:30:33 +0000691 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble ||
692 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) {
693 // We would like to output the FP constant value in exponential notation,
694 // but we cannot do this if doing so will lose precision. Check here to
695 // make sure that we only output it in exponential format if we can parse
696 // the value back and get the same value.
697 //
698 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
Chris Lattner17f71652008-08-17 07:19:36 +0000699 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
700 CFP->getValueAPF().convertToFloat();
Dale Johannesen028084e2007-09-12 03:30:33 +0000701 std::string StrVal = ftostr(CFP->getValueAPF());
Chris Lattner1e194682002-04-18 18:53:13 +0000702
Dale Johannesen028084e2007-09-12 03:30:33 +0000703 // Check to make sure that the stringized number is not some string like
704 // "Inf" or NaN, that atof will accept, but the lexer will not. Check
705 // that the string matches the "[-+]?[0-9]" regex.
706 //
707 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
708 ((StrVal[0] == '-' || StrVal[0] == '+') &&
709 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
710 // Reparse stringized version!
711 if (atof(StrVal.c_str()) == Val) {
712 Out << StrVal;
713 return;
714 }
Chris Lattner1e194682002-04-18 18:53:13 +0000715 }
Dale Johannesen028084e2007-09-12 03:30:33 +0000716 // Otherwise we could not reparse it to exactly the same value, so we must
717 // output the string in hexadecimal format!
718 assert(sizeof(double) == sizeof(uint64_t) &&
719 "assuming that double is 64 bits!");
720 Out << "0x" << utohexstr(DoubleToBits(Val));
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000721 return;
722 }
723
724 // Some form of long double. These appear as a magic letter identifying
725 // the type, then a fixed number of hex digits.
726 Out << "0x";
727 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended)
728 Out << 'K';
729 else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad)
730 Out << 'L';
731 else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
732 Out << 'M';
733 else
734 assert(0 && "Unsupported floating point type");
735 // api needed to prevent premature destruction
736 APInt api = CFP->getValueAPF().convertToAPInt();
737 const uint64_t* p = api.getRawData();
738 uint64_t word = *p;
739 int shiftcount=60;
740 int width = api.getBitWidth();
741 for (int j=0; j<width; j+=4, shiftcount-=4) {
742 unsigned int nibble = (word>>shiftcount) & 15;
743 if (nibble < 10)
744 Out << (unsigned char)(nibble + '0');
Dale Johannesen028084e2007-09-12 03:30:33 +0000745 else
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000746 Out << (unsigned char)(nibble - 10 + 'A');
747 if (shiftcount == 0 && j+4 < width) {
748 word = *(++p);
749 shiftcount = 64;
750 if (width-j-4 < 64)
751 shiftcount = width-j-4;
Dale Johannesen028084e2007-09-12 03:30:33 +0000752 }
753 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000754 return;
755 }
756
757 if (isa<ConstantAggregateZero>(CV)) {
Chris Lattner76b2ff42004-02-15 05:55:15 +0000758 Out << "zeroinitializer";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000759 return;
760 }
761
762 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattner1e194682002-04-18 18:53:13 +0000763 // As a special case, print the array as a string if it is an array of
Dan Gohmane9bc2ba2008-05-12 16:34:30 +0000764 // i8 with ConstantInt values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000765 //
Chris Lattner1e194682002-04-18 18:53:13 +0000766 const Type *ETy = CA->getType()->getElementType();
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000767 if (CA->isString()) {
Chris Lattner1e194682002-04-18 18:53:13 +0000768 Out << "c\"";
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000769 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000770 Out << '"';
Chris Lattner1e194682002-04-18 18:53:13 +0000771 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000772 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000773 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000774 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000775 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000776 WriteAsOperandInternal(Out, CA->getOperand(0),
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000777 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000778 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
779 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000780 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000781 WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000782 }
783 }
784 Out << " ]";
785 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000786 return;
787 }
788
789 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000790 if (CS->getType()->isPacked())
791 Out << '<';
Misha Brukman21bbdb92004-06-04 21:11:51 +0000792 Out << '{';
Jim Laskey3bb78742006-02-25 12:27:03 +0000793 unsigned N = CS->getNumOperands();
794 if (N) {
Chris Lattner604e3512008-08-19 04:47:09 +0000795 Out << ' ';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000796 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
797
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000798 WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000799
Jim Laskey3bb78742006-02-25 12:27:03 +0000800 for (unsigned i = 1; i < N; i++) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000801 Out << ", ";
802 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
803
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000804 WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000805 }
806 }
Jim Laskey3bb78742006-02-25 12:27:03 +0000807
Chris Lattnerd84bb632002-04-16 21:36:08 +0000808 Out << " }";
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000809 if (CS->getType()->isPacked())
810 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000811 return;
812 }
813
814 if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
815 const Type *ETy = CP->getType()->getElementType();
816 assert(CP->getNumOperands() > 0 &&
817 "Number of operands for a PackedConst must be > 0");
818 Out << "< ";
819 printTypeInt(Out, ETy, TypeTable);
820 WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
821 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
Chris Lattner585297e82008-08-19 05:26:17 +0000822 Out << ", ";
823 printTypeInt(Out, ETy, TypeTable);
824 WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000825 }
826 Out << " >";
827 return;
828 }
829
830 if (isa<ConstantPointerNull>(CV)) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000831 Out << "null";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000832 return;
833 }
834
835 if (isa<UndefValue>(CV)) {
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000836 Out << "undef";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000837 return;
838 }
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000839
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000840 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000841 Out << CE->getOpcodeName();
842 if (CE->isCompare())
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000843 Out << ' ' << getPredicateText(CE->getPredicate());
Reid Spencer812a1be2006-12-04 05:19:18 +0000844 Out << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000845
Vikram S. Adveb952b542002-07-14 23:14:45 +0000846 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
847 printTypeInt(Out, (*OI)->getType(), TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000848 WriteAsOperandInternal(Out, *OI, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000849 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000850 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000851 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000852
Dan Gohmana76f0f72008-05-31 19:12:39 +0000853 if (CE->hasIndices()) {
854 const SmallVector<unsigned, 4> &Indices = CE->getIndices();
855 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
856 Out << ", " << Indices[i];
857 }
858
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000859 if (CE->isCast()) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000860 Out << " to ";
861 printTypeInt(Out, CE->getType(), TypeTable);
862 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000863
Misha Brukman21bbdb92004-06-04 21:11:51 +0000864 Out << ')';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000865 return;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000866 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000867
868 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000869}
870
871
Misha Brukmanc566ca362004-03-02 00:22:19 +0000872/// WriteAsOperand - Write the name of the specified value out to the specified
873/// ostream. This can be useful when you just want to print int %reg126, not
874/// the whole instruction that generated it.
875///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000876static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000877 std::map<const Type*, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000878 SlotTracker *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000879 Out << ' ';
Chris Lattner033935d2008-08-17 04:40:13 +0000880 if (V->hasName()) {
881 PrintLLVMName(Out, V);
882 return;
883 }
884
885 const Constant *CV = dyn_cast<Constant>(V);
886 if (CV && !isa<GlobalValue>(CV)) {
887 WriteConstantInt(Out, CV, TypeTable, Machine);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000888 return;
889 }
890
891 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
Chris Lattner033935d2008-08-17 04:40:13 +0000892 Out << "asm ";
893 if (IA->hasSideEffects())
894 Out << "sideeffect ";
895 Out << '"';
896 PrintEscapedString(IA->getAsmString(), Out);
897 Out << "\", \"";
898 PrintEscapedString(IA->getConstraintString(), Out);
899 Out << '"';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000900 return;
901 }
902
903 char Prefix = '%';
904 int Slot;
905 if (Machine) {
906 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
907 Slot = Machine->getGlobalSlot(GV);
908 Prefix = '@';
909 } else {
910 Slot = Machine->getLocalSlot(V);
911 }
Chris Lattner033935d2008-08-17 04:40:13 +0000912 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000913 Machine = createSlotTracker(V);
Chris Lattner033935d2008-08-17 04:40:13 +0000914 if (Machine) {
915 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
916 Slot = Machine->getGlobalSlot(GV);
917 Prefix = '@';
918 } else {
919 Slot = Machine->getLocalSlot(V);
920 }
Chris Lattnera2d810d2006-01-25 22:26:05 +0000921 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000922 Slot = -1;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000923 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000924 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000925 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000926
927 if (Slot != -1)
928 Out << Prefix << Slot;
929 else
930 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000931}
932
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000933/// WriteAsOperand - Write the name of the specified value out to the specified
934/// ostream. This can be useful when you just want to print int %reg126, not
935/// the whole instruction that generated it.
936///
Chris Lattner604e3512008-08-19 04:47:09 +0000937void llvm::WriteAsOperand(std::ostream &Out, const Value *V, bool PrintType,
938 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000939 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000940 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000941
Chris Lattner98cf1f52002-11-20 18:36:02 +0000942 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000943 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000944
945 if (PrintType)
946 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000947
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000948 WriteAsOperandInternal(Out, V, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000949}
950
Reid Spencer58d30f22004-07-04 11:50:43 +0000951
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000952namespace {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000953
Chris Lattnerfee714f2001-09-07 16:36:04 +0000954class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000955 std::ostream &Out;
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000956 SlotTracker &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000957 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000958 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000959 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000960public:
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000961 inline AssemblyWriter(std::ostream &o, SlotTracker &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000962 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000963 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000964
965 // If the module has a symbol table, take all global types and stuff their
966 // names into the TypeNames map.
967 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000968 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000969 }
970
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000971 void write(const Module *M) { printModule(M); }
972 void write(const GlobalVariable *G) { printGlobal(G); }
973 void write(const GlobalAlias *G) { printAlias(G); }
974 void write(const Function *F) { printFunction(F); }
975 void write(const BasicBlock *BB) { printBasicBlock(BB); }
976 void write(const Instruction *I) { printInstruction(*I); }
977 void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000978
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000979 void writeOperand(const Value *Op, bool PrintType);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000980 void writeParamOperand(const Value *Operand, ParameterAttributes Attrs);
Chris Lattner1e194682002-04-18 18:53:13 +0000981
Misha Brukman4685e262004-04-28 15:31:21 +0000982 const Module* getModule() { return TheModule; }
983
Misha Brukmand92f54a2004-11-15 19:30:05 +0000984private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000985 void printModule(const Module *M);
Reid Spencer32af9e82007-01-06 07:24:44 +0000986 void printTypeSymbolTable(const TypeSymbolTable &ST);
Chris Lattner7bfee412001-10-29 16:05:51 +0000987 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000988 void printAlias(const GlobalAlias *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000989 void printFunction(const Function *F);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000990 void printArgument(const Argument *FA, ParameterAttributes Attrs);
Chris Lattner7bfee412001-10-29 16:05:51 +0000991 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000992 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000993
994 // printType - Go to extreme measures to attempt to print out a short,
995 // symbolic version of a type name.
996 //
Chris Lattner585297e82008-08-19 05:26:17 +0000997 void printType(const Type *Ty) {
998 printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000999 }
1000
1001 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
1002 // without considering any symbolic types that we may have equal to it.
1003 //
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001004 void printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +00001005
Chris Lattner862e3382001-10-13 06:42:36 +00001006 // printInfoComment - Print a little comment after the instruction indicating
1007 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +00001008 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001009};
Reid Spencerf43ac622004-05-27 22:04:46 +00001010} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +00001011
Misha Brukmanc566ca362004-03-02 00:22:19 +00001012/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
1013/// without considering any symbolic types that we may have equal to it.
1014///
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001015void AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
1016 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001017 Out << "i" << utostr(ITy->getBitWidth());
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001018 return;
1019 }
1020
1021 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Reid Spencer8c4914c2006-12-31 05:24:50 +00001022 printType(FTy->getReturnType());
Reid Spencer8c4914c2006-12-31 05:24:50 +00001023 Out << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +00001024 for (FunctionType::param_iterator I = FTy->param_begin(),
1025 E = FTy->param_end(); I != E; ++I) {
1026 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +00001027 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +00001028 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +00001029 }
1030 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001031 if (FTy->getNumParams()) Out << ", ";
1032 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +00001033 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001034 Out << ')';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001035 return;
1036 }
1037
1038 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001039 if (STy->isPacked())
1040 Out << '<';
Misha Brukmana6619a92004-06-21 21:53:56 +00001041 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +00001042 for (StructType::element_iterator I = STy->element_begin(),
1043 E = STy->element_end(); I != E; ++I) {
1044 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +00001045 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +00001046 printType(*I);
1047 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001048 Out << " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001049 if (STy->isPacked())
1050 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001051 return;
1052 }
1053
1054 if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Christopher Lambac7d6312007-12-18 03:49:35 +00001055 printType(PTy->getElementType());
1056 if (unsigned AddressSpace = PTy->getAddressSpace())
1057 Out << " addrspace(" << AddressSpace << ")";
1058 Out << '*';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001059 return;
1060 }
1061
1062 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001063 Out << '[' << ATy->getNumElements() << " x ";
Chris Lattner585297e82008-08-19 05:26:17 +00001064 printType(ATy->getElementType());
1065 Out << ']';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001066 return;
1067 }
1068
1069 if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
Reid Spencere203d352004-08-20 15:37:30 +00001070 Out << '<' << PTy->getNumElements() << " x ";
Chris Lattner585297e82008-08-19 05:26:17 +00001071 printType(PTy->getElementType());
1072 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001073 return;
Reid Spencere203d352004-08-20 15:37:30 +00001074 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001075
1076 if (isa<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001077 Out << "opaque";
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001078 return;
Chris Lattnerd816b532002-04-13 20:53:41 +00001079 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001080
1081 if (!Ty->isPrimitiveType())
1082 Out << "<unknown derived type>";
1083 printType(Ty);
Chris Lattnerd816b532002-04-13 20:53:41 +00001084}
1085
1086
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001087void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
1088 if (Operand == 0) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +00001089 Out << "<null operand!>";
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001090 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001091 if (PrintType) {
1092 Out << ' ';
1093 printType(Operand->getType());
1094 }
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001095 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
Chris Lattner08f7d0c2005-02-24 16:58:29 +00001096 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001097}
1098
Dale Johannesen89268bc2008-02-19 21:38:47 +00001099void AssemblyWriter::writeParamOperand(const Value *Operand,
1100 ParameterAttributes Attrs) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001101 if (Operand == 0) {
1102 Out << "<null operand!>";
1103 } else {
1104 Out << ' ';
1105 // Print the type
1106 printType(Operand->getType());
1107 // Print parameter attributes list
1108 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001109 Out << ' ' << ParamAttr::getAsString(Attrs);
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001110 // Print the operand
1111 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
1112 }
1113}
Chris Lattner2f7c9632001-06-06 20:29:01 +00001114
Chris Lattner7bfee412001-10-29 16:05:51 +00001115void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +00001116 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001117 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +00001118 // require a comment char before it).
1119 M->getModuleIdentifier().find('\n') == std::string::npos)
1120 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
1121
Owen Andersone2237542006-10-18 02:21:12 +00001122 if (!M->getDataLayout().empty())
Chris Lattner04897162006-10-22 06:06:56 +00001123 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencer48f98c82004-07-25 21:44:54 +00001124 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +00001125 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001126
Chris Lattnereef2fe72006-01-24 04:13:11 +00001127 if (!M->getModuleInlineAsm().empty()) {
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001128 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnereef2fe72006-01-24 04:13:11 +00001129 std::string Asm = M->getModuleInlineAsm();
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001130 size_t CurPos = 0;
1131 size_t NewLine = Asm.find_first_of('\n', CurPos);
1132 while (NewLine != std::string::npos) {
1133 // We found a newline, print the portion of the asm string from the
1134 // last newline up to this newline.
1135 Out << "module asm \"";
1136 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1137 Out);
1138 Out << "\"\n";
1139 CurPos = NewLine+1;
1140 NewLine = Asm.find_first_of('\n', CurPos);
1141 }
Chris Lattner3acaf5c2006-01-24 00:40:17 +00001142 Out << "module asm \"";
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001143 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner6ed87bd2006-01-23 23:03:36 +00001144 Out << "\"\n";
1145 }
1146
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001147 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +00001148 Module::lib_iterator LI = M->lib_begin();
1149 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +00001150 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +00001151 Out << "deplibs = [ ";
1152 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001153 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +00001154 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +00001155 if (LI != LE)
1156 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +00001157 }
1158 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +00001159 }
Reid Spencerb9e08772004-09-13 23:44:23 +00001160
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001161 // Loop over the symbol table, emitting all named constants.
Reid Spencer32af9e82007-01-06 07:24:44 +00001162 printTypeSymbolTable(M->getTypeSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001163
Chris Lattner54932b02006-12-06 04:41:52 +00001164 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
1165 I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +00001166 printGlobal(I);
Chris Lattnerd2747052007-04-26 02:24:10 +00001167
1168 // Output all aliases.
1169 if (!M->alias_empty()) Out << "\n";
1170 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
1171 I != E; ++I)
1172 printAlias(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001173
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001174 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +00001175 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
1176 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001177}
1178
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001179static void PrintLinkage(GlobalValue::LinkageTypes LT, std::ostream &Out) {
1180 switch (LT) {
1181 case GlobalValue::InternalLinkage: Out << "internal "; break;
1182 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
1183 case GlobalValue::WeakLinkage: Out << "weak "; break;
1184 case GlobalValue::CommonLinkage: Out << "common "; break;
1185 case GlobalValue::AppendingLinkage: Out << "appending "; break;
1186 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
1187 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
1188 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
1189 case GlobalValue::ExternalLinkage: break;
1190 case GlobalValue::GhostLinkage:
1191 Out << "GhostLinkage not allowed in AsmWriter!\n";
1192 abort();
1193 }
1194}
1195
1196
1197static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
1198 std::ostream &Out) {
1199 switch (Vis) {
1200 default: assert(0 && "Invalid visibility style!");
1201 case GlobalValue::DefaultVisibility: break;
1202 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1203 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
1204 }
1205}
1206
Chris Lattner7bfee412001-10-29 16:05:51 +00001207void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Chris Lattner033935d2008-08-17 04:40:13 +00001208 if (GV->hasName()) {
1209 PrintLLVMName(Out, GV);
1210 Out << " = ";
1211 }
Chris Lattner37798642001-09-18 04:01:05 +00001212
Chris Lattner1508d3f2008-08-19 05:16:28 +00001213 if (!GV->hasInitializer() && GV->hasExternalLinkage())
1214 Out << "external ";
1215
1216 PrintLinkage(GV->getLinkage(), Out);
1217 PrintVisibility(GV->getVisibility(), Out);
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001218
1219 if (GV->isThreadLocal()) Out << "thread_local ";
Misha Brukmana6619a92004-06-21 21:53:56 +00001220 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +00001221 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +00001222
Chris Lattner033935d2008-08-17 04:40:13 +00001223 if (GV->hasInitializer())
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001224 writeOperand(GV->getInitializer(), false);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001225
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001226 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1227 Out << " addrspace(" << AddressSpace << ") ";
1228
Chris Lattner4b96c542005-11-12 00:10:19 +00001229 if (GV->hasSection())
1230 Out << ", section \"" << GV->getSection() << '"';
1231 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001232 Out << ", align " << GV->getAlignment();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001233
Chris Lattner113f4f42002-06-25 16:13:24 +00001234 printInfoComment(*GV);
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001235 Out << '\n';
Chris Lattnerda975502001-09-10 07:58:01 +00001236}
1237
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001238void AssemblyWriter::printAlias(const GlobalAlias *GA) {
Dale Johannesen83e468a2008-06-03 18:14:29 +00001239 // Don't crash when dumping partially built GA
1240 if (!GA->hasName())
1241 Out << "<<nameless>> = ";
Chris Lattner033935d2008-08-17 04:40:13 +00001242 else {
1243 PrintLLVMName(Out, GA);
1244 Out << " = ";
1245 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001246 PrintVisibility(GA->getVisibility(), Out);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001247
1248 Out << "alias ";
1249
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001250 PrintLinkage(GA->getLinkage(), Out);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001251
Anton Korobeynikov546ea7e2007-04-29 18:02:48 +00001252 const Constant *Aliasee = GA->getAliasee();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001253
1254 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
1255 printType(GV->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001256 Out << ' ';
1257 PrintLLVMName(Out, GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001258 } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
1259 printType(F->getFunctionType());
1260 Out << "* ";
1261
Chris Lattner17f71652008-08-17 07:19:36 +00001262 if (F->hasName())
Chris Lattner033935d2008-08-17 04:40:13 +00001263 PrintLLVMName(Out, F);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001264 else
1265 Out << "@\"\"";
Anton Korobeynikov72d5d422008-03-22 08:17:17 +00001266 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Aliasee)) {
1267 printType(GA->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001268 Out << " ";
1269 PrintLLVMName(Out, GA);
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +00001270 } else {
1271 const ConstantExpr *CE = 0;
1272 if ((CE = dyn_cast<ConstantExpr>(Aliasee)) &&
1273 (CE->getOpcode() == Instruction::BitCast)) {
1274 writeOperand(CE, false);
1275 } else
1276 assert(0 && "Unsupported aliasee");
1277 }
1278
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001279 printInfoComment(*GA);
Chris Lattner1508d3f2008-08-19 05:16:28 +00001280 Out << '\n';
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001281}
1282
Reid Spencer32af9e82007-01-06 07:24:44 +00001283void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +00001284 // Print the types.
Reid Spencer32af9e82007-01-06 07:24:44 +00001285 for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
1286 TI != TE; ++TI) {
Chris Lattner1508d3f2008-08-19 05:16:28 +00001287 Out << '\t';
1288 PrintLLVMName(Out, &TI->first[0], TI->first.size(), LocalPrefix);
1289 Out << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +00001290
1291 // Make sure we print out at least one level of the type structure, so
1292 // that we do not get %FILE = type %FILE
1293 //
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001294 printTypeAtLeastOneLevel(TI->second);
1295 Out << '\n';
Reid Spencere7e96712004-05-25 08:53:40 +00001296 }
Reid Spencer32af9e82007-01-06 07:24:44 +00001297}
1298
Misha Brukmanc566ca362004-03-02 00:22:19 +00001299/// printFunction - Print all aspects of a function.
1300///
Chris Lattner113f4f42002-06-25 16:13:24 +00001301void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001302 // Print out the return type and name.
1303 Out << '\n';
Chris Lattner379a8d22003-04-16 20:28:45 +00001304
Misha Brukmana6619a92004-06-21 21:53:56 +00001305 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001306
Reid Spencer5301e7c2007-01-30 20:08:39 +00001307 if (F->isDeclaration())
Chris Lattner10f03a62007-08-19 22:15:26 +00001308 Out << "declare ";
1309 else
Reid Spencer7ce2d2a2006-12-29 20:29:48 +00001310 Out << "define ";
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001311
1312 PrintLinkage(F->getLinkage(), Out);
1313 PrintVisibility(F->getVisibility(), Out);
Chris Lattner379a8d22003-04-16 20:28:45 +00001314
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001315 // Print the calling convention.
1316 switch (F->getCallingConv()) {
1317 case CallingConv::C: break; // default
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001318 case CallingConv::Fast: Out << "fastcc "; break;
1319 case CallingConv::Cold: Out << "coldcc "; break;
1320 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1321 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001322 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001323 default: Out << "cc" << F->getCallingConv() << " "; break;
1324 }
1325
Reid Spencer8c4914c2006-12-31 05:24:50 +00001326 const FunctionType *FT = F->getFunctionType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001327 const PAListPtr &Attrs = F->getParamAttrs();
Chris Lattner585297e82008-08-19 05:26:17 +00001328 printType(F->getReturnType());
1329 Out << ' ';
Chris Lattneredceac32008-08-17 07:24:08 +00001330 if (F->hasName())
Chris Lattner033935d2008-08-17 04:40:13 +00001331 PrintLLVMName(Out, F);
Chris Lattner5b337482003-10-18 05:57:43 +00001332 else
Reid Spencer788e3172007-01-26 08:02:52 +00001333 Out << "@\"\"";
Misha Brukmana6619a92004-06-21 21:53:56 +00001334 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001335 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001336
Chris Lattner7bfee412001-10-29 16:05:51 +00001337 // Loop over the arguments, printing them...
Chris Lattnerfee714f2001-09-07 16:36:04 +00001338
Reid Spencer8c4914c2006-12-31 05:24:50 +00001339 unsigned Idx = 1;
Chris Lattner82738fe2007-04-18 00:57:22 +00001340 if (!F->isDeclaration()) {
1341 // If this isn't a declaration, print the argument names as well.
1342 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1343 I != E; ++I) {
1344 // Insert commas as we go... the first arg doesn't get a comma
1345 if (I != F->arg_begin()) Out << ", ";
Chris Lattner8a923e72008-03-12 17:45:29 +00001346 printArgument(I, Attrs.getParamAttrs(Idx));
Chris Lattner82738fe2007-04-18 00:57:22 +00001347 Idx++;
1348 }
1349 } else {
1350 // Otherwise, print the types from the function type.
1351 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1352 // Insert commas as we go... the first arg doesn't get a comma
1353 if (i) Out << ", ";
1354
1355 // Output type...
1356 printType(FT->getParamType(i));
1357
Chris Lattner8a923e72008-03-12 17:45:29 +00001358 ParameterAttributes ArgAttrs = Attrs.getParamAttrs(i+1);
Chris Lattner82738fe2007-04-18 00:57:22 +00001359 if (ArgAttrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001360 Out << ' ' << ParamAttr::getAsString(ArgAttrs);
Chris Lattner82738fe2007-04-18 00:57:22 +00001361 }
Reid Spencer8c4914c2006-12-31 05:24:50 +00001362 }
Chris Lattnerfee714f2001-09-07 16:36:04 +00001363
1364 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +00001365 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001366 if (FT->getNumParams()) Out << ", ";
1367 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +00001368 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001369 Out << ')';
Chris Lattner8a923e72008-03-12 17:45:29 +00001370 ParameterAttributes RetAttrs = Attrs.getParamAttrs(0);
1371 if (RetAttrs != ParamAttr::None)
1372 Out << ' ' << ParamAttr::getAsString(Attrs.getParamAttrs(0));
Chris Lattner4b96c542005-11-12 00:10:19 +00001373 if (F->hasSection())
1374 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001375 if (F->getAlignment())
1376 Out << " align " << F->getAlignment();
Gordon Henriksend930f912008-08-17 18:44:35 +00001377 if (F->hasGC())
1378 Out << " gc \"" << F->getGC() << '"';
Chris Lattner4b96c542005-11-12 00:10:19 +00001379
Reid Spencer5301e7c2007-01-30 20:08:39 +00001380 if (F->isDeclaration()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001381 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +00001382 } else {
Chris Lattnerd5fbc8f2008-04-21 06:12:55 +00001383 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001384
Chris Lattner6915f8f2002-04-07 22:49:37 +00001385 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +00001386 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1387 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001388
Misha Brukmana6619a92004-06-21 21:53:56 +00001389 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +00001390 }
1391
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001392 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001393}
1394
Misha Brukmanc566ca362004-03-02 00:22:19 +00001395/// printArgument - This member is called for every argument that is passed into
1396/// the function. Simply print it out
1397///
Dale Johannesen89268bc2008-02-19 21:38:47 +00001398void AssemblyWriter::printArgument(const Argument *Arg,
1399 ParameterAttributes Attrs) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001400 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +00001401 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001402
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001403 // Output parameter attributes list
Reid Spencera472f662007-04-11 02:44:20 +00001404 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001405 Out << ' ' << ParamAttr::getAsString(Attrs);
Reid Spencer8c4914c2006-12-31 05:24:50 +00001406
Chris Lattner2f7c9632001-06-06 20:29:01 +00001407 // Output name, if available...
Chris Lattner033935d2008-08-17 04:40:13 +00001408 if (Arg->hasName()) {
1409 Out << ' ';
1410 PrintLLVMName(Out, Arg);
1411 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001412}
1413
Misha Brukmanc566ca362004-03-02 00:22:19 +00001414/// printBasicBlock - This member is called for each basic block in a method.
1415///
Chris Lattner7bfee412001-10-29 16:05:51 +00001416void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001417 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001418 Out << "\n";
Chris Lattner1508d3f2008-08-19 05:16:28 +00001419 PrintLLVMName(Out, BB->getNameStart(), BB->getNameLen(), LabelPrefix);
Chris Lattner033935d2008-08-17 04:40:13 +00001420 Out << ':';
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001421 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Chris Lattner67bec132008-04-21 04:20:33 +00001422 Out << "\n; <label>:";
Chris Lattner5e043322007-01-11 03:54:27 +00001423 int Slot = Machine.getLocalSlot(BB);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001424 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001425 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +00001426 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001427 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +00001428 }
Chris Lattner2447ef52003-11-20 00:09:43 +00001429
1430 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +00001431 Out << "\t\t; Error: Block without parent!";
Chris Lattnerff834c02008-04-22 02:45:44 +00001432 else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
1433 // Output predecessors for the block...
1434 Out << "\t\t;";
1435 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
1436
1437 if (PI == PE) {
1438 Out << " No predecessors!";
1439 } else {
1440 Out << " preds =";
1441 writeOperand(*PI, false);
1442 for (++PI; PI != PE; ++PI) {
1443 Out << ',';
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001444 writeOperand(*PI, false);
Chris Lattner00211f12003-11-16 22:59:57 +00001445 }
Chris Lattner58185f22002-10-02 19:38:55 +00001446 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001447 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001448
Chris Lattnerff834c02008-04-22 02:45:44 +00001449 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001450
Misha Brukmana6619a92004-06-21 21:53:56 +00001451 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001452
Chris Lattnerfee714f2001-09-07 16:36:04 +00001453 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001454 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1455 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001456
Misha Brukmana6619a92004-06-21 21:53:56 +00001457 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001458}
1459
Chris Lattner862e3382001-10-13 06:42:36 +00001460
Misha Brukmanc566ca362004-03-02 00:22:19 +00001461/// printInfoComment - Print a little comment after the instruction indicating
1462/// which slot it occupies.
1463///
Chris Lattner113f4f42002-06-25 16:13:24 +00001464void AssemblyWriter::printInfoComment(const Value &V) {
1465 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001466 Out << "\t\t; <";
Chris Lattner585297e82008-08-19 05:26:17 +00001467 printType(V.getType());
1468 Out << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001469
Chris Lattner113f4f42002-06-25 16:13:24 +00001470 if (!V.hasName()) {
Chris Lattner5e043322007-01-11 03:54:27 +00001471 int SlotNum;
1472 if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1473 SlotNum = Machine.getGlobalSlot(GV);
1474 else
1475 SlotNum = Machine.getLocalSlot(&V);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001476 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001477 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001478 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001479 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001480 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001481 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001482 }
1483}
1484
Reid Spencere7141c82006-08-28 01:02:49 +00001485// This member is called for each Instruction in a function..
Chris Lattner113f4f42002-06-25 16:13:24 +00001486void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001487 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001488
Misha Brukmana6619a92004-06-21 21:53:56 +00001489 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001490
1491 // Print out name if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001492 if (I.hasName()) {
1493 PrintLLVMName(Out, &I);
1494 Out << " = ";
1495 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001496
Chris Lattner06038452005-05-06 05:51:46 +00001497 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001498 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001499 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001500 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001501 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1502 // If this is a call, check if it's a tail call.
1503 Out << "tail ";
1504 }
Chris Lattner504f9242003-09-08 17:45:59 +00001505
Chris Lattner2f7c9632001-06-06 20:29:01 +00001506 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001507 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001508
Reid Spencer45e52392006-12-03 06:27:29 +00001509 // Print out the compare instruction predicates
Nate Begemand2195702008-05-12 19:01:56 +00001510 if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
1511 Out << " " << getPredicateText(CI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001512
Chris Lattner2f7c9632001-06-06 20:29:01 +00001513 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001514 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001515
1516 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001517 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1518 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001519 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001520 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001521 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001522 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001523
Chris Lattner8d48df22002-04-13 18:34:38 +00001524 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001525 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001526 writeOperand(Operand , true); Out << ',';
1527 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001528
Chris Lattner113f4f42002-06-25 16:13:24 +00001529 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001530 Out << "\n\t\t";
1531 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001532 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001533 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001534 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001535 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001536 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001537 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001538 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001539
Chris Lattner113f4f42002-06-25 16:13:24 +00001540 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001541 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001542 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001543 writeOperand(I.getOperand(op ), false); Out << ',';
1544 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001545 }
Dan Gohmana76f0f72008-05-31 19:12:39 +00001546 } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
1547 writeOperand(I.getOperand(0), true);
1548 for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
1549 Out << ", " << *i;
1550 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
1551 writeOperand(I.getOperand(0), true); Out << ',';
1552 writeOperand(I.getOperand(1), true);
1553 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
1554 Out << ", " << *i;
Devang Patel59643e52008-02-23 00:35:18 +00001555 } else if (isa<ReturnInst>(I) && !Operand) {
1556 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001557 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1558 // Print the calling convention being used.
1559 switch (CI->getCallingConv()) {
1560 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001561 case CallingConv::Fast: Out << " fastcc"; break;
1562 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerf5270372007-11-18 18:32:16 +00001563 case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break;
1564 case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001565 case CallingConv::X86_SSECall: Out << " x86_ssecallcc"; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001566 default: Out << " cc" << CI->getCallingConv(); break;
1567 }
1568
Reid Spencer1517de32007-04-09 06:10:42 +00001569 const PointerType *PTy = cast<PointerType>(Operand->getType());
1570 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1571 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001572 const PAListPtr &PAL = CI->getParamAttrs();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001573
Chris Lattner463d6a52003-08-05 15:34:45 +00001574 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001575 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001576 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001577 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001578 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001579 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001580 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001581 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001582 writeOperand(Operand, false);
1583 } else {
1584 writeOperand(Operand, true);
1585 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001586 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001587 for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1588 if (op > 1)
1589 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001590 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op));
Chris Lattner2f7c9632001-06-06 20:29:01 +00001591 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001592 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001593 if (PAL.getParamAttrs(0) != ParamAttr::None)
1594 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Chris Lattner113f4f42002-06-25 16:13:24 +00001595 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Reid Spencer1517de32007-04-09 06:10:42 +00001596 const PointerType *PTy = cast<PointerType>(Operand->getType());
1597 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1598 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001599 const PAListPtr &PAL = II->getParamAttrs();
Chris Lattner463d6a52003-08-05 15:34:45 +00001600
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001601 // Print the calling convention being used.
1602 switch (II->getCallingConv()) {
1603 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001604 case CallingConv::Fast: Out << " fastcc"; break;
1605 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001606 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1607 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001608 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001609 default: Out << " cc" << II->getCallingConv(); break;
1610 }
1611
Chris Lattner463d6a52003-08-05 15:34:45 +00001612 // If possible, print out the short form of the invoke instruction. We can
1613 // only do this if the first argument is a pointer to a nonvararg function,
1614 // and if the return type is not a pointer to a function.
1615 //
1616 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001617 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001618 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001619 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001620 writeOperand(Operand, false);
1621 } else {
1622 writeOperand(Operand, true);
1623 }
1624
Misha Brukmana6619a92004-06-21 21:53:56 +00001625 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001626 for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1627 if (op > 3)
1628 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001629 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op-2));
Chris Lattner862e3382001-10-13 06:42:36 +00001630 }
1631
Reid Spencer136a91c2007-01-05 17:06:19 +00001632 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001633 if (PAL.getParamAttrs(0) != ParamAttr::None)
Dan Gohman1a70bcc2008-08-05 15:51:44 +00001634 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Reid Spencer136a91c2007-01-05 17:06:19 +00001635 Out << "\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001636 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001637 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001638 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001639
Chris Lattner113f4f42002-06-25 16:13:24 +00001640 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001641 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001642 printType(AI->getType()->getElementType());
1643 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001644 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001645 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001646 }
Nate Begeman848622f2005-11-05 09:21:28 +00001647 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001648 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001649 }
Chris Lattner862e3382001-10-13 06:42:36 +00001650 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001651 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001652 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001653 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001654 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001655 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001656 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001657 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001658 } else if (Operand) { // Print the normal way...
1659
Misha Brukmanb1c93172005-04-21 23:48:37 +00001660 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001661 // omit the type from all but the first operand. If the instruction has
1662 // different type operands (for example br), then they are all printed.
1663 bool PrintAllTypes = false;
1664 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001665
Reid Spencer0cdd04f2007-02-02 13:54:55 +00001666 // Select, Store and ShuffleVector always print all types.
Devang Patelce556d92008-03-04 22:05:14 +00001667 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
1668 || isa<ReturnInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001669 PrintAllTypes = true;
1670 } else {
1671 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1672 Operand = I.getOperand(i);
1673 if (Operand->getType() != TheType) {
1674 PrintAllTypes = true; // We have differing types! Print them all!
1675 break;
1676 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001677 }
1678 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001679
Chris Lattner7bfee412001-10-29 16:05:51 +00001680 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001681 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001682 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001683 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001684
Chris Lattner113f4f42002-06-25 16:13:24 +00001685 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001686 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001687 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001688 }
1689 }
Christopher Lamb84485702007-04-22 19:24:39 +00001690
1691 // Print post operand alignment for load/store
1692 if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1693 Out << ", align " << cast<LoadInst>(I).getAlignment();
1694 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1695 Out << ", align " << cast<StoreInst>(I).getAlignment();
1696 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001697
Chris Lattner862e3382001-10-13 06:42:36 +00001698 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001699 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001700}
1701
1702
1703//===----------------------------------------------------------------------===//
1704// External Interface declarations
1705//===----------------------------------------------------------------------===//
1706
Chris Lattner8339f7d2003-10-30 23:41:03 +00001707void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001708 SlotTracker SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001709 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001710 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001711}
1712
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001713void GlobalVariable::print(std::ostream &o) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001714 SlotTracker SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001715 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001716 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001717}
1718
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001719void GlobalAlias::print(std::ostream &o) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001720 SlotTracker SlotTable(getParent());
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001721 AssemblyWriter W(o, SlotTable, getParent(), 0);
1722 W.write(this);
1723}
1724
Chris Lattner8339f7d2003-10-30 23:41:03 +00001725void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001726 SlotTracker SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001727 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001728
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001729 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001730}
1731
Chris Lattnereef2fe72006-01-24 04:13:11 +00001732void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001733 WriteAsOperand(o, this, true, 0);
Chris Lattnereef2fe72006-01-24 04:13:11 +00001734}
1735
Chris Lattner8339f7d2003-10-30 23:41:03 +00001736void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001737 SlotTracker SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001738 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001739 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001740 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001741}
1742
Chris Lattner8339f7d2003-10-30 23:41:03 +00001743void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001744 const Function *F = getParent() ? getParent()->getParent() : 0;
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001745 SlotTracker SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001746 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001747
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001748 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001749}
Chris Lattner7db79582001-11-07 04:21:57 +00001750
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001751void Constant::print(std::ostream &o) const {
1752 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001753
Misha Brukman21bbdb92004-06-04 21:11:51 +00001754 o << ' ' << getType()->getDescription() << ' ';
Evan Cheng5b19a802006-03-01 22:17:00 +00001755
1756 std::map<const Type *, std::string> TypeTable;
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001757 WriteConstantInt(o, this, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001758}
1759
Misha Brukmanb1c93172005-04-21 23:48:37 +00001760void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001761 if (this == 0)
1762 o << "<null Type>";
1763 else
1764 o << getDescription();
1765}
1766
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001767void Argument::print(std::ostream &o) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001768 WriteAsOperand(o, this, true, getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001769}
1770
Reid Spencer52641832004-05-25 18:14:38 +00001771// Value::dump - allow easy printing of Values from the debugger.
1772// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001773void Value::dump() const { print(*cerr.stream()); cerr << '\n'; }
Reid Spencer52641832004-05-25 18:14:38 +00001774
1775// Type::dump - allow easy printing of Values from the debugger.
1776// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001777void Type::dump() const { print(*cerr.stream()); cerr << '\n'; }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001778