blob: 1b6b4c67da3f182de7495f022b5256e8ac26a163 [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
113/// getLLVMName - Turn the specified string into an 'LLVM name', which is either
114/// prefixed with % (if the string only contains simple characters) or is
115/// surrounded with ""'s (if it has special chars in it).
116static std::string getLLVMName(const std::string &Name) {
117 assert(!Name.empty() && "Cannot get empty name!");
118 return '%' + QuoteNameIfNeeded(Name);
119}
120
121enum PrefixType {
122 GlobalPrefix,
123 LabelPrefix,
124 LocalPrefix
125};
126
127/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
128/// prefixed with % (if the string only contains simple characters) or is
129/// surrounded with ""'s (if it has special chars in it). Print it out.
Chris Lattner1508d3f2008-08-19 05:16:28 +0000130static void PrintLLVMName(std::ostream &OS, const char *NameStr,
131 unsigned NameLen, PrefixType Prefix) {
132 assert(NameStr && "Cannot get empty name!");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000133 switch (Prefix) {
Chris Lattner1508d3f2008-08-19 05:16:28 +0000134 default: assert(0 && "Bad prefix!");
135 case GlobalPrefix: OS << '@'; break;
136 case LabelPrefix: break;
137 case LocalPrefix: OS << '%'; break;
Chris Lattner3eee99c2008-08-19 04:36:02 +0000138 }
139
140 // Scan the name to see if it needs quotes first.
Chris Lattner3eee99c2008-08-19 04:36:02 +0000141 bool NeedsQuotes = NameStr[0] >= '0' && NameStr[0] <= '9';
142 if (!NeedsQuotes) {
143 for (unsigned i = 0; i != NameLen; ++i) {
144 char C = NameStr[i];
145 if (!isalnum(C) && C != '-' && C != '.' && C != '_') {
146 NeedsQuotes = true;
147 break;
148 }
149 }
150 }
151
152 // If we didn't need any quotes, just write out the name in one blast.
153 if (!NeedsQuotes) {
154 OS.write(NameStr, NameLen);
155 return;
156 }
157
158 // Okay, we need quotes. Output the quotes and escape any scary characters as
159 // needed.
160 OS << '"';
161 for (unsigned i = 0; i != NameLen; ++i) {
162 char C = NameStr[i];
163 assert(C != '"' && "Illegal character in LLVM value name!");
164 if (C == '\\') {
165 OS << "\\\\";
166 } else if (isprint(C)) {
167 OS << C;
168 } else {
169 OS << '\\';
170 char hex1 = (C >> 4) & 0x0F;
171 if (hex1 < 10)
172 OS << (char)(hex1 + '0');
173 else
174 OS << (char)(hex1 - 10 + 'A');
175 char hex2 = C & 0x0F;
176 if (hex2 < 10)
177 OS << (char)(hex2 + '0');
178 else
179 OS << (char)(hex2 - 10 + 'A');
180 }
181 }
182 OS << '"';
183}
184
185/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
186/// prefixed with % (if the string only contains simple characters) or is
187/// surrounded with ""'s (if it has special chars in it). Print it out.
188static void PrintLLVMName(std::ostream &OS, const Value *V) {
Chris Lattner1508d3f2008-08-19 05:16:28 +0000189 PrintLLVMName(OS, V->getNameStart(), V->getNameLen(),
Chris Lattner3eee99c2008-08-19 04:36:02 +0000190 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
191}
192
193
194
195//===----------------------------------------------------------------------===//
196// SlotTracker Class: Enumerate slot numbers for unnamed values
197//===----------------------------------------------------------------------===//
198
Chris Lattner3ee58762008-08-19 04:28:07 +0000199namespace {
200
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000201/// This class provides computation of slot numbers for LLVM Assembly writing.
Chris Lattner393b7cd2008-08-17 04:17:45 +0000202///
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000203class SlotTracker {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000204public:
Chris Lattner393b7cd2008-08-17 04:17:45 +0000205 /// ValueMap - A mapping of Values to slot numbers
Chris Lattnera204d412008-08-17 17:25:25 +0000206 typedef DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner393b7cd2008-08-17 04:17:45 +0000207
208private:
209 /// TheModule - The module for which we are holding slot numbers
210 const Module* TheModule;
211
212 /// TheFunction - The function for which we are holding slot numbers
213 const Function* TheFunction;
214 bool FunctionProcessed;
215
216 /// mMap - The TypePlanes map for the module level data
217 ValueMap mMap;
218 unsigned mNext;
219
220 /// fMap - The TypePlanes map for the function level data
221 ValueMap fMap;
222 unsigned fNext;
223
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000224public:
Chris Lattner393b7cd2008-08-17 04:17:45 +0000225 /// Construct from a module
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000226 explicit SlotTracker(const Module *M);
Chris Lattner393b7cd2008-08-17 04:17:45 +0000227 /// Construct from a function, starting out in incorp state.
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000228 explicit SlotTracker(const Function *F);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000229
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000230 /// Return the slot number of the specified value in it's type
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000231 /// plane. If something is not in the SlotTracker, return -1.
Chris Lattner5e043322007-01-11 03:54:27 +0000232 int getLocalSlot(const Value *V);
233 int getGlobalSlot(const GlobalValue *V);
Reid Spencer8beac692004-06-09 15:26:53 +0000234
Misha Brukmanb1c93172005-04-21 23:48:37 +0000235 /// If you'd like to deal with a function instead of just a module, use
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000236 /// this method to get its data into the SlotTracker.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000237 void incorporateFunction(const Function *F) {
238 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000239 FunctionProcessed = false;
240 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000241
Misha Brukmanb1c93172005-04-21 23:48:37 +0000242 /// After calling incorporateFunction, use this method to remove the
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000243 /// most recently incorporated function from the SlotTracker. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000244 /// will reset the state of the machine back to just the module contents.
245 void purgeFunction();
246
Chris Lattner393b7cd2008-08-17 04:17:45 +0000247 // Implementation Details
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000248private:
Reid Spencer56010e42004-05-26 21:56:09 +0000249 /// This function does the actual initialization.
250 inline void initialize();
251
Chris Lattnerea862a32007-01-09 07:55:49 +0000252 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
253 void CreateModuleSlot(const GlobalValue *V);
254
255 /// CreateFunctionSlot - Insert the specified Value* into the slot table.
256 void CreateFunctionSlot(const Value *V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000257
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000258 /// Add all of the module level global variables (and their initializers)
259 /// and function declarations, but not the contents of those functions.
260 void processModule();
261
Reid Spencer56010e42004-05-26 21:56:09 +0000262 /// Add all of the functions arguments, basic blocks, and instructions
263 void processFunction();
264
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000265 SlotTracker(const SlotTracker &); // DO NOT IMPLEMENT
266 void operator=(const SlotTracker &); // DO NOT IMPLEMENT
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000267};
268
Chris Lattner3ee58762008-08-19 04:28:07 +0000269} // end anonymous namespace
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000270
Chris Lattner3eee99c2008-08-19 04:36:02 +0000271
272static SlotTracker *createSlotTracker(const Value *V) {
273 if (const Argument *FA = dyn_cast<Argument>(V))
274 return new SlotTracker(FA->getParent());
275
276 if (const Instruction *I = dyn_cast<Instruction>(V))
277 return new SlotTracker(I->getParent()->getParent());
278
279 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
280 return new SlotTracker(BB->getParent());
281
282 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
283 return new SlotTracker(GV->getParent());
284
285 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
286 return new SlotTracker(GA->getParent());
287
288 if (const Function *Func = dyn_cast<Function>(V))
289 return new SlotTracker(Func);
290
291 return 0;
292}
293
294#if 0
Chris Lattner604e3512008-08-19 04:47:09 +0000295#define ST_DEBUG(X) cerr << X
Chris Lattner3eee99c2008-08-19 04:36:02 +0000296#else
Chris Lattner604e3512008-08-19 04:47:09 +0000297#define ST_DEBUG(X)
Chris Lattner3eee99c2008-08-19 04:36:02 +0000298#endif
299
300// Module level constructor. Causes the contents of the Module (sans functions)
301// to be added to the slot table.
302SlotTracker::SlotTracker(const Module *M)
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000303 : TheModule(M), TheFunction(0), FunctionProcessed(false), mNext(0), fNext(0) {
Chris Lattner3eee99c2008-08-19 04:36:02 +0000304}
305
306// Function level constructor. Causes the contents of the Module and the one
307// function provided to be added to the slot table.
308SlotTracker::SlotTracker(const Function *F)
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000309 : TheModule(F ? F->getParent() : 0), TheFunction(F), FunctionProcessed(false),
310 mNext(0), fNext(0) {
Chris Lattner3eee99c2008-08-19 04:36:02 +0000311}
312
313inline void SlotTracker::initialize() {
314 if (TheModule) {
315 processModule();
316 TheModule = 0; ///< Prevent re-processing next time we're called.
317 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000318
Chris Lattner3eee99c2008-08-19 04:36:02 +0000319 if (TheFunction && !FunctionProcessed)
320 processFunction();
321}
322
323// Iterate through all the global variables, functions, and global
324// variable initializers and create slots for them.
325void SlotTracker::processModule() {
Chris Lattner604e3512008-08-19 04:47:09 +0000326 ST_DEBUG("begin processModule!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000327
328 // Add all of the unnamed global variables to the value table.
329 for (Module::const_global_iterator I = TheModule->global_begin(),
330 E = TheModule->global_end(); I != E; ++I)
331 if (!I->hasName())
332 CreateModuleSlot(I);
333
334 // Add all the unnamed functions to the table.
335 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
336 I != E; ++I)
337 if (!I->hasName())
338 CreateModuleSlot(I);
339
Chris Lattner604e3512008-08-19 04:47:09 +0000340 ST_DEBUG("end processModule!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000341}
342
343
344// Process the arguments, basic blocks, and instructions of a function.
345void SlotTracker::processFunction() {
Chris Lattner604e3512008-08-19 04:47:09 +0000346 ST_DEBUG("begin processFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000347 fNext = 0;
348
349 // Add all the function arguments with no names.
350 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
351 AE = TheFunction->arg_end(); AI != AE; ++AI)
352 if (!AI->hasName())
353 CreateFunctionSlot(AI);
354
Chris Lattner604e3512008-08-19 04:47:09 +0000355 ST_DEBUG("Inserting Instructions:\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000356
357 // Add all of the basic blocks and instructions with no names.
358 for (Function::const_iterator BB = TheFunction->begin(),
359 E = TheFunction->end(); BB != E; ++BB) {
360 if (!BB->hasName())
361 CreateFunctionSlot(BB);
362 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
363 if (I->getType() != Type::VoidTy && !I->hasName())
364 CreateFunctionSlot(I);
365 }
366
367 FunctionProcessed = true;
368
Chris Lattner604e3512008-08-19 04:47:09 +0000369 ST_DEBUG("end processFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000370}
371
372/// Clean up after incorporating a function. This is the only way to get out of
373/// the function incorporation state that affects get*Slot/Create*Slot. Function
374/// incorporation state is indicated by TheFunction != 0.
375void SlotTracker::purgeFunction() {
Chris Lattner604e3512008-08-19 04:47:09 +0000376 ST_DEBUG("begin purgeFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000377 fMap.clear(); // Simply discard the function level map
378 TheFunction = 0;
379 FunctionProcessed = false;
Chris Lattner604e3512008-08-19 04:47:09 +0000380 ST_DEBUG("end purgeFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000381}
382
383/// getGlobalSlot - Get the slot number of a global value.
384int SlotTracker::getGlobalSlot(const GlobalValue *V) {
385 // Check for uninitialized state and do lazy initialization.
386 initialize();
387
388 // Find the type plane in the module map
389 ValueMap::iterator MI = mMap.find(V);
390 return MI == mMap.end() ? -1 : MI->second;
391}
392
393
394/// getLocalSlot - Get the slot number for a value that is local to a function.
395int SlotTracker::getLocalSlot(const Value *V) {
396 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
397
398 // Check for uninitialized state and do lazy initialization.
399 initialize();
400
401 ValueMap::iterator FI = fMap.find(V);
402 return FI == fMap.end() ? -1 : FI->second;
403}
404
405
406/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
407void SlotTracker::CreateModuleSlot(const GlobalValue *V) {
408 assert(V && "Can't insert a null Value into SlotTracker!");
409 assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
410 assert(!V->hasName() && "Doesn't need a slot!");
411
412 unsigned DestSlot = mNext++;
413 mMap[V] = DestSlot;
414
Chris Lattner604e3512008-08-19 04:47:09 +0000415 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner3eee99c2008-08-19 04:36:02 +0000416 DestSlot << " [");
417 // G = Global, F = Function, A = Alias, o = other
Chris Lattner604e3512008-08-19 04:47:09 +0000418 ST_DEBUG((isa<GlobalVariable>(V) ? 'G' :
Chris Lattner3eee99c2008-08-19 04:36:02 +0000419 (isa<Function>(V) ? 'F' :
420 (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n");
421}
422
423
424/// CreateSlot - Create a new slot for the specified value if it has no name.
425void SlotTracker::CreateFunctionSlot(const Value *V) {
426 assert(V->getType() != Type::VoidTy && !V->hasName() &&
427 "Doesn't need a slot!");
428
429 unsigned DestSlot = fNext++;
430 fMap[V] = DestSlot;
431
432 // G = Global, F = Function, o = other
Chris Lattner604e3512008-08-19 04:47:09 +0000433 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner3eee99c2008-08-19 04:36:02 +0000434 DestSlot << " [o]\n");
435}
436
437
438
439//===----------------------------------------------------------------------===//
440// AsmWriter Implementation
441//===----------------------------------------------------------------------===//
Chris Lattner7f8845a2002-07-23 18:07:49 +0000442
Misha Brukmanb1c93172005-04-21 23:48:37 +0000443static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnera9f0a112006-12-06 05:50:41 +0000444 std::map<const Type *, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000445 SlotTracker *Machine);
Reid Spencer58d30f22004-07-04 11:50:43 +0000446
Chris Lattner033935d2008-08-17 04:40:13 +0000447
Chris Lattnerb86620e2001-10-29 16:37:48 +0000448
Misha Brukmanc566ca362004-03-02 00:22:19 +0000449/// fillTypeNameTable - If the module has a symbol table, take all global types
450/// and stuff their names into the TypeNames map.
451///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000452static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000453 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000454 if (!M) return;
Reid Spencer32af9e82007-01-06 07:24:44 +0000455 const TypeSymbolTable &ST = M->getTypeSymbolTable();
456 TypeSymbolTable::const_iterator TI = ST.begin();
457 for (; TI != ST.end(); ++TI) {
Reid Spencere7e96712004-05-25 08:53:40 +0000458 // As a heuristic, don't insert pointer to primitive types, because
459 // they are used too often to have a single useful name.
460 //
461 const Type *Ty = cast<Type>(TI->second);
462 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000463 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
Chris Lattner03c49532007-01-15 02:27:26 +0000464 !cast<PointerType>(Ty)->getElementType()->isInteger() ||
Reid Spencer56010e42004-05-26 21:56:09 +0000465 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Chris Lattner663d2922008-08-17 17:28:37 +0000466 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000467 }
468}
469
470
471
Misha Brukmanb1c93172005-04-21 23:48:37 +0000472static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000473 std::vector<const Type *> &TypeStack,
474 std::map<const Type *, std::string> &TypeNames,
475 std::string & Result){
Chris Lattner03c49532007-01-15 02:27:26 +0000476 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
John Criswellcd116ba2004-06-01 14:54:08 +0000477 Result += Ty->getDescription(); // Base case
478 return;
479 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000480
481 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000482 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000483 if (I != TypeNames.end()) {
484 Result += I->second;
485 return;
486 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000487
John Criswellcd116ba2004-06-01 14:54:08 +0000488 if (isa<OpaqueType>(Ty)) {
489 Result += "opaque";
490 return;
491 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000492
Chris Lattnerb86620e2001-10-29 16:37:48 +0000493 // Check to see if the Type is already on the stack...
494 unsigned Slot = 0, CurSize = TypeStack.size();
495 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
496
Misha Brukmanb1c93172005-04-21 23:48:37 +0000497 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000498 // that we have looped back to a type that we have previously visited.
499 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000500 if (Slot < CurSize) {
501 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
502 return;
503 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000504
505 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000506
Chris Lattner6b727592004-06-17 18:19:28 +0000507 switch (Ty->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000508 case Type::IntegerTyID: {
509 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc8721592007-01-12 07:25:20 +0000510 Result += "i" + utostr(BitWidth);
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000511 break;
512 }
Chris Lattner91db5822002-03-29 03:44:36 +0000513 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000514 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000515 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
516 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000517 for (FunctionType::param_iterator I = FTy->param_begin(),
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000518 E = FTy->param_end(); I != E; ++I) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000519 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000520 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000521 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000522 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000523 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000524 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000525 Result += "...";
526 }
527 Result += ")";
528 break;
529 }
530 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000531 const StructType *STy = cast<StructType>(Ty);
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000532 if (STy->isPacked())
533 Result += '<';
John Criswellcd116ba2004-06-01 14:54:08 +0000534 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000535 for (StructType::element_iterator I = STy->element_begin(),
536 E = STy->element_end(); I != E; ++I) {
537 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000538 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000539 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000540 }
541 Result += " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000542 if (STy->isPacked())
543 Result += '>';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000544 break;
545 }
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000546 case Type::PointerTyID: {
547 const PointerType *PTy = cast<PointerType>(Ty);
548 calcTypeName(PTy->getElementType(),
John Criswellcd116ba2004-06-01 14:54:08 +0000549 TypeStack, TypeNames, Result);
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000550 if (unsigned AddressSpace = PTy->getAddressSpace())
551 Result += " addrspace(" + utostr(AddressSpace) + ")";
John Criswellcd116ba2004-06-01 14:54:08 +0000552 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000553 break;
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000554 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000555 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000556 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000557 Result += "[" + utostr(ATy->getNumElements()) + " x ";
558 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
559 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000560 break;
561 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000562 case Type::VectorTyID: {
563 const VectorType *PTy = cast<VectorType>(Ty);
Brian Gaeke02209042004-08-20 06:00:58 +0000564 Result += "<" + utostr(PTy->getNumElements()) + " x ";
565 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
566 Result += ">";
567 break;
568 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000569 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000570 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000571 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000572 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000573 Result += "<unrecognized-type>";
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000574 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000575 }
576
577 TypeStack.pop_back(); // Remove self from stack...
Chris Lattnerb86620e2001-10-29 16:37:48 +0000578}
579
580
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000581/// printTypeInt - The internal guts of printing out a type that has a
582/// potentially named portion.
583///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000584static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
585 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000586 // Primitive types always print out their description, regardless of whether
587 // they have been named or not.
588 //
Chris Lattner03c49532007-01-15 02:27:26 +0000589 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)))
Chris Lattner92d60532003-10-30 00:12:51 +0000590 return Out << Ty->getDescription();
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 Lattnerb86620e2001-10-29 16:37:48 +0000594 if (I != TypeNames.end()) return Out << I->second;
595
596 // Otherwise we have a type that has not been named but is a derived type.
597 // Carefully recurse the type hierarchy to print out any contained symbolic
598 // names.
599 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000600 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000601 std::string TypeName;
602 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000603 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000604 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000605}
606
Chris Lattner34b95182001-10-31 04:33:19 +0000607
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000608/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
609/// type, iff there is an entry in the modules symbol table for the specified
610/// type or one of it's component types. This is slower than a simple x << Type
611///
Chris Lattner604e3512008-08-19 04:47:09 +0000612void llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
613 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000614 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000615
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000616 // If they want us to print out a type, but there is no context, we can't
617 // print it symbolically.
Chris Lattner604e3512008-08-19 04:47:09 +0000618 if (!M) {
619 Out << Ty->getDescription();
620 } else {
621 std::map<const Type *, std::string> TypeNames;
622 fillTypeNameTable(M, TypeNames);
623 printTypeInt(Out, Ty, TypeNames);
624 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000625}
626
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000627// PrintEscapedString - Print each character of the specified string, escaping
628// it if it is not printable or if it is an escape char.
629static void PrintEscapedString(const std::string &Str, std::ostream &Out) {
630 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
631 unsigned char C = Str[i];
632 if (isprint(C) && C != '"' && C != '\\') {
633 Out << C;
634 } else {
635 Out << '\\'
636 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
637 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
638 }
639 }
640}
641
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000642static const char *getPredicateText(unsigned predicate) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000643 const char * pred = "unknown";
644 switch (predicate) {
645 case FCmpInst::FCMP_FALSE: pred = "false"; break;
646 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
647 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
648 case FCmpInst::FCMP_OGE: pred = "oge"; break;
649 case FCmpInst::FCMP_OLT: pred = "olt"; break;
650 case FCmpInst::FCMP_OLE: pred = "ole"; break;
651 case FCmpInst::FCMP_ONE: pred = "one"; break;
652 case FCmpInst::FCMP_ORD: pred = "ord"; break;
653 case FCmpInst::FCMP_UNO: pred = "uno"; break;
654 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
655 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
656 case FCmpInst::FCMP_UGE: pred = "uge"; break;
657 case FCmpInst::FCMP_ULT: pred = "ult"; break;
658 case FCmpInst::FCMP_ULE: pred = "ule"; break;
659 case FCmpInst::FCMP_UNE: pred = "une"; break;
660 case FCmpInst::FCMP_TRUE: pred = "true"; break;
661 case ICmpInst::ICMP_EQ: pred = "eq"; break;
662 case ICmpInst::ICMP_NE: pred = "ne"; break;
663 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
664 case ICmpInst::ICMP_SGE: pred = "sge"; break;
665 case ICmpInst::ICMP_SLT: pred = "slt"; break;
666 case ICmpInst::ICMP_SLE: pred = "sle"; break;
667 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
668 case ICmpInst::ICMP_UGE: pred = "uge"; break;
669 case ICmpInst::ICMP_ULT: pred = "ult"; break;
670 case ICmpInst::ICMP_ULE: pred = "ule"; break;
671 }
672 return pred;
673}
674
Misha Brukmanb1c93172005-04-21 23:48:37 +0000675static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000676 std::map<const Type *, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000677 SlotTracker *Machine) {
Zhou Sheng75b871f2007-01-11 12:24:14 +0000678 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattner17f71652008-08-17 07:19:36 +0000679 if (CI->getType() == Type::Int1Ty) {
Reid Spencercddc9df2007-01-12 04:24:46 +0000680 Out << (CI->getZExtValue() ? "true" : "false");
Chris Lattner17f71652008-08-17 07:19:36 +0000681 return;
682 }
683 Out << CI->getValue();
684 return;
685 }
686
687 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Dale Johannesen028084e2007-09-12 03:30:33 +0000688 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble ||
689 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) {
690 // We would like to output the FP constant value in exponential notation,
691 // but we cannot do this if doing so will lose precision. Check here to
692 // make sure that we only output it in exponential format if we can parse
693 // the value back and get the same value.
694 //
695 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
Chris Lattner17f71652008-08-17 07:19:36 +0000696 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
697 CFP->getValueAPF().convertToFloat();
Dale Johannesen028084e2007-09-12 03:30:33 +0000698 std::string StrVal = ftostr(CFP->getValueAPF());
Chris Lattner1e194682002-04-18 18:53:13 +0000699
Dale Johannesen028084e2007-09-12 03:30:33 +0000700 // Check to make sure that the stringized number is not some string like
701 // "Inf" or NaN, that atof will accept, but the lexer will not. Check
702 // that the string matches the "[-+]?[0-9]" regex.
703 //
704 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
705 ((StrVal[0] == '-' || StrVal[0] == '+') &&
706 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
707 // Reparse stringized version!
708 if (atof(StrVal.c_str()) == Val) {
709 Out << StrVal;
710 return;
711 }
Chris Lattner1e194682002-04-18 18:53:13 +0000712 }
Dale Johannesen028084e2007-09-12 03:30:33 +0000713 // Otherwise we could not reparse it to exactly the same value, so we must
714 // output the string in hexadecimal format!
715 assert(sizeof(double) == sizeof(uint64_t) &&
716 "assuming that double is 64 bits!");
717 Out << "0x" << utohexstr(DoubleToBits(Val));
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000718 return;
719 }
720
721 // Some form of long double. These appear as a magic letter identifying
722 // the type, then a fixed number of hex digits.
723 Out << "0x";
724 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended)
725 Out << 'K';
726 else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad)
727 Out << 'L';
728 else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
729 Out << 'M';
730 else
731 assert(0 && "Unsupported floating point type");
732 // api needed to prevent premature destruction
733 APInt api = CFP->getValueAPF().convertToAPInt();
734 const uint64_t* p = api.getRawData();
735 uint64_t word = *p;
736 int shiftcount=60;
737 int width = api.getBitWidth();
738 for (int j=0; j<width; j+=4, shiftcount-=4) {
739 unsigned int nibble = (word>>shiftcount) & 15;
740 if (nibble < 10)
741 Out << (unsigned char)(nibble + '0');
Dale Johannesen028084e2007-09-12 03:30:33 +0000742 else
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000743 Out << (unsigned char)(nibble - 10 + 'A');
744 if (shiftcount == 0 && j+4 < width) {
745 word = *(++p);
746 shiftcount = 64;
747 if (width-j-4 < 64)
748 shiftcount = width-j-4;
Dale Johannesen028084e2007-09-12 03:30:33 +0000749 }
750 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000751 return;
752 }
753
754 if (isa<ConstantAggregateZero>(CV)) {
Chris Lattner76b2ff42004-02-15 05:55:15 +0000755 Out << "zeroinitializer";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000756 return;
757 }
758
759 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattner1e194682002-04-18 18:53:13 +0000760 // As a special case, print the array as a string if it is an array of
Dan Gohmane9bc2ba2008-05-12 16:34:30 +0000761 // i8 with ConstantInt values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000762 //
Chris Lattner1e194682002-04-18 18:53:13 +0000763 const Type *ETy = CA->getType()->getElementType();
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000764 if (CA->isString()) {
Chris Lattner1e194682002-04-18 18:53:13 +0000765 Out << "c\"";
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000766 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000767 Out << '"';
Chris Lattner1e194682002-04-18 18:53:13 +0000768 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000769 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000770 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000771 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000772 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000773 WriteAsOperandInternal(Out, CA->getOperand(0),
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000774 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000775 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
776 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000777 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000778 WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000779 }
780 }
781 Out << " ]";
782 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000783 return;
784 }
785
786 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000787 if (CS->getType()->isPacked())
788 Out << '<';
Misha Brukman21bbdb92004-06-04 21:11:51 +0000789 Out << '{';
Jim Laskey3bb78742006-02-25 12:27:03 +0000790 unsigned N = CS->getNumOperands();
791 if (N) {
Chris Lattner604e3512008-08-19 04:47:09 +0000792 Out << ' ';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000793 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
794
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000795 WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000796
Jim Laskey3bb78742006-02-25 12:27:03 +0000797 for (unsigned i = 1; i < N; i++) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000798 Out << ", ";
799 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
800
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000801 WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000802 }
803 }
Jim Laskey3bb78742006-02-25 12:27:03 +0000804
Chris Lattnerd84bb632002-04-16 21:36:08 +0000805 Out << " }";
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000806 if (CS->getType()->isPacked())
807 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000808 return;
809 }
810
811 if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
812 const Type *ETy = CP->getType()->getElementType();
813 assert(CP->getNumOperands() > 0 &&
814 "Number of operands for a PackedConst must be > 0");
815 Out << "< ";
816 printTypeInt(Out, ETy, TypeTable);
817 WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
818 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
819 Out << ", ";
820 printTypeInt(Out, ETy, TypeTable);
821 WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
822 }
823 Out << " >";
824 return;
825 }
826
827 if (isa<ConstantPointerNull>(CV)) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000828 Out << "null";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000829 return;
830 }
831
832 if (isa<UndefValue>(CV)) {
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000833 Out << "undef";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000834 return;
835 }
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000836
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000837 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000838 Out << CE->getOpcodeName();
839 if (CE->isCompare())
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000840 Out << ' ' << getPredicateText(CE->getPredicate());
Reid Spencer812a1be2006-12-04 05:19:18 +0000841 Out << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000842
Vikram S. Adveb952b542002-07-14 23:14:45 +0000843 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
844 printTypeInt(Out, (*OI)->getType(), TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000845 WriteAsOperandInternal(Out, *OI, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000846 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000847 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000848 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000849
Dan Gohmana76f0f72008-05-31 19:12:39 +0000850 if (CE->hasIndices()) {
851 const SmallVector<unsigned, 4> &Indices = CE->getIndices();
852 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
853 Out << ", " << Indices[i];
854 }
855
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000856 if (CE->isCast()) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000857 Out << " to ";
858 printTypeInt(Out, CE->getType(), TypeTable);
859 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000860
Misha Brukman21bbdb92004-06-04 21:11:51 +0000861 Out << ')';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000862 return;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000863 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000864
865 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000866}
867
868
Misha Brukmanc566ca362004-03-02 00:22:19 +0000869/// WriteAsOperand - Write the name of the specified value out to the specified
870/// ostream. This can be useful when you just want to print int %reg126, not
871/// the whole instruction that generated it.
872///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000873static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000874 std::map<const Type*, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000875 SlotTracker *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000876 Out << ' ';
Chris Lattner033935d2008-08-17 04:40:13 +0000877 if (V->hasName()) {
878 PrintLLVMName(Out, V);
879 return;
880 }
881
882 const Constant *CV = dyn_cast<Constant>(V);
883 if (CV && !isa<GlobalValue>(CV)) {
884 WriteConstantInt(Out, CV, TypeTable, Machine);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000885 return;
886 }
887
888 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
Chris Lattner033935d2008-08-17 04:40:13 +0000889 Out << "asm ";
890 if (IA->hasSideEffects())
891 Out << "sideeffect ";
892 Out << '"';
893 PrintEscapedString(IA->getAsmString(), Out);
894 Out << "\", \"";
895 PrintEscapedString(IA->getConstraintString(), Out);
896 Out << '"';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000897 return;
898 }
899
900 char Prefix = '%';
901 int Slot;
902 if (Machine) {
903 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
904 Slot = Machine->getGlobalSlot(GV);
905 Prefix = '@';
906 } else {
907 Slot = Machine->getLocalSlot(V);
908 }
Chris Lattner033935d2008-08-17 04:40:13 +0000909 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000910 Machine = createSlotTracker(V);
Chris Lattner033935d2008-08-17 04:40:13 +0000911 if (Machine) {
912 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
913 Slot = Machine->getGlobalSlot(GV);
914 Prefix = '@';
915 } else {
916 Slot = Machine->getLocalSlot(V);
917 }
Chris Lattnera2d810d2006-01-25 22:26:05 +0000918 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000919 Slot = -1;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000920 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000921 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000922 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000923
924 if (Slot != -1)
925 Out << Prefix << Slot;
926 else
927 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000928}
929
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000930/// WriteAsOperand - Write the name of the specified value out to the specified
931/// ostream. This can be useful when you just want to print int %reg126, not
932/// the whole instruction that generated it.
933///
Chris Lattner604e3512008-08-19 04:47:09 +0000934void llvm::WriteAsOperand(std::ostream &Out, const Value *V, bool PrintType,
935 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000936 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000937 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000938
Chris Lattner98cf1f52002-11-20 18:36:02 +0000939 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000940 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000941
942 if (PrintType)
943 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000944
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000945 WriteAsOperandInternal(Out, V, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000946}
947
Reid Spencer58d30f22004-07-04 11:50:43 +0000948
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000949namespace {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000950
Chris Lattnerfee714f2001-09-07 16:36:04 +0000951class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000952 std::ostream &Out;
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000953 SlotTracker &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000954 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000955 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000956 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000957public:
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000958 inline AssemblyWriter(std::ostream &o, SlotTracker &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000959 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000960 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000961
962 // If the module has a symbol table, take all global types and stuff their
963 // names into the TypeNames map.
964 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000965 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000966 }
967
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000968 void write(const Module *M) { printModule(M); }
969 void write(const GlobalVariable *G) { printGlobal(G); }
970 void write(const GlobalAlias *G) { printAlias(G); }
971 void write(const Function *F) { printFunction(F); }
972 void write(const BasicBlock *BB) { printBasicBlock(BB); }
973 void write(const Instruction *I) { printInstruction(*I); }
974 void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000975
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000976 void writeOperand(const Value *Op, bool PrintType);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000977 void writeParamOperand(const Value *Operand, ParameterAttributes Attrs);
Chris Lattner1e194682002-04-18 18:53:13 +0000978
Misha Brukman4685e262004-04-28 15:31:21 +0000979 const Module* getModule() { return TheModule; }
980
Misha Brukmand92f54a2004-11-15 19:30:05 +0000981private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000982 void printModule(const Module *M);
Reid Spencer32af9e82007-01-06 07:24:44 +0000983 void printTypeSymbolTable(const TypeSymbolTable &ST);
Chris Lattner7bfee412001-10-29 16:05:51 +0000984 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000985 void printAlias(const GlobalAlias *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000986 void printFunction(const Function *F);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000987 void printArgument(const Argument *FA, ParameterAttributes Attrs);
Chris Lattner7bfee412001-10-29 16:05:51 +0000988 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000989 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000990
991 // printType - Go to extreme measures to attempt to print out a short,
992 // symbolic version of a type name.
993 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000994 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000995 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000996 }
997
998 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
999 // without considering any symbolic types that we may have equal to it.
1000 //
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001001 void printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +00001002
Chris Lattner862e3382001-10-13 06:42:36 +00001003 // printInfoComment - Print a little comment after the instruction indicating
1004 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +00001005 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001006};
Reid Spencerf43ac622004-05-27 22:04:46 +00001007} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +00001008
Misha Brukmanc566ca362004-03-02 00:22:19 +00001009/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
1010/// without considering any symbolic types that we may have equal to it.
1011///
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001012void AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
1013 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001014 Out << "i" << utostr(ITy->getBitWidth());
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001015 return;
1016 }
1017
1018 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Reid Spencer8c4914c2006-12-31 05:24:50 +00001019 printType(FTy->getReturnType());
Reid Spencer8c4914c2006-12-31 05:24:50 +00001020 Out << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +00001021 for (FunctionType::param_iterator I = FTy->param_begin(),
1022 E = FTy->param_end(); I != E; ++I) {
1023 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +00001024 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +00001025 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +00001026 }
1027 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001028 if (FTy->getNumParams()) Out << ", ";
1029 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +00001030 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001031 Out << ')';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001032 return;
1033 }
1034
1035 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001036 if (STy->isPacked())
1037 Out << '<';
Misha Brukmana6619a92004-06-21 21:53:56 +00001038 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +00001039 for (StructType::element_iterator I = STy->element_begin(),
1040 E = STy->element_end(); I != E; ++I) {
1041 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +00001042 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +00001043 printType(*I);
1044 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001045 Out << " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001046 if (STy->isPacked())
1047 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001048 return;
1049 }
1050
1051 if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Christopher Lambac7d6312007-12-18 03:49:35 +00001052 printType(PTy->getElementType());
1053 if (unsigned AddressSpace = PTy->getAddressSpace())
1054 Out << " addrspace(" << AddressSpace << ")";
1055 Out << '*';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001056 return;
1057 }
1058
1059 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001060 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001061 printType(ATy->getElementType()) << ']';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001062 return;
1063 }
1064
1065 if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
Reid Spencere203d352004-08-20 15:37:30 +00001066 Out << '<' << PTy->getNumElements() << " x ";
1067 printType(PTy->getElementType()) << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001068 return;
Reid Spencere203d352004-08-20 15:37:30 +00001069 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001070
1071 if (isa<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001072 Out << "opaque";
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001073 return;
Chris Lattnerd816b532002-04-13 20:53:41 +00001074 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001075
1076 if (!Ty->isPrimitiveType())
1077 Out << "<unknown derived type>";
1078 printType(Ty);
Chris Lattnerd816b532002-04-13 20:53:41 +00001079}
1080
1081
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001082void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
1083 if (Operand == 0) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +00001084 Out << "<null operand!>";
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001085 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001086 if (PrintType) {
1087 Out << ' ';
1088 printType(Operand->getType());
1089 }
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001090 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
Chris Lattner08f7d0c2005-02-24 16:58:29 +00001091 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001092}
1093
Dale Johannesen89268bc2008-02-19 21:38:47 +00001094void AssemblyWriter::writeParamOperand(const Value *Operand,
1095 ParameterAttributes Attrs) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001096 if (Operand == 0) {
1097 Out << "<null operand!>";
1098 } else {
1099 Out << ' ';
1100 // Print the type
1101 printType(Operand->getType());
1102 // Print parameter attributes list
1103 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001104 Out << ' ' << ParamAttr::getAsString(Attrs);
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001105 // Print the operand
1106 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
1107 }
1108}
Chris Lattner2f7c9632001-06-06 20:29:01 +00001109
Chris Lattner7bfee412001-10-29 16:05:51 +00001110void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +00001111 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001112 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +00001113 // require a comment char before it).
1114 M->getModuleIdentifier().find('\n') == std::string::npos)
1115 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
1116
Owen Andersone2237542006-10-18 02:21:12 +00001117 if (!M->getDataLayout().empty())
Chris Lattner04897162006-10-22 06:06:56 +00001118 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencer48f98c82004-07-25 21:44:54 +00001119 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +00001120 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001121
Chris Lattnereef2fe72006-01-24 04:13:11 +00001122 if (!M->getModuleInlineAsm().empty()) {
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001123 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnereef2fe72006-01-24 04:13:11 +00001124 std::string Asm = M->getModuleInlineAsm();
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001125 size_t CurPos = 0;
1126 size_t NewLine = Asm.find_first_of('\n', CurPos);
1127 while (NewLine != std::string::npos) {
1128 // We found a newline, print the portion of the asm string from the
1129 // last newline up to this newline.
1130 Out << "module asm \"";
1131 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1132 Out);
1133 Out << "\"\n";
1134 CurPos = NewLine+1;
1135 NewLine = Asm.find_first_of('\n', CurPos);
1136 }
Chris Lattner3acaf5c2006-01-24 00:40:17 +00001137 Out << "module asm \"";
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001138 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner6ed87bd2006-01-23 23:03:36 +00001139 Out << "\"\n";
1140 }
1141
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001142 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +00001143 Module::lib_iterator LI = M->lib_begin();
1144 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +00001145 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +00001146 Out << "deplibs = [ ";
1147 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001148 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +00001149 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +00001150 if (LI != LE)
1151 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +00001152 }
1153 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +00001154 }
Reid Spencerb9e08772004-09-13 23:44:23 +00001155
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001156 // Loop over the symbol table, emitting all named constants.
Reid Spencer32af9e82007-01-06 07:24:44 +00001157 printTypeSymbolTable(M->getTypeSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001158
Chris Lattner54932b02006-12-06 04:41:52 +00001159 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
1160 I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +00001161 printGlobal(I);
Chris Lattnerd2747052007-04-26 02:24:10 +00001162
1163 // Output all aliases.
1164 if (!M->alias_empty()) Out << "\n";
1165 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
1166 I != E; ++I)
1167 printAlias(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001168
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001169 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +00001170 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
1171 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001172}
1173
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001174static void PrintLinkage(GlobalValue::LinkageTypes LT, std::ostream &Out) {
1175 switch (LT) {
1176 case GlobalValue::InternalLinkage: Out << "internal "; break;
1177 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
1178 case GlobalValue::WeakLinkage: Out << "weak "; break;
1179 case GlobalValue::CommonLinkage: Out << "common "; break;
1180 case GlobalValue::AppendingLinkage: Out << "appending "; break;
1181 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
1182 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
1183 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
1184 case GlobalValue::ExternalLinkage: break;
1185 case GlobalValue::GhostLinkage:
1186 Out << "GhostLinkage not allowed in AsmWriter!\n";
1187 abort();
1188 }
1189}
1190
1191
1192static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
1193 std::ostream &Out) {
1194 switch (Vis) {
1195 default: assert(0 && "Invalid visibility style!");
1196 case GlobalValue::DefaultVisibility: break;
1197 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1198 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
1199 }
1200}
1201
Chris Lattner7bfee412001-10-29 16:05:51 +00001202void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Chris Lattner033935d2008-08-17 04:40:13 +00001203 if (GV->hasName()) {
1204 PrintLLVMName(Out, GV);
1205 Out << " = ";
1206 }
Chris Lattner37798642001-09-18 04:01:05 +00001207
Chris Lattner1508d3f2008-08-19 05:16:28 +00001208 if (!GV->hasInitializer() && GV->hasExternalLinkage())
1209 Out << "external ";
1210
1211 PrintLinkage(GV->getLinkage(), Out);
1212 PrintVisibility(GV->getVisibility(), Out);
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001213
1214 if (GV->isThreadLocal()) Out << "thread_local ";
Misha Brukmana6619a92004-06-21 21:53:56 +00001215 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +00001216 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +00001217
Chris Lattner033935d2008-08-17 04:40:13 +00001218 if (GV->hasInitializer())
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001219 writeOperand(GV->getInitializer(), false);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001220
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001221 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1222 Out << " addrspace(" << AddressSpace << ") ";
1223
Chris Lattner4b96c542005-11-12 00:10:19 +00001224 if (GV->hasSection())
1225 Out << ", section \"" << GV->getSection() << '"';
1226 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001227 Out << ", align " << GV->getAlignment();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001228
Chris Lattner113f4f42002-06-25 16:13:24 +00001229 printInfoComment(*GV);
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001230 Out << '\n';
Chris Lattnerda975502001-09-10 07:58:01 +00001231}
1232
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001233void AssemblyWriter::printAlias(const GlobalAlias *GA) {
Dale Johannesen83e468a2008-06-03 18:14:29 +00001234 // Don't crash when dumping partially built GA
1235 if (!GA->hasName())
1236 Out << "<<nameless>> = ";
Chris Lattner033935d2008-08-17 04:40:13 +00001237 else {
1238 PrintLLVMName(Out, GA);
1239 Out << " = ";
1240 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001241 PrintVisibility(GA->getVisibility(), Out);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001242
1243 Out << "alias ";
1244
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001245 PrintLinkage(GA->getLinkage(), Out);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001246
Anton Korobeynikov546ea7e2007-04-29 18:02:48 +00001247 const Constant *Aliasee = GA->getAliasee();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001248
1249 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
1250 printType(GV->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001251 Out << ' ';
1252 PrintLLVMName(Out, GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001253 } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
1254 printType(F->getFunctionType());
1255 Out << "* ";
1256
Chris Lattner17f71652008-08-17 07:19:36 +00001257 if (F->hasName())
Chris Lattner033935d2008-08-17 04:40:13 +00001258 PrintLLVMName(Out, F);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001259 else
1260 Out << "@\"\"";
Anton Korobeynikov72d5d422008-03-22 08:17:17 +00001261 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Aliasee)) {
1262 printType(GA->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001263 Out << " ";
1264 PrintLLVMName(Out, GA);
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +00001265 } else {
1266 const ConstantExpr *CE = 0;
1267 if ((CE = dyn_cast<ConstantExpr>(Aliasee)) &&
1268 (CE->getOpcode() == Instruction::BitCast)) {
1269 writeOperand(CE, false);
1270 } else
1271 assert(0 && "Unsupported aliasee");
1272 }
1273
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001274 printInfoComment(*GA);
Chris Lattner1508d3f2008-08-19 05:16:28 +00001275 Out << '\n';
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001276}
1277
Reid Spencer32af9e82007-01-06 07:24:44 +00001278void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +00001279 // Print the types.
Reid Spencer32af9e82007-01-06 07:24:44 +00001280 for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
1281 TI != TE; ++TI) {
Chris Lattner1508d3f2008-08-19 05:16:28 +00001282 Out << '\t';
1283 PrintLLVMName(Out, &TI->first[0], TI->first.size(), LocalPrefix);
1284 Out << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +00001285
1286 // Make sure we print out at least one level of the type structure, so
1287 // that we do not get %FILE = type %FILE
1288 //
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001289 printTypeAtLeastOneLevel(TI->second);
1290 Out << '\n';
Reid Spencere7e96712004-05-25 08:53:40 +00001291 }
Reid Spencer32af9e82007-01-06 07:24:44 +00001292}
1293
Misha Brukmanc566ca362004-03-02 00:22:19 +00001294/// printFunction - Print all aspects of a function.
1295///
Chris Lattner113f4f42002-06-25 16:13:24 +00001296void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001297 // Print out the return type and name.
1298 Out << '\n';
Chris Lattner379a8d22003-04-16 20:28:45 +00001299
Misha Brukmana6619a92004-06-21 21:53:56 +00001300 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001301
Reid Spencer5301e7c2007-01-30 20:08:39 +00001302 if (F->isDeclaration())
Chris Lattner10f03a62007-08-19 22:15:26 +00001303 Out << "declare ";
1304 else
Reid Spencer7ce2d2a2006-12-29 20:29:48 +00001305 Out << "define ";
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001306
1307 PrintLinkage(F->getLinkage(), Out);
1308 PrintVisibility(F->getVisibility(), Out);
Chris Lattner379a8d22003-04-16 20:28:45 +00001309
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001310 // Print the calling convention.
1311 switch (F->getCallingConv()) {
1312 case CallingConv::C: break; // default
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001313 case CallingConv::Fast: Out << "fastcc "; break;
1314 case CallingConv::Cold: Out << "coldcc "; break;
1315 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1316 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001317 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001318 default: Out << "cc" << F->getCallingConv() << " "; break;
1319 }
1320
Reid Spencer8c4914c2006-12-31 05:24:50 +00001321 const FunctionType *FT = F->getFunctionType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001322 const PAListPtr &Attrs = F->getParamAttrs();
Misha Brukman21bbdb92004-06-04 21:11:51 +00001323 printType(F->getReturnType()) << ' ';
Chris Lattneredceac32008-08-17 07:24:08 +00001324 if (F->hasName())
Chris Lattner033935d2008-08-17 04:40:13 +00001325 PrintLLVMName(Out, F);
Chris Lattner5b337482003-10-18 05:57:43 +00001326 else
Reid Spencer788e3172007-01-26 08:02:52 +00001327 Out << "@\"\"";
Misha Brukmana6619a92004-06-21 21:53:56 +00001328 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001329 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001330
Chris Lattner7bfee412001-10-29 16:05:51 +00001331 // Loop over the arguments, printing them...
Chris Lattnerfee714f2001-09-07 16:36:04 +00001332
Reid Spencer8c4914c2006-12-31 05:24:50 +00001333 unsigned Idx = 1;
Chris Lattner82738fe2007-04-18 00:57:22 +00001334 if (!F->isDeclaration()) {
1335 // If this isn't a declaration, print the argument names as well.
1336 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1337 I != E; ++I) {
1338 // Insert commas as we go... the first arg doesn't get a comma
1339 if (I != F->arg_begin()) Out << ", ";
Chris Lattner8a923e72008-03-12 17:45:29 +00001340 printArgument(I, Attrs.getParamAttrs(Idx));
Chris Lattner82738fe2007-04-18 00:57:22 +00001341 Idx++;
1342 }
1343 } else {
1344 // Otherwise, print the types from the function type.
1345 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1346 // Insert commas as we go... the first arg doesn't get a comma
1347 if (i) Out << ", ";
1348
1349 // Output type...
1350 printType(FT->getParamType(i));
1351
Chris Lattner8a923e72008-03-12 17:45:29 +00001352 ParameterAttributes ArgAttrs = Attrs.getParamAttrs(i+1);
Chris Lattner82738fe2007-04-18 00:57:22 +00001353 if (ArgAttrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001354 Out << ' ' << ParamAttr::getAsString(ArgAttrs);
Chris Lattner82738fe2007-04-18 00:57:22 +00001355 }
Reid Spencer8c4914c2006-12-31 05:24:50 +00001356 }
Chris Lattnerfee714f2001-09-07 16:36:04 +00001357
1358 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +00001359 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001360 if (FT->getNumParams()) Out << ", ";
1361 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +00001362 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001363 Out << ')';
Chris Lattner8a923e72008-03-12 17:45:29 +00001364 ParameterAttributes RetAttrs = Attrs.getParamAttrs(0);
1365 if (RetAttrs != ParamAttr::None)
1366 Out << ' ' << ParamAttr::getAsString(Attrs.getParamAttrs(0));
Chris Lattner4b96c542005-11-12 00:10:19 +00001367 if (F->hasSection())
1368 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001369 if (F->getAlignment())
1370 Out << " align " << F->getAlignment();
Gordon Henriksend930f912008-08-17 18:44:35 +00001371 if (F->hasGC())
1372 Out << " gc \"" << F->getGC() << '"';
Chris Lattner4b96c542005-11-12 00:10:19 +00001373
Reid Spencer5301e7c2007-01-30 20:08:39 +00001374 if (F->isDeclaration()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001375 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +00001376 } else {
Chris Lattnerd5fbc8f2008-04-21 06:12:55 +00001377 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001378
Chris Lattner6915f8f2002-04-07 22:49:37 +00001379 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +00001380 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1381 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001382
Misha Brukmana6619a92004-06-21 21:53:56 +00001383 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +00001384 }
1385
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001386 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001387}
1388
Misha Brukmanc566ca362004-03-02 00:22:19 +00001389/// printArgument - This member is called for every argument that is passed into
1390/// the function. Simply print it out
1391///
Dale Johannesen89268bc2008-02-19 21:38:47 +00001392void AssemblyWriter::printArgument(const Argument *Arg,
1393 ParameterAttributes Attrs) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001394 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +00001395 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001396
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001397 // Output parameter attributes list
Reid Spencera472f662007-04-11 02:44:20 +00001398 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001399 Out << ' ' << ParamAttr::getAsString(Attrs);
Reid Spencer8c4914c2006-12-31 05:24:50 +00001400
Chris Lattner2f7c9632001-06-06 20:29:01 +00001401 // Output name, if available...
Chris Lattner033935d2008-08-17 04:40:13 +00001402 if (Arg->hasName()) {
1403 Out << ' ';
1404 PrintLLVMName(Out, Arg);
1405 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001406}
1407
Misha Brukmanc566ca362004-03-02 00:22:19 +00001408/// printBasicBlock - This member is called for each basic block in a method.
1409///
Chris Lattner7bfee412001-10-29 16:05:51 +00001410void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001411 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001412 Out << "\n";
Chris Lattner1508d3f2008-08-19 05:16:28 +00001413 PrintLLVMName(Out, BB->getNameStart(), BB->getNameLen(), LabelPrefix);
Chris Lattner033935d2008-08-17 04:40:13 +00001414 Out << ':';
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001415 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Chris Lattner67bec132008-04-21 04:20:33 +00001416 Out << "\n; <label>:";
Chris Lattner5e043322007-01-11 03:54:27 +00001417 int Slot = Machine.getLocalSlot(BB);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001418 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001419 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +00001420 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001421 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +00001422 }
Chris Lattner2447ef52003-11-20 00:09:43 +00001423
1424 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +00001425 Out << "\t\t; Error: Block without parent!";
Chris Lattnerff834c02008-04-22 02:45:44 +00001426 else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
1427 // Output predecessors for the block...
1428 Out << "\t\t;";
1429 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
1430
1431 if (PI == PE) {
1432 Out << " No predecessors!";
1433 } else {
1434 Out << " preds =";
1435 writeOperand(*PI, false);
1436 for (++PI; PI != PE; ++PI) {
1437 Out << ',';
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001438 writeOperand(*PI, false);
Chris Lattner00211f12003-11-16 22:59:57 +00001439 }
Chris Lattner58185f22002-10-02 19:38:55 +00001440 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001441 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001442
Chris Lattnerff834c02008-04-22 02:45:44 +00001443 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001444
Misha Brukmana6619a92004-06-21 21:53:56 +00001445 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001446
Chris Lattnerfee714f2001-09-07 16:36:04 +00001447 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001448 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1449 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001450
Misha Brukmana6619a92004-06-21 21:53:56 +00001451 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001452}
1453
Chris Lattner862e3382001-10-13 06:42:36 +00001454
Misha Brukmanc566ca362004-03-02 00:22:19 +00001455/// printInfoComment - Print a little comment after the instruction indicating
1456/// which slot it occupies.
1457///
Chris Lattner113f4f42002-06-25 16:13:24 +00001458void AssemblyWriter::printInfoComment(const Value &V) {
1459 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001460 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001461 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001462
Chris Lattner113f4f42002-06-25 16:13:24 +00001463 if (!V.hasName()) {
Chris Lattner5e043322007-01-11 03:54:27 +00001464 int SlotNum;
1465 if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1466 SlotNum = Machine.getGlobalSlot(GV);
1467 else
1468 SlotNum = Machine.getLocalSlot(&V);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001469 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001470 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001471 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001472 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001473 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001474 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001475 }
1476}
1477
Reid Spencere7141c82006-08-28 01:02:49 +00001478// This member is called for each Instruction in a function..
Chris Lattner113f4f42002-06-25 16:13:24 +00001479void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001480 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001481
Misha Brukmana6619a92004-06-21 21:53:56 +00001482 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001483
1484 // Print out name if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001485 if (I.hasName()) {
1486 PrintLLVMName(Out, &I);
1487 Out << " = ";
1488 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001489
Chris Lattner06038452005-05-06 05:51:46 +00001490 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001491 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001492 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001493 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001494 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1495 // If this is a call, check if it's a tail call.
1496 Out << "tail ";
1497 }
Chris Lattner504f9242003-09-08 17:45:59 +00001498
Chris Lattner2f7c9632001-06-06 20:29:01 +00001499 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001500 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001501
Reid Spencer45e52392006-12-03 06:27:29 +00001502 // Print out the compare instruction predicates
Nate Begemand2195702008-05-12 19:01:56 +00001503 if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
1504 Out << " " << getPredicateText(CI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001505
Chris Lattner2f7c9632001-06-06 20:29:01 +00001506 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001507 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001508
1509 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001510 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1511 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001512 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001513 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001514 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001515 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001516
Chris Lattner8d48df22002-04-13 18:34:38 +00001517 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001518 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001519 writeOperand(Operand , true); Out << ',';
1520 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001521
Chris Lattner113f4f42002-06-25 16:13:24 +00001522 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001523 Out << "\n\t\t";
1524 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001525 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001526 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001527 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001528 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001529 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001530 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001531 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001532
Chris Lattner113f4f42002-06-25 16:13:24 +00001533 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001534 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001535 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001536 writeOperand(I.getOperand(op ), false); Out << ',';
1537 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001538 }
Dan Gohmana76f0f72008-05-31 19:12:39 +00001539 } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
1540 writeOperand(I.getOperand(0), true);
1541 for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
1542 Out << ", " << *i;
1543 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
1544 writeOperand(I.getOperand(0), true); Out << ',';
1545 writeOperand(I.getOperand(1), true);
1546 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
1547 Out << ", " << *i;
Devang Patel59643e52008-02-23 00:35:18 +00001548 } else if (isa<ReturnInst>(I) && !Operand) {
1549 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001550 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1551 // Print the calling convention being used.
1552 switch (CI->getCallingConv()) {
1553 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001554 case CallingConv::Fast: Out << " fastcc"; break;
1555 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerf5270372007-11-18 18:32:16 +00001556 case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break;
1557 case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001558 case CallingConv::X86_SSECall: Out << " x86_ssecallcc"; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001559 default: Out << " cc" << CI->getCallingConv(); break;
1560 }
1561
Reid Spencer1517de32007-04-09 06:10:42 +00001562 const PointerType *PTy = cast<PointerType>(Operand->getType());
1563 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1564 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001565 const PAListPtr &PAL = CI->getParamAttrs();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001566
Chris Lattner463d6a52003-08-05 15:34:45 +00001567 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001568 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001569 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001570 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001571 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001572 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001573 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001574 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001575 writeOperand(Operand, false);
1576 } else {
1577 writeOperand(Operand, true);
1578 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001579 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001580 for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1581 if (op > 1)
1582 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001583 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op));
Chris Lattner2f7c9632001-06-06 20:29:01 +00001584 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001585 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001586 if (PAL.getParamAttrs(0) != ParamAttr::None)
1587 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Chris Lattner113f4f42002-06-25 16:13:24 +00001588 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Reid Spencer1517de32007-04-09 06:10:42 +00001589 const PointerType *PTy = cast<PointerType>(Operand->getType());
1590 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1591 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001592 const PAListPtr &PAL = II->getParamAttrs();
Chris Lattner463d6a52003-08-05 15:34:45 +00001593
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001594 // Print the calling convention being used.
1595 switch (II->getCallingConv()) {
1596 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001597 case CallingConv::Fast: Out << " fastcc"; break;
1598 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001599 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1600 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001601 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001602 default: Out << " cc" << II->getCallingConv(); break;
1603 }
1604
Chris Lattner463d6a52003-08-05 15:34:45 +00001605 // If possible, print out the short form of the invoke instruction. We can
1606 // only do this if the first argument is a pointer to a nonvararg function,
1607 // and if the return type is not a pointer to a function.
1608 //
1609 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001610 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001611 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001612 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001613 writeOperand(Operand, false);
1614 } else {
1615 writeOperand(Operand, true);
1616 }
1617
Misha Brukmana6619a92004-06-21 21:53:56 +00001618 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001619 for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1620 if (op > 3)
1621 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001622 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op-2));
Chris Lattner862e3382001-10-13 06:42:36 +00001623 }
1624
Reid Spencer136a91c2007-01-05 17:06:19 +00001625 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001626 if (PAL.getParamAttrs(0) != ParamAttr::None)
Dan Gohman1a70bcc2008-08-05 15:51:44 +00001627 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Reid Spencer136a91c2007-01-05 17:06:19 +00001628 Out << "\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001629 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001630 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001631 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001632
Chris Lattner113f4f42002-06-25 16:13:24 +00001633 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001634 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001635 printType(AI->getType()->getElementType());
1636 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001637 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001638 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001639 }
Nate Begeman848622f2005-11-05 09:21:28 +00001640 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001641 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001642 }
Chris Lattner862e3382001-10-13 06:42:36 +00001643 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001644 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001645 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001646 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001647 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001648 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001649 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001650 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001651 } else if (Operand) { // Print the normal way...
1652
Misha Brukmanb1c93172005-04-21 23:48:37 +00001653 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001654 // omit the type from all but the first operand. If the instruction has
1655 // different type operands (for example br), then they are all printed.
1656 bool PrintAllTypes = false;
1657 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001658
Reid Spencer0cdd04f2007-02-02 13:54:55 +00001659 // Select, Store and ShuffleVector always print all types.
Devang Patelce556d92008-03-04 22:05:14 +00001660 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
1661 || isa<ReturnInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001662 PrintAllTypes = true;
1663 } else {
1664 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1665 Operand = I.getOperand(i);
1666 if (Operand->getType() != TheType) {
1667 PrintAllTypes = true; // We have differing types! Print them all!
1668 break;
1669 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001670 }
1671 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001672
Chris Lattner7bfee412001-10-29 16:05:51 +00001673 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001674 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001675 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001676 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001677
Chris Lattner113f4f42002-06-25 16:13:24 +00001678 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001679 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001680 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001681 }
1682 }
Christopher Lamb84485702007-04-22 19:24:39 +00001683
1684 // Print post operand alignment for load/store
1685 if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1686 Out << ", align " << cast<LoadInst>(I).getAlignment();
1687 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1688 Out << ", align " << cast<StoreInst>(I).getAlignment();
1689 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001690
Chris Lattner862e3382001-10-13 06:42:36 +00001691 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001692 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001693}
1694
1695
1696//===----------------------------------------------------------------------===//
1697// External Interface declarations
1698//===----------------------------------------------------------------------===//
1699
Chris Lattner8339f7d2003-10-30 23:41:03 +00001700void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001701 SlotTracker SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001702 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001703 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001704}
1705
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001706void GlobalVariable::print(std::ostream &o) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001707 SlotTracker SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001708 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001709 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001710}
1711
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001712void GlobalAlias::print(std::ostream &o) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001713 SlotTracker SlotTable(getParent());
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001714 AssemblyWriter W(o, SlotTable, getParent(), 0);
1715 W.write(this);
1716}
1717
Chris Lattner8339f7d2003-10-30 23:41:03 +00001718void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001719 SlotTracker SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001720 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001721
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001722 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001723}
1724
Chris Lattnereef2fe72006-01-24 04:13:11 +00001725void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001726 WriteAsOperand(o, this, true, 0);
Chris Lattnereef2fe72006-01-24 04:13:11 +00001727}
1728
Chris Lattner8339f7d2003-10-30 23:41:03 +00001729void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001730 SlotTracker SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001731 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001732 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001733 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001734}
1735
Chris Lattner8339f7d2003-10-30 23:41:03 +00001736void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001737 const Function *F = getParent() ? getParent()->getParent() : 0;
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001738 SlotTracker SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001739 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001740
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001741 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001742}
Chris Lattner7db79582001-11-07 04:21:57 +00001743
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001744void Constant::print(std::ostream &o) const {
1745 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001746
Misha Brukman21bbdb92004-06-04 21:11:51 +00001747 o << ' ' << getType()->getDescription() << ' ';
Evan Cheng5b19a802006-03-01 22:17:00 +00001748
1749 std::map<const Type *, std::string> TypeTable;
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001750 WriteConstantInt(o, this, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001751}
1752
Misha Brukmanb1c93172005-04-21 23:48:37 +00001753void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001754 if (this == 0)
1755 o << "<null Type>";
1756 else
1757 o << getDescription();
1758}
1759
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001760void Argument::print(std::ostream &o) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001761 WriteAsOperand(o, this, true, getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001762}
1763
Reid Spencer52641832004-05-25 18:14:38 +00001764// Value::dump - allow easy printing of Values from the debugger.
1765// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001766void Value::dump() const { print(*cerr.stream()); cerr << '\n'; }
Reid Spencer52641832004-05-25 18:14:38 +00001767
1768// Type::dump - allow easy printing of Values from the debugger.
1769// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001770void Type::dump() const { print(*cerr.stream()); cerr << '\n'; }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001771