blob: 21fb92578262c7d869515ec3d56a482659302571 [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"
Chris Lattner393b7cd2008-08-17 04:17:45 +000034#include "llvm/Support/raw_ostream.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000035#include <algorithm>
Reid Spencerbdf03b42007-05-22 19:27:35 +000036#include <cctype>
Chris Lattner189d19f2003-11-21 20:23:48 +000037using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000038
Reid Spencer294715b2005-05-15 16:13:11 +000039// Make virtual table appear in this compilation unit.
40AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
41
Chris Lattner3eee99c2008-08-19 04:36:02 +000042char PrintModulePass::ID = 0;
43static RegisterPass<PrintModulePass>
44X("printm", "Print module to stderr");
45char PrintFunctionPass::ID = 0;
46static RegisterPass<PrintFunctionPass>
47Y("print","Print function to stderr");
48
49
50//===----------------------------------------------------------------------===//
51// Helper Functions
52//===----------------------------------------------------------------------===//
53
54static const Module *getModuleFromVal(const Value *V) {
55 if (const Argument *MA = dyn_cast<Argument>(V))
56 return MA->getParent() ? MA->getParent()->getParent() : 0;
57
58 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
59 return BB->getParent() ? BB->getParent()->getParent() : 0;
60
61 if (const Instruction *I = dyn_cast<Instruction>(V)) {
62 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
63 return M ? M->getParent() : 0;
64 }
65
66 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
67 return GV->getParent();
68 return 0;
69}
70
71
72/// NameNeedsQuotes - Return true if the specified llvm name should be wrapped
73/// with ""'s.
74static std::string QuoteNameIfNeeded(const std::string &Name) {
75 std::string result;
76 bool needsQuotes = Name[0] >= '0' && Name[0] <= '9';
77 // Scan the name to see if it needs quotes and to replace funky chars with
78 // their octal equivalent.
79 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
80 char C = Name[i];
81 assert(C != '"' && "Illegal character in LLVM value name!");
82 if (isalnum(C) || C == '-' || C == '.' || C == '_')
83 result += C;
84 else if (C == '\\') {
85 needsQuotes = true;
86 result += "\\\\";
87 } else if (isprint(C)) {
88 needsQuotes = true;
89 result += C;
90 } else {
91 needsQuotes = true;
92 result += "\\";
93 char hex1 = (C >> 4) & 0x0F;
94 if (hex1 < 10)
95 result += hex1 + '0';
96 else
97 result += hex1 - 10 + 'A';
98 char hex2 = C & 0x0F;
99 if (hex2 < 10)
100 result += hex2 + '0';
101 else
102 result += hex2 - 10 + 'A';
103 }
104 }
105 if (needsQuotes) {
106 result.insert(0,"\"");
107 result += '"';
108 }
109 return result;
110}
111
Chris Lattner585297e82008-08-19 05:26:17 +0000112/// getLLVMName - Turn the specified string into an 'LLVM name', which is
113/// surrounded with ""'s and escaped if it has special chars in it.
Chris Lattner3eee99c2008-08-19 04:36:02 +0000114static std::string getLLVMName(const std::string &Name) {
115 assert(!Name.empty() && "Cannot get empty name!");
Chris Lattner585297e82008-08-19 05:26:17 +0000116 return QuoteNameIfNeeded(Name);
Chris Lattner3eee99c2008-08-19 04:36:02 +0000117}
118
119enum PrefixType {
120 GlobalPrefix,
121 LabelPrefix,
122 LocalPrefix
123};
124
125/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
126/// prefixed with % (if the string only contains simple characters) or is
127/// surrounded with ""'s (if it has special chars in it). Print it out.
Chris Lattner0c19df42008-08-23 22:23:09 +0000128static void PrintLLVMName(raw_ostream &OS, const char *NameStr,
Chris Lattner1508d3f2008-08-19 05:16:28 +0000129 unsigned NameLen, PrefixType Prefix) {
130 assert(NameStr && "Cannot get empty name!");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000131 switch (Prefix) {
Chris Lattner1508d3f2008-08-19 05:16:28 +0000132 default: assert(0 && "Bad prefix!");
133 case GlobalPrefix: OS << '@'; break;
134 case LabelPrefix: break;
135 case LocalPrefix: OS << '%'; break;
Chris Lattner3eee99c2008-08-19 04:36:02 +0000136 }
137
138 // Scan the name to see if it needs quotes first.
Chris Lattner3eee99c2008-08-19 04:36:02 +0000139 bool NeedsQuotes = NameStr[0] >= '0' && NameStr[0] <= '9';
140 if (!NeedsQuotes) {
141 for (unsigned i = 0; i != NameLen; ++i) {
142 char C = NameStr[i];
143 if (!isalnum(C) && C != '-' && C != '.' && C != '_') {
144 NeedsQuotes = true;
145 break;
146 }
147 }
148 }
149
150 // If we didn't need any quotes, just write out the name in one blast.
151 if (!NeedsQuotes) {
152 OS.write(NameStr, NameLen);
153 return;
154 }
155
156 // Okay, we need quotes. Output the quotes and escape any scary characters as
157 // needed.
158 OS << '"';
159 for (unsigned i = 0; i != NameLen; ++i) {
160 char C = NameStr[i];
161 assert(C != '"' && "Illegal character in LLVM value name!");
162 if (C == '\\') {
163 OS << "\\\\";
164 } else if (isprint(C)) {
165 OS << C;
166 } else {
167 OS << '\\';
168 char hex1 = (C >> 4) & 0x0F;
169 if (hex1 < 10)
170 OS << (char)(hex1 + '0');
171 else
172 OS << (char)(hex1 - 10 + 'A');
173 char hex2 = C & 0x0F;
174 if (hex2 < 10)
175 OS << (char)(hex2 + '0');
176 else
177 OS << (char)(hex2 - 10 + 'A');
178 }
179 }
180 OS << '"';
181}
182
183/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
184/// prefixed with % (if the string only contains simple characters) or is
185/// surrounded with ""'s (if it has special chars in it). Print it out.
Chris Lattner0c19df42008-08-23 22:23:09 +0000186static void PrintLLVMName(raw_ostream &OS, const Value *V) {
Chris Lattner1508d3f2008-08-19 05:16:28 +0000187 PrintLLVMName(OS, V->getNameStart(), V->getNameLen(),
Chris Lattner3eee99c2008-08-19 04:36:02 +0000188 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
189}
190
191
192
193//===----------------------------------------------------------------------===//
194// SlotTracker Class: Enumerate slot numbers for unnamed values
195//===----------------------------------------------------------------------===//
196
Chris Lattner3ee58762008-08-19 04:28:07 +0000197namespace {
198
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000199/// This class provides computation of slot numbers for LLVM Assembly writing.
Chris Lattner393b7cd2008-08-17 04:17:45 +0000200///
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000201class SlotTracker {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000202public:
Chris Lattner393b7cd2008-08-17 04:17:45 +0000203 /// ValueMap - A mapping of Values to slot numbers
Chris Lattnera204d412008-08-17 17:25:25 +0000204 typedef DenseMap<const Value*, unsigned> ValueMap;
Chris Lattner393b7cd2008-08-17 04:17:45 +0000205
206private:
207 /// TheModule - The module for which we are holding slot numbers
208 const Module* TheModule;
209
210 /// TheFunction - The function for which we are holding slot numbers
211 const Function* TheFunction;
212 bool FunctionProcessed;
213
214 /// mMap - The TypePlanes map for the module level data
215 ValueMap mMap;
216 unsigned mNext;
217
218 /// fMap - The TypePlanes map for the function level data
219 ValueMap fMap;
220 unsigned fNext;
221
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000222public:
Chris Lattner393b7cd2008-08-17 04:17:45 +0000223 /// Construct from a module
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000224 explicit SlotTracker(const Module *M);
Chris Lattner393b7cd2008-08-17 04:17:45 +0000225 /// Construct from a function, starting out in incorp state.
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000226 explicit SlotTracker(const Function *F);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000227
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000228 /// Return the slot number of the specified value in it's type
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000229 /// plane. If something is not in the SlotTracker, return -1.
Chris Lattner5e043322007-01-11 03:54:27 +0000230 int getLocalSlot(const Value *V);
231 int getGlobalSlot(const GlobalValue *V);
Reid Spencer8beac692004-06-09 15:26:53 +0000232
Misha Brukmanb1c93172005-04-21 23:48:37 +0000233 /// If you'd like to deal with a function instead of just a module, use
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000234 /// this method to get its data into the SlotTracker.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000235 void incorporateFunction(const Function *F) {
236 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000237 FunctionProcessed = false;
238 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000239
Misha Brukmanb1c93172005-04-21 23:48:37 +0000240 /// After calling incorporateFunction, use this method to remove the
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000241 /// most recently incorporated function from the SlotTracker. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000242 /// will reset the state of the machine back to just the module contents.
243 void purgeFunction();
244
Chris Lattner393b7cd2008-08-17 04:17:45 +0000245 // Implementation Details
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000246private:
Reid Spencer56010e42004-05-26 21:56:09 +0000247 /// This function does the actual initialization.
248 inline void initialize();
249
Chris Lattnerea862a32007-01-09 07:55:49 +0000250 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
251 void CreateModuleSlot(const GlobalValue *V);
252
253 /// CreateFunctionSlot - Insert the specified Value* into the slot table.
254 void CreateFunctionSlot(const Value *V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000255
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000256 /// Add all of the module level global variables (and their initializers)
257 /// and function declarations, but not the contents of those functions.
258 void processModule();
259
Reid Spencer56010e42004-05-26 21:56:09 +0000260 /// Add all of the functions arguments, basic blocks, and instructions
261 void processFunction();
262
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000263 SlotTracker(const SlotTracker &); // DO NOT IMPLEMENT
264 void operator=(const SlotTracker &); // DO NOT IMPLEMENT
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000265};
266
Chris Lattner3ee58762008-08-19 04:28:07 +0000267} // end anonymous namespace
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000268
Chris Lattner3eee99c2008-08-19 04:36:02 +0000269
270static SlotTracker *createSlotTracker(const Value *V) {
271 if (const Argument *FA = dyn_cast<Argument>(V))
272 return new SlotTracker(FA->getParent());
273
274 if (const Instruction *I = dyn_cast<Instruction>(V))
275 return new SlotTracker(I->getParent()->getParent());
276
277 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
278 return new SlotTracker(BB->getParent());
279
280 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
281 return new SlotTracker(GV->getParent());
282
283 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
284 return new SlotTracker(GA->getParent());
285
286 if (const Function *Func = dyn_cast<Function>(V))
287 return new SlotTracker(Func);
288
289 return 0;
290}
291
292#if 0
Chris Lattner604e3512008-08-19 04:47:09 +0000293#define ST_DEBUG(X) cerr << X
Chris Lattner3eee99c2008-08-19 04:36:02 +0000294#else
Chris Lattner604e3512008-08-19 04:47:09 +0000295#define ST_DEBUG(X)
Chris Lattner3eee99c2008-08-19 04:36:02 +0000296#endif
297
298// Module level constructor. Causes the contents of the Module (sans functions)
299// to be added to the slot table.
300SlotTracker::SlotTracker(const Module *M)
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000301 : TheModule(M), TheFunction(0), FunctionProcessed(false), mNext(0), fNext(0) {
Chris Lattner3eee99c2008-08-19 04:36:02 +0000302}
303
304// Function level constructor. Causes the contents of the Module and the one
305// function provided to be added to the slot table.
306SlotTracker::SlotTracker(const Function *F)
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000307 : TheModule(F ? F->getParent() : 0), TheFunction(F), FunctionProcessed(false),
308 mNext(0), fNext(0) {
Chris Lattner3eee99c2008-08-19 04:36:02 +0000309}
310
311inline void SlotTracker::initialize() {
312 if (TheModule) {
313 processModule();
314 TheModule = 0; ///< Prevent re-processing next time we're called.
315 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000316
Chris Lattner3eee99c2008-08-19 04:36:02 +0000317 if (TheFunction && !FunctionProcessed)
318 processFunction();
319}
320
321// Iterate through all the global variables, functions, and global
322// variable initializers and create slots for them.
323void SlotTracker::processModule() {
Chris Lattner604e3512008-08-19 04:47:09 +0000324 ST_DEBUG("begin processModule!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000325
326 // Add all of the unnamed global variables to the value table.
327 for (Module::const_global_iterator I = TheModule->global_begin(),
328 E = TheModule->global_end(); I != E; ++I)
329 if (!I->hasName())
330 CreateModuleSlot(I);
331
332 // Add all the unnamed functions to the table.
333 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
334 I != E; ++I)
335 if (!I->hasName())
336 CreateModuleSlot(I);
337
Chris Lattner604e3512008-08-19 04:47:09 +0000338 ST_DEBUG("end processModule!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000339}
340
341
342// Process the arguments, basic blocks, and instructions of a function.
343void SlotTracker::processFunction() {
Chris Lattner604e3512008-08-19 04:47:09 +0000344 ST_DEBUG("begin processFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000345 fNext = 0;
346
347 // Add all the function arguments with no names.
348 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
349 AE = TheFunction->arg_end(); AI != AE; ++AI)
350 if (!AI->hasName())
351 CreateFunctionSlot(AI);
352
Chris Lattner604e3512008-08-19 04:47:09 +0000353 ST_DEBUG("Inserting Instructions:\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000354
355 // Add all of the basic blocks and instructions with no names.
356 for (Function::const_iterator BB = TheFunction->begin(),
357 E = TheFunction->end(); BB != E; ++BB) {
358 if (!BB->hasName())
359 CreateFunctionSlot(BB);
360 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
361 if (I->getType() != Type::VoidTy && !I->hasName())
362 CreateFunctionSlot(I);
363 }
364
365 FunctionProcessed = true;
366
Chris Lattner604e3512008-08-19 04:47:09 +0000367 ST_DEBUG("end processFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000368}
369
370/// Clean up after incorporating a function. This is the only way to get out of
371/// the function incorporation state that affects get*Slot/Create*Slot. Function
372/// incorporation state is indicated by TheFunction != 0.
373void SlotTracker::purgeFunction() {
Chris Lattner604e3512008-08-19 04:47:09 +0000374 ST_DEBUG("begin purgeFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000375 fMap.clear(); // Simply discard the function level map
376 TheFunction = 0;
377 FunctionProcessed = false;
Chris Lattner604e3512008-08-19 04:47:09 +0000378 ST_DEBUG("end purgeFunction!\n");
Chris Lattner3eee99c2008-08-19 04:36:02 +0000379}
380
381/// getGlobalSlot - Get the slot number of a global value.
382int SlotTracker::getGlobalSlot(const GlobalValue *V) {
383 // Check for uninitialized state and do lazy initialization.
384 initialize();
385
386 // Find the type plane in the module map
387 ValueMap::iterator MI = mMap.find(V);
388 return MI == mMap.end() ? -1 : MI->second;
389}
390
391
392/// getLocalSlot - Get the slot number for a value that is local to a function.
393int SlotTracker::getLocalSlot(const Value *V) {
394 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
395
396 // Check for uninitialized state and do lazy initialization.
397 initialize();
398
399 ValueMap::iterator FI = fMap.find(V);
400 return FI == fMap.end() ? -1 : FI->second;
401}
402
403
404/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
405void SlotTracker::CreateModuleSlot(const GlobalValue *V) {
406 assert(V && "Can't insert a null Value into SlotTracker!");
407 assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
408 assert(!V->hasName() && "Doesn't need a slot!");
409
410 unsigned DestSlot = mNext++;
411 mMap[V] = DestSlot;
412
Chris Lattner604e3512008-08-19 04:47:09 +0000413 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner3eee99c2008-08-19 04:36:02 +0000414 DestSlot << " [");
415 // G = Global, F = Function, A = Alias, o = other
Chris Lattner604e3512008-08-19 04:47:09 +0000416 ST_DEBUG((isa<GlobalVariable>(V) ? 'G' :
Chris Lattner3eee99c2008-08-19 04:36:02 +0000417 (isa<Function>(V) ? 'F' :
418 (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n");
419}
420
421
422/// CreateSlot - Create a new slot for the specified value if it has no name.
423void SlotTracker::CreateFunctionSlot(const Value *V) {
424 assert(V->getType() != Type::VoidTy && !V->hasName() &&
425 "Doesn't need a slot!");
426
427 unsigned DestSlot = fNext++;
428 fMap[V] = DestSlot;
429
430 // G = Global, F = Function, o = other
Chris Lattner604e3512008-08-19 04:47:09 +0000431 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner3eee99c2008-08-19 04:36:02 +0000432 DestSlot << " [o]\n");
433}
434
435
436
437//===----------------------------------------------------------------------===//
438// AsmWriter Implementation
439//===----------------------------------------------------------------------===//
Chris Lattner7f8845a2002-07-23 18:07:49 +0000440
Chris Lattner0c19df42008-08-23 22:23:09 +0000441static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
Chris Lattnera9f0a112006-12-06 05:50:41 +0000442 std::map<const Type *, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000443 SlotTracker *Machine);
Reid Spencer58d30f22004-07-04 11:50:43 +0000444
Chris Lattner033935d2008-08-17 04:40:13 +0000445
Chris Lattnerb86620e2001-10-29 16:37:48 +0000446
Misha Brukmanc566ca362004-03-02 00:22:19 +0000447/// fillTypeNameTable - If the module has a symbol table, take all global types
448/// and stuff their names into the TypeNames map.
449///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000450static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000451 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000452 if (!M) return;
Reid Spencer32af9e82007-01-06 07:24:44 +0000453 const TypeSymbolTable &ST = M->getTypeSymbolTable();
454 TypeSymbolTable::const_iterator TI = ST.begin();
455 for (; TI != ST.end(); ++TI) {
Reid Spencere7e96712004-05-25 08:53:40 +0000456 // As a heuristic, don't insert pointer to primitive types, because
457 // they are used too often to have a single useful name.
458 //
459 const Type *Ty = cast<Type>(TI->second);
460 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000461 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
Chris Lattner03c49532007-01-15 02:27:26 +0000462 !cast<PointerType>(Ty)->getElementType()->isInteger() ||
Reid Spencer56010e42004-05-26 21:56:09 +0000463 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Chris Lattner585297e82008-08-19 05:26:17 +0000464 TypeNames.insert(std::make_pair(Ty, '%' + getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000465 }
466}
467
468
469
Misha Brukmanb1c93172005-04-21 23:48:37 +0000470static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000471 std::vector<const Type *> &TypeStack,
472 std::map<const Type *, std::string> &TypeNames,
Chris Lattner585297e82008-08-19 05:26:17 +0000473 std::string &Result) {
Chris Lattner03c49532007-01-15 02:27:26 +0000474 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
John Criswellcd116ba2004-06-01 14:54:08 +0000475 Result += Ty->getDescription(); // Base case
476 return;
477 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000478
479 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000480 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000481 if (I != TypeNames.end()) {
482 Result += I->second;
483 return;
484 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000485
John Criswellcd116ba2004-06-01 14:54:08 +0000486 if (isa<OpaqueType>(Ty)) {
487 Result += "opaque";
488 return;
489 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000490
Chris Lattnerb86620e2001-10-29 16:37:48 +0000491 // Check to see if the Type is already on the stack...
492 unsigned Slot = 0, CurSize = TypeStack.size();
493 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
494
Misha Brukmanb1c93172005-04-21 23:48:37 +0000495 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000496 // that we have looped back to a type that we have previously visited.
497 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000498 if (Slot < CurSize) {
499 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
500 return;
501 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000502
503 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000504
Chris Lattner6b727592004-06-17 18:19:28 +0000505 switch (Ty->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000506 case Type::IntegerTyID: {
507 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc8721592007-01-12 07:25:20 +0000508 Result += "i" + utostr(BitWidth);
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000509 break;
510 }
Chris Lattner91db5822002-03-29 03:44:36 +0000511 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000512 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000513 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
514 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000515 for (FunctionType::param_iterator I = FTy->param_begin(),
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000516 E = FTy->param_end(); I != E; ++I) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000517 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000518 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000519 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000520 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000521 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000522 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000523 Result += "...";
524 }
525 Result += ")";
526 break;
527 }
528 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000529 const StructType *STy = cast<StructType>(Ty);
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000530 if (STy->isPacked())
531 Result += '<';
John Criswellcd116ba2004-06-01 14:54:08 +0000532 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000533 for (StructType::element_iterator I = STy->element_begin(),
534 E = STy->element_end(); I != E; ++I) {
535 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000536 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000537 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000538 }
539 Result += " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000540 if (STy->isPacked())
541 Result += '>';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000542 break;
543 }
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000544 case Type::PointerTyID: {
545 const PointerType *PTy = cast<PointerType>(Ty);
Chris Lattner585297e82008-08-19 05:26:17 +0000546 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000547 if (unsigned AddressSpace = PTy->getAddressSpace())
548 Result += " addrspace(" + utostr(AddressSpace) + ")";
John Criswellcd116ba2004-06-01 14:54:08 +0000549 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000550 break;
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000551 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000552 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000553 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000554 Result += "[" + utostr(ATy->getNumElements()) + " x ";
555 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
556 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000557 break;
558 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000559 case Type::VectorTyID: {
560 const VectorType *PTy = cast<VectorType>(Ty);
Brian Gaeke02209042004-08-20 06:00:58 +0000561 Result += "<" + utostr(PTy->getNumElements()) + " x ";
562 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
563 Result += ">";
564 break;
565 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000566 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000567 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000568 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000569 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000570 Result += "<unrecognized-type>";
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000571 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000572 }
573
574 TypeStack.pop_back(); // Remove self from stack...
Chris Lattnerb86620e2001-10-29 16:37:48 +0000575}
576
577
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000578/// printTypeInt - The internal guts of printing out a type that has a
579/// potentially named portion.
580///
Chris Lattner0c19df42008-08-23 22:23:09 +0000581static void printTypeInt(raw_ostream &Out, const Type *Ty,
Chris Lattner585297e82008-08-19 05:26:17 +0000582 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000583 // Primitive types always print out their description, regardless of whether
584 // they have been named or not.
585 //
Chris Lattner585297e82008-08-19 05:26:17 +0000586 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
587 Out << Ty->getDescription();
588 return;
589 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000590
591 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000592 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner585297e82008-08-19 05:26:17 +0000593 if (I != TypeNames.end()) {
594 Out << I->second;
595 return;
596 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000597
598 // Otherwise we have a type that has not been named but is a derived type.
599 // Carefully recurse the type hierarchy to print out any contained symbolic
600 // names.
601 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000602 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000603 std::string TypeName;
604 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000605 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
Chris Lattner585297e82008-08-19 05:26:17 +0000606 Out << TypeName;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000607}
608
Chris Lattner34b95182001-10-31 04:33:19 +0000609
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000610/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
611/// type, iff there is an entry in the modules symbol table for the specified
612/// type or one of it's component types. This is slower than a simple x << Type
613///
Chris Lattner604e3512008-08-19 04:47:09 +0000614void llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
615 const Module *M) {
Chris Lattner0c19df42008-08-23 22:23:09 +0000616 raw_os_ostream RO(Out);
617 WriteTypeSymbolic(RO, Ty, M);
618}
619
620void llvm::WriteTypeSymbolic(raw_ostream &Out, const Type *Ty, const Module *M){
Misha Brukmanb1c93172005-04-21 23:48:37 +0000621 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000622
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000623 // If they want us to print out a type, but there is no context, we can't
624 // print it symbolically.
Chris Lattner604e3512008-08-19 04:47:09 +0000625 if (!M) {
626 Out << Ty->getDescription();
627 } else {
628 std::map<const Type *, std::string> TypeNames;
629 fillTypeNameTable(M, TypeNames);
630 printTypeInt(Out, Ty, TypeNames);
631 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000632}
633
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000634// PrintEscapedString - Print each character of the specified string, escaping
635// it if it is not printable or if it is an escape char.
Chris Lattner0c19df42008-08-23 22:23:09 +0000636static void PrintEscapedString(const std::string &Str, raw_ostream &Out) {
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000637 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
638 unsigned char C = Str[i];
639 if (isprint(C) && C != '"' && C != '\\') {
640 Out << C;
641 } else {
642 Out << '\\'
643 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
644 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
645 }
646 }
647}
648
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000649static const char *getPredicateText(unsigned predicate) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000650 const char * pred = "unknown";
651 switch (predicate) {
652 case FCmpInst::FCMP_FALSE: pred = "false"; break;
653 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
654 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
655 case FCmpInst::FCMP_OGE: pred = "oge"; break;
656 case FCmpInst::FCMP_OLT: pred = "olt"; break;
657 case FCmpInst::FCMP_OLE: pred = "ole"; break;
658 case FCmpInst::FCMP_ONE: pred = "one"; break;
659 case FCmpInst::FCMP_ORD: pred = "ord"; break;
660 case FCmpInst::FCMP_UNO: pred = "uno"; break;
661 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
662 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
663 case FCmpInst::FCMP_UGE: pred = "uge"; break;
664 case FCmpInst::FCMP_ULT: pred = "ult"; break;
665 case FCmpInst::FCMP_ULE: pred = "ule"; break;
666 case FCmpInst::FCMP_UNE: pred = "une"; break;
667 case FCmpInst::FCMP_TRUE: pred = "true"; break;
668 case ICmpInst::ICMP_EQ: pred = "eq"; break;
669 case ICmpInst::ICMP_NE: pred = "ne"; break;
670 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
671 case ICmpInst::ICMP_SGE: pred = "sge"; break;
672 case ICmpInst::ICMP_SLT: pred = "slt"; break;
673 case ICmpInst::ICMP_SLE: pred = "sle"; break;
674 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
675 case ICmpInst::ICMP_UGE: pred = "uge"; break;
676 case ICmpInst::ICMP_ULT: pred = "ult"; break;
677 case ICmpInst::ICMP_ULE: pred = "ule"; break;
678 }
679 return pred;
680}
681
Chris Lattner0c19df42008-08-23 22:23:09 +0000682static void WriteConstantInt(raw_ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000683 std::map<const Type *, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000684 SlotTracker *Machine) {
Zhou Sheng75b871f2007-01-11 12:24:14 +0000685 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattner17f71652008-08-17 07:19:36 +0000686 if (CI->getType() == Type::Int1Ty) {
Reid Spencercddc9df2007-01-12 04:24:46 +0000687 Out << (CI->getZExtValue() ? "true" : "false");
Chris Lattner17f71652008-08-17 07:19:36 +0000688 return;
689 }
690 Out << CI->getValue();
691 return;
692 }
693
694 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Dale Johannesen028084e2007-09-12 03:30:33 +0000695 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble ||
696 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) {
697 // We would like to output the FP constant value in exponential notation,
698 // but we cannot do this if doing so will lose precision. Check here to
699 // make sure that we only output it in exponential format if we can parse
700 // the value back and get the same value.
701 //
702 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
Chris Lattner17f71652008-08-17 07:19:36 +0000703 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
704 CFP->getValueAPF().convertToFloat();
Dale Johannesen028084e2007-09-12 03:30:33 +0000705 std::string StrVal = ftostr(CFP->getValueAPF());
Chris Lattner1e194682002-04-18 18:53:13 +0000706
Dale Johannesen028084e2007-09-12 03:30:33 +0000707 // Check to make sure that the stringized number is not some string like
708 // "Inf" or NaN, that atof will accept, but the lexer will not. Check
709 // that the string matches the "[-+]?[0-9]" regex.
710 //
711 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
712 ((StrVal[0] == '-' || StrVal[0] == '+') &&
713 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
714 // Reparse stringized version!
715 if (atof(StrVal.c_str()) == Val) {
716 Out << StrVal;
717 return;
718 }
Chris Lattner1e194682002-04-18 18:53:13 +0000719 }
Dale Johannesen028084e2007-09-12 03:30:33 +0000720 // Otherwise we could not reparse it to exactly the same value, so we must
721 // output the string in hexadecimal format!
722 assert(sizeof(double) == sizeof(uint64_t) &&
723 "assuming that double is 64 bits!");
724 Out << "0x" << utohexstr(DoubleToBits(Val));
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000725 return;
726 }
727
728 // Some form of long double. These appear as a magic letter identifying
729 // the type, then a fixed number of hex digits.
730 Out << "0x";
731 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended)
732 Out << 'K';
733 else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad)
734 Out << 'L';
735 else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
736 Out << 'M';
737 else
738 assert(0 && "Unsupported floating point type");
739 // api needed to prevent premature destruction
740 APInt api = CFP->getValueAPF().convertToAPInt();
741 const uint64_t* p = api.getRawData();
742 uint64_t word = *p;
743 int shiftcount=60;
744 int width = api.getBitWidth();
745 for (int j=0; j<width; j+=4, shiftcount-=4) {
746 unsigned int nibble = (word>>shiftcount) & 15;
747 if (nibble < 10)
748 Out << (unsigned char)(nibble + '0');
Dale Johannesen028084e2007-09-12 03:30:33 +0000749 else
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000750 Out << (unsigned char)(nibble - 10 + 'A');
751 if (shiftcount == 0 && j+4 < width) {
752 word = *(++p);
753 shiftcount = 64;
754 if (width-j-4 < 64)
755 shiftcount = width-j-4;
Dale Johannesen028084e2007-09-12 03:30:33 +0000756 }
757 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000758 return;
759 }
760
761 if (isa<ConstantAggregateZero>(CV)) {
Chris Lattner76b2ff42004-02-15 05:55:15 +0000762 Out << "zeroinitializer";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000763 return;
764 }
765
766 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattner1e194682002-04-18 18:53:13 +0000767 // As a special case, print the array as a string if it is an array of
Dan Gohmane9bc2ba2008-05-12 16:34:30 +0000768 // i8 with ConstantInt values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000769 //
Chris Lattner1e194682002-04-18 18:53:13 +0000770 const Type *ETy = CA->getType()->getElementType();
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000771 if (CA->isString()) {
Chris Lattner1e194682002-04-18 18:53:13 +0000772 Out << "c\"";
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000773 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000774 Out << '"';
Chris Lattner1e194682002-04-18 18:53:13 +0000775 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000776 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000777 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000778 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000779 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000780 WriteAsOperandInternal(Out, CA->getOperand(0),
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000781 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000782 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
783 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000784 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000785 WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000786 }
787 }
788 Out << " ]";
789 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000790 return;
791 }
792
793 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000794 if (CS->getType()->isPacked())
795 Out << '<';
Misha Brukman21bbdb92004-06-04 21:11:51 +0000796 Out << '{';
Jim Laskey3bb78742006-02-25 12:27:03 +0000797 unsigned N = CS->getNumOperands();
798 if (N) {
Chris Lattner604e3512008-08-19 04:47:09 +0000799 Out << ' ';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000800 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
801
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000802 WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000803
Jim Laskey3bb78742006-02-25 12:27:03 +0000804 for (unsigned i = 1; i < N; i++) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000805 Out << ", ";
806 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
807
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000808 WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000809 }
810 }
Jim Laskey3bb78742006-02-25 12:27:03 +0000811
Chris Lattnerd84bb632002-04-16 21:36:08 +0000812 Out << " }";
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000813 if (CS->getType()->isPacked())
814 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000815 return;
816 }
817
818 if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
819 const Type *ETy = CP->getType()->getElementType();
820 assert(CP->getNumOperands() > 0 &&
821 "Number of operands for a PackedConst must be > 0");
822 Out << "< ";
823 printTypeInt(Out, ETy, TypeTable);
824 WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
825 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
Chris Lattner585297e82008-08-19 05:26:17 +0000826 Out << ", ";
827 printTypeInt(Out, ETy, TypeTable);
828 WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000829 }
830 Out << " >";
831 return;
832 }
833
834 if (isa<ConstantPointerNull>(CV)) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000835 Out << "null";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000836 return;
837 }
838
839 if (isa<UndefValue>(CV)) {
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000840 Out << "undef";
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000841 return;
842 }
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000843
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000844 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000845 Out << CE->getOpcodeName();
846 if (CE->isCompare())
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000847 Out << ' ' << getPredicateText(CE->getPredicate());
Reid Spencer812a1be2006-12-04 05:19:18 +0000848 Out << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000849
Vikram S. Adveb952b542002-07-14 23:14:45 +0000850 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
851 printTypeInt(Out, (*OI)->getType(), TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000852 WriteAsOperandInternal(Out, *OI, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000853 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000854 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000855 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000856
Dan Gohmana76f0f72008-05-31 19:12:39 +0000857 if (CE->hasIndices()) {
858 const SmallVector<unsigned, 4> &Indices = CE->getIndices();
859 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
860 Out << ", " << Indices[i];
861 }
862
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000863 if (CE->isCast()) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000864 Out << " to ";
865 printTypeInt(Out, CE->getType(), TypeTable);
866 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000867
Misha Brukman21bbdb92004-06-04 21:11:51 +0000868 Out << ')';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000869 return;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000870 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000871
872 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000873}
874
875
Misha Brukmanc566ca362004-03-02 00:22:19 +0000876/// WriteAsOperand - Write the name of the specified value out to the specified
877/// ostream. This can be useful when you just want to print int %reg126, not
878/// the whole instruction that generated it.
879///
Chris Lattner0c19df42008-08-23 22:23:09 +0000880static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000881 std::map<const Type*, std::string> &TypeTable,
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000882 SlotTracker *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000883 Out << ' ';
Chris Lattner033935d2008-08-17 04:40:13 +0000884 if (V->hasName()) {
885 PrintLLVMName(Out, V);
886 return;
887 }
888
889 const Constant *CV = dyn_cast<Constant>(V);
890 if (CV && !isa<GlobalValue>(CV)) {
891 WriteConstantInt(Out, CV, TypeTable, Machine);
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000892 return;
893 }
894
895 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
Chris Lattner033935d2008-08-17 04:40:13 +0000896 Out << "asm ";
897 if (IA->hasSideEffects())
898 Out << "sideeffect ";
899 Out << '"';
900 PrintEscapedString(IA->getAsmString(), Out);
901 Out << "\", \"";
902 PrintEscapedString(IA->getConstraintString(), Out);
903 Out << '"';
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000904 return;
905 }
906
907 char Prefix = '%';
908 int Slot;
909 if (Machine) {
910 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
911 Slot = Machine->getGlobalSlot(GV);
912 Prefix = '@';
913 } else {
914 Slot = Machine->getLocalSlot(V);
915 }
Chris Lattner033935d2008-08-17 04:40:13 +0000916 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000917 Machine = createSlotTracker(V);
Chris Lattner033935d2008-08-17 04:40:13 +0000918 if (Machine) {
919 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
920 Slot = Machine->getGlobalSlot(GV);
921 Prefix = '@';
922 } else {
923 Slot = Machine->getLocalSlot(V);
924 }
Chris Lattnera2d810d2006-01-25 22:26:05 +0000925 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000926 Slot = -1;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000927 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000928 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000929 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000930
931 if (Slot != -1)
932 Out << Prefix << Slot;
933 else
934 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000935}
936
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000937/// WriteAsOperand - Write the name of the specified value out to the specified
938/// ostream. This can be useful when you just want to print int %reg126, not
939/// the whole instruction that generated it.
940///
Chris Lattner604e3512008-08-19 04:47:09 +0000941void llvm::WriteAsOperand(std::ostream &Out, const Value *V, bool PrintType,
942 const Module *Context) {
Chris Lattner0c19df42008-08-23 22:23:09 +0000943 raw_os_ostream OS(Out);
944 WriteAsOperand(OS, V, PrintType, Context);
945}
946
947void llvm::WriteAsOperand(raw_ostream &Out, const Value *V, bool PrintType,
948 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000949 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000950 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000951
Chris Lattner98cf1f52002-11-20 18:36:02 +0000952 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000953 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000954
955 if (PrintType)
956 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000957
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000958 WriteAsOperandInternal(Out, V, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000959}
960
Reid Spencer58d30f22004-07-04 11:50:43 +0000961
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000962namespace {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000963
Chris Lattnerfee714f2001-09-07 16:36:04 +0000964class AssemblyWriter {
Chris Lattner0c19df42008-08-23 22:23:09 +0000965 raw_ostream &Out;
Chris Lattnere36fd8a2008-08-19 04:26:57 +0000966 SlotTracker &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000967 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000968 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000969 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000970public:
Chris Lattner0c19df42008-08-23 22:23:09 +0000971 inline AssemblyWriter(raw_ostream &o, SlotTracker &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000972 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000973 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000974
975 // If the module has a symbol table, take all global types and stuff their
976 // names into the TypeNames map.
977 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000978 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000979 }
980
Chris Lattner0c19df42008-08-23 22:23:09 +0000981 void write(const Module *M) { printModule(M); }
982
983 void write(const GlobalValue *G) {
984 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(G))
985 printGlobal(GV);
986 else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(G))
987 printAlias(GA);
988 else if (const Function *F = dyn_cast<Function>(G))
989 printFunction(F);
990 else
991 assert(0 && "Unknown global");
992 }
993
Chris Lattner3a36d2c2008-08-19 05:06:27 +0000994 void write(const BasicBlock *BB) { printBasicBlock(BB); }
995 void write(const Instruction *I) { printInstruction(*I); }
996 void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000997
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000998 void writeOperand(const Value *Op, bool PrintType);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000999 void writeParamOperand(const Value *Operand, ParameterAttributes Attrs);
Chris Lattner1e194682002-04-18 18:53:13 +00001000
Misha Brukman4685e262004-04-28 15:31:21 +00001001 const Module* getModule() { return TheModule; }
1002
Misha Brukmand92f54a2004-11-15 19:30:05 +00001003private:
Chris Lattner7bfee412001-10-29 16:05:51 +00001004 void printModule(const Module *M);
Reid Spencer32af9e82007-01-06 07:24:44 +00001005 void printTypeSymbolTable(const TypeSymbolTable &ST);
Chris Lattner7bfee412001-10-29 16:05:51 +00001006 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001007 void printAlias(const GlobalAlias *GV);
Chris Lattner57698e22002-03-26 18:01:55 +00001008 void printFunction(const Function *F);
Dale Johannesen89268bc2008-02-19 21:38:47 +00001009 void printArgument(const Argument *FA, ParameterAttributes Attrs);
Chris Lattner7bfee412001-10-29 16:05:51 +00001010 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +00001011 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +00001012
1013 // printType - Go to extreme measures to attempt to print out a short,
1014 // symbolic version of a type name.
1015 //
Chris Lattner585297e82008-08-19 05:26:17 +00001016 void printType(const Type *Ty) {
1017 printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +00001018 }
1019
1020 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
1021 // without considering any symbolic types that we may have equal to it.
1022 //
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001023 void printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +00001024
Chris Lattner862e3382001-10-13 06:42:36 +00001025 // printInfoComment - Print a little comment after the instruction indicating
1026 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +00001027 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001028};
Reid Spencerf43ac622004-05-27 22:04:46 +00001029} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +00001030
Misha Brukmanc566ca362004-03-02 00:22:19 +00001031/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
1032/// without considering any symbolic types that we may have equal to it.
1033///
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001034void AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
1035 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001036 Out << "i" << utostr(ITy->getBitWidth());
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001037 return;
1038 }
1039
1040 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Reid Spencer8c4914c2006-12-31 05:24:50 +00001041 printType(FTy->getReturnType());
Reid Spencer8c4914c2006-12-31 05:24:50 +00001042 Out << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +00001043 for (FunctionType::param_iterator I = FTy->param_begin(),
1044 E = FTy->param_end(); I != E; ++I) {
1045 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +00001046 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +00001047 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +00001048 }
1049 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001050 if (FTy->getNumParams()) Out << ", ";
1051 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +00001052 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001053 Out << ')';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001054 return;
1055 }
1056
1057 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001058 if (STy->isPacked())
1059 Out << '<';
Misha Brukmana6619a92004-06-21 21:53:56 +00001060 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +00001061 for (StructType::element_iterator I = STy->element_begin(),
1062 E = STy->element_end(); I != E; ++I) {
1063 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +00001064 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +00001065 printType(*I);
1066 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001067 Out << " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +00001068 if (STy->isPacked())
1069 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001070 return;
1071 }
1072
1073 if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Christopher Lambac7d6312007-12-18 03:49:35 +00001074 printType(PTy->getElementType());
1075 if (unsigned AddressSpace = PTy->getAddressSpace())
1076 Out << " addrspace(" << AddressSpace << ")";
1077 Out << '*';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001078 return;
1079 }
1080
1081 if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001082 Out << '[' << ATy->getNumElements() << " x ";
Chris Lattner585297e82008-08-19 05:26:17 +00001083 printType(ATy->getElementType());
1084 Out << ']';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001085 return;
1086 }
1087
1088 if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
Reid Spencere203d352004-08-20 15:37:30 +00001089 Out << '<' << PTy->getNumElements() << " x ";
Chris Lattner585297e82008-08-19 05:26:17 +00001090 printType(PTy->getElementType());
1091 Out << '>';
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001092 return;
Reid Spencere203d352004-08-20 15:37:30 +00001093 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001094
1095 if (isa<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001096 Out << "opaque";
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001097 return;
Chris Lattnerd816b532002-04-13 20:53:41 +00001098 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001099
1100 if (!Ty->isPrimitiveType())
1101 Out << "<unknown derived type>";
1102 printType(Ty);
Chris Lattnerd816b532002-04-13 20:53:41 +00001103}
1104
1105
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001106void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
1107 if (Operand == 0) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +00001108 Out << "<null operand!>";
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001109 } else {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001110 if (PrintType) {
1111 Out << ' ';
1112 printType(Operand->getType());
1113 }
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001114 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
Chris Lattner08f7d0c2005-02-24 16:58:29 +00001115 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001116}
1117
Dale Johannesen89268bc2008-02-19 21:38:47 +00001118void AssemblyWriter::writeParamOperand(const Value *Operand,
1119 ParameterAttributes Attrs) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001120 if (Operand == 0) {
1121 Out << "<null operand!>";
1122 } else {
1123 Out << ' ';
1124 // Print the type
1125 printType(Operand->getType());
1126 // Print parameter attributes list
1127 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001128 Out << ' ' << ParamAttr::getAsString(Attrs);
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001129 // Print the operand
1130 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
1131 }
1132}
Chris Lattner2f7c9632001-06-06 20:29:01 +00001133
Chris Lattner7bfee412001-10-29 16:05:51 +00001134void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +00001135 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001136 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +00001137 // require a comment char before it).
1138 M->getModuleIdentifier().find('\n') == std::string::npos)
1139 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
1140
Owen Andersone2237542006-10-18 02:21:12 +00001141 if (!M->getDataLayout().empty())
Chris Lattner04897162006-10-22 06:06:56 +00001142 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencer48f98c82004-07-25 21:44:54 +00001143 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +00001144 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001145
Chris Lattnereef2fe72006-01-24 04:13:11 +00001146 if (!M->getModuleInlineAsm().empty()) {
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001147 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnereef2fe72006-01-24 04:13:11 +00001148 std::string Asm = M->getModuleInlineAsm();
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001149 size_t CurPos = 0;
1150 size_t NewLine = Asm.find_first_of('\n', CurPos);
1151 while (NewLine != std::string::npos) {
1152 // We found a newline, print the portion of the asm string from the
1153 // last newline up to this newline.
1154 Out << "module asm \"";
1155 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1156 Out);
1157 Out << "\"\n";
1158 CurPos = NewLine+1;
1159 NewLine = Asm.find_first_of('\n', CurPos);
1160 }
Chris Lattner3acaf5c2006-01-24 00:40:17 +00001161 Out << "module asm \"";
Chris Lattnerefaf35d2006-01-24 00:45:30 +00001162 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner6ed87bd2006-01-23 23:03:36 +00001163 Out << "\"\n";
1164 }
1165
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001166 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +00001167 Module::lib_iterator LI = M->lib_begin();
1168 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +00001169 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +00001170 Out << "deplibs = [ ";
1171 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001172 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +00001173 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +00001174 if (LI != LE)
1175 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +00001176 }
1177 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +00001178 }
Reid Spencerb9e08772004-09-13 23:44:23 +00001179
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001180 // Loop over the symbol table, emitting all named constants.
Reid Spencer32af9e82007-01-06 07:24:44 +00001181 printTypeSymbolTable(M->getTypeSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001182
Chris Lattner54932b02006-12-06 04:41:52 +00001183 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
1184 I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +00001185 printGlobal(I);
Chris Lattnerd2747052007-04-26 02:24:10 +00001186
1187 // Output all aliases.
1188 if (!M->alias_empty()) Out << "\n";
1189 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
1190 I != E; ++I)
1191 printAlias(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001192
Chris Lattner2cdd49d2004-09-14 05:06:58 +00001193 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +00001194 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
1195 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001196}
1197
Chris Lattner0c19df42008-08-23 22:23:09 +00001198static void PrintLinkage(GlobalValue::LinkageTypes LT, raw_ostream &Out) {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001199 switch (LT) {
1200 case GlobalValue::InternalLinkage: Out << "internal "; break;
1201 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
1202 case GlobalValue::WeakLinkage: Out << "weak "; break;
1203 case GlobalValue::CommonLinkage: Out << "common "; break;
1204 case GlobalValue::AppendingLinkage: Out << "appending "; break;
1205 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
1206 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
1207 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
1208 case GlobalValue::ExternalLinkage: break;
1209 case GlobalValue::GhostLinkage:
1210 Out << "GhostLinkage not allowed in AsmWriter!\n";
1211 abort();
1212 }
1213}
1214
1215
1216static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
Chris Lattner0c19df42008-08-23 22:23:09 +00001217 raw_ostream &Out) {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001218 switch (Vis) {
1219 default: assert(0 && "Invalid visibility style!");
1220 case GlobalValue::DefaultVisibility: break;
1221 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1222 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
1223 }
1224}
1225
Chris Lattner7bfee412001-10-29 16:05:51 +00001226void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Chris Lattner033935d2008-08-17 04:40:13 +00001227 if (GV->hasName()) {
1228 PrintLLVMName(Out, GV);
1229 Out << " = ";
1230 }
Chris Lattner37798642001-09-18 04:01:05 +00001231
Chris Lattner1508d3f2008-08-19 05:16:28 +00001232 if (!GV->hasInitializer() && GV->hasExternalLinkage())
1233 Out << "external ";
1234
1235 PrintLinkage(GV->getLinkage(), Out);
1236 PrintVisibility(GV->getVisibility(), Out);
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001237
1238 if (GV->isThreadLocal()) Out << "thread_local ";
Misha Brukmana6619a92004-06-21 21:53:56 +00001239 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +00001240 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +00001241
Chris Lattner033935d2008-08-17 04:40:13 +00001242 if (GV->hasInitializer())
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001243 writeOperand(GV->getInitializer(), false);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001244
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001245 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1246 Out << " addrspace(" << AddressSpace << ") ";
1247
Chris Lattner4b96c542005-11-12 00:10:19 +00001248 if (GV->hasSection())
1249 Out << ", section \"" << GV->getSection() << '"';
1250 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001251 Out << ", align " << GV->getAlignment();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001252
Chris Lattner113f4f42002-06-25 16:13:24 +00001253 printInfoComment(*GV);
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001254 Out << '\n';
Chris Lattnerda975502001-09-10 07:58:01 +00001255}
1256
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001257void AssemblyWriter::printAlias(const GlobalAlias *GA) {
Dale Johannesen83e468a2008-06-03 18:14:29 +00001258 // Don't crash when dumping partially built GA
1259 if (!GA->hasName())
1260 Out << "<<nameless>> = ";
Chris Lattner033935d2008-08-17 04:40:13 +00001261 else {
1262 PrintLLVMName(Out, GA);
1263 Out << " = ";
1264 }
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001265 PrintVisibility(GA->getVisibility(), Out);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001266
1267 Out << "alias ";
1268
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001269 PrintLinkage(GA->getLinkage(), Out);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001270
Anton Korobeynikov546ea7e2007-04-29 18:02:48 +00001271 const Constant *Aliasee = GA->getAliasee();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001272
1273 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
1274 printType(GV->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001275 Out << ' ';
1276 PrintLLVMName(Out, GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001277 } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
1278 printType(F->getFunctionType());
1279 Out << "* ";
1280
Chris Lattner17f71652008-08-17 07:19:36 +00001281 if (F->hasName())
Chris Lattner033935d2008-08-17 04:40:13 +00001282 PrintLLVMName(Out, F);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001283 else
1284 Out << "@\"\"";
Anton Korobeynikov72d5d422008-03-22 08:17:17 +00001285 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Aliasee)) {
1286 printType(GA->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001287 Out << " ";
1288 PrintLLVMName(Out, GA);
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +00001289 } else {
1290 const ConstantExpr *CE = 0;
1291 if ((CE = dyn_cast<ConstantExpr>(Aliasee)) &&
1292 (CE->getOpcode() == Instruction::BitCast)) {
1293 writeOperand(CE, false);
1294 } else
1295 assert(0 && "Unsupported aliasee");
1296 }
1297
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001298 printInfoComment(*GA);
Chris Lattner1508d3f2008-08-19 05:16:28 +00001299 Out << '\n';
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001300}
1301
Reid Spencer32af9e82007-01-06 07:24:44 +00001302void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +00001303 // Print the types.
Reid Spencer32af9e82007-01-06 07:24:44 +00001304 for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
1305 TI != TE; ++TI) {
Chris Lattner1508d3f2008-08-19 05:16:28 +00001306 Out << '\t';
1307 PrintLLVMName(Out, &TI->first[0], TI->first.size(), LocalPrefix);
1308 Out << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +00001309
1310 // Make sure we print out at least one level of the type structure, so
1311 // that we do not get %FILE = type %FILE
1312 //
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001313 printTypeAtLeastOneLevel(TI->second);
1314 Out << '\n';
Reid Spencere7e96712004-05-25 08:53:40 +00001315 }
Reid Spencer32af9e82007-01-06 07:24:44 +00001316}
1317
Misha Brukmanc566ca362004-03-02 00:22:19 +00001318/// printFunction - Print all aspects of a function.
1319///
Chris Lattner113f4f42002-06-25 16:13:24 +00001320void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001321 // Print out the return type and name.
1322 Out << '\n';
Chris Lattner379a8d22003-04-16 20:28:45 +00001323
Misha Brukmana6619a92004-06-21 21:53:56 +00001324 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001325
Reid Spencer5301e7c2007-01-30 20:08:39 +00001326 if (F->isDeclaration())
Chris Lattner10f03a62007-08-19 22:15:26 +00001327 Out << "declare ";
1328 else
Reid Spencer7ce2d2a2006-12-29 20:29:48 +00001329 Out << "define ";
Chris Lattner3a36d2c2008-08-19 05:06:27 +00001330
1331 PrintLinkage(F->getLinkage(), Out);
1332 PrintVisibility(F->getVisibility(), Out);
Chris Lattner379a8d22003-04-16 20:28:45 +00001333
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001334 // Print the calling convention.
1335 switch (F->getCallingConv()) {
1336 case CallingConv::C: break; // default
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001337 case CallingConv::Fast: Out << "fastcc "; break;
1338 case CallingConv::Cold: Out << "coldcc "; break;
1339 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1340 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001341 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001342 default: Out << "cc" << F->getCallingConv() << " "; break;
1343 }
1344
Reid Spencer8c4914c2006-12-31 05:24:50 +00001345 const FunctionType *FT = F->getFunctionType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001346 const PAListPtr &Attrs = F->getParamAttrs();
Chris Lattner585297e82008-08-19 05:26:17 +00001347 printType(F->getReturnType());
1348 Out << ' ';
Chris Lattneredceac32008-08-17 07:24:08 +00001349 if (F->hasName())
Chris Lattner033935d2008-08-17 04:40:13 +00001350 PrintLLVMName(Out, F);
Chris Lattner5b337482003-10-18 05:57:43 +00001351 else
Reid Spencer788e3172007-01-26 08:02:52 +00001352 Out << "@\"\"";
Misha Brukmana6619a92004-06-21 21:53:56 +00001353 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001354 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001355
Chris Lattner7bfee412001-10-29 16:05:51 +00001356 // Loop over the arguments, printing them...
Chris Lattnerfee714f2001-09-07 16:36:04 +00001357
Reid Spencer8c4914c2006-12-31 05:24:50 +00001358 unsigned Idx = 1;
Chris Lattner82738fe2007-04-18 00:57:22 +00001359 if (!F->isDeclaration()) {
1360 // If this isn't a declaration, print the argument names as well.
1361 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1362 I != E; ++I) {
1363 // Insert commas as we go... the first arg doesn't get a comma
1364 if (I != F->arg_begin()) Out << ", ";
Chris Lattner8a923e72008-03-12 17:45:29 +00001365 printArgument(I, Attrs.getParamAttrs(Idx));
Chris Lattner82738fe2007-04-18 00:57:22 +00001366 Idx++;
1367 }
1368 } else {
1369 // Otherwise, print the types from the function type.
1370 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1371 // Insert commas as we go... the first arg doesn't get a comma
1372 if (i) Out << ", ";
1373
1374 // Output type...
1375 printType(FT->getParamType(i));
1376
Chris Lattner8a923e72008-03-12 17:45:29 +00001377 ParameterAttributes ArgAttrs = Attrs.getParamAttrs(i+1);
Chris Lattner82738fe2007-04-18 00:57:22 +00001378 if (ArgAttrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001379 Out << ' ' << ParamAttr::getAsString(ArgAttrs);
Chris Lattner82738fe2007-04-18 00:57:22 +00001380 }
Reid Spencer8c4914c2006-12-31 05:24:50 +00001381 }
Chris Lattnerfee714f2001-09-07 16:36:04 +00001382
1383 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +00001384 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001385 if (FT->getNumParams()) Out << ", ";
1386 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +00001387 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001388 Out << ')';
Chris Lattner8a923e72008-03-12 17:45:29 +00001389 ParameterAttributes RetAttrs = Attrs.getParamAttrs(0);
1390 if (RetAttrs != ParamAttr::None)
1391 Out << ' ' << ParamAttr::getAsString(Attrs.getParamAttrs(0));
Chris Lattner4b96c542005-11-12 00:10:19 +00001392 if (F->hasSection())
1393 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001394 if (F->getAlignment())
1395 Out << " align " << F->getAlignment();
Gordon Henriksend930f912008-08-17 18:44:35 +00001396 if (F->hasGC())
1397 Out << " gc \"" << F->getGC() << '"';
Chris Lattner4b96c542005-11-12 00:10:19 +00001398
Reid Spencer5301e7c2007-01-30 20:08:39 +00001399 if (F->isDeclaration()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001400 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +00001401 } else {
Chris Lattnerd5fbc8f2008-04-21 06:12:55 +00001402 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001403
Chris Lattner6915f8f2002-04-07 22:49:37 +00001404 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +00001405 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1406 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001407
Misha Brukmana6619a92004-06-21 21:53:56 +00001408 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +00001409 }
1410
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001411 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001412}
1413
Misha Brukmanc566ca362004-03-02 00:22:19 +00001414/// printArgument - This member is called for every argument that is passed into
1415/// the function. Simply print it out
1416///
Dale Johannesen89268bc2008-02-19 21:38:47 +00001417void AssemblyWriter::printArgument(const Argument *Arg,
1418 ParameterAttributes Attrs) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001419 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +00001420 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001421
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001422 // Output parameter attributes list
Reid Spencera472f662007-04-11 02:44:20 +00001423 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001424 Out << ' ' << ParamAttr::getAsString(Attrs);
Reid Spencer8c4914c2006-12-31 05:24:50 +00001425
Chris Lattner2f7c9632001-06-06 20:29:01 +00001426 // Output name, if available...
Chris Lattner033935d2008-08-17 04:40:13 +00001427 if (Arg->hasName()) {
1428 Out << ' ';
1429 PrintLLVMName(Out, Arg);
1430 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001431}
1432
Misha Brukmanc566ca362004-03-02 00:22:19 +00001433/// printBasicBlock - This member is called for each basic block in a method.
1434///
Chris Lattner7bfee412001-10-29 16:05:51 +00001435void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001436 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001437 Out << "\n";
Chris Lattner1508d3f2008-08-19 05:16:28 +00001438 PrintLLVMName(Out, BB->getNameStart(), BB->getNameLen(), LabelPrefix);
Chris Lattner033935d2008-08-17 04:40:13 +00001439 Out << ':';
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001440 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Chris Lattner67bec132008-04-21 04:20:33 +00001441 Out << "\n; <label>:";
Chris Lattner5e043322007-01-11 03:54:27 +00001442 int Slot = Machine.getLocalSlot(BB);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001443 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001444 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +00001445 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001446 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +00001447 }
Chris Lattner2447ef52003-11-20 00:09:43 +00001448
1449 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +00001450 Out << "\t\t; Error: Block without parent!";
Chris Lattnerff834c02008-04-22 02:45:44 +00001451 else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
1452 // Output predecessors for the block...
1453 Out << "\t\t;";
1454 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
1455
1456 if (PI == PE) {
1457 Out << " No predecessors!";
1458 } else {
1459 Out << " preds =";
1460 writeOperand(*PI, false);
1461 for (++PI; PI != PE; ++PI) {
1462 Out << ',';
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001463 writeOperand(*PI, false);
Chris Lattner00211f12003-11-16 22:59:57 +00001464 }
Chris Lattner58185f22002-10-02 19:38:55 +00001465 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001466 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001467
Chris Lattnerff834c02008-04-22 02:45:44 +00001468 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001469
Misha Brukmana6619a92004-06-21 21:53:56 +00001470 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001471
Chris Lattnerfee714f2001-09-07 16:36:04 +00001472 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001473 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1474 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001475
Misha Brukmana6619a92004-06-21 21:53:56 +00001476 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001477}
1478
Chris Lattner862e3382001-10-13 06:42:36 +00001479
Misha Brukmanc566ca362004-03-02 00:22:19 +00001480/// printInfoComment - Print a little comment after the instruction indicating
1481/// which slot it occupies.
1482///
Chris Lattner113f4f42002-06-25 16:13:24 +00001483void AssemblyWriter::printInfoComment(const Value &V) {
1484 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001485 Out << "\t\t; <";
Chris Lattner585297e82008-08-19 05:26:17 +00001486 printType(V.getType());
1487 Out << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001488
Chris Lattner113f4f42002-06-25 16:13:24 +00001489 if (!V.hasName()) {
Chris Lattner5e043322007-01-11 03:54:27 +00001490 int SlotNum;
1491 if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1492 SlotNum = Machine.getGlobalSlot(GV);
1493 else
1494 SlotNum = Machine.getLocalSlot(&V);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001495 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001496 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001497 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001498 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001499 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001500 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001501 }
1502}
1503
Reid Spencere7141c82006-08-28 01:02:49 +00001504// This member is called for each Instruction in a function..
Chris Lattner113f4f42002-06-25 16:13:24 +00001505void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001506 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001507
Chris Lattner82ff9232008-08-23 22:52:27 +00001508 Out << '\t';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001509
1510 // Print out name if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001511 if (I.hasName()) {
1512 PrintLLVMName(Out, &I);
1513 Out << " = ";
1514 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001515
Chris Lattner06038452005-05-06 05:51:46 +00001516 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001517 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001518 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001519 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001520 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1521 // If this is a call, check if it's a tail call.
1522 Out << "tail ";
1523 }
Chris Lattner504f9242003-09-08 17:45:59 +00001524
Chris Lattner2f7c9632001-06-06 20:29:01 +00001525 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001526 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001527
Reid Spencer45e52392006-12-03 06:27:29 +00001528 // Print out the compare instruction predicates
Nate Begemand2195702008-05-12 19:01:56 +00001529 if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
Chris Lattner82ff9232008-08-23 22:52:27 +00001530 Out << ' ' << getPredicateText(CI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001531
Chris Lattner2f7c9632001-06-06 20:29:01 +00001532 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001533 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001534
1535 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001536 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1537 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001538 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001539 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001540 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001541 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001542
Chris Lattner8d48df22002-04-13 18:34:38 +00001543 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001544 // Special case switch statement to get formatting nice and correct...
Chris Lattner82ff9232008-08-23 22:52:27 +00001545 writeOperand(Operand , true);
1546 Out << ',';
1547 writeOperand(I.getOperand(1), true);
1548 Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001549
Chris Lattner113f4f42002-06-25 16:13:24 +00001550 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001551 Out << "\n\t\t";
Chris Lattner82ff9232008-08-23 22:52:27 +00001552 writeOperand(I.getOperand(op ), true);
1553 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001554 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001555 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001556 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001557 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001558 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001559 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001560 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001561
Chris Lattner113f4f42002-06-25 16:13:24 +00001562 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001563 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001564 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001565 writeOperand(I.getOperand(op ), false); Out << ',';
1566 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001567 }
Dan Gohmana76f0f72008-05-31 19:12:39 +00001568 } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
1569 writeOperand(I.getOperand(0), true);
1570 for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
1571 Out << ", " << *i;
1572 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
1573 writeOperand(I.getOperand(0), true); Out << ',';
1574 writeOperand(I.getOperand(1), true);
1575 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
1576 Out << ", " << *i;
Devang Patel59643e52008-02-23 00:35:18 +00001577 } else if (isa<ReturnInst>(I) && !Operand) {
1578 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001579 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1580 // Print the calling convention being used.
1581 switch (CI->getCallingConv()) {
1582 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001583 case CallingConv::Fast: Out << " fastcc"; break;
1584 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerf5270372007-11-18 18:32:16 +00001585 case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break;
1586 case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001587 case CallingConv::X86_SSECall: Out << " x86_ssecallcc"; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001588 default: Out << " cc" << CI->getCallingConv(); break;
1589 }
1590
Reid Spencer1517de32007-04-09 06:10:42 +00001591 const PointerType *PTy = cast<PointerType>(Operand->getType());
1592 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1593 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001594 const PAListPtr &PAL = CI->getParamAttrs();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001595
Chris Lattner463d6a52003-08-05 15:34:45 +00001596 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001597 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001598 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001599 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001600 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001601 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001602 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001603 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001604 writeOperand(Operand, false);
1605 } else {
1606 writeOperand(Operand, true);
1607 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001608 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001609 for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1610 if (op > 1)
1611 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001612 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op));
Chris Lattner2f7c9632001-06-06 20:29:01 +00001613 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001614 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001615 if (PAL.getParamAttrs(0) != ParamAttr::None)
1616 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Chris Lattner113f4f42002-06-25 16:13:24 +00001617 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Reid Spencer1517de32007-04-09 06:10:42 +00001618 const PointerType *PTy = cast<PointerType>(Operand->getType());
1619 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1620 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001621 const PAListPtr &PAL = II->getParamAttrs();
Chris Lattner463d6a52003-08-05 15:34:45 +00001622
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001623 // Print the calling convention being used.
1624 switch (II->getCallingConv()) {
1625 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001626 case CallingConv::Fast: Out << " fastcc"; break;
1627 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001628 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1629 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001630 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001631 default: Out << " cc" << II->getCallingConv(); break;
1632 }
1633
Chris Lattner463d6a52003-08-05 15:34:45 +00001634 // If possible, print out the short form of the invoke instruction. We can
1635 // only do this if the first argument is a pointer to a nonvararg function,
1636 // and if the return type is not a pointer to a function.
1637 //
1638 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001639 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001640 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001641 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001642 writeOperand(Operand, false);
1643 } else {
1644 writeOperand(Operand, true);
1645 }
1646
Misha Brukmana6619a92004-06-21 21:53:56 +00001647 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001648 for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1649 if (op > 3)
1650 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001651 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op-2));
Chris Lattner862e3382001-10-13 06:42:36 +00001652 }
1653
Reid Spencer136a91c2007-01-05 17:06:19 +00001654 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001655 if (PAL.getParamAttrs(0) != ParamAttr::None)
Dan Gohman1a70bcc2008-08-05 15:51:44 +00001656 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Reid Spencer136a91c2007-01-05 17:06:19 +00001657 Out << "\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001658 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001659 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001660 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001661
Chris Lattner113f4f42002-06-25 16:13:24 +00001662 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001663 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001664 printType(AI->getType()->getElementType());
1665 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001666 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001667 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001668 }
Nate Begeman848622f2005-11-05 09:21:28 +00001669 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001670 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001671 }
Chris Lattner862e3382001-10-13 06:42:36 +00001672 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001673 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001674 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001675 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001676 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001677 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001678 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001679 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001680 } else if (Operand) { // Print the normal way...
1681
Misha Brukmanb1c93172005-04-21 23:48:37 +00001682 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001683 // omit the type from all but the first operand. If the instruction has
1684 // different type operands (for example br), then they are all printed.
1685 bool PrintAllTypes = false;
1686 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001687
Reid Spencer0cdd04f2007-02-02 13:54:55 +00001688 // Select, Store and ShuffleVector always print all types.
Devang Patelce556d92008-03-04 22:05:14 +00001689 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
1690 || isa<ReturnInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001691 PrintAllTypes = true;
1692 } else {
1693 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1694 Operand = I.getOperand(i);
1695 if (Operand->getType() != TheType) {
1696 PrintAllTypes = true; // We have differing types! Print them all!
1697 break;
1698 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001699 }
1700 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001701
Chris Lattner7bfee412001-10-29 16:05:51 +00001702 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001703 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001704 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001705 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001706
Chris Lattner113f4f42002-06-25 16:13:24 +00001707 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001708 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001709 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001710 }
1711 }
Christopher Lamb84485702007-04-22 19:24:39 +00001712
1713 // Print post operand alignment for load/store
1714 if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1715 Out << ", align " << cast<LoadInst>(I).getAlignment();
1716 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1717 Out << ", align " << cast<StoreInst>(I).getAlignment();
1718 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001719
Chris Lattner862e3382001-10-13 06:42:36 +00001720 printInfoComment(I);
Chris Lattner82ff9232008-08-23 22:52:27 +00001721 Out << '\n';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001722}
1723
1724
1725//===----------------------------------------------------------------------===//
1726// External Interface declarations
1727//===----------------------------------------------------------------------===//
1728
Chris Lattner8339f7d2003-10-30 23:41:03 +00001729void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner0c19df42008-08-23 22:23:09 +00001730 raw_os_ostream OS(o);
1731 print(OS, AAW);
1732}
1733void Module::print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const {
Chris Lattnere36fd8a2008-08-19 04:26:57 +00001734 SlotTracker SlotTable(this);
Chris Lattner0c19df42008-08-23 22:23:09 +00001735 AssemblyWriter W(OS, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001736 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001737}
1738
Misha Brukmanb1c93172005-04-21 23:48:37 +00001739void Type::print(std::ostream &o) const {
Chris Lattner0c19df42008-08-23 22:23:09 +00001740 raw_os_ostream OS(o);
1741 print(OS);
1742}
1743
1744void Type::print(raw_ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001745 if (this == 0)
1746 o << "<null Type>";
1747 else
1748 o << getDescription();
1749}
1750
Chris Lattner0c19df42008-08-23 22:23:09 +00001751void Value::print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const {
1752 if (this == 0) {
1753 OS << "printing a <null> value\n";
1754 return;
1755 }
1756
1757 if (const Instruction *I = dyn_cast<Instruction>(this)) {
1758 const Function *F = I->getParent() ? I->getParent()->getParent() : 0;
1759 SlotTracker SlotTable(F);
1760 AssemblyWriter W(OS, SlotTable, F ? F->getParent() : 0, AAW);
1761 W.write(I);
1762 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(this)) {
1763 SlotTracker SlotTable(BB->getParent());
1764 AssemblyWriter W(OS, SlotTable,
1765 BB->getParent() ? BB->getParent()->getParent() : 0, AAW);
1766 W.write(BB);
1767 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
1768 SlotTracker SlotTable(GV->getParent());
1769 AssemblyWriter W(OS, SlotTable, GV->getParent(), 0);
1770 W.write(GV);
1771 } else if (const Constant *C = dyn_cast<Constant>(this)) {
1772 OS << ' ' << C->getType()->getDescription() << ' ';
1773 std::map<const Type *, std::string> TypeTable;
1774 WriteConstantInt(OS, C, TypeTable, 0);
1775 } else if (const Argument *A = dyn_cast<Argument>(this)) {
1776 WriteAsOperand(OS, this, true,
1777 A->getParent() ? A->getParent()->getParent() : 0);
1778 } else if (isa<InlineAsm>(this)) {
1779 WriteAsOperand(OS, this, true, 0);
1780 } else {
Chris Lattnerd7586252008-08-24 18:33:17 +00001781 // FIXME: PseudoSourceValue breaks this!
1782 //assert(0 && "Unknown value to print out!");
Chris Lattner0c19df42008-08-23 22:23:09 +00001783 }
1784}
1785
1786void Value::print(std::ostream &O, AssemblyAnnotationWriter *AAW) const {
1787 raw_os_ostream OS(O);
1788 print(OS, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001789}
1790
Chris Lattnerdab942552008-08-25 17:03:15 +00001791// Value::dump - allow easy printing of Values from the debugger.
Chris Lattner820eebc2008-08-25 04:55:46 +00001792void Value::dump() const { print(errs()); errs() << '\n'; errs().flush(); }
Reid Spencer52641832004-05-25 18:14:38 +00001793
Chris Lattnerdab942552008-08-25 17:03:15 +00001794// Type::dump - allow easy printing of Types from the debugger.
Chris Lattner820eebc2008-08-25 04:55:46 +00001795void Type::dump() const { print(errs()); errs() << '\n'; errs().flush(); }
Chris Lattner0c19df42008-08-23 22:23:09 +00001796
Chris Lattnerdab942552008-08-25 17:03:15 +00001797// Module::dump() - Allow printing of Modules from the debugger.
Chris Lattner820eebc2008-08-25 04:55:46 +00001798void Module::dump() const { print(errs(), 0); errs().flush(); }
Chris Lattner0c19df42008-08-23 22:23:09 +00001799
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001800