blob: cf937eb691922bdecc9fbb43366d870f22240a62 [file] [log] [blame]
Chris Lattnerf7e79482002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
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 Lattner7db79582001-11-07 04:21:57 +000017#include "llvm/Assembly/CachedWriter.h"
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +000018#include "llvm/Assembly/Writer.h"
Chris Lattner7f8845a2002-07-23 18:07:49 +000019#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner8339f7d2003-10-30 23:41:03 +000020#include "llvm/Assembly/AsmAnnotationWriter.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"
Vikram S. Adveb952b542002-07-14 23:14:45 +000023#include "llvm/Instruction.h"
Misha Brukman2d3fa9e2004-07-29 16:53:53 +000024#include "llvm/Instructions.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000025#include "llvm/Module.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000026#include "llvm/SymbolTable.h"
Misha Brukman4685e262004-04-28 15:31:21 +000027#include "llvm/Assembly/Writer.h"
Chris Lattner58185f22002-10-02 19:38:55 +000028#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000029#include "llvm/ADT/StringExtras.h"
30#include "llvm/ADT/STLExtras.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000031#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000032using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000033
Chris Lattner60a7dd12004-07-15 02:51:31 +000034namespace llvm {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000035
36/// This class provides computation of slot numbers for LLVM Assembly writing.
37/// @brief LLVM Assembly Writing Slot Computation.
38class SlotMachine {
39
40/// @name Types
41/// @{
42public:
43
44 /// @brief A mapping of Values to slot numbers
45 typedef std::map<const Value*, unsigned> ValueMap;
Reid Spencer58d30f22004-07-04 11:50:43 +000046 typedef std::map<const Type*, unsigned> TypeMap;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000047
48 /// @brief A plane with next slot number and ValueMap
Reid Spencer58d30f22004-07-04 11:50:43 +000049 struct ValuePlane {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000050 unsigned next_slot; ///< The next slot number to use
51 ValueMap map; ///< The map of Value* -> unsigned
Reid Spencer58d30f22004-07-04 11:50:43 +000052 ValuePlane() { next_slot = 0; } ///< Make sure we start at 0
53 };
54
55 struct TypePlane {
56 unsigned next_slot;
57 TypeMap map;
58 TypePlane() { next_slot = 0; }
59 void clear() { map.clear(); next_slot = 0; }
Reid Spencer16f2f7f2004-05-26 07:18:52 +000060 };
61
62 /// @brief The map of planes by Type
Reid Spencer58d30f22004-07-04 11:50:43 +000063 typedef std::map<const Type*, ValuePlane> TypedPlanes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000064
65/// @}
66/// @name Constructors
67/// @{
68public:
69 /// @brief Construct from a module
70 SlotMachine(const Module *M );
71
72 /// @brief Construct from a function, starting out in incorp state.
73 SlotMachine(const Function *F );
74
75/// @}
76/// @name Accessors
77/// @{
78public:
79 /// Return the slot number of the specified value in it's type
80 /// plane. Its an error to ask for something not in the SlotMachine.
81 /// Its an error to ask for a Type*
Chris Lattner757ee0b2004-06-09 19:41:19 +000082 int getSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +000083 int getSlot(const Type*Ty);
Reid Spencer8beac692004-06-09 15:26:53 +000084
85 /// Determine if a Value has a slot or not
86 bool hasSlot(const Value* V);
Reid Spencer58d30f22004-07-04 11:50:43 +000087 bool hasSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000088
89/// @}
90/// @name Mutators
91/// @{
92public:
93 /// If you'd like to deal with a function instead of just a module, use
94 /// this method to get its data into the SlotMachine.
Reid Spencerb0ac8c42004-08-16 07:46:33 +000095 void incorporateFunction(const Function *F) {
96 TheFunction = F;
97 FunctionProcessed = false;
98 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +000099
100 /// After calling incorporateFunction, use this method to remove the
101 /// most recently incorporated function from the SlotMachine. This
102 /// will reset the state of the machine back to just the module contents.
103 void purgeFunction();
104
105/// @}
106/// @name Implementation Details
107/// @{
108private:
Reid Spencer56010e42004-05-26 21:56:09 +0000109 /// This function does the actual initialization.
110 inline void initialize();
111
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000112 /// Values can be crammed into here at will. If they haven't
113 /// been inserted already, they get inserted, otherwise they are ignored.
114 /// Either way, the slot number for the Value* is returned.
115 unsigned createSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +0000116 unsigned createSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000117
118 /// Insert a value into the value table. Return the slot number
119 /// that it now occupies. BadThings(TM) will happen if you insert a
120 /// Value that's already been inserted.
121 unsigned insertValue( const Value *V );
Reid Spencer58d30f22004-07-04 11:50:43 +0000122 unsigned insertValue( const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000123
124 /// Add all of the module level global variables (and their initializers)
125 /// and function declarations, but not the contents of those functions.
126 void processModule();
127
Reid Spencer56010e42004-05-26 21:56:09 +0000128 /// Add all of the functions arguments, basic blocks, and instructions
129 void processFunction();
130
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000131 SlotMachine(const SlotMachine &); // DO NOT IMPLEMENT
132 void operator=(const SlotMachine &); // DO NOT IMPLEMENT
133
134/// @}
135/// @name Data
136/// @{
137public:
138
139 /// @brief The module for which we are holding slot numbers
Reid Spencer56010e42004-05-26 21:56:09 +0000140 const Module* TheModule;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000141
Reid Spencer56010e42004-05-26 21:56:09 +0000142 /// @brief The function for which we are holding slot numbers
143 const Function* TheFunction;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000144 bool FunctionProcessed;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000145
146 /// @brief The TypePlanes map for the module level data
147 TypedPlanes mMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000148 TypePlane mTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000149
150 /// @brief The TypePlanes map for the function level data
151 TypedPlanes fMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000152 TypePlane fTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000153
154/// @}
155
156};
157
Chris Lattner60a7dd12004-07-15 02:51:31 +0000158} // end namespace llvm
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000159
Chris Lattnerc8b70922002-07-26 21:12:46 +0000160static RegisterPass<PrintModulePass>
161X("printm", "Print module to stderr",PassInfo::Analysis|PassInfo::Optimization);
162static RegisterPass<PrintFunctionPass>
163Y("print","Print function to stderr",PassInfo::Analysis|PassInfo::Optimization);
Chris Lattner7f8845a2002-07-23 18:07:49 +0000164
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000165static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
166 bool PrintName,
167 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000168 SlotMachine *Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000169
Reid Spencer58d30f22004-07-04 11:50:43 +0000170static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
171 bool PrintName,
172 std::map<const Type *, std::string> &TypeTable,
173 SlotMachine *Machine);
174
Chris Lattnerb86620e2001-10-29 16:37:48 +0000175static const Module *getModuleFromVal(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000176 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000177 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000178 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000179 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000180 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner57698e22002-03-26 18:01:55 +0000181 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000182 return M ? M->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000183 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000184 return GV->getParent();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000185 return 0;
186}
187
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000188static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000189 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000190 return new SlotMachine(FA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000191 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000192 return new SlotMachine(I->getParent()->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000193 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000194 return new SlotMachine(BB->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000195 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000196 return new SlotMachine(GV->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000197 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000198 return new SlotMachine(Func);
Chris Lattner7bfee412001-10-29 16:05:51 +0000199 }
200 return 0;
201}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000202
Chris Lattner1c343042003-08-22 05:40:38 +0000203// getLLVMName - Turn the specified string into an 'LLVM name', which is either
204// prefixed with % (if the string only contains simple characters) or is
205// surrounded with ""'s (if it has special chars in it).
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000206static std::string getLLVMName(const std::string &Name,
207 bool prefixName = true) {
Chris Lattner1c343042003-08-22 05:40:38 +0000208 assert(!Name.empty() && "Cannot get empty name!");
209
210 // First character cannot start with a number...
211 if (Name[0] >= '0' && Name[0] <= '9')
212 return "\"" + Name + "\"";
213
214 // Scan to see if we have any characters that are not on the "white list"
215 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
216 char C = Name[i];
217 assert(C != '"' && "Illegal character in LLVM value name!");
218 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
219 C != '-' && C != '.' && C != '_')
220 return "\"" + Name + "\"";
221 }
222
223 // If we get here, then the identifier is legal to use as a "VarID".
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000224 if (prefixName)
225 return "%"+Name;
226 else
227 return Name;
Chris Lattner1c343042003-08-22 05:40:38 +0000228}
229
Chris Lattnerb86620e2001-10-29 16:37:48 +0000230
Misha Brukmanc566ca362004-03-02 00:22:19 +0000231/// fillTypeNameTable - If the module has a symbol table, take all global types
232/// and stuff their names into the TypeNames map.
233///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000234static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000235 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000236 if (!M) return;
237 const SymbolTable &ST = M->getSymbolTable();
Reid Spencere7e96712004-05-25 08:53:40 +0000238 SymbolTable::type_const_iterator TI = ST.type_begin();
239 for (; TI != ST.type_end(); ++TI ) {
240 // As a heuristic, don't insert pointer to primitive types, because
241 // they are used too often to have a single useful name.
242 //
243 const Type *Ty = cast<Type>(TI->second);
244 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000245 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
246 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencere7e96712004-05-25 08:53:40 +0000247 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000248 }
249}
250
251
252
John Criswellcd116ba2004-06-01 14:54:08 +0000253static void calcTypeName(const Type *Ty,
254 std::vector<const Type *> &TypeStack,
255 std::map<const Type *, std::string> &TypeNames,
256 std::string & Result){
257 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)) {
258 Result += Ty->getDescription(); // Base case
259 return;
260 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000261
262 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000263 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000264 if (I != TypeNames.end()) {
265 Result += I->second;
266 return;
267 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000268
John Criswellcd116ba2004-06-01 14:54:08 +0000269 if (isa<OpaqueType>(Ty)) {
270 Result += "opaque";
271 return;
272 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000273
Chris Lattnerb86620e2001-10-29 16:37:48 +0000274 // Check to see if the Type is already on the stack...
275 unsigned Slot = 0, CurSize = TypeStack.size();
276 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
277
278 // This is another base case for the recursion. In this case, we know
279 // that we have looped back to a type that we have previously visited.
280 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000281 if (Slot < CurSize) {
282 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
283 return;
284 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000285
286 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
287
Chris Lattner6b727592004-06-17 18:19:28 +0000288 switch (Ty->getTypeID()) {
Chris Lattner91db5822002-03-29 03:44:36 +0000289 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000290 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000291 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
292 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000293 for (FunctionType::param_iterator I = FTy->param_begin(),
294 E = FTy->param_end(); I != E; ++I) {
295 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000296 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000297 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000298 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000299 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000300 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000301 Result += "...";
302 }
303 Result += ")";
304 break;
305 }
306 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000307 const StructType *STy = cast<StructType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000308 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000309 for (StructType::element_iterator I = STy->element_begin(),
310 E = STy->element_end(); I != E; ++I) {
311 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000312 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000313 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000314 }
315 Result += " }";
316 break;
317 }
318 case Type::PointerTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000319 calcTypeName(cast<PointerType>(Ty)->getElementType(),
320 TypeStack, TypeNames, Result);
321 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000322 break;
323 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000324 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000325 Result += "[" + utostr(ATy->getNumElements()) + " x ";
326 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
327 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000328 break;
329 }
Brian Gaeke02209042004-08-20 06:00:58 +0000330 case Type::PackedTyID: {
331 const PackedType *PTy = cast<PackedType>(Ty);
332 Result += "<" + utostr(PTy->getNumElements()) + " x ";
333 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
334 Result += ">";
335 break;
336 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000337 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000338 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000339 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000340 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000341 Result += "<unrecognized-type>";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000342 }
343
344 TypeStack.pop_back(); // Remove self from stack...
John Criswellcd116ba2004-06-01 14:54:08 +0000345 return;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000346}
347
348
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000349/// printTypeInt - The internal guts of printing out a type that has a
350/// potentially named portion.
351///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000352static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
353 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000354 // Primitive types always print out their description, regardless of whether
355 // they have been named or not.
356 //
Chris Lattner92d60532003-10-30 00:12:51 +0000357 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
358 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000359
360 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000361 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000362 if (I != TypeNames.end()) return Out << I->second;
363
364 // Otherwise we have a type that has not been named but is a derived type.
365 // Carefully recurse the type hierarchy to print out any contained symbolic
366 // names.
367 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000368 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000369 std::string TypeName;
370 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000371 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000372 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000373}
374
Chris Lattner34b95182001-10-31 04:33:19 +0000375
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000376/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
377/// type, iff there is an entry in the modules symbol table for the specified
378/// type or one of it's component types. This is slower than a simple x << Type
379///
Chris Lattner189d19f2003-11-21 20:23:48 +0000380std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
381 const Module *M) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000382 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000383
384 // If they want us to print out a type, attempt to make it symbolic if there
385 // is a symbol table in the module...
Chris Lattner98cf1f52002-11-20 18:36:02 +0000386 if (M) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000387 std::map<const Type *, std::string> TypeNames;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000388 fillTypeNameTable(M, TypeNames);
389
Chris Lattner72f866e2001-10-29 16:40:32 +0000390 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000391 } else {
Chris Lattner72f866e2001-10-29 16:40:32 +0000392 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000393 }
394}
395
Reid Spenceraccd7c72004-07-17 23:47:01 +0000396/// @brief Internal constant writer.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000397static void WriteConstantInt(std::ostream &Out, const Constant *CV,
398 bool PrintName,
399 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000400 SlotMachine *Machine) {
Chris Lattner1e194682002-04-18 18:53:13 +0000401 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
402 Out << (CB == ConstantBool::True ? "true" : "false");
403 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
404 Out << CI->getValue();
405 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
406 Out << CI->getValue();
407 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
408 // We would like to output the FP constant value in exponential notation,
409 // but we cannot do this if doing so will lose precision. Check here to
410 // make sure that we only output it in exponential format if we can parse
411 // the value back and get the same value.
412 //
413 std::string StrVal = ftostr(CFP->getValue());
414
415 // Check to make sure that the stringized number is not some string like
416 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
417 // the string matches the "[-+]?[0-9]" regex.
418 //
419 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
420 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaeke87b4f072003-06-17 23:55:35 +0000421 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner1e194682002-04-18 18:53:13 +0000422 // Reparse stringized version!
423 if (atof(StrVal.c_str()) == CFP->getValue()) {
Chris Lattner472cc102005-01-04 01:56:57 +0000424 Out << StrVal;
425 return;
Chris Lattner1e194682002-04-18 18:53:13 +0000426 }
427
428 // Otherwise we could not reparse it to exactly the same value, so we must
429 // output the string in hexadecimal format!
430 //
431 // Behave nicely in the face of C TBAA rules... see:
432 // http://www.nullstone.com/htmls/category/aliastyp.htm
433 //
Chris Lattner472cc102005-01-04 01:56:57 +0000434 union {
435 double D;
436 uint64_t U;
437 } V;
438 V.D = CFP->getValue();
439 assert(sizeof(double) == sizeof(uint64_t) &&
Chris Lattner1e194682002-04-18 18:53:13 +0000440 "assuming that double is 64 bits!");
Chris Lattner472cc102005-01-04 01:56:57 +0000441 Out << "0x" << utohexstr(V.U);
Chris Lattner1e194682002-04-18 18:53:13 +0000442
Chris Lattner76b2ff42004-02-15 05:55:15 +0000443 } else if (isa<ConstantAggregateZero>(CV)) {
444 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000445 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
446 // As a special case, print the array as a string if it is an array of
447 // ubytes or an array of sbytes with positive values.
448 //
449 const Type *ETy = CA->getType()->getElementType();
450 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
451
452 if (ETy == Type::SByteTy)
453 for (unsigned i = 0; i < CA->getNumOperands(); ++i)
454 if (cast<ConstantSInt>(CA->getOperand(i))->getValue() < 0) {
455 isString = false;
456 break;
457 }
458
459 if (isString) {
460 Out << "c\"";
461 for (unsigned i = 0; i < CA->getNumOperands(); ++i) {
Chris Lattneraa6ff272004-06-04 23:53:20 +0000462 unsigned char C =
463 (unsigned char)cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Chris Lattner1e194682002-04-18 18:53:13 +0000464
Chris Lattnere5fd3862002-07-31 23:56:44 +0000465 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner1e194682002-04-18 18:53:13 +0000466 Out << C;
467 } else {
468 Out << '\\'
469 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
470 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
471 }
472 }
473 Out << "\"";
474
475 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000476 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000477 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000478 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000479 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000480 WriteAsOperandInternal(Out, CA->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000481 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000482 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
483 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000484 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000485 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000486 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000487 }
488 }
489 Out << " ]";
490 }
491 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000492 Out << '{';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000493 if (CS->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000494 Out << ' ';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000495 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
496
497 WriteAsOperandInternal(Out, CS->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000498 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000499
500 for (unsigned i = 1; i < CS->getNumOperands(); i++) {
501 Out << ", ";
502 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
503
504 WriteAsOperandInternal(Out, CS->getOperand(i),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000505 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000506 }
507 }
508
509 Out << " }";
Brian Gaeke02209042004-08-20 06:00:58 +0000510 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
511 const Type *ETy = CP->getType()->getElementType();
512 assert(CP->getNumOperands() > 0 &&
513 "Number of operands for a PackedConst must be > 0");
514 Out << '<';
515 Out << ' ';
516 printTypeInt(Out, ETy, TypeTable);
517 WriteAsOperandInternal(Out, CP->getOperand(0),
518 PrintName, TypeTable, Machine);
519 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
520 Out << ", ";
521 printTypeInt(Out, ETy, TypeTable);
522 WriteAsOperandInternal(Out, CP->getOperand(i), PrintName,
523 TypeTable, Machine);
524 }
525 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000526 } else if (isa<ConstantPointerNull>(CV)) {
527 Out << "null";
528
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000529 } else if (isa<UndefValue>(CV)) {
530 Out << "undef";
531
Chris Lattner3cd8c562002-07-30 18:54:25 +0000532 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattnerb8257222003-03-06 23:23:32 +0000533 Out << CE->getOpcodeName() << " (";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000534
535 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
536 printTypeInt(Out, (*OI)->getType(), TypeTable);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000537 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000538 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000539 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000540 }
541
Chris Lattnercfe8f532002-08-16 21:17:11 +0000542 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000543 Out << " to ";
544 printTypeInt(Out, CE->getType(), TypeTable);
545 }
Misha Brukman21bbdb92004-06-04 21:11:51 +0000546 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000547
Chris Lattnerd84bb632002-04-16 21:36:08 +0000548 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000549 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000550 }
551}
552
553
Misha Brukmanc566ca362004-03-02 00:22:19 +0000554/// WriteAsOperand - Write the name of the specified value out to the specified
555/// ostream. This can be useful when you just want to print int %reg126, not
556/// the whole instruction that generated it.
557///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000558static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
559 bool PrintName,
560 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000561 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000562 Out << ' ';
Reid Spenceraccd7c72004-07-17 23:47:01 +0000563 if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
Chris Lattner1c343042003-08-22 05:40:38 +0000564 Out << getLLVMName(V->getName());
Reid Spenceraccd7c72004-07-17 23:47:01 +0000565 else {
566 const Constant *CV = dyn_cast<Constant>(V);
567 if (CV && !isa<GlobalValue>(CV))
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000568 WriteConstantInt(Out, CV, PrintName, TypeTable, Machine);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000569 else {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000570 int Slot;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000571 if (Machine) {
Reid Spencer56010e42004-05-26 21:56:09 +0000572 Slot = Machine->getSlot(V);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000573 } else {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000574 Machine = createSlotMachine(V);
Chris Lattner757ee0b2004-06-09 19:41:19 +0000575 if (Machine == 0)
576 Slot = Machine->getSlot(V);
577 else
578 Slot = -1;
Reid Spencer56010e42004-05-26 21:56:09 +0000579 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000580 }
Chris Lattner757ee0b2004-06-09 19:41:19 +0000581 if (Slot != -1)
582 Out << '%' << Slot;
583 else
584 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000585 }
586 }
587}
588
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000589/// WriteAsOperand - Write the name of the specified value out to the specified
590/// ostream. This can be useful when you just want to print int %reg126, not
591/// the whole instruction that generated it.
592///
Chris Lattner189d19f2003-11-21 20:23:48 +0000593std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000594 bool PrintType, bool PrintName,
595 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000596 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000597 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000598
Chris Lattner98cf1f52002-11-20 18:36:02 +0000599 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000600 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000601
602 if (PrintType)
603 printTypeInt(Out, V->getType(), TypeNames);
604
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000605 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000606 return Out;
607}
608
Reid Spencer58d30f22004-07-04 11:50:43 +0000609/// WriteAsOperandInternal - Write the name of the specified value out to
610/// the specified ostream. This can be useful when you just want to print
611/// int %reg126, not the whole instruction that generated it.
612///
613static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
614 bool PrintName,
615 std::map<const Type*, std::string> &TypeTable,
616 SlotMachine *Machine) {
617 Out << ' ';
618 int Slot;
619 if (Machine) {
620 Slot = Machine->getSlot(T);
621 if (Slot != -1)
622 Out << '%' << Slot;
623 else
624 Out << "<badref>";
625 } else {
626 Out << T->getDescription();
627 }
628}
629
630/// WriteAsOperand - Write the name of the specified value out to the specified
631/// ostream. This can be useful when you just want to print int %reg126, not
632/// the whole instruction that generated it.
633///
634std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Type *Ty,
635 bool PrintType, bool PrintName,
636 const Module *Context) {
637 std::map<const Type *, std::string> TypeNames;
638 assert(Context != 0 && "Can't write types as operand without module context");
639
640 fillTypeNameTable(Context, TypeNames);
641
642 // if (PrintType)
643 // printTypeInt(Out, V->getType(), TypeNames);
644
645 printTypeInt(Out, Ty, TypeNames);
646
647 WriteAsOperandInternal(Out, Ty, PrintName, TypeNames, 0);
648 return Out;
649}
650
Chris Lattner189d19f2003-11-21 20:23:48 +0000651namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000652
Chris Lattnerfee714f2001-09-07 16:36:04 +0000653class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000654 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000655 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000656 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000657 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000658 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000659public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000660 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000661 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000662 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000663
664 // If the module has a symbol table, take all global types and stuff their
665 // names into the TypeNames map.
666 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000667 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000668 }
669
Chris Lattner7bfee412001-10-29 16:05:51 +0000670 inline void write(const Module *M) { printModule(M); }
671 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner57698e22002-03-26 18:01:55 +0000672 inline void write(const Function *F) { printFunction(F); }
Chris Lattner7bfee412001-10-29 16:05:51 +0000673 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000674 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattner3462ae32001-12-03 22:26:30 +0000675 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattner7db79582001-11-07 04:21:57 +0000676 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000677
Chris Lattner1e194682002-04-18 18:53:13 +0000678 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
679
Misha Brukman4685e262004-04-28 15:31:21 +0000680 const Module* getModule() { return TheModule; }
681
Misha Brukmand92f54a2004-11-15 19:30:05 +0000682private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000683 void printModule(const Module *M);
684 void printSymbolTable(const SymbolTable &ST);
Chris Lattner3462ae32001-12-03 22:26:30 +0000685 void printConstant(const Constant *CPV);
Chris Lattner7bfee412001-10-29 16:05:51 +0000686 void printGlobal(const GlobalVariable *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000687 void printFunction(const Function *F);
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000688 void printArgument(const Argument *FA);
Chris Lattner7bfee412001-10-29 16:05:51 +0000689 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000690 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000691
692 // printType - Go to extreme measures to attempt to print out a short,
693 // symbolic version of a type name.
694 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000695 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000696 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000697 }
698
699 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
700 // without considering any symbolic types that we may have equal to it.
701 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000702 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000703
Chris Lattner862e3382001-10-13 06:42:36 +0000704 // printInfoComment - Print a little comment after the instruction indicating
705 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000706 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000707};
Reid Spencerf43ac622004-05-27 22:04:46 +0000708} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000709
Misha Brukmanc566ca362004-03-02 00:22:19 +0000710/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
711/// without considering any symbolic types that we may have equal to it.
712///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000713std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000714 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattnerd816b532002-04-13 20:53:41 +0000715 printType(FTy->getReturnType()) << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000716 for (FunctionType::param_iterator I = FTy->param_begin(),
717 E = FTy->param_end(); I != E; ++I) {
718 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000719 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000720 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000721 }
722 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000723 if (FTy->getNumParams()) Out << ", ";
724 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000725 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000726 Out << ')';
Chris Lattner113f4f42002-06-25 16:13:24 +0000727 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000728 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000729 for (StructType::element_iterator I = STy->element_begin(),
730 E = STy->element_end(); I != E; ++I) {
731 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000732 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000733 printType(*I);
734 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000735 Out << " }";
Chris Lattner113f4f42002-06-25 16:13:24 +0000736 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000737 printType(PTy->getElementType()) << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000738 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000739 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000740 printType(ATy->getElementType()) << ']';
Reid Spencere203d352004-08-20 15:37:30 +0000741 } else if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
742 Out << '<' << PTy->getNumElements() << " x ";
743 printType(PTy->getElementType()) << '>';
744 }
745 else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000746 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000747 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000748 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000749 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000750 printType(Ty);
751 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000752 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000753}
754
755
Chris Lattnerfee714f2001-09-07 16:36:04 +0000756void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
Reid Spencer56010e42004-05-26 21:56:09 +0000757 bool PrintName) {
Reid Spencer33116692004-08-29 19:37:59 +0000758 assert(Operand != 0 && "Illegal Operand");
Misha Brukmana6619a92004-06-21 21:53:56 +0000759 if (PrintType) { Out << ' '; printType(Operand->getType()); }
760 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Machine);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000761}
762
Chris Lattner2f7c9632001-06-06 20:29:01 +0000763
Chris Lattner7bfee412001-10-29 16:05:51 +0000764void AssemblyWriter::printModule(const Module *M) {
Chris Lattner8068e0c2003-08-24 13:48:48 +0000765 switch (M->getEndianness()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000766 case Module::LittleEndian: Out << "target endian = little\n"; break;
767 case Module::BigEndian: Out << "target endian = big\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000768 case Module::AnyEndianness: break;
769 }
770 switch (M->getPointerSize()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000771 case Module::Pointer32: Out << "target pointersize = 32\n"; break;
772 case Module::Pointer64: Out << "target pointersize = 64\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000773 case Module::AnyPointerSize: break;
774 }
Reid Spencer48f98c82004-07-25 21:44:54 +0000775 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000776 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000777
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000778 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000779 Module::lib_iterator LI = M->lib_begin();
780 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000781 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000782 Out << "deplibs = [ ";
783 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000784 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000785 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000786 if (LI != LE)
787 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000788 }
789 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000790 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000791
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000792 // Loop over the symbol table, emitting all named constants.
Chris Lattner98cf1f52002-11-20 18:36:02 +0000793 printSymbolTable(M->getSymbolTable());
Chris Lattnerda975502001-09-10 07:58:01 +0000794
Chris Lattner113f4f42002-06-25 16:13:24 +0000795 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
796 printGlobal(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000797
Misha Brukmana6619a92004-06-21 21:53:56 +0000798 Out << "\nimplementation ; Functions:\n";
Vikram S. Adve13ba19a2001-09-18 12:48:16 +0000799
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000800 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000801 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
802 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000803}
804
Chris Lattner7bfee412001-10-29 16:05:51 +0000805void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000806 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000807
Chris Lattner379a8d22003-04-16 20:28:45 +0000808 if (!GV->hasInitializer())
Misha Brukmana6619a92004-06-21 21:53:56 +0000809 Out << "external ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000810 else
811 switch (GV->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000812 case GlobalValue::InternalLinkage: Out << "internal "; break;
813 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
814 case GlobalValue::WeakLinkage: Out << "weak "; break;
815 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000816 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000817 case GlobalValue::GhostLinkage:
818 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
819 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000820 }
Chris Lattner37798642001-09-18 04:01:05 +0000821
Misha Brukmana6619a92004-06-21 21:53:56 +0000822 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +0000823 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +0000824
Reid Spenceraccd7c72004-07-17 23:47:01 +0000825 if (GV->hasInitializer()) {
826 Constant* C = cast<Constant>(GV->getInitializer());
827 assert(C && "GlobalVar initializer isn't constant?");
Reid Spencerc9c90cf2004-07-18 01:04:19 +0000828 writeOperand(GV->getInitializer(), false, isa<GlobalValue>(C));
Reid Spenceraccd7c72004-07-17 23:47:01 +0000829 }
Chris Lattner37798642001-09-18 04:01:05 +0000830
Chris Lattner113f4f42002-06-25 16:13:24 +0000831 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000832 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +0000833}
834
Chris Lattnerfee714f2001-09-07 16:36:04 +0000835
Reid Spencere7e96712004-05-25 08:53:40 +0000836// printSymbolTable - Run through symbol table looking for constants
837// and types. Emit their declarations.
Chris Lattner7bfee412001-10-29 16:05:51 +0000838void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +0000839
840 // Print the types.
841 for (SymbolTable::type_const_iterator TI = ST.type_begin();
842 TI != ST.type_end(); ++TI ) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000843 Out << "\t" << getLLVMName(TI->first) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +0000844
845 // Make sure we print out at least one level of the type structure, so
846 // that we do not get %FILE = type %FILE
847 //
848 printTypeAtLeastOneLevel(TI->second) << "\n";
849 }
Chris Lattnerfee714f2001-09-07 16:36:04 +0000850
Reid Spencere7e96712004-05-25 08:53:40 +0000851 // Print the constants, in type plane order.
852 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
853 PI != ST.plane_end(); ++PI ) {
854 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
855 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
856
857 for (; VI != VE; ++VI) {
Reid Spenceraccd7c72004-07-17 23:47:01 +0000858 const Value* V = VI->second;
859 const Constant *CPV = dyn_cast<Constant>(V) ;
860 if (CPV && !isa<GlobalValue>(V)) {
Reid Spencer56010e42004-05-26 21:56:09 +0000861 printConstant(CPV);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000862 }
863 }
Chris Lattnera7620d92001-07-15 06:35:59 +0000864 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000865}
866
867
Misha Brukmanc566ca362004-03-02 00:22:19 +0000868/// printConstant - Print out a constant pool entry...
869///
Chris Lattner3462ae32001-12-03 22:26:30 +0000870void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattnerfee714f2001-09-07 16:36:04 +0000871 // Don't print out unnamed constants, they will be inlined
872 if (!CPV->hasName()) return;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000873
Chris Lattneree998be2001-07-26 16:29:38 +0000874 // Print out name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000875 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000876
877 // Write the value out now...
Chris Lattnerd84bb632002-04-16 21:36:08 +0000878 writeOperand(CPV, true, false);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000879
Chris Lattner113f4f42002-06-25 16:13:24 +0000880 printInfoComment(*CPV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000881 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000882}
883
Misha Brukmanc566ca362004-03-02 00:22:19 +0000884/// printFunction - Print all aspects of a function.
885///
Chris Lattner113f4f42002-06-25 16:13:24 +0000886void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000887 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000888 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +0000889
Chris Lattner97e36f22004-12-05 06:44:09 +0000890 // Ensure that no local symbols conflict with global symbols.
891 const_cast<Function*>(F)->renameLocalSymbols();
892
Misha Brukmana6619a92004-06-21 21:53:56 +0000893 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000894
Chris Lattner379a8d22003-04-16 20:28:45 +0000895 if (F->isExternal())
Misha Brukmana6619a92004-06-21 21:53:56 +0000896 Out << "declare ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000897 else
898 switch (F->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000899 case GlobalValue::InternalLinkage: Out << "internal "; break;
900 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
901 case GlobalValue::WeakLinkage: Out << "weak "; break;
902 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000903 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000904 case GlobalValue::GhostLinkage:
905 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
906 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000907 }
908
Misha Brukman21bbdb92004-06-04 21:11:51 +0000909 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +0000910 if (!F->getName().empty())
Misha Brukmana6619a92004-06-21 21:53:56 +0000911 Out << getLLVMName(F->getName());
Chris Lattner5b337482003-10-18 05:57:43 +0000912 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000913 Out << "\"\"";
914 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000915 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000916
Chris Lattner7bfee412001-10-29 16:05:51 +0000917 // Loop over the arguments, printing them...
Chris Lattner113f4f42002-06-25 16:13:24 +0000918 const FunctionType *FT = F->getFunctionType();
Chris Lattnerfee714f2001-09-07 16:36:04 +0000919
Chris Lattner149376d2002-10-13 20:57:00 +0000920 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
921 printArgument(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000922
923 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +0000924 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000925 if (FT->getNumParams()) Out << ", ";
926 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +0000927 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000928 Out << ')';
Chris Lattnerfee714f2001-09-07 16:36:04 +0000929
Chris Lattner113f4f42002-06-25 16:13:24 +0000930 if (F->isExternal()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000931 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +0000932 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +0000933 Out << " {";
Chris Lattnerfee714f2001-09-07 16:36:04 +0000934
Chris Lattner6915f8f2002-04-07 22:49:37 +0000935 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +0000936 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
937 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000938
Misha Brukmana6619a92004-06-21 21:53:56 +0000939 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +0000940 }
941
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000942 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000943}
944
Misha Brukmanc566ca362004-03-02 00:22:19 +0000945/// printArgument - This member is called for every argument that is passed into
946/// the function. Simply print it out
947///
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000948void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000949 // Insert commas as we go... the first arg doesn't get a comma
Misha Brukmana6619a92004-06-21 21:53:56 +0000950 if (Arg != &Arg->getParent()->afront()) Out << ", ";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000951
952 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +0000953 printType(Arg->getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000954
955 // Output name, if available...
956 if (Arg->hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +0000957 Out << ' ' << getLLVMName(Arg->getName());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000958}
959
Misha Brukmanc566ca362004-03-02 00:22:19 +0000960/// printBasicBlock - This member is called for each basic block in a method.
961///
Chris Lattner7bfee412001-10-29 16:05:51 +0000962void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000963 if (BB->hasName()) { // Print out the label if it exists...
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000964 Out << "\n" << getLLVMName(BB->getName(), false) << ':';
Chris Lattner408dbdb2002-05-14 16:02:05 +0000965 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukmana6619a92004-06-21 21:53:56 +0000966 Out << "\n; <label>:";
Chris Lattner757ee0b2004-06-09 19:41:19 +0000967 int Slot = Machine.getSlot(BB);
968 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +0000969 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +0000970 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000971 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +0000972 }
Chris Lattner2447ef52003-11-20 00:09:43 +0000973
974 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +0000975 Out << "\t\t; Error: Block without parent!";
Chris Lattner2447ef52003-11-20 00:09:43 +0000976 else {
977 if (BB != &BB->getParent()->front()) { // Not the entry block?
978 // Output predecessors for the block...
Misha Brukmana6619a92004-06-21 21:53:56 +0000979 Out << "\t\t;";
Chris Lattner2447ef52003-11-20 00:09:43 +0000980 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
981
982 if (PI == PE) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000983 Out << " No predecessors!";
Chris Lattner2447ef52003-11-20 00:09:43 +0000984 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +0000985 Out << " preds =";
Chris Lattner00211f12003-11-16 22:59:57 +0000986 writeOperand(*PI, false, true);
Chris Lattner2447ef52003-11-20 00:09:43 +0000987 for (++PI; PI != PE; ++PI) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000988 Out << ',';
Chris Lattner2447ef52003-11-20 00:09:43 +0000989 writeOperand(*PI, false, true);
990 }
Chris Lattner00211f12003-11-16 22:59:57 +0000991 }
Chris Lattner58185f22002-10-02 19:38:55 +0000992 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000993 }
Chris Lattner408dbdb2002-05-14 16:02:05 +0000994
Misha Brukmana6619a92004-06-21 21:53:56 +0000995 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000996
Misha Brukmana6619a92004-06-21 21:53:56 +0000997 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000998
Chris Lattnerfee714f2001-09-07 16:36:04 +0000999 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001000 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1001 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001002
Misha Brukmana6619a92004-06-21 21:53:56 +00001003 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001004}
1005
Chris Lattner862e3382001-10-13 06:42:36 +00001006
Misha Brukmanc566ca362004-03-02 00:22:19 +00001007/// printInfoComment - Print a little comment after the instruction indicating
1008/// which slot it occupies.
1009///
Chris Lattner113f4f42002-06-25 16:13:24 +00001010void AssemblyWriter::printInfoComment(const Value &V) {
1011 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001012 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001013 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001014
Chris Lattner113f4f42002-06-25 16:13:24 +00001015 if (!V.hasName()) {
Chris Lattner757ee0b2004-06-09 19:41:19 +00001016 int SlotNum = Machine.getSlot(&V);
1017 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001018 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001019 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001020 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001021 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001022 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001023 }
1024}
1025
Reid Spencer8beac692004-06-09 15:26:53 +00001026/// printInstruction - This member is called for each Instruction in a function..
Misha Brukmanc566ca362004-03-02 00:22:19 +00001027///
Chris Lattner113f4f42002-06-25 16:13:24 +00001028void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001029 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001030
Misha Brukmana6619a92004-06-21 21:53:56 +00001031 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001032
1033 // Print out name if it exists...
Chris Lattner113f4f42002-06-25 16:13:24 +00001034 if (I.hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +00001035 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001036
Chris Lattner504f9242003-09-08 17:45:59 +00001037 // If this is a volatile load or store, print out the volatile marker
1038 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
1039 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()))
Misha Brukmana6619a92004-06-21 21:53:56 +00001040 Out << "volatile ";
Chris Lattner504f9242003-09-08 17:45:59 +00001041
Chris Lattner2f7c9632001-06-06 20:29:01 +00001042 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001043 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001044
1045 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001046 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001047
1048 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001049 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1050 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001051 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001052 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001053 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001054 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001055
Chris Lattner8d48df22002-04-13 18:34:38 +00001056 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001057 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001058 writeOperand(Operand , true); Out << ',';
1059 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001060
Chris Lattner113f4f42002-06-25 16:13:24 +00001061 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001062 Out << "\n\t\t";
1063 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001064 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001065 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001066 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001067 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001068 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001069 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001070 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001071
Chris Lattner113f4f42002-06-25 16:13:24 +00001072 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001073 if (op) Out << ", ";
1074 Out << '[';
1075 writeOperand(I.getOperand(op ), false); Out << ',';
1076 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001077 }
Chris Lattner862e3382001-10-13 06:42:36 +00001078 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001079 Out << " void";
Chris Lattner862e3382001-10-13 06:42:36 +00001080 } else if (isa<CallInst>(I)) {
Chris Lattner463d6a52003-08-05 15:34:45 +00001081 const PointerType *PTy = cast<PointerType>(Operand->getType());
1082 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1083 const Type *RetTy = FTy->getReturnType();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001084
Chris Lattner463d6a52003-08-05 15:34:45 +00001085 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001086 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001087 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001088 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001089 if (!FTy->isVarArg() &&
Chris Lattner8d48df22002-04-13 18:34:38 +00001090 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001091 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001092 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001093 writeOperand(Operand, false);
1094 } else {
1095 writeOperand(Operand, true);
1096 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001097 Out << '(';
Chris Lattner113f4f42002-06-25 16:13:24 +00001098 if (I.getNumOperands() > 1) writeOperand(I.getOperand(1), true);
1099 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001100 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001101 writeOperand(I.getOperand(op), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001102 }
1103
Misha Brukmana6619a92004-06-21 21:53:56 +00001104 Out << " )";
Chris Lattner113f4f42002-06-25 16:13:24 +00001105 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner463d6a52003-08-05 15:34:45 +00001106 const PointerType *PTy = cast<PointerType>(Operand->getType());
1107 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1108 const Type *RetTy = FTy->getReturnType();
1109
1110 // If possible, print out the short form of the invoke instruction. We can
1111 // only do this if the first argument is a pointer to a nonvararg function,
1112 // and if the return type is not a pointer to a function.
1113 //
1114 if (!FTy->isVarArg() &&
1115 (!isa<PointerType>(RetTy) ||
1116 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001117 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001118 writeOperand(Operand, false);
1119 } else {
1120 writeOperand(Operand, true);
1121 }
1122
Misha Brukmana6619a92004-06-21 21:53:56 +00001123 Out << '(';
Chris Lattner113f4f42002-06-25 16:13:24 +00001124 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
1125 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001126 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001127 writeOperand(I.getOperand(op), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001128 }
1129
Misha Brukmana6619a92004-06-21 21:53:56 +00001130 Out << " )\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001131 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001132 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001133 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001134
Chris Lattner113f4f42002-06-25 16:13:24 +00001135 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001136 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001137 printType(AI->getType()->getElementType());
1138 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001139 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001140 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001141 }
Chris Lattner862e3382001-10-13 06:42:36 +00001142 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001143 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001144 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001145 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001146 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001147 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001148 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001149 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001150 } else if (const VANextInst *VAN = dyn_cast<VANextInst>(&I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001151 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001152 Out << ", ";
Chris Lattner5b337482003-10-18 05:57:43 +00001153 printType(VAN->getArgType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001154 } else if (Operand) { // Print the normal way...
1155
1156 // PrintAllTypes - Instructions who have operands of all the same type
1157 // omit the type from all but the first operand. If the instruction has
1158 // different type operands (for example br), then they are all printed.
1159 bool PrintAllTypes = false;
1160 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001161
Chris Lattner52bd5cb92004-03-12 05:53:14 +00001162 // Shift Left & Right print both types even for Ubyte LHS, and select prints
1163 // types even if all operands are bools.
1164 if (isa<ShiftInst>(I) || isa<SelectInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001165 PrintAllTypes = true;
1166 } else {
1167 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1168 Operand = I.getOperand(i);
1169 if (Operand->getType() != TheType) {
1170 PrintAllTypes = true; // We have differing types! Print them all!
1171 break;
1172 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001173 }
1174 }
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001175
Chris Lattner7bfee412001-10-29 16:05:51 +00001176 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001177 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001178 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001179 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001180
Chris Lattner113f4f42002-06-25 16:13:24 +00001181 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001182 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001183 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001184 }
1185 }
1186
Chris Lattner862e3382001-10-13 06:42:36 +00001187 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001188 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001189}
1190
1191
1192//===----------------------------------------------------------------------===//
1193// External Interface declarations
1194//===----------------------------------------------------------------------===//
1195
Chris Lattner8339f7d2003-10-30 23:41:03 +00001196void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001197 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001198 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001199 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001200}
1201
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001202void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001203 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001204 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001205 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001206}
1207
Chris Lattner8339f7d2003-10-30 23:41:03 +00001208void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001209 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001210 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001211
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001212 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001213}
1214
Chris Lattner8339f7d2003-10-30 23:41:03 +00001215void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001216 SlotMachine SlotTable(getParent());
Chris Lattner7bfee412001-10-29 16:05:51 +00001217 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001218 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001219 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001220}
1221
Chris Lattner8339f7d2003-10-30 23:41:03 +00001222void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001223 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001224 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001225 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001226
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001227 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001228}
Chris Lattner7db79582001-11-07 04:21:57 +00001229
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001230void Constant::print(std::ostream &o) const {
1231 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001232
Misha Brukman21bbdb92004-06-04 21:11:51 +00001233 o << ' ' << getType()->getDescription() << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +00001234
Chris Lattnerab7d1ab2003-05-08 02:08:14 +00001235 std::map<const Type *, std::string> TypeTable;
Chris Lattner1e194682002-04-18 18:53:13 +00001236 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001237}
1238
1239void Type::print(std::ostream &o) const {
1240 if (this == 0)
1241 o << "<null Type>";
1242 else
1243 o << getDescription();
1244}
1245
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001246void Argument::print(std::ostream &o) const {
Chris Lattnere52ed452004-07-13 23:14:34 +00001247 WriteAsOperand(o, this, true, true,
1248 getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001249}
1250
Reid Spencer52641832004-05-25 18:14:38 +00001251// Value::dump - allow easy printing of Values from the debugger.
1252// Located here because so much of the needed functionality is here.
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001253void Value::dump() const { print(std::cerr); }
Reid Spencer52641832004-05-25 18:14:38 +00001254
1255// Type::dump - allow easy printing of Values from the debugger.
1256// Located here because so much of the needed functionality is here.
Reid Spencere7e96712004-05-25 08:53:40 +00001257void Type::dump() const { print(std::cerr); }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001258
1259//===----------------------------------------------------------------------===//
1260// CachedWriter Class Implementation
1261//===----------------------------------------------------------------------===//
1262
Chris Lattner7db79582001-11-07 04:21:57 +00001263void CachedWriter::setModule(const Module *M) {
1264 delete SC; delete AW;
1265 if (M) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001266 SC = new SlotMachine(M );
Misha Brukman21bbdb92004-06-04 21:11:51 +00001267 AW = new AssemblyWriter(Out, *SC, M, 0);
Chris Lattner7db79582001-11-07 04:21:57 +00001268 } else {
1269 SC = 0; AW = 0;
1270 }
1271}
1272
1273CachedWriter::~CachedWriter() {
1274 delete AW;
1275 delete SC;
1276}
1277
Chris Lattner60a7dd12004-07-15 02:51:31 +00001278CachedWriter &CachedWriter::operator<<(const Value &V) {
Chris Lattner7db79582001-11-07 04:21:57 +00001279 assert(AW && SC && "CachedWriter does not have a current module!");
Chris Lattner60a7dd12004-07-15 02:51:31 +00001280 if (const Instruction *I = dyn_cast<Instruction>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001281 AW->write(I);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001282 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001283 AW->write(BB);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001284 else if (const Function *F = dyn_cast<Function>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001285 AW->write(F);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001286 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001287 AW->write(GV);
Chris Lattner80d2d532004-06-26 19:40:40 +00001288 else
Chris Lattner60a7dd12004-07-15 02:51:31 +00001289 AW->writeOperand(&V, true, true);
Chris Lattner7db79582001-11-07 04:21:57 +00001290 return *this;
1291}
Misha Brukman4685e262004-04-28 15:31:21 +00001292
Chris Lattner60a7dd12004-07-15 02:51:31 +00001293CachedWriter& CachedWriter::operator<<(const Type &Ty) {
Misha Brukman4685e262004-04-28 15:31:21 +00001294 if (SymbolicTypes) {
1295 const Module *M = AW->getModule();
Chris Lattner60a7dd12004-07-15 02:51:31 +00001296 if (M) WriteTypeSymbolic(Out, &Ty, M);
Reid Spencer58d30f22004-07-04 11:50:43 +00001297 } else {
Chris Lattner60a7dd12004-07-15 02:51:31 +00001298 AW->write(&Ty);
Reid Spencer58d30f22004-07-04 11:50:43 +00001299 }
1300 return *this;
Misha Brukman4685e262004-04-28 15:31:21 +00001301}
Misha Brukmanda546ea2004-04-28 19:24:28 +00001302
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001303//===----------------------------------------------------------------------===//
1304//===-- SlotMachine Implementation
1305//===----------------------------------------------------------------------===//
1306
1307#if 0
1308#define SC_DEBUG(X) std::cerr << X
1309#else
1310#define SC_DEBUG(X)
1311#endif
1312
1313// Module level constructor. Causes the contents of the Module (sans functions)
1314// to be added to the slot table.
1315SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001316 : TheModule(M) ///< Saved for lazy initialization.
1317 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001318 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001319 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001320 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001321 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001322 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001323{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001324}
1325
1326// Function level constructor. Causes the contents of the Module and the one
1327// function provided to be added to the slot table.
1328SlotMachine::SlotMachine(const Function *F )
Reid Spencer56010e42004-05-26 21:56:09 +00001329 : TheModule( F ? F->getParent() : 0 ) ///< Saved for lazy initialization
1330 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001331 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001332 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001333 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001334 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001335 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001336{
Reid Spencer56010e42004-05-26 21:56:09 +00001337}
1338
1339inline void SlotMachine::initialize(void) {
1340 if ( TheModule) {
1341 processModule();
1342 TheModule = 0; ///< Prevent re-processing next time we're called.
1343 }
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001344 if ( TheFunction && ! FunctionProcessed) {
Reid Spencer56010e42004-05-26 21:56:09 +00001345 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001346 }
1347}
1348
1349// Iterate through all the global variables, functions, and global
1350// variable initializers and create slots for them.
1351void SlotMachine::processModule() {
1352 SC_DEBUG("begin processModule!\n");
1353
1354 // Add all of the global variables to the value table...
1355 for (Module::const_giterator I = TheModule->gbegin(), E = TheModule->gend();
1356 I != E; ++I)
1357 createSlot(I);
1358
1359 // Add all the functions to the table
1360 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1361 I != E; ++I)
1362 createSlot(I);
1363
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001364 SC_DEBUG("end processModule!\n");
1365}
1366
1367
Reid Spencer56010e42004-05-26 21:56:09 +00001368// Process the arguments, basic blocks, and instructions of a function.
1369void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001370 SC_DEBUG("begin processFunction!\n");
1371
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001372 // Add all the function arguments
Reid Spencer56010e42004-05-26 21:56:09 +00001373 for(Function::const_aiterator AI = TheFunction->abegin(),
1374 AE = TheFunction->aend(); AI != AE; ++AI)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001375 createSlot(AI);
1376
1377 SC_DEBUG("Inserting Instructions:\n");
1378
1379 // Add all of the basic blocks and instructions
Reid Spencer56010e42004-05-26 21:56:09 +00001380 for (Function::const_iterator BB = TheFunction->begin(),
1381 E = TheFunction->end(); BB != E; ++BB) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001382 createSlot(BB);
1383 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
1384 createSlot(I);
1385 }
1386 }
1387
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001388 FunctionProcessed = true;
1389
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001390 SC_DEBUG("end processFunction!\n");
1391}
1392
1393// Clean up after incorporating a function. This is the only way
Reid Spencer56010e42004-05-26 21:56:09 +00001394// to get out of the function incorporation state that affects the
1395// getSlot/createSlot lock. Function incorporation state is indicated
1396// by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001397void SlotMachine::purgeFunction() {
1398 SC_DEBUG("begin purgeFunction!\n");
1399 fMap.clear(); // Simply discard the function level map
Reid Spencer58d30f22004-07-04 11:50:43 +00001400 fTypes.clear();
Reid Spencer56010e42004-05-26 21:56:09 +00001401 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001402 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001403 SC_DEBUG("end purgeFunction!\n");
1404}
1405
1406/// Get the slot number for a value. This function will assert if you
1407/// ask for a Value that hasn't previously been inserted with createSlot.
1408/// Types are forbidden because Type does not inherit from Value (any more).
Chris Lattner757ee0b2004-06-09 19:41:19 +00001409int SlotMachine::getSlot(const Value *V) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001410 assert( V && "Can't get slot for null Value" );
Reid Spencer56010e42004-05-26 21:56:09 +00001411 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1412 "Can't insert a non-GlobalValue Constant into SlotMachine");
1413
1414 // Check for uninitialized state and do lazy initialization
1415 this->initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001416
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001417 // Get the type of the value
1418 const Type* VTy = V->getType();
1419
1420 // Find the type plane in the module map
1421 TypedPlanes::const_iterator MI = mMap.find(VTy);
1422
Reid Spencer56010e42004-05-26 21:56:09 +00001423 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001424 // Lookup the type in the function map too
1425 TypedPlanes::const_iterator FI = fMap.find(VTy);
1426 // If there is a corresponding type plane in the function map
1427 if ( FI != fMap.end() ) {
1428 // Lookup the Value in the function map
1429 ValueMap::const_iterator FVI = FI->second.map.find(V);
1430 // If the value doesn't exist in the function map
1431 if ( FVI == FI->second.map.end() ) {
Chris Lattner68a038e2004-06-09 22:22:10 +00001432 // Look up the value in the module map.
1433 if (MI == mMap.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001434 ValueMap::const_iterator MVI = MI->second.map.find(V);
1435 // If we didn't find it, it wasn't inserted
Chris Lattner757ee0b2004-06-09 19:41:19 +00001436 if (MVI == MI->second.map.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001437 assert( MVI != MI->second.map.end() && "Value not found");
1438 // We found it only at the module level
1439 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001440
1441 // else the value exists in the function map
1442 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001443 // Return the slot number as the module's contribution to
1444 // the type plane plus the index in the function's contribution
1445 // to the type plane.
Chris Lattnerb1f04782004-06-15 21:07:32 +00001446 if (MI != mMap.end())
1447 return MI->second.next_slot + FVI->second;
1448 else
1449 return FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001450 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001451 }
1452 }
1453
Reid Spencer8beac692004-06-09 15:26:53 +00001454 // N.B. Can get here only if either !TheFunction or the function doesn't
1455 // have a corresponding type plane for the Value
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001456
1457 // Make sure the type plane exists
Chris Lattner757ee0b2004-06-09 19:41:19 +00001458 if (MI == mMap.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001459 // Lookup the value in the module's map
1460 ValueMap::const_iterator MVI = MI->second.map.find(V);
1461 // Make sure we found it.
Chris Lattner757ee0b2004-06-09 19:41:19 +00001462 if (MVI == MI->second.map.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001463 // Return it.
1464 return MVI->second;
1465}
1466
Reid Spencer58d30f22004-07-04 11:50:43 +00001467/// Get the slot number for a value. This function will assert if you
1468/// ask for a Value that hasn't previously been inserted with createSlot.
1469/// Types are forbidden because Type does not inherit from Value (any more).
1470int SlotMachine::getSlot(const Type *Ty) {
1471 assert( Ty && "Can't get slot for null Type" );
1472
1473 // Check for uninitialized state and do lazy initialization
1474 this->initialize();
1475
1476 if ( TheFunction ) {
1477 // Lookup the Type in the function map
1478 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1479 // If the Type doesn't exist in the function map
1480 if ( FTI == fTypes.map.end() ) {
1481 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1482 // If we didn't find it, it wasn't inserted
1483 if (MTI == mTypes.map.end())
1484 return -1;
1485 // We found it only at the module level
1486 return MTI->second;
1487
1488 // else the value exists in the function map
1489 } else {
1490 // Return the slot number as the module's contribution to
1491 // the type plane plus the index in the function's contribution
1492 // to the type plane.
1493 return mTypes.next_slot + FTI->second;
1494 }
1495 }
1496
1497 // N.B. Can get here only if either !TheFunction
1498
1499 // Lookup the value in the module's map
1500 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1501 // Make sure we found it.
1502 if (MTI == mTypes.map.end()) return -1;
1503 // Return it.
1504 return MTI->second;
1505}
1506
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001507// Create a new slot, or return the existing slot if it is already
1508// inserted. Note that the logic here parallels getSlot but instead
1509// of asserting when the Value* isn't found, it inserts the value.
1510unsigned SlotMachine::createSlot(const Value *V) {
1511 assert( V && "Can't insert a null Value to SlotMachine");
Reid Spencer56010e42004-05-26 21:56:09 +00001512 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1513 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001514
1515 const Type* VTy = V->getType();
1516
1517 // Just ignore void typed things
1518 if (VTy == Type::VoidTy) return 0; // FIXME: Wrong return value!
1519
1520 // Look up the type plane for the Value's type from the module map
1521 TypedPlanes::const_iterator MI = mMap.find(VTy);
1522
Reid Spencer56010e42004-05-26 21:56:09 +00001523 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001524 // Get the type plane for the Value's type from the function map
1525 TypedPlanes::const_iterator FI = fMap.find(VTy);
1526 // If there is a corresponding type plane in the function map
1527 if ( FI != fMap.end() ) {
1528 // Lookup the Value in the function map
1529 ValueMap::const_iterator FVI = FI->second.map.find(V);
1530 // If the value doesn't exist in the function map
1531 if ( FVI == FI->second.map.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001532 // If there is no corresponding type plane in the module map
1533 if ( MI == mMap.end() )
1534 return insertValue(V);
1535 // Look up the value in the module map
1536 ValueMap::const_iterator MVI = MI->second.map.find(V);
1537 // If we didn't find it, it wasn't inserted
1538 if ( MVI == MI->second.map.end() )
1539 return insertValue(V);
1540 else
1541 // We found it only at the module level
1542 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001543
1544 // else the value exists in the function map
1545 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001546 if ( MI == mMap.end() )
1547 return FVI->second;
1548 else
1549 // Return the slot number as the module's contribution to
1550 // the type plane plus the index in the function's contribution
1551 // to the type plane.
1552 return MI->second.next_slot + FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001553 }
1554
1555 // else there is not a corresponding type plane in the function map
1556 } else {
1557 // If the type plane doesn't exists at the module level
1558 if ( MI == mMap.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001559 return insertValue(V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001560 // else type plane exists at the module level, examine it
1561 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001562 // Look up the value in the module's map
1563 ValueMap::const_iterator MVI = MI->second.map.find(V);
1564 // If we didn't find it there either
1565 if ( MVI == MI->second.map.end() )
1566 // Return the slot number as the module's contribution to
1567 // the type plane plus the index of the function map insertion.
1568 return MI->second.next_slot + insertValue(V);
1569 else
1570 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001571 }
1572 }
1573 }
1574
Reid Spencer56010e42004-05-26 21:56:09 +00001575 // N.B. Can only get here if !TheFunction
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001576
1577 // If the module map's type plane is not for the Value's type
1578 if ( MI != mMap.end() ) {
1579 // Lookup the value in the module's map
1580 ValueMap::const_iterator MVI = MI->second.map.find(V);
1581 if ( MVI != MI->second.map.end() )
1582 return MVI->second;
1583 }
1584
1585 return insertValue(V);
1586}
1587
Reid Spencer58d30f22004-07-04 11:50:43 +00001588// Create a new slot, or return the existing slot if it is already
1589// inserted. Note that the logic here parallels getSlot but instead
1590// of asserting when the Value* isn't found, it inserts the value.
1591unsigned SlotMachine::createSlot(const Type *Ty) {
1592 assert( Ty && "Can't insert a null Type to SlotMachine");
1593
1594 if ( TheFunction ) {
1595 // Lookup the Type in the function map
1596 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1597 // If the type doesn't exist in the function map
1598 if ( FTI == fTypes.map.end() ) {
1599 // Look up the type in the module map
1600 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1601 // If we didn't find it, it wasn't inserted
1602 if ( MTI == mTypes.map.end() )
1603 return insertValue(Ty);
1604 else
1605 // We found it only at the module level
1606 return MTI->second;
1607
1608 // else the value exists in the function map
1609 } else {
1610 // Return the slot number as the module's contribution to
1611 // the type plane plus the index in the function's contribution
1612 // to the type plane.
1613 return mTypes.next_slot + FTI->second;
1614 }
1615 }
1616
1617 // N.B. Can only get here if !TheFunction
1618
1619 // Lookup the type in the module's map
1620 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1621 if ( MTI != mTypes.map.end() )
1622 return MTI->second;
1623
1624 return insertValue(Ty);
1625}
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001626
1627// Low level insert function. Minimal checking is done. This
1628// function is just for the convenience of createSlot (above).
1629unsigned SlotMachine::insertValue(const Value *V ) {
1630 assert(V && "Can't insert a null Value into SlotMachine!");
Reid Spencer56010e42004-05-26 21:56:09 +00001631 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1632 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001633
Reid Spencer56010e42004-05-26 21:56:09 +00001634 // If this value does not contribute to a plane (is void)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001635 // or if the value already has a name then ignore it.
Reid Spencer56010e42004-05-26 21:56:09 +00001636 if (V->getType() == Type::VoidTy || V->hasName() ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001637 SC_DEBUG("ignored value " << *V << "\n");
1638 return 0; // FIXME: Wrong return value
1639 }
1640
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001641 const Type *VTy = V->getType();
1642 unsigned DestSlot = 0;
1643
Reid Spencer56010e42004-05-26 21:56:09 +00001644 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001645 TypedPlanes::iterator I = fMap.find( VTy );
1646 if ( I == fMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001647 I = fMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001648 DestSlot = I->second.map[V] = I->second.next_slot++;
1649 } else {
1650 TypedPlanes::iterator I = mMap.find( VTy );
1651 if ( I == mMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001652 I = mMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001653 DestSlot = I->second.map[V] = I->second.next_slot++;
1654 }
1655
1656 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
Reid Spencer56010e42004-05-26 21:56:09 +00001657 DestSlot << " [");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001658 // G = Global, C = Constant, T = Type, F = Function, o = other
Reid Spenceraccd7c72004-07-17 23:47:01 +00001659 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : (isa<Function>(V) ? 'F' :
1660 (isa<Constant>(V) ? 'C' : 'o'))));
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001661 SC_DEBUG("]\n");
1662 return DestSlot;
1663}
1664
Reid Spencer58d30f22004-07-04 11:50:43 +00001665// Low level insert function. Minimal checking is done. This
1666// function is just for the convenience of createSlot (above).
1667unsigned SlotMachine::insertValue(const Type *Ty ) {
1668 assert(Ty && "Can't insert a null Type into SlotMachine!");
1669
1670 unsigned DestSlot = 0;
1671
1672 if ( TheFunction ) {
1673 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1674 } else {
1675 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1676 }
1677 SC_DEBUG(" Inserting type [" << DestSlot << "] = " << Ty << "\n");
1678 return DestSlot;
1679}
1680
Reid Spencere7e96712004-05-25 08:53:40 +00001681// vim: sw=2