blob: fa512e01711ee1c7d3d17aac9eb6c4b413865450 [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"
Reid Spencer7c16caa2004-09-01 22:55:40 +000029#include "llvm/ADT/StringExtras.h"
30#include "llvm/ADT/STLExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000031#include "llvm/Support/CFG.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000032#include "llvm/Support/MathExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000033#include "llvm/Support/Streams.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
Chris Lattner60a7dd12004-07-15 02:51:31 +000039namespace llvm {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000040
Reid Spencer294715b2005-05-15 16:13:11 +000041// Make virtual table appear in this compilation unit.
42AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
43
Reid Spencer16f2f7f2004-05-26 07:18:52 +000044/// This class provides computation of slot numbers for LLVM Assembly writing.
Chris Lattner393b7cd2008-08-17 04:17:45 +000045///
Reid Spencer16f2f7f2004-05-26 07:18:52 +000046class SlotMachine {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000047public:
Chris Lattner393b7cd2008-08-17 04:17:45 +000048 /// ValueMap - A mapping of Values to slot numbers
49 typedef std::map<const Value*, unsigned> ValueMap;
50
51private:
52 /// TheModule - The module for which we are holding slot numbers
53 const Module* TheModule;
54
55 /// TheFunction - The function for which we are holding slot numbers
56 const Function* TheFunction;
57 bool FunctionProcessed;
58
59 /// mMap - The TypePlanes map for the module level data
60 ValueMap mMap;
61 unsigned mNext;
62
63 /// fMap - The TypePlanes map for the function level data
64 ValueMap fMap;
65 unsigned fNext;
66
Reid Spencer16f2f7f2004-05-26 07:18:52 +000067public:
Chris Lattner393b7cd2008-08-17 04:17:45 +000068 /// Construct from a module
Dan Gohman242223a2008-01-29 11:36:12 +000069 explicit SlotMachine(const Module *M);
Chris Lattner393b7cd2008-08-17 04:17:45 +000070 /// Construct from a function, starting out in incorp state.
Dan Gohman242223a2008-01-29 11:36:12 +000071 explicit SlotMachine(const Function *F);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000072
Reid Spencer16f2f7f2004-05-26 07:18:52 +000073 /// Return the slot number of the specified value in it's type
Chris Lattner5e043322007-01-11 03:54:27 +000074 /// plane. If something is not in the SlotMachine, return -1.
75 int getLocalSlot(const Value *V);
76 int getGlobalSlot(const GlobalValue *V);
Reid Spencer8beac692004-06-09 15:26:53 +000077
Misha Brukmanb1c93172005-04-21 23:48:37 +000078 /// If you'd like to deal with a function instead of just a module, use
Reid Spencer16f2f7f2004-05-26 07:18:52 +000079 /// this method to get its data into the SlotMachine.
Misha Brukmanb1c93172005-04-21 23:48:37 +000080 void incorporateFunction(const Function *F) {
81 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +000082 FunctionProcessed = false;
83 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +000084
Misha Brukmanb1c93172005-04-21 23:48:37 +000085 /// After calling incorporateFunction, use this method to remove the
86 /// most recently incorporated function from the SlotMachine. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +000087 /// will reset the state of the machine back to just the module contents.
88 void purgeFunction();
89
Chris Lattner393b7cd2008-08-17 04:17:45 +000090 // Implementation Details
Reid Spencer16f2f7f2004-05-26 07:18:52 +000091private:
Reid Spencer56010e42004-05-26 21:56:09 +000092 /// This function does the actual initialization.
93 inline void initialize();
94
Chris Lattnerea862a32007-01-09 07:55:49 +000095 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
96 void CreateModuleSlot(const GlobalValue *V);
97
98 /// CreateFunctionSlot - Insert the specified Value* into the slot table.
99 void CreateFunctionSlot(const Value *V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000100
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000101 /// Add all of the module level global variables (and their initializers)
102 /// and function declarations, but not the contents of those functions.
103 void processModule();
104
Reid Spencer56010e42004-05-26 21:56:09 +0000105 /// Add all of the functions arguments, basic blocks, and instructions
106 void processFunction();
107
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000108 SlotMachine(const SlotMachine &); // DO NOT IMPLEMENT
109 void operator=(const SlotMachine &); // DO NOT IMPLEMENT
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000110};
111
Chris Lattner60a7dd12004-07-15 02:51:31 +0000112} // end namespace llvm
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000113
Devang Patel8c78a0b2007-05-03 01:11:54 +0000114char PrintModulePass::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000115static RegisterPass<PrintModulePass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000116X("printm", "Print module to stderr");
Devang Patel8c78a0b2007-05-03 01:11:54 +0000117char PrintFunctionPass::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000118static RegisterPass<PrintFunctionPass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000119Y("print","Print function to stderr");
Chris Lattner7f8845a2002-07-23 18:07:49 +0000120
Misha Brukmanb1c93172005-04-21 23:48:37 +0000121static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnera9f0a112006-12-06 05:50:41 +0000122 std::map<const Type *, std::string> &TypeTable,
Reid Spencer58d30f22004-07-04 11:50:43 +0000123 SlotMachine *Machine);
124
Chris Lattnerb86620e2001-10-29 16:37:48 +0000125static const Module *getModuleFromVal(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000126 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000127 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000128 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000129 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000130 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner57698e22002-03-26 18:01:55 +0000131 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000132 return M ? M->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000133 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000134 return GV->getParent();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000135 return 0;
136}
137
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000138static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000139 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000140 return new SlotMachine(FA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000141 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000142 return new SlotMachine(I->getParent()->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000143 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000144 return new SlotMachine(BB->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000145 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000146 return new SlotMachine(GV->getParent());
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000147 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)){
148 return new SlotMachine(GA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000149 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000150 return new SlotMachine(Func);
Chris Lattner7bfee412001-10-29 16:05:51 +0000151 }
152 return 0;
153}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000154
Reid Spencer788e3172007-01-26 08:02:52 +0000155/// NameNeedsQuotes - Return true if the specified llvm name should be wrapped
156/// with ""'s.
Reid Spencerbdf03b42007-05-22 19:27:35 +0000157static std::string QuoteNameIfNeeded(const std::string &Name) {
158 std::string result;
159 bool needsQuotes = Name[0] >= '0' && Name[0] <= '9';
160 // Scan the name to see if it needs quotes and to replace funky chars with
161 // their octal equivalent.
Chris Lattner1c343042003-08-22 05:40:38 +0000162 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
163 char C = Name[i];
164 assert(C != '"' && "Illegal character in LLVM value name!");
Reid Spencerbdf03b42007-05-22 19:27:35 +0000165 if (isalnum(C) || C == '-' || C == '.' || C == '_')
166 result += C;
167 else if (C == '\\') {
168 needsQuotes = true;
169 result += "\\\\";
170 } else if (isprint(C)) {
171 needsQuotes = true;
172 result += C;
173 } else {
174 needsQuotes = true;
175 result += "\\";
176 char hex1 = (C >> 4) & 0x0F;
177 if (hex1 < 10)
178 result += hex1 + '0';
179 else
180 result += hex1 - 10 + 'A';
181 char hex2 = C & 0x0F;
182 if (hex2 < 10)
183 result += hex2 + '0';
184 else
185 result += hex2 - 10 + 'A';
186 }
Reid Spencer788e3172007-01-26 08:02:52 +0000187 }
Reid Spencerbdf03b42007-05-22 19:27:35 +0000188 if (needsQuotes) {
189 result.insert(0,"\"");
190 result += '"';
191 }
192 return result;
Reid Spencer788e3172007-01-26 08:02:52 +0000193}
194
195enum PrefixType {
196 GlobalPrefix,
197 LabelPrefix,
198 LocalPrefix
199};
200
201/// getLLVMName - Turn the specified string into an 'LLVM name', which is either
202/// prefixed with % (if the string only contains simple characters) or is
203/// surrounded with ""'s (if it has special chars in it).
204static std::string getLLVMName(const std::string &Name, PrefixType Prefix) {
205 assert(!Name.empty() && "Cannot get empty name!");
Reid Spencer788e3172007-01-26 08:02:52 +0000206 switch (Prefix) {
207 default: assert(0 && "Bad prefix!");
Reid Spencerbdf03b42007-05-22 19:27:35 +0000208 case GlobalPrefix: return '@' + QuoteNameIfNeeded(Name);
209 case LabelPrefix: return QuoteNameIfNeeded(Name);
210 case LocalPrefix: return '%' + QuoteNameIfNeeded(Name);
Reid Spencer788e3172007-01-26 08:02:52 +0000211 }
Chris Lattner1c343042003-08-22 05:40:38 +0000212}
213
Chris Lattner033935d2008-08-17 04:40:13 +0000214/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
215/// prefixed with % (if the string only contains simple characters) or is
216/// surrounded with ""'s (if it has special chars in it). Print it out.
217static void PrintLLVMName(std::ostream &OS, const ValueName *Name,
218 PrefixType Prefix) {
219 assert(Name && "Cannot get empty name!");
220 switch (Prefix) {
221 default: assert(0 && "Bad prefix!");
222 case GlobalPrefix: OS << '@'; break;
223 case LabelPrefix: break;
224 case LocalPrefix: OS << '%'; break;
225 }
226
227 // Scan the name to see if it needs quotes first.
228 const char *NameStr = Name->getKeyData();
229 unsigned NameLen = Name->getKeyLength();
230
231 bool NeedsQuotes = NameStr[0] >= '0' && NameStr[0] <= '9';
232 if (!NeedsQuotes) {
233 for (unsigned i = 0; i != NameLen; ++i) {
234 char C = NameStr[i];
235 if (!isalnum(C) && C != '-' && C != '.' && C != '_') {
236 NeedsQuotes = true;
237 break;
238 }
239 }
240 }
241
242 // If we didn't need any quotes, just write out the name in one blast.
243 if (!NeedsQuotes) {
244 OS.write(NameStr, NameLen);
245 return;
246 }
247
248 // Okay, we need quotes. Output the quotes and escape any scary characters as
249 // needed.
250 OS << '"';
251 for (unsigned i = 0; i != NameLen; ++i) {
252 char C = NameStr[i];
253 assert(C != '"' && "Illegal character in LLVM value name!");
254 if (C == '\\') {
255 OS << "\\\\";
256 } else if (isprint(C)) {
257 OS << C;
258 } else {
259 OS << "\\";
260 char hex1 = (C >> 4) & 0x0F;
261 if (hex1 < 10)
262 OS << (hex1 + '0');
263 else
264 OS << (hex1 - 10 + 'A');
265 char hex2 = C & 0x0F;
266 if (hex2 < 10)
267 OS << (hex2 + '0');
268 else
269 OS << (hex2 - 10 + 'A');
270 }
271 }
272 OS << '"';
273}
274
275static void PrintLLVMName(std::ostream &OS, const Value *V) {
276 PrintLLVMName(OS, V->getValueName(),
277 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
278}
279
Chris Lattnerb86620e2001-10-29 16:37:48 +0000280
Misha Brukmanc566ca362004-03-02 00:22:19 +0000281/// fillTypeNameTable - If the module has a symbol table, take all global types
282/// and stuff their names into the TypeNames map.
283///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000284static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000285 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000286 if (!M) return;
Reid Spencer32af9e82007-01-06 07:24:44 +0000287 const TypeSymbolTable &ST = M->getTypeSymbolTable();
288 TypeSymbolTable::const_iterator TI = ST.begin();
289 for (; TI != ST.end(); ++TI) {
Reid Spencere7e96712004-05-25 08:53:40 +0000290 // As a heuristic, don't insert pointer to primitive types, because
291 // they are used too often to have a single useful name.
292 //
293 const Type *Ty = cast<Type>(TI->second);
294 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000295 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
Chris Lattner03c49532007-01-15 02:27:26 +0000296 !cast<PointerType>(Ty)->getElementType()->isInteger() ||
Reid Spencer56010e42004-05-26 21:56:09 +0000297 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencer788e3172007-01-26 08:02:52 +0000298 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first, LocalPrefix)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000299 }
300}
301
302
303
Misha Brukmanb1c93172005-04-21 23:48:37 +0000304static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000305 std::vector<const Type *> &TypeStack,
306 std::map<const Type *, std::string> &TypeNames,
307 std::string & Result){
Chris Lattner03c49532007-01-15 02:27:26 +0000308 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
John Criswellcd116ba2004-06-01 14:54:08 +0000309 Result += Ty->getDescription(); // Base case
310 return;
311 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000312
313 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000314 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000315 if (I != TypeNames.end()) {
316 Result += I->second;
317 return;
318 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000319
John Criswellcd116ba2004-06-01 14:54:08 +0000320 if (isa<OpaqueType>(Ty)) {
321 Result += "opaque";
322 return;
323 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000324
Chris Lattnerb86620e2001-10-29 16:37:48 +0000325 // Check to see if the Type is already on the stack...
326 unsigned Slot = 0, CurSize = TypeStack.size();
327 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
328
Misha Brukmanb1c93172005-04-21 23:48:37 +0000329 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000330 // that we have looped back to a type that we have previously visited.
331 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000332 if (Slot < CurSize) {
333 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
334 return;
335 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000336
337 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000338
Chris Lattner6b727592004-06-17 18:19:28 +0000339 switch (Ty->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000340 case Type::IntegerTyID: {
341 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc8721592007-01-12 07:25:20 +0000342 Result += "i" + utostr(BitWidth);
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000343 break;
344 }
Chris Lattner91db5822002-03-29 03:44:36 +0000345 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000346 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000347 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
348 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000349 for (FunctionType::param_iterator I = FTy->param_begin(),
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000350 E = FTy->param_end(); I != E; ++I) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000351 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000352 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000353 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000354 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000355 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000356 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000357 Result += "...";
358 }
359 Result += ")";
360 break;
361 }
362 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000363 const StructType *STy = cast<StructType>(Ty);
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000364 if (STy->isPacked())
365 Result += '<';
John Criswellcd116ba2004-06-01 14:54:08 +0000366 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000367 for (StructType::element_iterator I = STy->element_begin(),
368 E = STy->element_end(); I != E; ++I) {
369 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000370 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000371 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000372 }
373 Result += " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000374 if (STy->isPacked())
375 Result += '>';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000376 break;
377 }
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000378 case Type::PointerTyID: {
379 const PointerType *PTy = cast<PointerType>(Ty);
380 calcTypeName(PTy->getElementType(),
John Criswellcd116ba2004-06-01 14:54:08 +0000381 TypeStack, TypeNames, Result);
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000382 if (unsigned AddressSpace = PTy->getAddressSpace())
383 Result += " addrspace(" + utostr(AddressSpace) + ")";
John Criswellcd116ba2004-06-01 14:54:08 +0000384 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000385 break;
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000386 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000387 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000388 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000389 Result += "[" + utostr(ATy->getNumElements()) + " x ";
390 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
391 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000392 break;
393 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000394 case Type::VectorTyID: {
395 const VectorType *PTy = cast<VectorType>(Ty);
Brian Gaeke02209042004-08-20 06:00:58 +0000396 Result += "<" + utostr(PTy->getNumElements()) + " x ";
397 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
398 Result += ">";
399 break;
400 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000401 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000402 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000403 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000404 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000405 Result += "<unrecognized-type>";
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000406 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000407 }
408
409 TypeStack.pop_back(); // Remove self from stack...
Chris Lattnerb86620e2001-10-29 16:37:48 +0000410}
411
412
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000413/// printTypeInt - The internal guts of printing out a type that has a
414/// potentially named portion.
415///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000416static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
417 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000418 // Primitive types always print out their description, regardless of whether
419 // they have been named or not.
420 //
Chris Lattner03c49532007-01-15 02:27:26 +0000421 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)))
Chris Lattner92d60532003-10-30 00:12:51 +0000422 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000423
424 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000425 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000426 if (I != TypeNames.end()) return Out << I->second;
427
428 // Otherwise we have a type that has not been named but is a derived type.
429 // Carefully recurse the type hierarchy to print out any contained symbolic
430 // names.
431 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000432 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000433 std::string TypeName;
434 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000435 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000436 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000437}
438
Chris Lattner34b95182001-10-31 04:33:19 +0000439
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000440/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
441/// type, iff there is an entry in the modules symbol table for the specified
442/// type or one of it's component types. This is slower than a simple x << Type
443///
Chris Lattner189d19f2003-11-21 20:23:48 +0000444std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
445 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000446 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000447
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000448 // If they want us to print out a type, but there is no context, we can't
449 // print it symbolically.
450 if (!M)
Chris Lattner72f866e2001-10-29 16:40:32 +0000451 return Out << Ty->getDescription();
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000452
453 std::map<const Type *, std::string> TypeNames;
454 fillTypeNameTable(M, TypeNames);
455 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000456}
457
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000458// PrintEscapedString - Print each character of the specified string, escaping
459// it if it is not printable or if it is an escape char.
460static void PrintEscapedString(const std::string &Str, std::ostream &Out) {
461 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
462 unsigned char C = Str[i];
463 if (isprint(C) && C != '"' && C != '\\') {
464 Out << C;
465 } else {
466 Out << '\\'
467 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
468 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
469 }
470 }
471}
472
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000473static const char *getPredicateText(unsigned predicate) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000474 const char * pred = "unknown";
475 switch (predicate) {
476 case FCmpInst::FCMP_FALSE: pred = "false"; break;
477 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
478 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
479 case FCmpInst::FCMP_OGE: pred = "oge"; break;
480 case FCmpInst::FCMP_OLT: pred = "olt"; break;
481 case FCmpInst::FCMP_OLE: pred = "ole"; break;
482 case FCmpInst::FCMP_ONE: pred = "one"; break;
483 case FCmpInst::FCMP_ORD: pred = "ord"; break;
484 case FCmpInst::FCMP_UNO: pred = "uno"; break;
485 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
486 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
487 case FCmpInst::FCMP_UGE: pred = "uge"; break;
488 case FCmpInst::FCMP_ULT: pred = "ult"; break;
489 case FCmpInst::FCMP_ULE: pred = "ule"; break;
490 case FCmpInst::FCMP_UNE: pred = "une"; break;
491 case FCmpInst::FCMP_TRUE: pred = "true"; break;
492 case ICmpInst::ICMP_EQ: pred = "eq"; break;
493 case ICmpInst::ICMP_NE: pred = "ne"; break;
494 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
495 case ICmpInst::ICMP_SGE: pred = "sge"; break;
496 case ICmpInst::ICMP_SLT: pred = "slt"; break;
497 case ICmpInst::ICMP_SLE: pred = "sle"; break;
498 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
499 case ICmpInst::ICMP_UGE: pred = "uge"; break;
500 case ICmpInst::ICMP_ULT: pred = "ult"; break;
501 case ICmpInst::ICMP_ULE: pred = "ule"; break;
502 }
503 return pred;
504}
505
Misha Brukmanb1c93172005-04-21 23:48:37 +0000506static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000507 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000508 SlotMachine *Machine) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000509 const int IndentSize = 4;
510 static std::string Indent = "\n";
Zhou Sheng75b871f2007-01-11 12:24:14 +0000511 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Reid Spencer542964f2007-01-11 18:21:29 +0000512 if (CI->getType() == Type::Int1Ty)
Reid Spencercddc9df2007-01-12 04:24:46 +0000513 Out << (CI->getZExtValue() ? "true" : "false");
514 else
Reid Spencere2eb1fa2007-02-27 20:25:25 +0000515 Out << CI->getValue().toStringSigned(10);
Chris Lattner1e194682002-04-18 18:53:13 +0000516 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Dale Johannesen028084e2007-09-12 03:30:33 +0000517 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble ||
518 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) {
519 // We would like to output the FP constant value in exponential notation,
520 // but we cannot do this if doing so will lose precision. Check here to
521 // make sure that we only output it in exponential format if we can parse
522 // the value back and get the same value.
523 //
524 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
525 double Val = (isDouble) ? CFP->getValueAPF().convertToDouble() :
526 CFP->getValueAPF().convertToFloat();
527 std::string StrVal = ftostr(CFP->getValueAPF());
Chris Lattner1e194682002-04-18 18:53:13 +0000528
Dale Johannesen028084e2007-09-12 03:30:33 +0000529 // Check to make sure that the stringized number is not some string like
530 // "Inf" or NaN, that atof will accept, but the lexer will not. Check
531 // that the string matches the "[-+]?[0-9]" regex.
532 //
533 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
534 ((StrVal[0] == '-' || StrVal[0] == '+') &&
535 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
536 // Reparse stringized version!
537 if (atof(StrVal.c_str()) == Val) {
538 Out << StrVal;
539 return;
540 }
Chris Lattner1e194682002-04-18 18:53:13 +0000541 }
Dale Johannesen028084e2007-09-12 03:30:33 +0000542 // Otherwise we could not reparse it to exactly the same value, so we must
543 // output the string in hexadecimal format!
544 assert(sizeof(double) == sizeof(uint64_t) &&
545 "assuming that double is 64 bits!");
546 Out << "0x" << utohexstr(DoubleToBits(Val));
547 } else {
548 // Some form of long double. These appear as a magic letter identifying
549 // the type, then a fixed number of hex digits.
550 Out << "0x";
551 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended)
552 Out << 'K';
553 else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad)
554 Out << 'L';
Dale Johannesen007aa372007-10-11 18:07:22 +0000555 else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
556 Out << 'M';
Dale Johannesen028084e2007-09-12 03:30:33 +0000557 else
558 assert(0 && "Unsupported floating point type");
Dale Johannesen34aa41c2007-09-26 23:20:33 +0000559 // api needed to prevent premature destruction
560 APInt api = CFP->getValueAPF().convertToAPInt();
561 const uint64_t* p = api.getRawData();
Dale Johannesen028084e2007-09-12 03:30:33 +0000562 uint64_t word = *p;
563 int shiftcount=60;
Dale Johannesen007aa372007-10-11 18:07:22 +0000564 int width = api.getBitWidth();
Dale Johannesen028084e2007-09-12 03:30:33 +0000565 for (int j=0; j<width; j+=4, shiftcount-=4) {
566 unsigned int nibble = (word>>shiftcount) & 15;
567 if (nibble < 10)
568 Out << (unsigned char)(nibble + '0');
569 else
570 Out << (unsigned char)(nibble - 10 + 'A');
Dale Johannesen4675c4e2008-04-16 17:31:41 +0000571 if (shiftcount == 0 && j+4 < width) {
Dale Johannesen028084e2007-09-12 03:30:33 +0000572 word = *(++p);
Dale Johannesen007aa372007-10-11 18:07:22 +0000573 shiftcount = 64;
Dale Johannesen028084e2007-09-12 03:30:33 +0000574 if (width-j-4 < 64)
575 shiftcount = width-j-4;
576 }
577 }
578 }
Chris Lattner76b2ff42004-02-15 05:55:15 +0000579 } else if (isa<ConstantAggregateZero>(CV)) {
580 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000581 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
582 // As a special case, print the array as a string if it is an array of
Dan Gohmane9bc2ba2008-05-12 16:34:30 +0000583 // i8 with ConstantInt values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000584 //
Chris Lattner1e194682002-04-18 18:53:13 +0000585 const Type *ETy = CA->getType()->getElementType();
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000586 if (CA->isString()) {
Chris Lattner1e194682002-04-18 18:53:13 +0000587 Out << "c\"";
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000588 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner1e194682002-04-18 18:53:13 +0000589 Out << "\"";
590
591 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000592 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000593 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000594 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000595 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000596 WriteAsOperandInternal(Out, CA->getOperand(0),
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000597 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000598 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
599 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000600 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000601 WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000602 }
603 }
604 Out << " ]";
605 }
606 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000607 if (CS->getType()->isPacked())
608 Out << '<';
Misha Brukman21bbdb92004-06-04 21:11:51 +0000609 Out << '{';
Jim Laskey3bb78742006-02-25 12:27:03 +0000610 unsigned N = CS->getNumOperands();
611 if (N) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000612 if (N > 2) {
613 Indent += std::string(IndentSize, ' ');
614 Out << Indent;
615 } else {
616 Out << ' ';
617 }
Chris Lattnerd84bb632002-04-16 21:36:08 +0000618 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
619
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000620 WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000621
Jim Laskey3bb78742006-02-25 12:27:03 +0000622 for (unsigned i = 1; i < N; i++) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000623 Out << ", ";
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000624 if (N > 2) Out << Indent;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000625 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
626
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000627 WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000628 }
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000629 if (N > 2) Indent.resize(Indent.size() - IndentSize);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000630 }
Jim Laskey3bb78742006-02-25 12:27:03 +0000631
Chris Lattnerd84bb632002-04-16 21:36:08 +0000632 Out << " }";
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000633 if (CS->getType()->isPacked())
634 Out << '>';
Reid Spencerd84d35b2007-02-15 02:26:10 +0000635 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
Brian Gaeke02209042004-08-20 06:00:58 +0000636 const Type *ETy = CP->getType()->getElementType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000637 assert(CP->getNumOperands() > 0 &&
Brian Gaeke02209042004-08-20 06:00:58 +0000638 "Number of operands for a PackedConst must be > 0");
639 Out << '<';
640 Out << ' ';
641 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000642 WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
Brian Gaeke02209042004-08-20 06:00:58 +0000643 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
644 Out << ", ";
645 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000646 WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
Brian Gaeke02209042004-08-20 06:00:58 +0000647 }
648 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000649 } else if (isa<ConstantPointerNull>(CV)) {
650 Out << "null";
651
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000652 } else if (isa<UndefValue>(CV)) {
653 Out << "undef";
654
Chris Lattner3cd8c562002-07-30 18:54:25 +0000655 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000656 Out << CE->getOpcodeName();
657 if (CE->isCompare())
658 Out << " " << getPredicateText(CE->getPredicate());
659 Out << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000660
Vikram S. Adveb952b542002-07-14 23:14:45 +0000661 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
662 printTypeInt(Out, (*OI)->getType(), TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000663 WriteAsOperandInternal(Out, *OI, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000664 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000665 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000666 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000667
Dan Gohmana76f0f72008-05-31 19:12:39 +0000668 if (CE->hasIndices()) {
669 const SmallVector<unsigned, 4> &Indices = CE->getIndices();
670 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
671 Out << ", " << Indices[i];
672 }
673
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000674 if (CE->isCast()) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000675 Out << " to ";
676 printTypeInt(Out, CE->getType(), TypeTable);
677 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000678
Misha Brukman21bbdb92004-06-04 21:11:51 +0000679 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000680
Chris Lattnerd84bb632002-04-16 21:36:08 +0000681 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000682 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000683 }
684}
685
686
Misha Brukmanc566ca362004-03-02 00:22:19 +0000687/// WriteAsOperand - Write the name of the specified value out to the specified
688/// ostream. This can be useful when you just want to print int %reg126, not
689/// the whole instruction that generated it.
690///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000691static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000692 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000693 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000694 Out << ' ';
Chris Lattner033935d2008-08-17 04:40:13 +0000695 if (V->hasName()) {
696 PrintLLVMName(Out, V);
697 return;
698 }
699
700 const Constant *CV = dyn_cast<Constant>(V);
701 if (CV && !isa<GlobalValue>(CV)) {
702 WriteConstantInt(Out, CV, TypeTable, Machine);
703 } else if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
704 Out << "asm ";
705 if (IA->hasSideEffects())
706 Out << "sideeffect ";
707 Out << '"';
708 PrintEscapedString(IA->getAsmString(), Out);
709 Out << "\", \"";
710 PrintEscapedString(IA->getConstraintString(), Out);
711 Out << '"';
712 } else {
713 char Prefix = '%';
714 int Slot;
715 if (Machine) {
716 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
717 Slot = Machine->getGlobalSlot(GV);
718 Prefix = '@';
719 } else {
720 Slot = Machine->getLocalSlot(V);
721 }
Chris Lattnera2d810d2006-01-25 22:26:05 +0000722 } else {
Chris Lattner033935d2008-08-17 04:40:13 +0000723 Machine = createSlotMachine(V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000724 if (Machine) {
Reid Spencer788e3172007-01-26 08:02:52 +0000725 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner5e043322007-01-11 03:54:27 +0000726 Slot = Machine->getGlobalSlot(GV);
Reid Spencer788e3172007-01-26 08:02:52 +0000727 Prefix = '@';
728 } else {
Chris Lattner5e043322007-01-11 03:54:27 +0000729 Slot = Machine->getLocalSlot(V);
Reid Spencer788e3172007-01-26 08:02:52 +0000730 }
Chris Lattnerd84bb632002-04-16 21:36:08 +0000731 } else {
Chris Lattner033935d2008-08-17 04:40:13 +0000732 Slot = -1;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000733 }
Chris Lattner033935d2008-08-17 04:40:13 +0000734 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000735 }
Chris Lattner033935d2008-08-17 04:40:13 +0000736 if (Slot != -1)
737 Out << Prefix << Slot;
738 else
739 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000740 }
741}
742
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000743/// WriteAsOperand - Write the name of the specified value out to the specified
744/// ostream. This can be useful when you just want to print int %reg126, not
745/// the whole instruction that generated it.
746///
Chris Lattner189d19f2003-11-21 20:23:48 +0000747std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Chris Lattner0dda8612006-12-06 06:15:43 +0000748 bool PrintType, const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000749 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000750 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000751
Chris Lattner98cf1f52002-11-20 18:36:02 +0000752 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000753 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000754
755 if (PrintType)
756 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000757
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000758 WriteAsOperandInternal(Out, V, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000759 return Out;
760}
761
Reid Spencer58d30f22004-07-04 11:50:43 +0000762
Chris Lattner189d19f2003-11-21 20:23:48 +0000763namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000764
Chris Lattnerfee714f2001-09-07 16:36:04 +0000765class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000766 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000767 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000768 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000769 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000770 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000771public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000772 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000773 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000774 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000775
776 // If the module has a symbol table, take all global types and stuff their
777 // names into the TypeNames map.
778 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000779 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000780 }
781
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000782 inline void write(const Module *M) { printModule(M); }
783 inline void write(const GlobalVariable *G) { printGlobal(G); }
784 inline void write(const GlobalAlias *G) { printAlias(G); }
785 inline void write(const Function *F) { printFunction(F); }
786 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000787 inline void write(const Instruction *I) { printInstruction(*I); }
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000788 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000789
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000790 void writeOperand(const Value *Op, bool PrintType);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000791 void writeParamOperand(const Value *Operand, ParameterAttributes Attrs);
Chris Lattner1e194682002-04-18 18:53:13 +0000792
Misha Brukman4685e262004-04-28 15:31:21 +0000793 const Module* getModule() { return TheModule; }
794
Misha Brukmand92f54a2004-11-15 19:30:05 +0000795private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000796 void printModule(const Module *M);
Reid Spencer32af9e82007-01-06 07:24:44 +0000797 void printTypeSymbolTable(const TypeSymbolTable &ST);
Chris Lattner7bfee412001-10-29 16:05:51 +0000798 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000799 void printAlias(const GlobalAlias *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000800 void printFunction(const Function *F);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000801 void printArgument(const Argument *FA, ParameterAttributes Attrs);
Chris Lattner7bfee412001-10-29 16:05:51 +0000802 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000803 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000804
805 // printType - Go to extreme measures to attempt to print out a short,
806 // symbolic version of a type name.
807 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000808 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000809 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000810 }
811
812 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
813 // without considering any symbolic types that we may have equal to it.
814 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000815 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000816
Chris Lattner862e3382001-10-13 06:42:36 +0000817 // printInfoComment - Print a little comment after the instruction indicating
818 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000819 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000820};
Reid Spencerf43ac622004-05-27 22:04:46 +0000821} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000822
Misha Brukmanc566ca362004-03-02 00:22:19 +0000823/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
824/// without considering any symbolic types that we may have equal to it.
825///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000826std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000827 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
828 Out << "i" << utostr(ITy->getBitWidth());
829 else if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Reid Spencer8c4914c2006-12-31 05:24:50 +0000830 printType(FTy->getReturnType());
Reid Spencer8c4914c2006-12-31 05:24:50 +0000831 Out << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000832 for (FunctionType::param_iterator I = FTy->param_begin(),
833 E = FTy->param_end(); I != E; ++I) {
834 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000835 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000836 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000837 }
838 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000839 if (FTy->getNumParams()) Out << ", ";
840 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000841 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000842 Out << ')';
Chris Lattner113f4f42002-06-25 16:13:24 +0000843 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000844 if (STy->isPacked())
845 Out << '<';
Misha Brukmana6619a92004-06-21 21:53:56 +0000846 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000847 for (StructType::element_iterator I = STy->element_begin(),
848 E = STy->element_end(); I != E; ++I) {
849 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000850 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000851 printType(*I);
852 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000853 Out << " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000854 if (STy->isPacked())
855 Out << '>';
Chris Lattner113f4f42002-06-25 16:13:24 +0000856 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Christopher Lambac7d6312007-12-18 03:49:35 +0000857 printType(PTy->getElementType());
858 if (unsigned AddressSpace = PTy->getAddressSpace())
859 Out << " addrspace(" << AddressSpace << ")";
860 Out << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000861 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000862 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000863 printType(ATy->getElementType()) << ']';
Reid Spencerd84d35b2007-02-15 02:26:10 +0000864 } else if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
Reid Spencere203d352004-08-20 15:37:30 +0000865 Out << '<' << PTy->getNumElements() << " x ";
866 printType(PTy->getElementType()) << '>';
867 }
Reid Spencerde46e482006-11-02 20:25:50 +0000868 else if (isa<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000869 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000870 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000871 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000872 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000873 printType(Ty);
874 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000875 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000876}
877
878
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000879void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
880 if (Operand == 0) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000881 Out << "<null operand!>";
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000882 } else {
883 if (PrintType) { Out << ' '; printType(Operand->getType()); }
884 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000885 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000886}
887
Dale Johannesen89268bc2008-02-19 21:38:47 +0000888void AssemblyWriter::writeParamOperand(const Value *Operand,
889 ParameterAttributes Attrs) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000890 if (Operand == 0) {
891 Out << "<null operand!>";
892 } else {
893 Out << ' ';
894 // Print the type
895 printType(Operand->getType());
896 // Print parameter attributes list
897 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +0000898 Out << ' ' << ParamAttr::getAsString(Attrs);
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000899 // Print the operand
900 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
901 }
902}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000903
Chris Lattner7bfee412001-10-29 16:05:51 +0000904void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +0000905 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +0000906 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +0000907 // require a comment char before it).
908 M->getModuleIdentifier().find('\n') == std::string::npos)
909 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
910
Owen Andersone2237542006-10-18 02:21:12 +0000911 if (!M->getDataLayout().empty())
Chris Lattner04897162006-10-22 06:06:56 +0000912 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencer48f98c82004-07-25 21:44:54 +0000913 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000914 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000915
Chris Lattnereef2fe72006-01-24 04:13:11 +0000916 if (!M->getModuleInlineAsm().empty()) {
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000917 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnereef2fe72006-01-24 04:13:11 +0000918 std::string Asm = M->getModuleInlineAsm();
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000919 size_t CurPos = 0;
920 size_t NewLine = Asm.find_first_of('\n', CurPos);
921 while (NewLine != std::string::npos) {
922 // We found a newline, print the portion of the asm string from the
923 // last newline up to this newline.
924 Out << "module asm \"";
925 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
926 Out);
927 Out << "\"\n";
928 CurPos = NewLine+1;
929 NewLine = Asm.find_first_of('\n', CurPos);
930 }
Chris Lattner3acaf5c2006-01-24 00:40:17 +0000931 Out << "module asm \"";
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000932 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000933 Out << "\"\n";
934 }
935
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000936 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000937 Module::lib_iterator LI = M->lib_begin();
938 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000939 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000940 Out << "deplibs = [ ";
941 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000942 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000943 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000944 if (LI != LE)
945 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000946 }
947 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000948 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000949
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000950 // Loop over the symbol table, emitting all named constants.
Reid Spencer32af9e82007-01-06 07:24:44 +0000951 printTypeSymbolTable(M->getTypeSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000952
Chris Lattner54932b02006-12-06 04:41:52 +0000953 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
954 I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000955 printGlobal(I);
Chris Lattnerd2747052007-04-26 02:24:10 +0000956
957 // Output all aliases.
958 if (!M->alias_empty()) Out << "\n";
959 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
960 I != E; ++I)
961 printAlias(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000962
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000963 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000964 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
965 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000966}
967
Chris Lattner7bfee412001-10-29 16:05:51 +0000968void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Chris Lattner033935d2008-08-17 04:40:13 +0000969 if (GV->hasName()) {
970 PrintLLVMName(Out, GV);
971 Out << " = ";
972 }
Chris Lattner37798642001-09-18 04:01:05 +0000973
Bill Wendlingd21d90c2008-01-15 21:16:32 +0000974 if (!GV->hasInitializer()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000975 switch (GV->getLinkage()) {
976 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
977 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
978 default: Out << "external "; break;
Bill Wendlingd21d90c2008-01-15 21:16:32 +0000979 }
980 } else {
Chris Lattner379a8d22003-04-16 20:28:45 +0000981 switch (GV->getLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000982 case GlobalValue::InternalLinkage: Out << "internal "; break;
Dale Johannesence4396b2008-05-14 20:12:51 +0000983 case GlobalValue::CommonLinkage: Out << "common "; break;
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000984 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
985 case GlobalValue::WeakLinkage: Out << "weak "; break;
986 case GlobalValue::AppendingLinkage: Out << "appending "; break;
987 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
988 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
989 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
990 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000991 case GlobalValue::GhostLinkage:
Bill Wendlingf3baad32006-12-07 01:30:32 +0000992 cerr << "GhostLinkage not allowed in AsmWriter!\n";
Misha Brukman70457632004-11-14 21:04:34 +0000993 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000994 }
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000995 switch (GV->getVisibility()) {
Chris Lattner90d2e422007-01-15 18:28:18 +0000996 default: assert(0 && "Invalid visibility style!");
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000997 case GlobalValue::DefaultVisibility: break;
998 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
Anton Korobeynikov39f3cff2007-04-29 18:35:00 +0000999 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
Anton Korobeynikova0554d92007-01-12 19:20:47 +00001000 }
1001 }
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +00001002
1003 if (GV->isThreadLocal()) Out << "thread_local ";
Misha Brukmana6619a92004-06-21 21:53:56 +00001004 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +00001005 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +00001006
Chris Lattner033935d2008-08-17 04:40:13 +00001007 if (GV->hasInitializer())
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001008 writeOperand(GV->getInitializer(), false);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001009
Christopher Lamb54dd24c2007-12-11 08:59:05 +00001010 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1011 Out << " addrspace(" << AddressSpace << ") ";
1012
Chris Lattner4b96c542005-11-12 00:10:19 +00001013 if (GV->hasSection())
1014 Out << ", section \"" << GV->getSection() << '"';
1015 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001016 Out << ", align " << GV->getAlignment();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001017
Chris Lattner113f4f42002-06-25 16:13:24 +00001018 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +00001019 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +00001020}
1021
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001022void AssemblyWriter::printAlias(const GlobalAlias *GA) {
Dale Johannesen83e468a2008-06-03 18:14:29 +00001023 // Don't crash when dumping partially built GA
1024 if (!GA->hasName())
1025 Out << "<<nameless>> = ";
Chris Lattner033935d2008-08-17 04:40:13 +00001026 else {
1027 PrintLLVMName(Out, GA);
1028 Out << " = ";
1029 }
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001030 switch (GA->getVisibility()) {
1031 default: assert(0 && "Invalid visibility style!");
1032 case GlobalValue::DefaultVisibility: break;
1033 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
Anton Korobeynikov39f3cff2007-04-29 18:35:00 +00001034 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001035 }
1036
1037 Out << "alias ";
1038
1039 switch (GA->getLinkage()) {
1040 case GlobalValue::WeakLinkage: Out << "weak "; break;
1041 case GlobalValue::InternalLinkage: Out << "internal "; break;
1042 case GlobalValue::ExternalLinkage: break;
1043 default:
1044 assert(0 && "Invalid alias linkage");
1045 }
1046
Anton Korobeynikov546ea7e2007-04-29 18:02:48 +00001047 const Constant *Aliasee = GA->getAliasee();
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001048
1049 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
1050 printType(GV->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001051 Out << ' ';
1052 PrintLLVMName(Out, GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001053 } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
1054 printType(F->getFunctionType());
1055 Out << "* ";
1056
Chris Lattner033935d2008-08-17 04:40:13 +00001057 if (!F->hasName())
1058 PrintLLVMName(Out, F);
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001059 else
1060 Out << "@\"\"";
Anton Korobeynikov72d5d422008-03-22 08:17:17 +00001061 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Aliasee)) {
1062 printType(GA->getType());
Chris Lattner033935d2008-08-17 04:40:13 +00001063 Out << " ";
1064 PrintLLVMName(Out, GA);
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +00001065 } else {
1066 const ConstantExpr *CE = 0;
1067 if ((CE = dyn_cast<ConstantExpr>(Aliasee)) &&
1068 (CE->getOpcode() == Instruction::BitCast)) {
1069 writeOperand(CE, false);
1070 } else
1071 assert(0 && "Unsupported aliasee");
1072 }
1073
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001074 printInfoComment(*GA);
1075 Out << "\n";
1076}
1077
Reid Spencer32af9e82007-01-06 07:24:44 +00001078void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +00001079 // Print the types.
Reid Spencer32af9e82007-01-06 07:24:44 +00001080 for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
1081 TI != TE; ++TI) {
Reid Spencer788e3172007-01-26 08:02:52 +00001082 Out << "\t" << getLLVMName(TI->first, LocalPrefix) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +00001083
1084 // Make sure we print out at least one level of the type structure, so
1085 // that we do not get %FILE = type %FILE
1086 //
1087 printTypeAtLeastOneLevel(TI->second) << "\n";
1088 }
Reid Spencer32af9e82007-01-06 07:24:44 +00001089}
1090
Misha Brukmanc566ca362004-03-02 00:22:19 +00001091/// printFunction - Print all aspects of a function.
1092///
Chris Lattner113f4f42002-06-25 16:13:24 +00001093void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001094 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +00001095 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +00001096
Misha Brukmana6619a92004-06-21 21:53:56 +00001097 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001098
Reid Spencer5301e7c2007-01-30 20:08:39 +00001099 if (F->isDeclaration())
Chris Lattner10f03a62007-08-19 22:15:26 +00001100 Out << "declare ";
1101 else
Reid Spencer7ce2d2a2006-12-29 20:29:48 +00001102 Out << "define ";
Chris Lattner10f03a62007-08-19 22:15:26 +00001103
1104 switch (F->getLinkage()) {
1105 case GlobalValue::InternalLinkage: Out << "internal "; break;
1106 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
1107 case GlobalValue::WeakLinkage: Out << "weak "; break;
Dale Johannesence4396b2008-05-14 20:12:51 +00001108 case GlobalValue::CommonLinkage: Out << "common "; break;
Chris Lattner10f03a62007-08-19 22:15:26 +00001109 case GlobalValue::AppendingLinkage: Out << "appending "; break;
1110 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
1111 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
1112 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
1113 case GlobalValue::ExternalLinkage: break;
1114 case GlobalValue::GhostLinkage:
1115 cerr << "GhostLinkage not allowed in AsmWriter!\n";
1116 abort();
1117 }
1118 switch (F->getVisibility()) {
1119 default: assert(0 && "Invalid visibility style!");
1120 case GlobalValue::DefaultVisibility: break;
1121 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1122 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
Reid Spencer7ce2d2a2006-12-29 20:29:48 +00001123 }
Chris Lattner379a8d22003-04-16 20:28:45 +00001124
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001125 // Print the calling convention.
1126 switch (F->getCallingConv()) {
1127 case CallingConv::C: break; // default
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001128 case CallingConv::Fast: Out << "fastcc "; break;
1129 case CallingConv::Cold: Out << "coldcc "; break;
1130 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1131 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001132 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001133 default: Out << "cc" << F->getCallingConv() << " "; break;
1134 }
1135
Reid Spencer8c4914c2006-12-31 05:24:50 +00001136 const FunctionType *FT = F->getFunctionType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001137 const PAListPtr &Attrs = F->getParamAttrs();
Misha Brukman21bbdb92004-06-04 21:11:51 +00001138 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +00001139 if (!F->getName().empty())
Chris Lattner033935d2008-08-17 04:40:13 +00001140 PrintLLVMName(Out, F);
Chris Lattner5b337482003-10-18 05:57:43 +00001141 else
Reid Spencer788e3172007-01-26 08:02:52 +00001142 Out << "@\"\"";
Misha Brukmana6619a92004-06-21 21:53:56 +00001143 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001144 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001145
Chris Lattner7bfee412001-10-29 16:05:51 +00001146 // Loop over the arguments, printing them...
Chris Lattnerfee714f2001-09-07 16:36:04 +00001147
Reid Spencer8c4914c2006-12-31 05:24:50 +00001148 unsigned Idx = 1;
Chris Lattner82738fe2007-04-18 00:57:22 +00001149 if (!F->isDeclaration()) {
1150 // If this isn't a declaration, print the argument names as well.
1151 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1152 I != E; ++I) {
1153 // Insert commas as we go... the first arg doesn't get a comma
1154 if (I != F->arg_begin()) Out << ", ";
Chris Lattner8a923e72008-03-12 17:45:29 +00001155 printArgument(I, Attrs.getParamAttrs(Idx));
Chris Lattner82738fe2007-04-18 00:57:22 +00001156 Idx++;
1157 }
1158 } else {
1159 // Otherwise, print the types from the function type.
1160 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1161 // Insert commas as we go... the first arg doesn't get a comma
1162 if (i) Out << ", ";
1163
1164 // Output type...
1165 printType(FT->getParamType(i));
1166
Chris Lattner8a923e72008-03-12 17:45:29 +00001167 ParameterAttributes ArgAttrs = Attrs.getParamAttrs(i+1);
Chris Lattner82738fe2007-04-18 00:57:22 +00001168 if (ArgAttrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001169 Out << ' ' << ParamAttr::getAsString(ArgAttrs);
Chris Lattner82738fe2007-04-18 00:57:22 +00001170 }
Reid Spencer8c4914c2006-12-31 05:24:50 +00001171 }
Chris Lattnerfee714f2001-09-07 16:36:04 +00001172
1173 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +00001174 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001175 if (FT->getNumParams()) Out << ", ";
1176 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +00001177 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001178 Out << ')';
Chris Lattner8a923e72008-03-12 17:45:29 +00001179 ParameterAttributes RetAttrs = Attrs.getParamAttrs(0);
1180 if (RetAttrs != ParamAttr::None)
1181 Out << ' ' << ParamAttr::getAsString(Attrs.getParamAttrs(0));
Chris Lattner4b96c542005-11-12 00:10:19 +00001182 if (F->hasSection())
1183 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001184 if (F->getAlignment())
1185 Out << " align " << F->getAlignment();
Gordon Henriksen71183b62007-12-10 03:18:06 +00001186 if (F->hasCollector())
1187 Out << " gc \"" << F->getCollector() << '"';
Chris Lattner4b96c542005-11-12 00:10:19 +00001188
Reid Spencer5301e7c2007-01-30 20:08:39 +00001189 if (F->isDeclaration()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001190 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +00001191 } else {
Chris Lattnerd5fbc8f2008-04-21 06:12:55 +00001192 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001193
Chris Lattner6915f8f2002-04-07 22:49:37 +00001194 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +00001195 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1196 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001197
Misha Brukmana6619a92004-06-21 21:53:56 +00001198 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +00001199 }
1200
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001201 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001202}
1203
Misha Brukmanc566ca362004-03-02 00:22:19 +00001204/// printArgument - This member is called for every argument that is passed into
1205/// the function. Simply print it out
1206///
Dale Johannesen89268bc2008-02-19 21:38:47 +00001207void AssemblyWriter::printArgument(const Argument *Arg,
1208 ParameterAttributes Attrs) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001209 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +00001210 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001211
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001212 // Output parameter attributes list
Reid Spencera472f662007-04-11 02:44:20 +00001213 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001214 Out << ' ' << ParamAttr::getAsString(Attrs);
Reid Spencer8c4914c2006-12-31 05:24:50 +00001215
Chris Lattner2f7c9632001-06-06 20:29:01 +00001216 // Output name, if available...
Chris Lattner033935d2008-08-17 04:40:13 +00001217 if (Arg->hasName()) {
1218 Out << ' ';
1219 PrintLLVMName(Out, Arg);
1220 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001221}
1222
Misha Brukmanc566ca362004-03-02 00:22:19 +00001223/// printBasicBlock - This member is called for each basic block in a method.
1224///
Chris Lattner7bfee412001-10-29 16:05:51 +00001225void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001226 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001227 Out << "\n";
1228 PrintLLVMName(Out, BB->getValueName(), LabelPrefix);
1229 Out << ':';
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001230 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Chris Lattner67bec132008-04-21 04:20:33 +00001231 Out << "\n; <label>:";
Chris Lattner5e043322007-01-11 03:54:27 +00001232 int Slot = Machine.getLocalSlot(BB);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001233 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001234 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +00001235 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001236 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +00001237 }
Chris Lattner2447ef52003-11-20 00:09:43 +00001238
1239 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +00001240 Out << "\t\t; Error: Block without parent!";
Chris Lattnerff834c02008-04-22 02:45:44 +00001241 else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
1242 // Output predecessors for the block...
1243 Out << "\t\t;";
1244 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
1245
1246 if (PI == PE) {
1247 Out << " No predecessors!";
1248 } else {
1249 Out << " preds =";
1250 writeOperand(*PI, false);
1251 for (++PI; PI != PE; ++PI) {
1252 Out << ',';
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001253 writeOperand(*PI, false);
Chris Lattner00211f12003-11-16 22:59:57 +00001254 }
Chris Lattner58185f22002-10-02 19:38:55 +00001255 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001256 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001257
Chris Lattnerff834c02008-04-22 02:45:44 +00001258 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001259
Misha Brukmana6619a92004-06-21 21:53:56 +00001260 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001261
Chris Lattnerfee714f2001-09-07 16:36:04 +00001262 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001263 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1264 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001265
Misha Brukmana6619a92004-06-21 21:53:56 +00001266 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001267}
1268
Chris Lattner862e3382001-10-13 06:42:36 +00001269
Misha Brukmanc566ca362004-03-02 00:22:19 +00001270/// printInfoComment - Print a little comment after the instruction indicating
1271/// which slot it occupies.
1272///
Chris Lattner113f4f42002-06-25 16:13:24 +00001273void AssemblyWriter::printInfoComment(const Value &V) {
1274 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001275 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001276 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001277
Chris Lattner113f4f42002-06-25 16:13:24 +00001278 if (!V.hasName()) {
Chris Lattner5e043322007-01-11 03:54:27 +00001279 int SlotNum;
1280 if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1281 SlotNum = Machine.getGlobalSlot(GV);
1282 else
1283 SlotNum = Machine.getLocalSlot(&V);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001284 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001285 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001286 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001287 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001288 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001289 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001290 }
1291}
1292
Reid Spencere7141c82006-08-28 01:02:49 +00001293// This member is called for each Instruction in a function..
Chris Lattner113f4f42002-06-25 16:13:24 +00001294void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001295 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001296
Misha Brukmana6619a92004-06-21 21:53:56 +00001297 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001298
1299 // Print out name if it exists...
Chris Lattner033935d2008-08-17 04:40:13 +00001300 if (I.hasName()) {
1301 PrintLLVMName(Out, &I);
1302 Out << " = ";
1303 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001304
Chris Lattner06038452005-05-06 05:51:46 +00001305 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001306 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001307 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001308 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001309 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1310 // If this is a call, check if it's a tail call.
1311 Out << "tail ";
1312 }
Chris Lattner504f9242003-09-08 17:45:59 +00001313
Chris Lattner2f7c9632001-06-06 20:29:01 +00001314 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001315 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001316
Reid Spencer45e52392006-12-03 06:27:29 +00001317 // Print out the compare instruction predicates
Nate Begemand2195702008-05-12 19:01:56 +00001318 if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
1319 Out << " " << getPredicateText(CI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001320
Chris Lattner2f7c9632001-06-06 20:29:01 +00001321 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001322 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001323
1324 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001325 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1326 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001327 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001328 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001329 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001330 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001331
Chris Lattner8d48df22002-04-13 18:34:38 +00001332 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001333 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001334 writeOperand(Operand , true); Out << ',';
1335 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001336
Chris Lattner113f4f42002-06-25 16:13:24 +00001337 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001338 Out << "\n\t\t";
1339 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001340 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001341 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001342 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001343 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001344 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001345 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001346 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001347
Chris Lattner113f4f42002-06-25 16:13:24 +00001348 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001349 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001350 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001351 writeOperand(I.getOperand(op ), false); Out << ',';
1352 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001353 }
Dan Gohmana76f0f72008-05-31 19:12:39 +00001354 } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
1355 writeOperand(I.getOperand(0), true);
1356 for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
1357 Out << ", " << *i;
1358 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
1359 writeOperand(I.getOperand(0), true); Out << ',';
1360 writeOperand(I.getOperand(1), true);
1361 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
1362 Out << ", " << *i;
Devang Patel59643e52008-02-23 00:35:18 +00001363 } else if (isa<ReturnInst>(I) && !Operand) {
1364 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001365 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1366 // Print the calling convention being used.
1367 switch (CI->getCallingConv()) {
1368 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001369 case CallingConv::Fast: Out << " fastcc"; break;
1370 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerf5270372007-11-18 18:32:16 +00001371 case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break;
1372 case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001373 case CallingConv::X86_SSECall: Out << " x86_ssecallcc"; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001374 default: Out << " cc" << CI->getCallingConv(); break;
1375 }
1376
Reid Spencer1517de32007-04-09 06:10:42 +00001377 const PointerType *PTy = cast<PointerType>(Operand->getType());
1378 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1379 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001380 const PAListPtr &PAL = CI->getParamAttrs();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001381
Chris Lattner463d6a52003-08-05 15:34:45 +00001382 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001383 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001384 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001385 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001386 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001387 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001388 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001389 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001390 writeOperand(Operand, false);
1391 } else {
1392 writeOperand(Operand, true);
1393 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001394 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001395 for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1396 if (op > 1)
1397 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001398 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op));
Chris Lattner2f7c9632001-06-06 20:29:01 +00001399 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001400 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001401 if (PAL.getParamAttrs(0) != ParamAttr::None)
1402 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Chris Lattner113f4f42002-06-25 16:13:24 +00001403 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Reid Spencer1517de32007-04-09 06:10:42 +00001404 const PointerType *PTy = cast<PointerType>(Operand->getType());
1405 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1406 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001407 const PAListPtr &PAL = II->getParamAttrs();
Chris Lattner463d6a52003-08-05 15:34:45 +00001408
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001409 // Print the calling convention being used.
1410 switch (II->getCallingConv()) {
1411 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001412 case CallingConv::Fast: Out << " fastcc"; break;
1413 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001414 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1415 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Dale Johannesen332dd532008-08-13 18:40:23 +00001416 case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001417 default: Out << " cc" << II->getCallingConv(); break;
1418 }
1419
Chris Lattner463d6a52003-08-05 15:34:45 +00001420 // If possible, print out the short form of the invoke instruction. We can
1421 // only do this if the first argument is a pointer to a nonvararg function,
1422 // and if the return type is not a pointer to a function.
1423 //
1424 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001425 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001426 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001427 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001428 writeOperand(Operand, false);
1429 } else {
1430 writeOperand(Operand, true);
1431 }
1432
Misha Brukmana6619a92004-06-21 21:53:56 +00001433 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001434 for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1435 if (op > 3)
1436 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001437 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op-2));
Chris Lattner862e3382001-10-13 06:42:36 +00001438 }
1439
Reid Spencer136a91c2007-01-05 17:06:19 +00001440 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001441 if (PAL.getParamAttrs(0) != ParamAttr::None)
Dan Gohman1a70bcc2008-08-05 15:51:44 +00001442 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Reid Spencer136a91c2007-01-05 17:06:19 +00001443 Out << "\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001444 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001445 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001446 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001447
Chris Lattner113f4f42002-06-25 16:13:24 +00001448 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001449 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001450 printType(AI->getType()->getElementType());
1451 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001452 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001453 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001454 }
Nate Begeman848622f2005-11-05 09:21:28 +00001455 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001456 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001457 }
Chris Lattner862e3382001-10-13 06:42:36 +00001458 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001459 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001460 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001461 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001462 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001463 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001464 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001465 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001466 } else if (Operand) { // Print the normal way...
1467
Misha Brukmanb1c93172005-04-21 23:48:37 +00001468 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001469 // omit the type from all but the first operand. If the instruction has
1470 // different type operands (for example br), then they are all printed.
1471 bool PrintAllTypes = false;
1472 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001473
Reid Spencer0cdd04f2007-02-02 13:54:55 +00001474 // Select, Store and ShuffleVector always print all types.
Devang Patelce556d92008-03-04 22:05:14 +00001475 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
1476 || isa<ReturnInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001477 PrintAllTypes = true;
1478 } else {
1479 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1480 Operand = I.getOperand(i);
1481 if (Operand->getType() != TheType) {
1482 PrintAllTypes = true; // We have differing types! Print them all!
1483 break;
1484 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001485 }
1486 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001487
Chris Lattner7bfee412001-10-29 16:05:51 +00001488 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001489 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001490 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001491 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001492
Chris Lattner113f4f42002-06-25 16:13:24 +00001493 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001494 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001495 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001496 }
1497 }
Christopher Lamb84485702007-04-22 19:24:39 +00001498
1499 // Print post operand alignment for load/store
1500 if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1501 Out << ", align " << cast<LoadInst>(I).getAlignment();
1502 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1503 Out << ", align " << cast<StoreInst>(I).getAlignment();
1504 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001505
Chris Lattner862e3382001-10-13 06:42:36 +00001506 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001507 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001508}
1509
1510
1511//===----------------------------------------------------------------------===//
1512// External Interface declarations
1513//===----------------------------------------------------------------------===//
1514
Chris Lattner8339f7d2003-10-30 23:41:03 +00001515void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001516 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001517 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001518 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001519}
1520
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001521void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001522 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001523 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001524 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001525}
1526
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001527void GlobalAlias::print(std::ostream &o) const {
1528 SlotMachine SlotTable(getParent());
1529 AssemblyWriter W(o, SlotTable, getParent(), 0);
1530 W.write(this);
1531}
1532
Chris Lattner8339f7d2003-10-30 23:41:03 +00001533void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001534 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001535 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001536
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001537 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001538}
1539
Chris Lattnereef2fe72006-01-24 04:13:11 +00001540void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001541 WriteAsOperand(o, this, true, 0);
Chris Lattnereef2fe72006-01-24 04:13:11 +00001542}
1543
Chris Lattner8339f7d2003-10-30 23:41:03 +00001544void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001545 SlotMachine SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001546 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001547 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001548 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001549}
1550
Chris Lattner8339f7d2003-10-30 23:41:03 +00001551void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001552 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001553 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001554 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001555
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001556 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001557}
Chris Lattner7db79582001-11-07 04:21:57 +00001558
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001559void Constant::print(std::ostream &o) const {
1560 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001561
Misha Brukman21bbdb92004-06-04 21:11:51 +00001562 o << ' ' << getType()->getDescription() << ' ';
Evan Cheng5b19a802006-03-01 22:17:00 +00001563
1564 std::map<const Type *, std::string> TypeTable;
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001565 WriteConstantInt(o, this, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001566}
1567
Misha Brukmanb1c93172005-04-21 23:48:37 +00001568void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001569 if (this == 0)
1570 o << "<null Type>";
1571 else
1572 o << getDescription();
1573}
1574
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001575void Argument::print(std::ostream &o) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001576 WriteAsOperand(o, this, true, getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001577}
1578
Reid Spencer52641832004-05-25 18:14:38 +00001579// Value::dump - allow easy printing of Values from the debugger.
1580// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001581void Value::dump() const { print(*cerr.stream()); cerr << '\n'; }
Reid Spencer52641832004-05-25 18:14:38 +00001582
1583// Type::dump - allow easy printing of Values from the debugger.
1584// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001585void Type::dump() const { print(*cerr.stream()); cerr << '\n'; }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001586
1587//===----------------------------------------------------------------------===//
Chris Lattnerfc9f1c92006-12-06 06:40:49 +00001588// SlotMachine Implementation
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001589//===----------------------------------------------------------------------===//
1590
1591#if 0
Bill Wendlingf3baad32006-12-07 01:30:32 +00001592#define SC_DEBUG(X) cerr << X
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001593#else
1594#define SC_DEBUG(X)
1595#endif
1596
1597// Module level constructor. Causes the contents of the Module (sans functions)
1598// to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001599SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001600 : TheModule(M) ///< Saved for lazy initialization.
1601 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001602 , FunctionProcessed(false)
Chris Lattner393b7cd2008-08-17 04:17:45 +00001603 , mNext(0), fMap(), fNext(0)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001604{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001605}
1606
1607// Function level constructor. Causes the contents of the Module and the one
1608// function provided to be added to the slot table.
Chris Lattner23e829a2006-12-06 05:12:21 +00001609SlotMachine::SlotMachine(const Function *F)
1610 : TheModule(F ? F->getParent() : 0) ///< Saved for lazy initialization
Reid Spencer56010e42004-05-26 21:56:09 +00001611 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001612 , FunctionProcessed(false)
Chris Lattner393b7cd2008-08-17 04:17:45 +00001613 , mNext(0), fMap(), fNext(0)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001614{
Reid Spencer56010e42004-05-26 21:56:09 +00001615}
1616
Chris Lattner5e043322007-01-11 03:54:27 +00001617inline void SlotMachine::initialize() {
Chris Lattner23e829a2006-12-06 05:12:21 +00001618 if (TheModule) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001619 processModule();
Reid Spencer56010e42004-05-26 21:56:09 +00001620 TheModule = 0; ///< Prevent re-processing next time we're called.
1621 }
Chris Lattner193de902006-12-06 05:27:40 +00001622 if (TheFunction && !FunctionProcessed)
Misha Brukmanb1c93172005-04-21 23:48:37 +00001623 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001624}
1625
1626// Iterate through all the global variables, functions, and global
Misha Brukmanb1c93172005-04-21 23:48:37 +00001627// variable initializers and create slots for them.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001628void SlotMachine::processModule() {
1629 SC_DEBUG("begin processModule!\n");
1630
Chris Lattner0dda8612006-12-06 06:15:43 +00001631 // Add all of the unnamed global variables to the value table.
Chris Lattner54932b02006-12-06 04:41:52 +00001632 for (Module::const_global_iterator I = TheModule->global_begin(),
1633 E = TheModule->global_end(); I != E; ++I)
Chris Lattner0dda8612006-12-06 06:15:43 +00001634 if (!I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001635 CreateModuleSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001636
Chris Lattner0dda8612006-12-06 06:15:43 +00001637 // Add all the unnamed functions to the table.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001638 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1639 I != E; ++I)
Chris Lattner0dda8612006-12-06 06:15:43 +00001640 if (!I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001641 CreateModuleSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001642
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001643 SC_DEBUG("end processModule!\n");
1644}
1645
1646
Reid Spencer56010e42004-05-26 21:56:09 +00001647// Process the arguments, basic blocks, and instructions of a function.
1648void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001649 SC_DEBUG("begin processFunction!\n");
Reid Spencer50816782007-03-19 18:32:53 +00001650 fNext = 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001651
Chris Lattner0dda8612006-12-06 06:15:43 +00001652 // Add all the function arguments with no names.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001653 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
Chris Lattner531f9e92005-03-15 04:54:21 +00001654 AE = TheFunction->arg_end(); AI != AE; ++AI)
Chris Lattner0dda8612006-12-06 06:15:43 +00001655 if (!AI->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001656 CreateFunctionSlot(AI);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001657
1658 SC_DEBUG("Inserting Instructions:\n");
1659
Chris Lattner0dda8612006-12-06 06:15:43 +00001660 // Add all of the basic blocks and instructions with no names.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001661 for (Function::const_iterator BB = TheFunction->begin(),
Reid Spencer56010e42004-05-26 21:56:09 +00001662 E = TheFunction->end(); BB != E; ++BB) {
Chris Lattner0dda8612006-12-06 06:15:43 +00001663 if (!BB->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001664 CreateFunctionSlot(BB);
Chris Lattner0dda8612006-12-06 06:15:43 +00001665 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1666 if (I->getType() != Type::VoidTy && !I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001667 CreateFunctionSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001668 }
1669
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001670 FunctionProcessed = true;
1671
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001672 SC_DEBUG("end processFunction!\n");
1673}
1674
Chris Lattner193de902006-12-06 05:27:40 +00001675/// Clean up after incorporating a function. This is the only way to get out of
Chris Lattner5e043322007-01-11 03:54:27 +00001676/// the function incorporation state that affects get*Slot/Create*Slot. Function
Chris Lattner89e774e2007-01-09 07:46:21 +00001677/// incorporation state is indicated by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001678void SlotMachine::purgeFunction() {
1679 SC_DEBUG("begin purgeFunction!\n");
1680 fMap.clear(); // Simply discard the function level map
Reid Spencer56010e42004-05-26 21:56:09 +00001681 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001682 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001683 SC_DEBUG("end purgeFunction!\n");
1684}
1685
Chris Lattner5e043322007-01-11 03:54:27 +00001686/// getGlobalSlot - Get the slot number of a global value.
1687int SlotMachine::getGlobalSlot(const GlobalValue *V) {
1688 // Check for uninitialized state and do lazy initialization.
1689 initialize();
1690
1691 // Find the type plane in the module map
Reid Spencer50816782007-03-19 18:32:53 +00001692 ValueMap::const_iterator MI = mMap.find(V);
Chris Lattner5e043322007-01-11 03:54:27 +00001693 if (MI == mMap.end()) return -1;
Reid Spencer50816782007-03-19 18:32:53 +00001694
1695 return MI->second;
Chris Lattner5e043322007-01-11 03:54:27 +00001696}
Reid Spencer56010e42004-05-26 21:56:09 +00001697
Chris Lattner5e043322007-01-11 03:54:27 +00001698
1699/// getLocalSlot - Get the slot number for a value that is local to a function.
1700int SlotMachine::getLocalSlot(const Value *V) {
1701 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
1702
1703 // Check for uninitialized state and do lazy initialization.
1704 initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001705
Reid Spencer50816782007-03-19 18:32:53 +00001706 ValueMap::const_iterator FI = fMap.find(V);
Chris Lattner5e043322007-01-11 03:54:27 +00001707 if (FI == fMap.end()) return -1;
1708
Reid Spencer50816782007-03-19 18:32:53 +00001709 return FI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001710}
1711
Reid Spencer58d30f22004-07-04 11:50:43 +00001712
Chris Lattnerea862a32007-01-09 07:55:49 +00001713/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
1714void SlotMachine::CreateModuleSlot(const GlobalValue *V) {
Chris Lattner04398e82007-01-09 08:04:59 +00001715 assert(V && "Can't insert a null Value into SlotMachine!");
Reid Spencer50816782007-03-19 18:32:53 +00001716 assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
1717 assert(!V->hasName() && "Doesn't need a slot!");
Chris Lattner04398e82007-01-09 08:04:59 +00001718
Reid Spencer50816782007-03-19 18:32:53 +00001719 unsigned DestSlot = mNext++;
1720 mMap[V] = DestSlot;
Chris Lattner04398e82007-01-09 08:04:59 +00001721
Reid Spencer50816782007-03-19 18:32:53 +00001722 SC_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner04398e82007-01-09 08:04:59 +00001723 DestSlot << " [");
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001724 // G = Global, F = Function, A = Alias, o = other
1725 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' :
Chris Lattner393b7cd2008-08-17 04:17:45 +00001726 (isa<Function>(V) ? 'F' :
1727 (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001728}
1729
1730
Chris Lattnerea862a32007-01-09 07:55:49 +00001731/// CreateSlot - Create a new slot for the specified value if it has no name.
1732void SlotMachine::CreateFunctionSlot(const Value *V) {
Chris Lattner033935d2008-08-17 04:40:13 +00001733 assert(V->getType() != Type::VoidTy && !V->hasName() &&
1734 "Doesn't need a slot!");
Chris Lattner04398e82007-01-09 08:04:59 +00001735
Reid Spencer50816782007-03-19 18:32:53 +00001736 unsigned DestSlot = fNext++;
1737 fMap[V] = DestSlot;
Chris Lattner04398e82007-01-09 08:04:59 +00001738
Chris Lattnerf8090cb2006-12-06 05:55:41 +00001739 // G = Global, F = Function, o = other
Chris Lattner033935d2008-08-17 04:40:13 +00001740 SC_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner04398e82007-01-09 08:04:59 +00001741 DestSlot << " [o]\n");
1742}