blob: 2e973feb161d4f816f00f991ae9302d9af6dd624 [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).
206static std::string getLLVMName(const std::string &Name) {
207 assert(!Name.empty() && "Cannot get empty name!");
208
209 // First character cannot start with a number...
210 if (Name[0] >= '0' && Name[0] <= '9')
211 return "\"" + Name + "\"";
212
213 // Scan to see if we have any characters that are not on the "white list"
214 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
215 char C = Name[i];
216 assert(C != '"' && "Illegal character in LLVM value name!");
217 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
218 C != '-' && C != '.' && C != '_')
219 return "\"" + Name + "\"";
220 }
221
222 // If we get here, then the identifier is legal to use as a "VarID".
223 return "%"+Name;
224}
225
Chris Lattnerb86620e2001-10-29 16:37:48 +0000226
Misha Brukmanc566ca362004-03-02 00:22:19 +0000227/// fillTypeNameTable - If the module has a symbol table, take all global types
228/// and stuff their names into the TypeNames map.
229///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000230static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000231 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000232 if (!M) return;
233 const SymbolTable &ST = M->getSymbolTable();
Reid Spencere7e96712004-05-25 08:53:40 +0000234 SymbolTable::type_const_iterator TI = ST.type_begin();
235 for (; TI != ST.type_end(); ++TI ) {
236 // As a heuristic, don't insert pointer to primitive types, because
237 // they are used too often to have a single useful name.
238 //
239 const Type *Ty = cast<Type>(TI->second);
240 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000241 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
242 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencere7e96712004-05-25 08:53:40 +0000243 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000244 }
245}
246
247
248
John Criswellcd116ba2004-06-01 14:54:08 +0000249static void calcTypeName(const Type *Ty,
250 std::vector<const Type *> &TypeStack,
251 std::map<const Type *, std::string> &TypeNames,
252 std::string & Result){
253 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)) {
254 Result += Ty->getDescription(); // Base case
255 return;
256 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000257
258 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000259 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000260 if (I != TypeNames.end()) {
261 Result += I->second;
262 return;
263 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000264
John Criswellcd116ba2004-06-01 14:54:08 +0000265 if (isa<OpaqueType>(Ty)) {
266 Result += "opaque";
267 return;
268 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000269
Chris Lattnerb86620e2001-10-29 16:37:48 +0000270 // Check to see if the Type is already on the stack...
271 unsigned Slot = 0, CurSize = TypeStack.size();
272 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
273
274 // This is another base case for the recursion. In this case, we know
275 // that we have looped back to a type that we have previously visited.
276 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000277 if (Slot < CurSize) {
278 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
279 return;
280 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000281
282 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
283
Chris Lattner6b727592004-06-17 18:19:28 +0000284 switch (Ty->getTypeID()) {
Chris Lattner91db5822002-03-29 03:44:36 +0000285 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000286 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000287 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
288 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000289 for (FunctionType::param_iterator I = FTy->param_begin(),
290 E = FTy->param_end(); I != E; ++I) {
291 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000292 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000293 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000294 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000295 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000296 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000297 Result += "...";
298 }
299 Result += ")";
300 break;
301 }
302 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000303 const StructType *STy = cast<StructType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000304 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000305 for (StructType::element_iterator I = STy->element_begin(),
306 E = STy->element_end(); I != E; ++I) {
307 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000308 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000309 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000310 }
311 Result += " }";
312 break;
313 }
314 case Type::PointerTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000315 calcTypeName(cast<PointerType>(Ty)->getElementType(),
316 TypeStack, TypeNames, Result);
317 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000318 break;
319 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000320 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000321 Result += "[" + utostr(ATy->getNumElements()) + " x ";
322 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
323 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000324 break;
325 }
Brian Gaeke02209042004-08-20 06:00:58 +0000326 case Type::PackedTyID: {
327 const PackedType *PTy = cast<PackedType>(Ty);
328 Result += "<" + utostr(PTy->getNumElements()) + " x ";
329 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
330 Result += ">";
331 break;
332 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000333 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000334 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000335 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000336 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000337 Result += "<unrecognized-type>";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000338 }
339
340 TypeStack.pop_back(); // Remove self from stack...
John Criswellcd116ba2004-06-01 14:54:08 +0000341 return;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000342}
343
344
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000345/// printTypeInt - The internal guts of printing out a type that has a
346/// potentially named portion.
347///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000348static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
349 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000350 // Primitive types always print out their description, regardless of whether
351 // they have been named or not.
352 //
Chris Lattner92d60532003-10-30 00:12:51 +0000353 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
354 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000355
356 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000357 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000358 if (I != TypeNames.end()) return Out << I->second;
359
360 // Otherwise we have a type that has not been named but is a derived type.
361 // Carefully recurse the type hierarchy to print out any contained symbolic
362 // names.
363 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000364 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000365 std::string TypeName;
366 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000367 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000368 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000369}
370
Chris Lattner34b95182001-10-31 04:33:19 +0000371
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000372/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
373/// type, iff there is an entry in the modules symbol table for the specified
374/// type or one of it's component types. This is slower than a simple x << Type
375///
Chris Lattner189d19f2003-11-21 20:23:48 +0000376std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
377 const Module *M) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000378 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000379
380 // If they want us to print out a type, attempt to make it symbolic if there
381 // is a symbol table in the module...
Chris Lattner98cf1f52002-11-20 18:36:02 +0000382 if (M) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000383 std::map<const Type *, std::string> TypeNames;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000384 fillTypeNameTable(M, TypeNames);
385
Chris Lattner72f866e2001-10-29 16:40:32 +0000386 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000387 } else {
Chris Lattner72f866e2001-10-29 16:40:32 +0000388 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000389 }
390}
391
Reid Spenceraccd7c72004-07-17 23:47:01 +0000392/// @brief Internal constant writer.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000393static void WriteConstantInt(std::ostream &Out, const Constant *CV,
394 bool PrintName,
395 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000396 SlotMachine *Machine) {
Chris Lattner1e194682002-04-18 18:53:13 +0000397 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
398 Out << (CB == ConstantBool::True ? "true" : "false");
399 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
400 Out << CI->getValue();
401 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
402 Out << CI->getValue();
403 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
404 // We would like to output the FP constant value in exponential notation,
405 // but we cannot do this if doing so will lose precision. Check here to
406 // make sure that we only output it in exponential format if we can parse
407 // the value back and get the same value.
408 //
409 std::string StrVal = ftostr(CFP->getValue());
410
411 // Check to make sure that the stringized number is not some string like
412 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
413 // the string matches the "[-+]?[0-9]" regex.
414 //
415 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
416 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaeke87b4f072003-06-17 23:55:35 +0000417 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner1e194682002-04-18 18:53:13 +0000418 // Reparse stringized version!
419 if (atof(StrVal.c_str()) == CFP->getValue()) {
420 Out << StrVal; return;
421 }
422
423 // Otherwise we could not reparse it to exactly the same value, so we must
424 // output the string in hexadecimal format!
425 //
426 // Behave nicely in the face of C TBAA rules... see:
427 // http://www.nullstone.com/htmls/category/aliastyp.htm
428 //
429 double Val = CFP->getValue();
430 char *Ptr = (char*)&Val;
431 assert(sizeof(double) == sizeof(uint64_t) && sizeof(double) == 8 &&
432 "assuming that double is 64 bits!");
433 Out << "0x" << utohexstr(*(uint64_t*)Ptr);
434
Chris Lattner76b2ff42004-02-15 05:55:15 +0000435 } else if (isa<ConstantAggregateZero>(CV)) {
436 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000437 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
438 // As a special case, print the array as a string if it is an array of
439 // ubytes or an array of sbytes with positive values.
440 //
441 const Type *ETy = CA->getType()->getElementType();
442 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
443
444 if (ETy == Type::SByteTy)
445 for (unsigned i = 0; i < CA->getNumOperands(); ++i)
446 if (cast<ConstantSInt>(CA->getOperand(i))->getValue() < 0) {
447 isString = false;
448 break;
449 }
450
451 if (isString) {
452 Out << "c\"";
453 for (unsigned i = 0; i < CA->getNumOperands(); ++i) {
Chris Lattneraa6ff272004-06-04 23:53:20 +0000454 unsigned char C =
455 (unsigned char)cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Chris Lattner1e194682002-04-18 18:53:13 +0000456
Chris Lattnere5fd3862002-07-31 23:56:44 +0000457 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner1e194682002-04-18 18:53:13 +0000458 Out << C;
459 } else {
460 Out << '\\'
461 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
462 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
463 }
464 }
465 Out << "\"";
466
467 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000468 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000469 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000470 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000471 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000472 WriteAsOperandInternal(Out, CA->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000473 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000474 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
475 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000476 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000477 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000478 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000479 }
480 }
481 Out << " ]";
482 }
483 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000484 Out << '{';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000485 if (CS->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000486 Out << ' ';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000487 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
488
489 WriteAsOperandInternal(Out, CS->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000490 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000491
492 for (unsigned i = 1; i < CS->getNumOperands(); i++) {
493 Out << ", ";
494 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
495
496 WriteAsOperandInternal(Out, CS->getOperand(i),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000497 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000498 }
499 }
500
501 Out << " }";
Brian Gaeke02209042004-08-20 06:00:58 +0000502 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
503 const Type *ETy = CP->getType()->getElementType();
504 assert(CP->getNumOperands() > 0 &&
505 "Number of operands for a PackedConst must be > 0");
506 Out << '<';
507 Out << ' ';
508 printTypeInt(Out, ETy, TypeTable);
509 WriteAsOperandInternal(Out, CP->getOperand(0),
510 PrintName, TypeTable, Machine);
511 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
512 Out << ", ";
513 printTypeInt(Out, ETy, TypeTable);
514 WriteAsOperandInternal(Out, CP->getOperand(i), PrintName,
515 TypeTable, Machine);
516 }
517 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000518 } else if (isa<ConstantPointerNull>(CV)) {
519 Out << "null";
520
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000521 } else if (isa<UndefValue>(CV)) {
522 Out << "undef";
523
Chris Lattner3cd8c562002-07-30 18:54:25 +0000524 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattnerb8257222003-03-06 23:23:32 +0000525 Out << CE->getOpcodeName() << " (";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000526
527 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
528 printTypeInt(Out, (*OI)->getType(), TypeTable);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000529 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000530 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000531 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000532 }
533
Chris Lattnercfe8f532002-08-16 21:17:11 +0000534 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000535 Out << " to ";
536 printTypeInt(Out, CE->getType(), TypeTable);
537 }
Misha Brukman21bbdb92004-06-04 21:11:51 +0000538 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000539
Chris Lattnerd84bb632002-04-16 21:36:08 +0000540 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000541 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000542 }
543}
544
545
Misha Brukmanc566ca362004-03-02 00:22:19 +0000546/// WriteAsOperand - Write the name of the specified value out to the specified
547/// ostream. This can be useful when you just want to print int %reg126, not
548/// the whole instruction that generated it.
549///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000550static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
551 bool PrintName,
552 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000553 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000554 Out << ' ';
Reid Spenceraccd7c72004-07-17 23:47:01 +0000555 if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
Chris Lattner1c343042003-08-22 05:40:38 +0000556 Out << getLLVMName(V->getName());
Reid Spenceraccd7c72004-07-17 23:47:01 +0000557 else {
558 const Constant *CV = dyn_cast<Constant>(V);
559 if (CV && !isa<GlobalValue>(CV))
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000560 WriteConstantInt(Out, CV, PrintName, TypeTable, Machine);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000561 else {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000562 int Slot;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000563 if (Machine) {
Reid Spencer56010e42004-05-26 21:56:09 +0000564 Slot = Machine->getSlot(V);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000565 } else {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000566 Machine = createSlotMachine(V);
Chris Lattner757ee0b2004-06-09 19:41:19 +0000567 if (Machine == 0)
568 Slot = Machine->getSlot(V);
569 else
570 Slot = -1;
Reid Spencer56010e42004-05-26 21:56:09 +0000571 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000572 }
Chris Lattner757ee0b2004-06-09 19:41:19 +0000573 if (Slot != -1)
574 Out << '%' << Slot;
575 else
576 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000577 }
578 }
579}
580
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000581/// WriteAsOperand - Write the name of the specified value out to the specified
582/// ostream. This can be useful when you just want to print int %reg126, not
583/// the whole instruction that generated it.
584///
Chris Lattner189d19f2003-11-21 20:23:48 +0000585std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000586 bool PrintType, bool PrintName,
587 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000588 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000589 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000590
Chris Lattner98cf1f52002-11-20 18:36:02 +0000591 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000592 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000593
594 if (PrintType)
595 printTypeInt(Out, V->getType(), TypeNames);
596
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000597 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000598 return Out;
599}
600
Reid Spencer58d30f22004-07-04 11:50:43 +0000601/// WriteAsOperandInternal - Write the name of the specified value out to
602/// the specified ostream. This can be useful when you just want to print
603/// int %reg126, not the whole instruction that generated it.
604///
605static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
606 bool PrintName,
607 std::map<const Type*, std::string> &TypeTable,
608 SlotMachine *Machine) {
609 Out << ' ';
610 int Slot;
611 if (Machine) {
612 Slot = Machine->getSlot(T);
613 if (Slot != -1)
614 Out << '%' << Slot;
615 else
616 Out << "<badref>";
617 } else {
618 Out << T->getDescription();
619 }
620}
621
622/// WriteAsOperand - Write the name of the specified value out to the specified
623/// ostream. This can be useful when you just want to print int %reg126, not
624/// the whole instruction that generated it.
625///
626std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Type *Ty,
627 bool PrintType, bool PrintName,
628 const Module *Context) {
629 std::map<const Type *, std::string> TypeNames;
630 assert(Context != 0 && "Can't write types as operand without module context");
631
632 fillTypeNameTable(Context, TypeNames);
633
634 // if (PrintType)
635 // printTypeInt(Out, V->getType(), TypeNames);
636
637 printTypeInt(Out, Ty, TypeNames);
638
639 WriteAsOperandInternal(Out, Ty, PrintName, TypeNames, 0);
640 return Out;
641}
642
Chris Lattner189d19f2003-11-21 20:23:48 +0000643namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000644
Chris Lattnerfee714f2001-09-07 16:36:04 +0000645class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000646 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000647 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000648 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000649 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000650 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000651public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000652 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000653 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000654 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000655
656 // If the module has a symbol table, take all global types and stuff their
657 // names into the TypeNames map.
658 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000659 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000660 }
661
Chris Lattner7bfee412001-10-29 16:05:51 +0000662 inline void write(const Module *M) { printModule(M); }
663 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner57698e22002-03-26 18:01:55 +0000664 inline void write(const Function *F) { printFunction(F); }
Chris Lattner7bfee412001-10-29 16:05:51 +0000665 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000666 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattner3462ae32001-12-03 22:26:30 +0000667 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattner7db79582001-11-07 04:21:57 +0000668 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000669
Chris Lattner1e194682002-04-18 18:53:13 +0000670 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
671
Misha Brukman4685e262004-04-28 15:31:21 +0000672 const Module* getModule() { return TheModule; }
673
Chris Lattner2f7c9632001-06-06 20:29:01 +0000674private :
Chris Lattner7bfee412001-10-29 16:05:51 +0000675 void printModule(const Module *M);
676 void printSymbolTable(const SymbolTable &ST);
Chris Lattner3462ae32001-12-03 22:26:30 +0000677 void printConstant(const Constant *CPV);
Chris Lattner7bfee412001-10-29 16:05:51 +0000678 void printGlobal(const GlobalVariable *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000679 void printFunction(const Function *F);
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000680 void printArgument(const Argument *FA);
Chris Lattner7bfee412001-10-29 16:05:51 +0000681 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000682 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000683
684 // printType - Go to extreme measures to attempt to print out a short,
685 // symbolic version of a type name.
686 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000687 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000688 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000689 }
690
691 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
692 // without considering any symbolic types that we may have equal to it.
693 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000694 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000695
Chris Lattner862e3382001-10-13 06:42:36 +0000696 // printInfoComment - Print a little comment after the instruction indicating
697 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000698 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000699};
Reid Spencerf43ac622004-05-27 22:04:46 +0000700} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000701
Misha Brukmanc566ca362004-03-02 00:22:19 +0000702/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
703/// without considering any symbolic types that we may have equal to it.
704///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000705std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000706 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattnerd816b532002-04-13 20:53:41 +0000707 printType(FTy->getReturnType()) << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000708 for (FunctionType::param_iterator I = FTy->param_begin(),
709 E = FTy->param_end(); I != E; ++I) {
710 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000711 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000712 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000713 }
714 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000715 if (FTy->getNumParams()) Out << ", ";
716 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000717 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000718 Out << ')';
Chris Lattner113f4f42002-06-25 16:13:24 +0000719 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000720 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000721 for (StructType::element_iterator I = STy->element_begin(),
722 E = STy->element_end(); I != E; ++I) {
723 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000724 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000725 printType(*I);
726 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000727 Out << " }";
Chris Lattner113f4f42002-06-25 16:13:24 +0000728 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000729 printType(PTy->getElementType()) << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000730 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000731 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000732 printType(ATy->getElementType()) << ']';
Reid Spencere203d352004-08-20 15:37:30 +0000733 } else if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
734 Out << '<' << PTy->getNumElements() << " x ";
735 printType(PTy->getElementType()) << '>';
736 }
737 else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000738 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000739 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000740 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000741 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000742 printType(Ty);
743 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000744 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000745}
746
747
Chris Lattnerfee714f2001-09-07 16:36:04 +0000748void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
Reid Spencer56010e42004-05-26 21:56:09 +0000749 bool PrintName) {
Reid Spencer33116692004-08-29 19:37:59 +0000750 assert(Operand != 0 && "Illegal Operand");
Misha Brukmana6619a92004-06-21 21:53:56 +0000751 if (PrintType) { Out << ' '; printType(Operand->getType()); }
752 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Machine);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000753}
754
Chris Lattner2f7c9632001-06-06 20:29:01 +0000755
Chris Lattner7bfee412001-10-29 16:05:51 +0000756void AssemblyWriter::printModule(const Module *M) {
Chris Lattner8068e0c2003-08-24 13:48:48 +0000757 switch (M->getEndianness()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000758 case Module::LittleEndian: Out << "target endian = little\n"; break;
759 case Module::BigEndian: Out << "target endian = big\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000760 case Module::AnyEndianness: break;
761 }
762 switch (M->getPointerSize()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000763 case Module::Pointer32: Out << "target pointersize = 32\n"; break;
764 case Module::Pointer64: Out << "target pointersize = 64\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000765 case Module::AnyPointerSize: break;
766 }
Reid Spencer48f98c82004-07-25 21:44:54 +0000767 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000768 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000769
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000770 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000771 Module::lib_iterator LI = M->lib_begin();
772 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000773 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000774 Out << "deplibs = [ ";
775 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000776 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000777 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000778 if (LI != LE)
779 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000780 }
781 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000782 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000783
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000784 // Loop over the symbol table, emitting all named constants.
Chris Lattner98cf1f52002-11-20 18:36:02 +0000785 printSymbolTable(M->getSymbolTable());
Chris Lattnerda975502001-09-10 07:58:01 +0000786
Chris Lattner113f4f42002-06-25 16:13:24 +0000787 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
788 printGlobal(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000789
Misha Brukmana6619a92004-06-21 21:53:56 +0000790 Out << "\nimplementation ; Functions:\n";
Vikram S. Adve13ba19a2001-09-18 12:48:16 +0000791
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000792 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000793 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
794 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000795}
796
Chris Lattner7bfee412001-10-29 16:05:51 +0000797void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000798 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000799
Chris Lattner379a8d22003-04-16 20:28:45 +0000800 if (!GV->hasInitializer())
Misha Brukmana6619a92004-06-21 21:53:56 +0000801 Out << "external ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000802 else
803 switch (GV->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000804 case GlobalValue::InternalLinkage: Out << "internal "; break;
805 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
806 case GlobalValue::WeakLinkage: Out << "weak "; break;
807 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000808 case GlobalValue::ExternalLinkage: break;
809 }
Chris Lattner37798642001-09-18 04:01:05 +0000810
Misha Brukmana6619a92004-06-21 21:53:56 +0000811 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +0000812 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +0000813
Reid Spenceraccd7c72004-07-17 23:47:01 +0000814 if (GV->hasInitializer()) {
815 Constant* C = cast<Constant>(GV->getInitializer());
816 assert(C && "GlobalVar initializer isn't constant?");
Reid Spencerc9c90cf2004-07-18 01:04:19 +0000817 writeOperand(GV->getInitializer(), false, isa<GlobalValue>(C));
Reid Spenceraccd7c72004-07-17 23:47:01 +0000818 }
Chris Lattner37798642001-09-18 04:01:05 +0000819
Chris Lattner113f4f42002-06-25 16:13:24 +0000820 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000821 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +0000822}
823
Chris Lattnerfee714f2001-09-07 16:36:04 +0000824
Reid Spencere7e96712004-05-25 08:53:40 +0000825// printSymbolTable - Run through symbol table looking for constants
826// and types. Emit their declarations.
Chris Lattner7bfee412001-10-29 16:05:51 +0000827void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +0000828
829 // Print the types.
830 for (SymbolTable::type_const_iterator TI = ST.type_begin();
831 TI != ST.type_end(); ++TI ) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000832 Out << "\t" << getLLVMName(TI->first) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +0000833
834 // Make sure we print out at least one level of the type structure, so
835 // that we do not get %FILE = type %FILE
836 //
837 printTypeAtLeastOneLevel(TI->second) << "\n";
838 }
Chris Lattnerfee714f2001-09-07 16:36:04 +0000839
Reid Spencere7e96712004-05-25 08:53:40 +0000840 // Print the constants, in type plane order.
841 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
842 PI != ST.plane_end(); ++PI ) {
843 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
844 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
845
846 for (; VI != VE; ++VI) {
Reid Spenceraccd7c72004-07-17 23:47:01 +0000847 const Value* V = VI->second;
848 const Constant *CPV = dyn_cast<Constant>(V) ;
849 if (CPV && !isa<GlobalValue>(V)) {
Reid Spencer56010e42004-05-26 21:56:09 +0000850 printConstant(CPV);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000851 }
852 }
Chris Lattnera7620d92001-07-15 06:35:59 +0000853 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000854}
855
856
Misha Brukmanc566ca362004-03-02 00:22:19 +0000857/// printConstant - Print out a constant pool entry...
858///
Chris Lattner3462ae32001-12-03 22:26:30 +0000859void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattnerfee714f2001-09-07 16:36:04 +0000860 // Don't print out unnamed constants, they will be inlined
861 if (!CPV->hasName()) return;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000862
Chris Lattneree998be2001-07-26 16:29:38 +0000863 // Print out name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000864 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000865
866 // Write the value out now...
Chris Lattnerd84bb632002-04-16 21:36:08 +0000867 writeOperand(CPV, true, false);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000868
Chris Lattner113f4f42002-06-25 16:13:24 +0000869 printInfoComment(*CPV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000870 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000871}
872
Misha Brukmanc566ca362004-03-02 00:22:19 +0000873/// printFunction - Print all aspects of a function.
874///
Chris Lattner113f4f42002-06-25 16:13:24 +0000875void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000876 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000877 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +0000878
Misha Brukmana6619a92004-06-21 21:53:56 +0000879 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000880
Chris Lattner379a8d22003-04-16 20:28:45 +0000881 if (F->isExternal())
Misha Brukmana6619a92004-06-21 21:53:56 +0000882 Out << "declare ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000883 else
884 switch (F->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000885 case GlobalValue::InternalLinkage: Out << "internal "; break;
886 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
887 case GlobalValue::WeakLinkage: Out << "weak "; break;
888 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000889 case GlobalValue::ExternalLinkage: break;
890 }
891
Misha Brukman21bbdb92004-06-04 21:11:51 +0000892 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +0000893 if (!F->getName().empty())
Misha Brukmana6619a92004-06-21 21:53:56 +0000894 Out << getLLVMName(F->getName());
Chris Lattner5b337482003-10-18 05:57:43 +0000895 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000896 Out << "\"\"";
897 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000898 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000899
Chris Lattner7bfee412001-10-29 16:05:51 +0000900 // Loop over the arguments, printing them...
Chris Lattner113f4f42002-06-25 16:13:24 +0000901 const FunctionType *FT = F->getFunctionType();
Chris Lattnerfee714f2001-09-07 16:36:04 +0000902
Chris Lattner149376d2002-10-13 20:57:00 +0000903 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
904 printArgument(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000905
906 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +0000907 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000908 if (FT->getNumParams()) Out << ", ";
909 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +0000910 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000911 Out << ')';
Chris Lattnerfee714f2001-09-07 16:36:04 +0000912
Chris Lattner113f4f42002-06-25 16:13:24 +0000913 if (F->isExternal()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000914 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +0000915 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +0000916 Out << " {";
Chris Lattnerfee714f2001-09-07 16:36:04 +0000917
Chris Lattner6915f8f2002-04-07 22:49:37 +0000918 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +0000919 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
920 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000921
Misha Brukmana6619a92004-06-21 21:53:56 +0000922 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +0000923 }
924
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000925 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000926}
927
Misha Brukmanc566ca362004-03-02 00:22:19 +0000928/// printArgument - This member is called for every argument that is passed into
929/// the function. Simply print it out
930///
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000931void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000932 // Insert commas as we go... the first arg doesn't get a comma
Misha Brukmana6619a92004-06-21 21:53:56 +0000933 if (Arg != &Arg->getParent()->afront()) Out << ", ";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000934
935 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +0000936 printType(Arg->getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000937
938 // Output name, if available...
939 if (Arg->hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +0000940 Out << ' ' << getLLVMName(Arg->getName());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000941}
942
Misha Brukmanc566ca362004-03-02 00:22:19 +0000943/// printBasicBlock - This member is called for each basic block in a method.
944///
Chris Lattner7bfee412001-10-29 16:05:51 +0000945void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000946 if (BB->hasName()) { // Print out the label if it exists...
Misha Brukmana6619a92004-06-21 21:53:56 +0000947 Out << "\n" << BB->getName() << ':';
Chris Lattner408dbdb2002-05-14 16:02:05 +0000948 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukmana6619a92004-06-21 21:53:56 +0000949 Out << "\n; <label>:";
Chris Lattner757ee0b2004-06-09 19:41:19 +0000950 int Slot = Machine.getSlot(BB);
951 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +0000952 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +0000953 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000954 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +0000955 }
Chris Lattner2447ef52003-11-20 00:09:43 +0000956
957 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +0000958 Out << "\t\t; Error: Block without parent!";
Chris Lattner2447ef52003-11-20 00:09:43 +0000959 else {
960 if (BB != &BB->getParent()->front()) { // Not the entry block?
961 // Output predecessors for the block...
Misha Brukmana6619a92004-06-21 21:53:56 +0000962 Out << "\t\t;";
Chris Lattner2447ef52003-11-20 00:09:43 +0000963 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
964
965 if (PI == PE) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000966 Out << " No predecessors!";
Chris Lattner2447ef52003-11-20 00:09:43 +0000967 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +0000968 Out << " preds =";
Chris Lattner00211f12003-11-16 22:59:57 +0000969 writeOperand(*PI, false, true);
Chris Lattner2447ef52003-11-20 00:09:43 +0000970 for (++PI; PI != PE; ++PI) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000971 Out << ',';
Chris Lattner2447ef52003-11-20 00:09:43 +0000972 writeOperand(*PI, false, true);
973 }
Chris Lattner00211f12003-11-16 22:59:57 +0000974 }
Chris Lattner58185f22002-10-02 19:38:55 +0000975 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000976 }
Chris Lattner408dbdb2002-05-14 16:02:05 +0000977
Misha Brukmana6619a92004-06-21 21:53:56 +0000978 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000979
Misha Brukmana6619a92004-06-21 21:53:56 +0000980 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000981
Chris Lattnerfee714f2001-09-07 16:36:04 +0000982 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +0000983 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
984 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +0000985
Misha Brukmana6619a92004-06-21 21:53:56 +0000986 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000987}
988
Chris Lattner862e3382001-10-13 06:42:36 +0000989
Misha Brukmanc566ca362004-03-02 00:22:19 +0000990/// printInfoComment - Print a little comment after the instruction indicating
991/// which slot it occupies.
992///
Chris Lattner113f4f42002-06-25 16:13:24 +0000993void AssemblyWriter::printInfoComment(const Value &V) {
994 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000995 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000996 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +0000997
Chris Lattner113f4f42002-06-25 16:13:24 +0000998 if (!V.hasName()) {
Chris Lattner757ee0b2004-06-09 19:41:19 +0000999 int SlotNum = Machine.getSlot(&V);
1000 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001001 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001002 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001003 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001004 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001005 Out << " [#uses=" << V.use_size() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001006 }
1007}
1008
Reid Spencer8beac692004-06-09 15:26:53 +00001009/// printInstruction - This member is called for each Instruction in a function..
Misha Brukmanc566ca362004-03-02 00:22:19 +00001010///
Chris Lattner113f4f42002-06-25 16:13:24 +00001011void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001012 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001013
Misha Brukmana6619a92004-06-21 21:53:56 +00001014 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001015
1016 // Print out name if it exists...
Chris Lattner113f4f42002-06-25 16:13:24 +00001017 if (I.hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +00001018 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001019
Chris Lattner504f9242003-09-08 17:45:59 +00001020 // If this is a volatile load or store, print out the volatile marker
1021 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
1022 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()))
Misha Brukmana6619a92004-06-21 21:53:56 +00001023 Out << "volatile ";
Chris Lattner504f9242003-09-08 17:45:59 +00001024
Chris Lattner2f7c9632001-06-06 20:29:01 +00001025 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001026 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001027
1028 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001029 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001030
1031 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001032 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1033 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001034 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001035 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001036 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001037 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001038
Chris Lattner8d48df22002-04-13 18:34:38 +00001039 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001040 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001041 writeOperand(Operand , true); Out << ',';
1042 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001043
Chris Lattner113f4f42002-06-25 16:13:24 +00001044 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001045 Out << "\n\t\t";
1046 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001047 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001048 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001049 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001050 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001051 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001052 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001053 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001054
Chris Lattner113f4f42002-06-25 16:13:24 +00001055 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001056 if (op) Out << ", ";
1057 Out << '[';
1058 writeOperand(I.getOperand(op ), false); Out << ',';
1059 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001060 }
Chris Lattner862e3382001-10-13 06:42:36 +00001061 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001062 Out << " void";
Chris Lattner862e3382001-10-13 06:42:36 +00001063 } else if (isa<CallInst>(I)) {
Chris Lattner463d6a52003-08-05 15:34:45 +00001064 const PointerType *PTy = cast<PointerType>(Operand->getType());
1065 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1066 const Type *RetTy = FTy->getReturnType();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001067
Chris Lattner463d6a52003-08-05 15:34:45 +00001068 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001069 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001070 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001071 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001072 if (!FTy->isVarArg() &&
Chris Lattner8d48df22002-04-13 18:34:38 +00001073 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001074 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001075 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001076 writeOperand(Operand, false);
1077 } else {
1078 writeOperand(Operand, true);
1079 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001080 Out << '(';
Chris Lattner113f4f42002-06-25 16:13:24 +00001081 if (I.getNumOperands() > 1) writeOperand(I.getOperand(1), true);
1082 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001083 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001084 writeOperand(I.getOperand(op), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001085 }
1086
Misha Brukmana6619a92004-06-21 21:53:56 +00001087 Out << " )";
Chris Lattner113f4f42002-06-25 16:13:24 +00001088 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner463d6a52003-08-05 15:34:45 +00001089 const PointerType *PTy = cast<PointerType>(Operand->getType());
1090 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1091 const Type *RetTy = FTy->getReturnType();
1092
1093 // If possible, print out the short form of the invoke instruction. We can
1094 // only do this if the first argument is a pointer to a nonvararg function,
1095 // and if the return type is not a pointer to a function.
1096 //
1097 if (!FTy->isVarArg() &&
1098 (!isa<PointerType>(RetTy) ||
1099 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001100 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001101 writeOperand(Operand, false);
1102 } else {
1103 writeOperand(Operand, true);
1104 }
1105
Misha Brukmana6619a92004-06-21 21:53:56 +00001106 Out << '(';
Chris Lattner113f4f42002-06-25 16:13:24 +00001107 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
1108 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001109 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001110 writeOperand(I.getOperand(op), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001111 }
1112
Misha Brukmana6619a92004-06-21 21:53:56 +00001113 Out << " )\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001114 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001115 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001116 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001117
Chris Lattner113f4f42002-06-25 16:13:24 +00001118 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001119 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001120 printType(AI->getType()->getElementType());
1121 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001122 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001123 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001124 }
Chris Lattner862e3382001-10-13 06:42:36 +00001125 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001126 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001127 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001128 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001129 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001130 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001131 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001132 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001133 } else if (const VANextInst *VAN = dyn_cast<VANextInst>(&I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001134 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001135 Out << ", ";
Chris Lattner5b337482003-10-18 05:57:43 +00001136 printType(VAN->getArgType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001137 } else if (Operand) { // Print the normal way...
1138
1139 // PrintAllTypes - Instructions who have operands of all the same type
1140 // omit the type from all but the first operand. If the instruction has
1141 // different type operands (for example br), then they are all printed.
1142 bool PrintAllTypes = false;
1143 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001144
Chris Lattner52bd5cb92004-03-12 05:53:14 +00001145 // Shift Left & Right print both types even for Ubyte LHS, and select prints
1146 // types even if all operands are bools.
1147 if (isa<ShiftInst>(I) || isa<SelectInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001148 PrintAllTypes = true;
1149 } else {
1150 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1151 Operand = I.getOperand(i);
1152 if (Operand->getType() != TheType) {
1153 PrintAllTypes = true; // We have differing types! Print them all!
1154 break;
1155 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001156 }
1157 }
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001158
Chris Lattner7bfee412001-10-29 16:05:51 +00001159 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001160 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001161 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001162 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001163
Chris Lattner113f4f42002-06-25 16:13:24 +00001164 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001165 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001166 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001167 }
1168 }
1169
Chris Lattner862e3382001-10-13 06:42:36 +00001170 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001171 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001172}
1173
1174
1175//===----------------------------------------------------------------------===//
1176// External Interface declarations
1177//===----------------------------------------------------------------------===//
1178
Chris Lattner8339f7d2003-10-30 23:41:03 +00001179void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001180 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001181 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001182 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001183}
1184
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001185void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001186 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001187 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001188 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001189}
1190
Chris Lattner8339f7d2003-10-30 23:41:03 +00001191void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001192 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001193 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001194
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001195 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001196}
1197
Chris Lattner8339f7d2003-10-30 23:41:03 +00001198void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001199 SlotMachine SlotTable(getParent());
Chris Lattner7bfee412001-10-29 16:05:51 +00001200 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001201 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001202 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001203}
1204
Chris Lattner8339f7d2003-10-30 23:41:03 +00001205void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001206 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001207 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001208 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001209
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001210 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001211}
Chris Lattner7db79582001-11-07 04:21:57 +00001212
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001213void Constant::print(std::ostream &o) const {
1214 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001215
Misha Brukman21bbdb92004-06-04 21:11:51 +00001216 o << ' ' << getType()->getDescription() << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +00001217
Chris Lattnerab7d1ab2003-05-08 02:08:14 +00001218 std::map<const Type *, std::string> TypeTable;
Chris Lattner1e194682002-04-18 18:53:13 +00001219 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001220}
1221
1222void Type::print(std::ostream &o) const {
1223 if (this == 0)
1224 o << "<null Type>";
1225 else
1226 o << getDescription();
1227}
1228
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001229void Argument::print(std::ostream &o) const {
Chris Lattnere52ed452004-07-13 23:14:34 +00001230 WriteAsOperand(o, this, true, true,
1231 getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001232}
1233
Reid Spencer52641832004-05-25 18:14:38 +00001234// Value::dump - allow easy printing of Values from the debugger.
1235// Located here because so much of the needed functionality is here.
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001236void Value::dump() const { print(std::cerr); }
Reid Spencer52641832004-05-25 18:14:38 +00001237
1238// Type::dump - allow easy printing of Values from the debugger.
1239// Located here because so much of the needed functionality is here.
Reid Spencere7e96712004-05-25 08:53:40 +00001240void Type::dump() const { print(std::cerr); }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001241
1242//===----------------------------------------------------------------------===//
1243// CachedWriter Class Implementation
1244//===----------------------------------------------------------------------===//
1245
Chris Lattner7db79582001-11-07 04:21:57 +00001246void CachedWriter::setModule(const Module *M) {
1247 delete SC; delete AW;
1248 if (M) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001249 SC = new SlotMachine(M );
Misha Brukman21bbdb92004-06-04 21:11:51 +00001250 AW = new AssemblyWriter(Out, *SC, M, 0);
Chris Lattner7db79582001-11-07 04:21:57 +00001251 } else {
1252 SC = 0; AW = 0;
1253 }
1254}
1255
1256CachedWriter::~CachedWriter() {
1257 delete AW;
1258 delete SC;
1259}
1260
Chris Lattner60a7dd12004-07-15 02:51:31 +00001261CachedWriter &CachedWriter::operator<<(const Value &V) {
Chris Lattner7db79582001-11-07 04:21:57 +00001262 assert(AW && SC && "CachedWriter does not have a current module!");
Chris Lattner60a7dd12004-07-15 02:51:31 +00001263 if (const Instruction *I = dyn_cast<Instruction>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001264 AW->write(I);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001265 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001266 AW->write(BB);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001267 else if (const Function *F = dyn_cast<Function>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001268 AW->write(F);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001269 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001270 AW->write(GV);
Chris Lattner80d2d532004-06-26 19:40:40 +00001271 else
Chris Lattner60a7dd12004-07-15 02:51:31 +00001272 AW->writeOperand(&V, true, true);
Chris Lattner7db79582001-11-07 04:21:57 +00001273 return *this;
1274}
Misha Brukman4685e262004-04-28 15:31:21 +00001275
Chris Lattner60a7dd12004-07-15 02:51:31 +00001276CachedWriter& CachedWriter::operator<<(const Type &Ty) {
Misha Brukman4685e262004-04-28 15:31:21 +00001277 if (SymbolicTypes) {
1278 const Module *M = AW->getModule();
Chris Lattner60a7dd12004-07-15 02:51:31 +00001279 if (M) WriteTypeSymbolic(Out, &Ty, M);
Reid Spencer58d30f22004-07-04 11:50:43 +00001280 } else {
Chris Lattner60a7dd12004-07-15 02:51:31 +00001281 AW->write(&Ty);
Reid Spencer58d30f22004-07-04 11:50:43 +00001282 }
1283 return *this;
Misha Brukman4685e262004-04-28 15:31:21 +00001284}
Misha Brukmanda546ea2004-04-28 19:24:28 +00001285
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001286//===----------------------------------------------------------------------===//
1287//===-- SlotMachine Implementation
1288//===----------------------------------------------------------------------===//
1289
1290#if 0
1291#define SC_DEBUG(X) std::cerr << X
1292#else
1293#define SC_DEBUG(X)
1294#endif
1295
1296// Module level constructor. Causes the contents of the Module (sans functions)
1297// to be added to the slot table.
1298SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001299 : TheModule(M) ///< Saved for lazy initialization.
1300 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001301 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001302 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001303 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001304 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001305 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001306{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001307}
1308
1309// Function level constructor. Causes the contents of the Module and the one
1310// function provided to be added to the slot table.
1311SlotMachine::SlotMachine(const Function *F )
Reid Spencer56010e42004-05-26 21:56:09 +00001312 : TheModule( F ? F->getParent() : 0 ) ///< Saved for lazy initialization
1313 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001314 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001315 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001316 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001317 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001318 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001319{
Reid Spencer56010e42004-05-26 21:56:09 +00001320}
1321
1322inline void SlotMachine::initialize(void) {
1323 if ( TheModule) {
1324 processModule();
1325 TheModule = 0; ///< Prevent re-processing next time we're called.
1326 }
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001327 if ( TheFunction && ! FunctionProcessed) {
Reid Spencer56010e42004-05-26 21:56:09 +00001328 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001329 }
1330}
1331
1332// Iterate through all the global variables, functions, and global
1333// variable initializers and create slots for them.
1334void SlotMachine::processModule() {
1335 SC_DEBUG("begin processModule!\n");
1336
1337 // Add all of the global variables to the value table...
1338 for (Module::const_giterator I = TheModule->gbegin(), E = TheModule->gend();
1339 I != E; ++I)
1340 createSlot(I);
1341
1342 // Add all the functions to the table
1343 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1344 I != E; ++I)
1345 createSlot(I);
1346
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001347 SC_DEBUG("end processModule!\n");
1348}
1349
1350
Reid Spencer56010e42004-05-26 21:56:09 +00001351// Process the arguments, basic blocks, and instructions of a function.
1352void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001353 SC_DEBUG("begin processFunction!\n");
1354
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001355 // Add all the function arguments
Reid Spencer56010e42004-05-26 21:56:09 +00001356 for(Function::const_aiterator AI = TheFunction->abegin(),
1357 AE = TheFunction->aend(); AI != AE; ++AI)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001358 createSlot(AI);
1359
1360 SC_DEBUG("Inserting Instructions:\n");
1361
1362 // Add all of the basic blocks and instructions
Reid Spencer56010e42004-05-26 21:56:09 +00001363 for (Function::const_iterator BB = TheFunction->begin(),
1364 E = TheFunction->end(); BB != E; ++BB) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001365 createSlot(BB);
1366 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
1367 createSlot(I);
1368 }
1369 }
1370
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001371 FunctionProcessed = true;
1372
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001373 SC_DEBUG("end processFunction!\n");
1374}
1375
1376// Clean up after incorporating a function. This is the only way
Reid Spencer56010e42004-05-26 21:56:09 +00001377// to get out of the function incorporation state that affects the
1378// getSlot/createSlot lock. Function incorporation state is indicated
1379// by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001380void SlotMachine::purgeFunction() {
1381 SC_DEBUG("begin purgeFunction!\n");
1382 fMap.clear(); // Simply discard the function level map
Reid Spencer58d30f22004-07-04 11:50:43 +00001383 fTypes.clear();
Reid Spencer56010e42004-05-26 21:56:09 +00001384 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001385 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001386 SC_DEBUG("end purgeFunction!\n");
1387}
1388
1389/// Get the slot number for a value. This function will assert if you
1390/// ask for a Value that hasn't previously been inserted with createSlot.
1391/// Types are forbidden because Type does not inherit from Value (any more).
Chris Lattner757ee0b2004-06-09 19:41:19 +00001392int SlotMachine::getSlot(const Value *V) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001393 assert( V && "Can't get slot for null Value" );
Reid Spencer56010e42004-05-26 21:56:09 +00001394 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1395 "Can't insert a non-GlobalValue Constant into SlotMachine");
1396
1397 // Check for uninitialized state and do lazy initialization
1398 this->initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001399
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001400 // Get the type of the value
1401 const Type* VTy = V->getType();
1402
1403 // Find the type plane in the module map
1404 TypedPlanes::const_iterator MI = mMap.find(VTy);
1405
Reid Spencer56010e42004-05-26 21:56:09 +00001406 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001407 // Lookup the type in the function map too
1408 TypedPlanes::const_iterator FI = fMap.find(VTy);
1409 // If there is a corresponding type plane in the function map
1410 if ( FI != fMap.end() ) {
1411 // Lookup the Value in the function map
1412 ValueMap::const_iterator FVI = FI->second.map.find(V);
1413 // If the value doesn't exist in the function map
1414 if ( FVI == FI->second.map.end() ) {
Chris Lattner68a038e2004-06-09 22:22:10 +00001415 // Look up the value in the module map.
1416 if (MI == mMap.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001417 ValueMap::const_iterator MVI = MI->second.map.find(V);
1418 // If we didn't find it, it wasn't inserted
Chris Lattner757ee0b2004-06-09 19:41:19 +00001419 if (MVI == MI->second.map.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001420 assert( MVI != MI->second.map.end() && "Value not found");
1421 // We found it only at the module level
1422 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001423
1424 // else the value exists in the function map
1425 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001426 // Return the slot number as the module's contribution to
1427 // the type plane plus the index in the function's contribution
1428 // to the type plane.
Chris Lattnerb1f04782004-06-15 21:07:32 +00001429 if (MI != mMap.end())
1430 return MI->second.next_slot + FVI->second;
1431 else
1432 return FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001433 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001434 }
1435 }
1436
Reid Spencer8beac692004-06-09 15:26:53 +00001437 // N.B. Can get here only if either !TheFunction or the function doesn't
1438 // have a corresponding type plane for the Value
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001439
1440 // Make sure the type plane exists
Chris Lattner757ee0b2004-06-09 19:41:19 +00001441 if (MI == mMap.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001442 // Lookup the value in the module's map
1443 ValueMap::const_iterator MVI = MI->second.map.find(V);
1444 // Make sure we found it.
Chris Lattner757ee0b2004-06-09 19:41:19 +00001445 if (MVI == MI->second.map.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001446 // Return it.
1447 return MVI->second;
1448}
1449
Reid Spencer58d30f22004-07-04 11:50:43 +00001450/// Get the slot number for a value. This function will assert if you
1451/// ask for a Value that hasn't previously been inserted with createSlot.
1452/// Types are forbidden because Type does not inherit from Value (any more).
1453int SlotMachine::getSlot(const Type *Ty) {
1454 assert( Ty && "Can't get slot for null Type" );
1455
1456 // Check for uninitialized state and do lazy initialization
1457 this->initialize();
1458
1459 if ( TheFunction ) {
1460 // Lookup the Type in the function map
1461 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1462 // If the Type doesn't exist in the function map
1463 if ( FTI == fTypes.map.end() ) {
1464 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1465 // If we didn't find it, it wasn't inserted
1466 if (MTI == mTypes.map.end())
1467 return -1;
1468 // We found it only at the module level
1469 return MTI->second;
1470
1471 // else the value exists in the function map
1472 } else {
1473 // Return the slot number as the module's contribution to
1474 // the type plane plus the index in the function's contribution
1475 // to the type plane.
1476 return mTypes.next_slot + FTI->second;
1477 }
1478 }
1479
1480 // N.B. Can get here only if either !TheFunction
1481
1482 // Lookup the value in the module's map
1483 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1484 // Make sure we found it.
1485 if (MTI == mTypes.map.end()) return -1;
1486 // Return it.
1487 return MTI->second;
1488}
1489
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001490// Create a new slot, or return the existing slot if it is already
1491// inserted. Note that the logic here parallels getSlot but instead
1492// of asserting when the Value* isn't found, it inserts the value.
1493unsigned SlotMachine::createSlot(const Value *V) {
1494 assert( V && "Can't insert a null Value to SlotMachine");
Reid Spencer56010e42004-05-26 21:56:09 +00001495 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1496 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001497
1498 const Type* VTy = V->getType();
1499
1500 // Just ignore void typed things
1501 if (VTy == Type::VoidTy) return 0; // FIXME: Wrong return value!
1502
1503 // Look up the type plane for the Value's type from the module map
1504 TypedPlanes::const_iterator MI = mMap.find(VTy);
1505
Reid Spencer56010e42004-05-26 21:56:09 +00001506 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001507 // Get the type plane for the Value's type from the function map
1508 TypedPlanes::const_iterator FI = fMap.find(VTy);
1509 // If there is a corresponding type plane in the function map
1510 if ( FI != fMap.end() ) {
1511 // Lookup the Value in the function map
1512 ValueMap::const_iterator FVI = FI->second.map.find(V);
1513 // If the value doesn't exist in the function map
1514 if ( FVI == FI->second.map.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001515 // If there is no corresponding type plane in the module map
1516 if ( MI == mMap.end() )
1517 return insertValue(V);
1518 // Look up the value in the module map
1519 ValueMap::const_iterator MVI = MI->second.map.find(V);
1520 // If we didn't find it, it wasn't inserted
1521 if ( MVI == MI->second.map.end() )
1522 return insertValue(V);
1523 else
1524 // We found it only at the module level
1525 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001526
1527 // else the value exists in the function map
1528 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001529 if ( MI == mMap.end() )
1530 return FVI->second;
1531 else
1532 // Return the slot number as the module's contribution to
1533 // the type plane plus the index in the function's contribution
1534 // to the type plane.
1535 return MI->second.next_slot + FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001536 }
1537
1538 // else there is not a corresponding type plane in the function map
1539 } else {
1540 // If the type plane doesn't exists at the module level
1541 if ( MI == mMap.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001542 return insertValue(V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001543 // else type plane exists at the module level, examine it
1544 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001545 // Look up the value in the module's map
1546 ValueMap::const_iterator MVI = MI->second.map.find(V);
1547 // If we didn't find it there either
1548 if ( MVI == MI->second.map.end() )
1549 // Return the slot number as the module's contribution to
1550 // the type plane plus the index of the function map insertion.
1551 return MI->second.next_slot + insertValue(V);
1552 else
1553 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001554 }
1555 }
1556 }
1557
Reid Spencer56010e42004-05-26 21:56:09 +00001558 // N.B. Can only get here if !TheFunction
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001559
1560 // If the module map's type plane is not for the Value's type
1561 if ( MI != mMap.end() ) {
1562 // Lookup the value in the module's map
1563 ValueMap::const_iterator MVI = MI->second.map.find(V);
1564 if ( MVI != MI->second.map.end() )
1565 return MVI->second;
1566 }
1567
1568 return insertValue(V);
1569}
1570
Reid Spencer58d30f22004-07-04 11:50:43 +00001571// Create a new slot, or return the existing slot if it is already
1572// inserted. Note that the logic here parallels getSlot but instead
1573// of asserting when the Value* isn't found, it inserts the value.
1574unsigned SlotMachine::createSlot(const Type *Ty) {
1575 assert( Ty && "Can't insert a null Type to SlotMachine");
1576
1577 if ( TheFunction ) {
1578 // Lookup the Type in the function map
1579 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1580 // If the type doesn't exist in the function map
1581 if ( FTI == fTypes.map.end() ) {
1582 // Look up the type in the module map
1583 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1584 // If we didn't find it, it wasn't inserted
1585 if ( MTI == mTypes.map.end() )
1586 return insertValue(Ty);
1587 else
1588 // We found it only at the module level
1589 return MTI->second;
1590
1591 // else the value exists in the function map
1592 } else {
1593 // Return the slot number as the module's contribution to
1594 // the type plane plus the index in the function's contribution
1595 // to the type plane.
1596 return mTypes.next_slot + FTI->second;
1597 }
1598 }
1599
1600 // N.B. Can only get here if !TheFunction
1601
1602 // Lookup the type in the module's map
1603 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1604 if ( MTI != mTypes.map.end() )
1605 return MTI->second;
1606
1607 return insertValue(Ty);
1608}
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001609
1610// Low level insert function. Minimal checking is done. This
1611// function is just for the convenience of createSlot (above).
1612unsigned SlotMachine::insertValue(const Value *V ) {
1613 assert(V && "Can't insert a null Value into SlotMachine!");
Reid Spencer56010e42004-05-26 21:56:09 +00001614 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1615 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001616
Reid Spencer56010e42004-05-26 21:56:09 +00001617 // If this value does not contribute to a plane (is void)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001618 // or if the value already has a name then ignore it.
Reid Spencer56010e42004-05-26 21:56:09 +00001619 if (V->getType() == Type::VoidTy || V->hasName() ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001620 SC_DEBUG("ignored value " << *V << "\n");
1621 return 0; // FIXME: Wrong return value
1622 }
1623
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001624 const Type *VTy = V->getType();
1625 unsigned DestSlot = 0;
1626
Reid Spencer56010e42004-05-26 21:56:09 +00001627 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001628 TypedPlanes::iterator I = fMap.find( VTy );
1629 if ( I == fMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001630 I = fMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001631 DestSlot = I->second.map[V] = I->second.next_slot++;
1632 } else {
1633 TypedPlanes::iterator I = mMap.find( VTy );
1634 if ( I == mMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001635 I = mMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001636 DestSlot = I->second.map[V] = I->second.next_slot++;
1637 }
1638
1639 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
Reid Spencer56010e42004-05-26 21:56:09 +00001640 DestSlot << " [");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001641 // G = Global, C = Constant, T = Type, F = Function, o = other
Reid Spenceraccd7c72004-07-17 23:47:01 +00001642 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : (isa<Function>(V) ? 'F' :
1643 (isa<Constant>(V) ? 'C' : 'o'))));
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001644 SC_DEBUG("]\n");
1645 return DestSlot;
1646}
1647
Reid Spencer58d30f22004-07-04 11:50:43 +00001648// Low level insert function. Minimal checking is done. This
1649// function is just for the convenience of createSlot (above).
1650unsigned SlotMachine::insertValue(const Type *Ty ) {
1651 assert(Ty && "Can't insert a null Type into SlotMachine!");
1652
1653 unsigned DestSlot = 0;
1654
1655 if ( TheFunction ) {
1656 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1657 } else {
1658 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1659 }
1660 SC_DEBUG(" Inserting type [" << DestSlot << "] = " << Ty << "\n");
1661 return DestSlot;
1662}
1663
Reid Spencere7e96712004-05-25 08:53:40 +00001664// vim: sw=2