blob: 0b10218ca40e2bfda5dd3e5a597b801d04032dfd [file] [log] [blame]
Chris Lattner8da78af2002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
John Criswellb576c942003-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 Lattner00950542001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Assembly/Writer.h
11//
Chris Lattner02b93992002-04-12 18:21:53 +000012// Note that these routines must be extremely tolerant of various errors in the
Chris Lattner8f77dae2003-05-08 02:44:12 +000013// LLVM code, because it can be used for debugging transformations.
Chris Lattner02b93992002-04-12 18:21:53 +000014//
Chris Lattner00950542001-06-06 20:29:01 +000015//===----------------------------------------------------------------------===//
16
Chris Lattnerda1fbcc2001-11-07 04:21:57 +000017#include "llvm/Assembly/CachedWriter.h"
Chris Lattner75cf7cf2002-04-08 22:03:40 +000018#include "llvm/Assembly/Writer.h"
Chris Lattnerf082b802002-07-23 18:07:49 +000019#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner95e5a2c2003-10-30 23:41:03 +000020#include "llvm/Assembly/AsmAnnotationWriter.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000021#include "llvm/Constants.h"
Chris Lattner3eb59c02002-04-29 18:46:50 +000022#include "llvm/DerivedTypes.h"
Vikram S. Adveb4dbb442002-07-14 23:14:45 +000023#include "llvm/Instruction.h"
Misha Brukman44336292004-07-29 16:53:53 +000024#include "llvm/Instructions.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000025#include "llvm/Module.h"
Chris Lattner007377f2001-09-07 16:36:04 +000026#include "llvm/SymbolTable.h"
Misha Brukman5cf1acf2004-04-28 15:31:21 +000027#include "llvm/Assembly/Writer.h"
Chris Lattner061269b2002-10-02 19:38:55 +000028#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000029#include "llvm/ADT/StringExtras.h"
30#include "llvm/ADT/STLExtras.h"
Chris Lattner007377f2001-09-07 16:36:04 +000031#include <algorithm>
Chris Lattner31f84992003-11-21 20:23:48 +000032using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000033
Chris Lattner0a8e8e12004-07-15 02:51:31 +000034namespace llvm {
Reid Spencer0d1b77e2004-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 Spencer0e25e1c2004-07-04 11:50:43 +000046 typedef std::map<const Type*, unsigned> TypeMap;
Reid Spencer0d1b77e2004-05-26 07:18:52 +000047
48 /// @brief A plane with next slot number and ValueMap
Reid Spencer0e25e1c2004-07-04 11:50:43 +000049 struct ValuePlane {
Reid Spencer0d1b77e2004-05-26 07:18:52 +000050 unsigned next_slot; ///< The next slot number to use
51 ValueMap map; ///< The map of Value* -> unsigned
Reid Spencer0e25e1c2004-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 Spencer0d1b77e2004-05-26 07:18:52 +000060 };
61
62 /// @brief The map of planes by Type
Reid Spencer0e25e1c2004-07-04 11:50:43 +000063 typedef std::map<const Type*, ValuePlane> TypedPlanes;
Reid Spencer0d1b77e2004-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 Lattner69566452004-06-09 19:41:19 +000082 int getSlot(const Value *V);
Reid Spencer0e25e1c2004-07-04 11:50:43 +000083 int getSlot(const Type*Ty);
Reid Spencerfc621e22004-06-09 15:26:53 +000084
85 /// Determine if a Value has a slot or not
86 bool hasSlot(const Value* V);
Reid Spencer0e25e1c2004-07-04 11:50:43 +000087 bool hasSlot(const Type* Ty);
Reid Spencer0d1b77e2004-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 Spencer28531c72004-08-16 07:46:33 +000095 void incorporateFunction(const Function *F) {
96 TheFunction = F;
97 FunctionProcessed = false;
98 }
Reid Spencer0d1b77e2004-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 Spencerb03de0c2004-05-26 21:56:09 +0000109 /// This function does the actual initialization.
110 inline void initialize();
111
Reid Spencer0d1b77e2004-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 Spencer0e25e1c2004-07-04 11:50:43 +0000116 unsigned createSlot(const Type* Ty);
Reid Spencer0d1b77e2004-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 Spencer0e25e1c2004-07-04 11:50:43 +0000122 unsigned insertValue( const Type* Ty);
Reid Spencer0d1b77e2004-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 Spencerb03de0c2004-05-26 21:56:09 +0000128 /// Add all of the functions arguments, basic blocks, and instructions
129 void processFunction();
130
Reid Spencer0d1b77e2004-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 Spencerb03de0c2004-05-26 21:56:09 +0000140 const Module* TheModule;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000141
Reid Spencerb03de0c2004-05-26 21:56:09 +0000142 /// @brief The function for which we are holding slot numbers
143 const Function* TheFunction;
Reid Spencer28531c72004-08-16 07:46:33 +0000144 bool FunctionProcessed;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000145
146 /// @brief The TypePlanes map for the module level data
147 TypedPlanes mMap;
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000148 TypePlane mTypes;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000149
150 /// @brief The TypePlanes map for the function level data
151 TypedPlanes fMap;
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000152 TypePlane fTypes;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000153
154/// @}
155
156};
157
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000158} // end namespace llvm
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000159
Chris Lattnera6275cc2002-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 Lattnerf082b802002-07-23 18:07:49 +0000164
Chris Lattner7b13f562003-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 Spencer0d1b77e2004-05-26 07:18:52 +0000168 SlotMachine *Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000169
Reid Spencer0e25e1c2004-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 Lattner207b5bc2001-10-29 16:37:48 +0000175static const Module *getModuleFromVal(const Value *V) {
Chris Lattner949a3622003-07-23 15:30:06 +0000176 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +0000177 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +0000178 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +0000179 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +0000180 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000181 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000182 return M ? M->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +0000183 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +0000184 return GV->getParent();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000185 return 0;
186}
187
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000188static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattner949a3622003-07-23 15:30:06 +0000189 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000190 return new SlotMachine(FA->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000191 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000192 return new SlotMachine(I->getParent()->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000193 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000194 return new SlotMachine(BB->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000195 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000196 return new SlotMachine(GV->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000197 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000198 return new SlotMachine(Func);
Chris Lattnerc1824992001-10-29 16:05:51 +0000199 }
200 return 0;
201}
Chris Lattner00950542001-06-06 20:29:01 +0000202
Chris Lattner24b8a5d2003-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 Lattner207b5bc2001-10-29 16:37:48 +0000226
Misha Brukmanab5c6002004-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 Lattner207b5bc2001-10-29 16:37:48 +0000230static void fillTypeNameTable(const Module *M,
Chris Lattner7b13f562003-05-08 02:08:14 +0000231 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner6e6026b2002-11-20 18:36:02 +0000232 if (!M) return;
233 const SymbolTable &ST = M->getSymbolTable();
Reid Spencer9231ac82004-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 Spencerb03de0c2004-05-26 21:56:09 +0000241 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
242 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencer9231ac82004-05-25 08:53:40 +0000243 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattner207b5bc2001-10-29 16:37:48 +0000244 }
245}
246
247
248
John Criswell4ff620a2004-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 Lattner207b5bc2001-10-29 16:37:48 +0000257
258 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000259 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000260 if (I != TypeNames.end()) {
261 Result += I->second;
262 return;
263 }
Chris Lattner207b5bc2001-10-29 16:37:48 +0000264
John Criswell4ff620a2004-06-01 14:54:08 +0000265 if (isa<OpaqueType>(Ty)) {
266 Result += "opaque";
267 return;
268 }
Chris Lattner88c17382003-10-30 00:22:33 +0000269
Chris Lattner207b5bc2001-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 Criswell4ff620a2004-06-01 14:54:08 +0000277 if (Slot < CurSize) {
278 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
279 return;
280 }
Chris Lattner207b5bc2001-10-29 16:37:48 +0000281
282 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
283
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000284 switch (Ty->getTypeID()) {
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000285 case Type::FunctionTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000286 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000287 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
288 Result += " (";
Chris Lattnerd5d89962004-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 Lattner207b5bc2001-10-29 16:37:48 +0000292 Result += ", ";
John Criswell4ff620a2004-06-01 14:54:08 +0000293 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000294 }
Chris Lattner2761e9f2002-04-13 20:53:41 +0000295 if (FTy->isVarArg()) {
Chris Lattnerd5d89962004-02-09 04:14:01 +0000296 if (FTy->getNumParams()) Result += ", ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000297 Result += "...";
298 }
299 Result += ")";
300 break;
301 }
302 case Type::StructTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000303 const StructType *STy = cast<StructType>(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000304 Result += "{ ";
Chris Lattnerd21cd802004-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 Lattner207b5bc2001-10-29 16:37:48 +0000308 Result += ", ";
John Criswell4ff620a2004-06-01 14:54:08 +0000309 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000310 }
311 Result += " }";
312 break;
313 }
314 case Type::PointerTyID:
John Criswell4ff620a2004-06-01 14:54:08 +0000315 calcTypeName(cast<PointerType>(Ty)->getElementType(),
316 TypeStack, TypeNames, Result);
317 Result += "*";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000318 break;
319 case Type::ArrayTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000320 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000321 Result += "[" + utostr(ATy->getNumElements()) + " x ";
322 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
323 Result += "]";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000324 break;
325 }
Brian Gaeke715c90b2004-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 Lattner9e094c42003-05-14 17:50:47 +0000333 case Type::OpaqueTyID:
John Criswell4ff620a2004-06-01 14:54:08 +0000334 Result += "opaque";
Chris Lattner9e094c42003-05-14 17:50:47 +0000335 break;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000336 default:
John Criswell4ff620a2004-06-01 14:54:08 +0000337 Result += "<unrecognized-type>";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000338 }
339
340 TypeStack.pop_back(); // Remove self from stack...
John Criswell4ff620a2004-06-01 14:54:08 +0000341 return;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000342}
343
344
Misha Brukman9d0802e2004-03-01 19:48:13 +0000345/// printTypeInt - The internal guts of printing out a type that has a
346/// potentially named portion.
347///
Chris Lattner7b13f562003-05-08 02:08:14 +0000348static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
349 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner207b5bc2001-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 Lattnerdaf2a492003-10-30 00:12:51 +0000353 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
354 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000355
356 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000357 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner207b5bc2001-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 Lattner7b13f562003-05-08 02:08:14 +0000364 std::vector<const Type *> TypeStack;
John Criswell4ff620a2004-06-01 14:54:08 +0000365 std::string TypeName;
366 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner697954c2002-01-20 22:54:45 +0000367 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswell4ff620a2004-06-01 14:54:08 +0000368 return (Out << TypeName);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000369}
370
Chris Lattnere51e03b2001-10-31 04:33:19 +0000371
Misha Brukman9d0802e2004-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 Lattner31f84992003-11-21 20:23:48 +0000376std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
377 const Module *M) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000378 Out << ' ';
Chris Lattner207b5bc2001-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 Lattner6e6026b2002-11-20 18:36:02 +0000382 if (M) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000383 std::map<const Type *, std::string> TypeNames;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000384 fillTypeNameTable(M, TypeNames);
385
Chris Lattner7b8660d2001-10-29 16:40:32 +0000386 return printTypeInt(Out, Ty, TypeNames);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000387 } else {
Chris Lattner7b8660d2001-10-29 16:40:32 +0000388 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000389 }
390}
391
Reid Spencer79703962004-07-17 23:47:01 +0000392/// @brief Internal constant writer.
Chris Lattner7b13f562003-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 Spencer0d1b77e2004-05-26 07:18:52 +0000396 SlotMachine *Machine) {
Chris Lattner66e810b2002-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 Gaekeb471a232003-06-17 23:55:35 +0000417 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner66e810b2002-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 Lattnerde512b52004-02-15 05:55:15 +0000435 } else if (isa<ConstantAggregateZero>(CV)) {
436 Out << "zeroinitializer";
Chris Lattner66e810b2002-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 Lattner54e3e8f2004-06-04 23:53:20 +0000454 unsigned char C =
455 (unsigned char)cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Chris Lattner66e810b2002-04-18 18:53:13 +0000456
Chris Lattnerfc944462002-07-31 23:56:44 +0000457 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner66e810b2002-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 Brukman40c732c2004-06-04 21:11:51 +0000468 Out << '[';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000469 if (CA->getNumOperands()) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000470 Out << ' ';
Chris Lattner66e810b2002-04-18 18:53:13 +0000471 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000472 WriteAsOperandInternal(Out, CA->getOperand(0),
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000473 PrintName, TypeTable, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000474 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
475 Out << ", ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000476 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000477 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000478 TypeTable, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000479 }
480 }
481 Out << " ]";
482 }
483 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000484 Out << '{';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000485 if (CS->getNumOperands()) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000486 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000487 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
488
489 WriteAsOperandInternal(Out, CS->getOperand(0),
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000490 PrintName, TypeTable, Machine);
Chris Lattner7a716ad2002-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 Spencer0d1b77e2004-05-26 07:18:52 +0000497 PrintName, TypeTable, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000498 }
499 }
500
501 Out << " }";
Brian Gaeke715c90b2004-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 Lattner7a716ad2002-04-16 21:36:08 +0000518 } else if (isa<ConstantPointerNull>(CV)) {
519 Out << "null";
520
Chris Lattnerb976e662004-10-16 18:08:06 +0000521 } else if (isa<UndefValue>(CV)) {
522 Out << "undef";
523
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000524 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattner38d87732003-03-06 23:23:32 +0000525 Out << CE->getOpcodeName() << " (";
Vikram S. Adveb4dbb442002-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 Spencer0d1b77e2004-05-26 07:18:52 +0000529 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Machine);
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000530 if (OI+1 != CE->op_end())
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000531 Out << ", ";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000532 }
533
Chris Lattner1c93e5b2002-08-16 21:17:11 +0000534 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner95586b82002-08-15 19:37:43 +0000535 Out << " to ";
536 printTypeInt(Out, CE->getType(), TypeTable);
537 }
Misha Brukman40c732c2004-06-04 21:11:51 +0000538 Out << ')';
Chris Lattner95586b82002-08-15 19:37:43 +0000539
Chris Lattner7a716ad2002-04-16 21:36:08 +0000540 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000541 Out << "<placeholder or erroneous Constant>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000542 }
543}
544
545
Misha Brukmanab5c6002004-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 Lattner7b13f562003-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 Spencer0d1b77e2004-05-26 07:18:52 +0000553 SlotMachine *Machine) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000554 Out << ' ';
Reid Spencer79703962004-07-17 23:47:01 +0000555 if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000556 Out << getLLVMName(V->getName());
Reid Spencer79703962004-07-17 23:47:01 +0000557 else {
558 const Constant *CV = dyn_cast<Constant>(V);
559 if (CV && !isa<GlobalValue>(CV))
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000560 WriteConstantInt(Out, CV, PrintName, TypeTable, Machine);
Reid Spencer79703962004-07-17 23:47:01 +0000561 else {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000562 int Slot;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000563 if (Machine) {
Reid Spencerb03de0c2004-05-26 21:56:09 +0000564 Slot = Machine->getSlot(V);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000565 } else {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000566 Machine = createSlotMachine(V);
Chris Lattner69566452004-06-09 19:41:19 +0000567 if (Machine == 0)
568 Slot = Machine->getSlot(V);
569 else
570 Slot = -1;
Reid Spencerb03de0c2004-05-26 21:56:09 +0000571 delete Machine;
Chris Lattner7a716ad2002-04-16 21:36:08 +0000572 }
Chris Lattner69566452004-06-09 19:41:19 +0000573 if (Slot != -1)
574 Out << '%' << Slot;
575 else
576 Out << "<badref>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000577 }
578 }
579}
580
Misha Brukman9d0802e2004-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 Lattner31f84992003-11-21 20:23:48 +0000585std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukman9d0802e2004-03-01 19:48:13 +0000586 bool PrintType, bool PrintName,
587 const Module *Context) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000588 std::map<const Type *, std::string> TypeNames;
Chris Lattner607dc682002-07-10 16:48:17 +0000589 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000590
Chris Lattner6e6026b2002-11-20 18:36:02 +0000591 if (Context)
Chris Lattner607dc682002-07-10 16:48:17 +0000592 fillTypeNameTable(Context, TypeNames);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000593
594 if (PrintType)
595 printTypeInt(Out, V->getType(), TypeNames);
596
Chris Lattner607dc682002-07-10 16:48:17 +0000597 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner622f7402001-07-20 19:15:21 +0000598 return Out;
599}
600
Reid Spencer0e25e1c2004-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 Lattner31f84992003-11-21 20:23:48 +0000643namespace llvm {
Chris Lattnerd8c2e422001-07-12 23:35:26 +0000644
Chris Lattner007377f2001-09-07 16:36:04 +0000645class AssemblyWriter {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000646 std::ostream &Out;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000647 SlotMachine &Machine;
Chris Lattnerc1824992001-10-29 16:05:51 +0000648 const Module *TheModule;
Chris Lattner7b13f562003-05-08 02:08:14 +0000649 std::map<const Type *, std::string> TypeNames;
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000650 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner00950542001-06-06 20:29:01 +0000651public:
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000652 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000653 AssemblyAnnotationWriter *AAW)
Misha Brukman0313e0b2004-06-21 21:53:56 +0000654 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattnerc1824992001-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 Lattner207b5bc2001-10-29 16:37:48 +0000659 fillTypeNameTable(M, TypeNames);
Chris Lattner00950542001-06-06 20:29:01 +0000660 }
661
Chris Lattnerc1824992001-10-29 16:05:51 +0000662 inline void write(const Module *M) { printModule(M); }
663 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner79df7c02002-03-26 18:01:55 +0000664 inline void write(const Function *F) { printFunction(F); }
Chris Lattnerc1824992001-10-29 16:05:51 +0000665 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner7e708292002-06-25 16:13:24 +0000666 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000667 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000668 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner00950542001-06-06 20:29:01 +0000669
Chris Lattner66e810b2002-04-18 18:53:13 +0000670 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
671
Misha Brukman5cf1acf2004-04-28 15:31:21 +0000672 const Module* getModule() { return TheModule; }
673
Misha Brukmanf771bea2004-11-15 19:30:05 +0000674private:
Chris Lattnerc1824992001-10-29 16:05:51 +0000675 void printModule(const Module *M);
676 void printSymbolTable(const SymbolTable &ST);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000677 void printConstant(const Constant *CPV);
Chris Lattnerc1824992001-10-29 16:05:51 +0000678 void printGlobal(const GlobalVariable *GV);
Chris Lattner79df7c02002-03-26 18:01:55 +0000679 void printFunction(const Function *F);
Chris Lattner73e21422002-04-09 19:48:49 +0000680 void printArgument(const Argument *FA);
Chris Lattnerc1824992001-10-29 16:05:51 +0000681 void printBasicBlock(const BasicBlock *BB);
Chris Lattner7e708292002-06-25 16:13:24 +0000682 void printInstruction(const Instruction &I);
Chris Lattner2761e9f2002-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 Lattner7b13f562003-05-08 02:08:14 +0000687 std::ostream &printType(const Type *Ty) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000688 return printTypeInt(Out, Ty, TypeNames);
Chris Lattner2761e9f2002-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 Lattner7b13f562003-05-08 02:08:14 +0000694 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattnerc1824992001-10-29 16:05:51 +0000695
Chris Lattnere02fa852001-10-13 06:42:36 +0000696 // printInfoComment - Print a little comment after the instruction indicating
697 // which slot it occupies.
Chris Lattner7e708292002-06-25 16:13:24 +0000698 void printInfoComment(const Value &V);
Chris Lattner00950542001-06-06 20:29:01 +0000699};
Reid Spencer73b74952004-05-27 22:04:46 +0000700} // end of llvm namespace
Chris Lattner00950542001-06-06 20:29:01 +0000701
Misha Brukmanab5c6002004-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 Lattner7b13f562003-05-08 02:08:14 +0000705std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner7e708292002-06-25 16:13:24 +0000706 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000707 printType(FTy->getReturnType()) << " (";
Chris Lattnerd5d89962004-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 Brukman0313e0b2004-06-21 21:53:56 +0000711 Out << ", ";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000712 printType(*I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000713 }
714 if (FTy->isVarArg()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000715 if (FTy->getNumParams()) Out << ", ";
716 Out << "...";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000717 }
Misha Brukman0313e0b2004-06-21 21:53:56 +0000718 Out << ')';
Chris Lattner7e708292002-06-25 16:13:24 +0000719 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000720 Out << "{ ";
Chris Lattnerd21cd802004-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 Brukman0313e0b2004-06-21 21:53:56 +0000724 Out << ", ";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000725 printType(*I);
726 }
Misha Brukman0313e0b2004-06-21 21:53:56 +0000727 Out << " }";
Chris Lattner7e708292002-06-25 16:13:24 +0000728 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000729 printType(PTy->getElementType()) << '*';
Chris Lattner7e708292002-06-25 16:13:24 +0000730 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000731 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman40c732c2004-06-04 21:11:51 +0000732 printType(ATy->getElementType()) << ']';
Reid Spencer5527c0b2004-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 Brukman0313e0b2004-06-21 21:53:56 +0000738 Out << "opaque";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000739 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000740 if (!Ty->isPrimitiveType())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000741 Out << "<unknown derived type>";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000742 printType(Ty);
743 }
Misha Brukman0313e0b2004-06-21 21:53:56 +0000744 return Out;
Chris Lattner2761e9f2002-04-13 20:53:41 +0000745}
746
747
Chris Lattner007377f2001-09-07 16:36:04 +0000748void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
Reid Spencerb03de0c2004-05-26 21:56:09 +0000749 bool PrintName) {
Reid Spencer13901032004-08-29 19:37:59 +0000750 assert(Operand != 0 && "Illegal Operand");
Misha Brukman0313e0b2004-06-21 21:53:56 +0000751 if (PrintType) { Out << ' '; printType(Operand->getType()); }
752 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Machine);
Chris Lattner00950542001-06-06 20:29:01 +0000753}
754
Chris Lattner00950542001-06-06 20:29:01 +0000755
Chris Lattnerc1824992001-10-29 16:05:51 +0000756void AssemblyWriter::printModule(const Module *M) {
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000757 switch (M->getEndianness()) {
Misha Brukman0313e0b2004-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 Lattnereb5d3a12003-08-24 13:48:48 +0000760 case Module::AnyEndianness: break;
761 }
762 switch (M->getPointerSize()) {
Misha Brukman0313e0b2004-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 Lattnereb5d3a12003-08-24 13:48:48 +0000765 case Module::AnyPointerSize: break;
766 }
Reid Spencercddc86f2004-07-25 21:44:54 +0000767 if (!M->getTargetTriple().empty())
Reid Spencerc9a1f0d2004-07-25 21:29:43 +0000768 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Reid Spencer83f6a772004-07-25 18:08:18 +0000769
Chris Lattner44da7d72004-09-14 05:06:58 +0000770 // Loop over the dependent libraries and emit them.
Chris Lattnercfe97b72004-09-14 04:51:44 +0000771 Module::lib_iterator LI = M->lib_begin();
772 Module::lib_iterator LE = M->lib_end();
Reid Spencercddc86f2004-07-25 21:44:54 +0000773 if (LI != LE) {
Chris Lattnercfe97b72004-09-14 04:51:44 +0000774 Out << "deplibs = [ ";
775 while (LI != LE) {
Chris Lattner44da7d72004-09-14 05:06:58 +0000776 Out << '"' << *LI << '"';
Reid Spencerc9a1f0d2004-07-25 21:29:43 +0000777 ++LI;
Chris Lattnercfe97b72004-09-14 04:51:44 +0000778 if (LI != LE)
779 Out << ", ";
Reid Spencerc9a1f0d2004-07-25 21:29:43 +0000780 }
781 Out << " ]\n";
Reid Spencer83f6a772004-07-25 18:08:18 +0000782 }
Reid Spencere59eaf42004-09-13 23:44:23 +0000783
Chris Lattner44da7d72004-09-14 05:06:58 +0000784 // Loop over the symbol table, emitting all named constants.
Chris Lattner6e6026b2002-11-20 18:36:02 +0000785 printSymbolTable(M->getSymbolTable());
Chris Lattner70cc3392001-09-10 07:58:01 +0000786
Chris Lattner7e708292002-06-25 16:13:24 +0000787 for (Module::const_giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
788 printGlobal(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000789
Misha Brukman0313e0b2004-06-21 21:53:56 +0000790 Out << "\nimplementation ; Functions:\n";
Vikram S. Adve5efa3cc2001-09-18 12:48:16 +0000791
Chris Lattner44da7d72004-09-14 05:06:58 +0000792 // Output all of the functions.
Chris Lattner7e708292002-06-25 16:13:24 +0000793 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
794 printFunction(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000795}
796
Chris Lattnerc1824992001-10-29 16:05:51 +0000797void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000798 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattnerd70684f2001-09-18 04:01:05 +0000799
Chris Lattner4ad02e72003-04-16 20:28:45 +0000800 if (!GV->hasInitializer())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000801 Out << "external ";
Chris Lattner4ad02e72003-04-16 20:28:45 +0000802 else
803 switch (GV->getLinkage()) {
Misha Brukman0313e0b2004-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 Lattner4ad02e72003-04-16 20:28:45 +0000808 case GlobalValue::ExternalLinkage: break;
Misha Brukman3c8f2c62004-11-14 21:04:34 +0000809 case GlobalValue::GhostLinkage:
810 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
811 abort();
Chris Lattner4ad02e72003-04-16 20:28:45 +0000812 }
Chris Lattnerd70684f2001-09-18 04:01:05 +0000813
Misha Brukman0313e0b2004-06-21 21:53:56 +0000814 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner7a176752001-12-04 00:03:30 +0000815 printType(GV->getType()->getElementType());
Chris Lattnerd70684f2001-09-18 04:01:05 +0000816
Reid Spencer79703962004-07-17 23:47:01 +0000817 if (GV->hasInitializer()) {
818 Constant* C = cast<Constant>(GV->getInitializer());
819 assert(C && "GlobalVar initializer isn't constant?");
Reid Spenceracc92802004-07-18 01:04:19 +0000820 writeOperand(GV->getInitializer(), false, isa<GlobalValue>(C));
Reid Spencer79703962004-07-17 23:47:01 +0000821 }
Chris Lattnerd70684f2001-09-18 04:01:05 +0000822
Chris Lattner7e708292002-06-25 16:13:24 +0000823 printInfoComment(*GV);
Misha Brukman0313e0b2004-06-21 21:53:56 +0000824 Out << "\n";
Chris Lattner70cc3392001-09-10 07:58:01 +0000825}
826
Chris Lattner007377f2001-09-07 16:36:04 +0000827
Reid Spencer9231ac82004-05-25 08:53:40 +0000828// printSymbolTable - Run through symbol table looking for constants
829// and types. Emit their declarations.
Chris Lattnerc1824992001-10-29 16:05:51 +0000830void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencer9231ac82004-05-25 08:53:40 +0000831
832 // Print the types.
833 for (SymbolTable::type_const_iterator TI = ST.type_begin();
834 TI != ST.type_end(); ++TI ) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000835 Out << "\t" << getLLVMName(TI->first) << " = type ";
Reid Spencer9231ac82004-05-25 08:53:40 +0000836
837 // Make sure we print out at least one level of the type structure, so
838 // that we do not get %FILE = type %FILE
839 //
840 printTypeAtLeastOneLevel(TI->second) << "\n";
841 }
Chris Lattner007377f2001-09-07 16:36:04 +0000842
Reid Spencer9231ac82004-05-25 08:53:40 +0000843 // Print the constants, in type plane order.
844 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
845 PI != ST.plane_end(); ++PI ) {
846 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
847 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
848
849 for (; VI != VE; ++VI) {
Reid Spencer79703962004-07-17 23:47:01 +0000850 const Value* V = VI->second;
851 const Constant *CPV = dyn_cast<Constant>(V) ;
852 if (CPV && !isa<GlobalValue>(V)) {
Reid Spencerb03de0c2004-05-26 21:56:09 +0000853 printConstant(CPV);
Chris Lattner007377f2001-09-07 16:36:04 +0000854 }
855 }
Chris Lattner739a56d2001-07-15 06:35:59 +0000856 }
Chris Lattner00950542001-06-06 20:29:01 +0000857}
858
859
Misha Brukmanab5c6002004-03-02 00:22:19 +0000860/// printConstant - Print out a constant pool entry...
861///
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000862void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattner007377f2001-09-07 16:36:04 +0000863 // Don't print out unnamed constants, they will be inlined
864 if (!CPV->hasName()) return;
Chris Lattner00950542001-06-06 20:29:01 +0000865
Chris Lattner1333ed52001-07-26 16:29:38 +0000866 // Print out name...
Misha Brukman0313e0b2004-06-21 21:53:56 +0000867 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner00950542001-06-06 20:29:01 +0000868
869 // Write the value out now...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000870 writeOperand(CPV, true, false);
Chris Lattner00950542001-06-06 20:29:01 +0000871
Chris Lattner7e708292002-06-25 16:13:24 +0000872 printInfoComment(*CPV);
Misha Brukman0313e0b2004-06-21 21:53:56 +0000873 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000874}
875
Misha Brukmanab5c6002004-03-02 00:22:19 +0000876/// printFunction - Print all aspects of a function.
877///
Chris Lattner7e708292002-06-25 16:13:24 +0000878void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000879 // Print out the return type and name...
Misha Brukman0313e0b2004-06-21 21:53:56 +0000880 Out << "\n";
Chris Lattner4ad02e72003-04-16 20:28:45 +0000881
Misha Brukman0313e0b2004-06-21 21:53:56 +0000882 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000883
Chris Lattner4ad02e72003-04-16 20:28:45 +0000884 if (F->isExternal())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000885 Out << "declare ";
Chris Lattner4ad02e72003-04-16 20:28:45 +0000886 else
887 switch (F->getLinkage()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000888 case GlobalValue::InternalLinkage: Out << "internal "; break;
889 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
890 case GlobalValue::WeakLinkage: Out << "weak "; break;
891 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner4ad02e72003-04-16 20:28:45 +0000892 case GlobalValue::ExternalLinkage: break;
Misha Brukman3c8f2c62004-11-14 21:04:34 +0000893 case GlobalValue::GhostLinkage:
894 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
895 abort();
Chris Lattner4ad02e72003-04-16 20:28:45 +0000896 }
897
Misha Brukman40c732c2004-06-04 21:11:51 +0000898 printType(F->getReturnType()) << ' ';
Chris Lattner4d45bd02003-10-18 05:57:43 +0000899 if (!F->getName().empty())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000900 Out << getLLVMName(F->getName());
Chris Lattner4d45bd02003-10-18 05:57:43 +0000901 else
Misha Brukman0313e0b2004-06-21 21:53:56 +0000902 Out << "\"\"";
903 Out << '(';
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000904 Machine.incorporateFunction(F);
Chris Lattner007377f2001-09-07 16:36:04 +0000905
Chris Lattnerc1824992001-10-29 16:05:51 +0000906 // Loop over the arguments, printing them...
Chris Lattner7e708292002-06-25 16:13:24 +0000907 const FunctionType *FT = F->getFunctionType();
Chris Lattner007377f2001-09-07 16:36:04 +0000908
Chris Lattner69da5cf2002-10-13 20:57:00 +0000909 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
910 printArgument(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000911
912 // Finish printing arguments...
Chris Lattner7e708292002-06-25 16:13:24 +0000913 if (FT->isVarArg()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000914 if (FT->getNumParams()) Out << ", ";
915 Out << "..."; // Output varargs portion of signature!
Chris Lattner007377f2001-09-07 16:36:04 +0000916 }
Misha Brukman0313e0b2004-06-21 21:53:56 +0000917 Out << ')';
Chris Lattner007377f2001-09-07 16:36:04 +0000918
Chris Lattner7e708292002-06-25 16:13:24 +0000919 if (F->isExternal()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000920 Out << "\n";
Chris Lattner03e2acb2002-05-06 03:00:40 +0000921 } else {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000922 Out << " {";
Chris Lattner007377f2001-09-07 16:36:04 +0000923
Chris Lattnerb5794002002-04-07 22:49:37 +0000924 // Output all of its basic blocks... for the function
Chris Lattner7e708292002-06-25 16:13:24 +0000925 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
926 printBasicBlock(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000927
Misha Brukman0313e0b2004-06-21 21:53:56 +0000928 Out << "}\n";
Chris Lattner007377f2001-09-07 16:36:04 +0000929 }
930
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000931 Machine.purgeFunction();
Chris Lattner00950542001-06-06 20:29:01 +0000932}
933
Misha Brukmanab5c6002004-03-02 00:22:19 +0000934/// printArgument - This member is called for every argument that is passed into
935/// the function. Simply print it out
936///
Chris Lattner73e21422002-04-09 19:48:49 +0000937void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner00950542001-06-06 20:29:01 +0000938 // Insert commas as we go... the first arg doesn't get a comma
Misha Brukman0313e0b2004-06-21 21:53:56 +0000939 if (Arg != &Arg->getParent()->afront()) Out << ", ";
Chris Lattner00950542001-06-06 20:29:01 +0000940
941 // Output type...
Chris Lattnerc1824992001-10-29 16:05:51 +0000942 printType(Arg->getType());
Chris Lattner00950542001-06-06 20:29:01 +0000943
944 // Output name, if available...
945 if (Arg->hasName())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000946 Out << ' ' << getLLVMName(Arg->getName());
Chris Lattner00950542001-06-06 20:29:01 +0000947}
948
Misha Brukmanab5c6002004-03-02 00:22:19 +0000949/// printBasicBlock - This member is called for each basic block in a method.
950///
Chris Lattnerc1824992001-10-29 16:05:51 +0000951void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner00950542001-06-06 20:29:01 +0000952 if (BB->hasName()) { // Print out the label if it exists...
Misha Brukman0313e0b2004-06-21 21:53:56 +0000953 Out << "\n" << BB->getName() << ':';
Chris Lattnerafc38682002-05-14 16:02:05 +0000954 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukman0313e0b2004-06-21 21:53:56 +0000955 Out << "\n; <label>:";
Chris Lattner69566452004-06-09 19:41:19 +0000956 int Slot = Machine.getSlot(BB);
957 if (Slot != -1)
Misha Brukman0313e0b2004-06-21 21:53:56 +0000958 Out << Slot;
Chris Lattner69566452004-06-09 19:41:19 +0000959 else
Misha Brukman0313e0b2004-06-21 21:53:56 +0000960 Out << "<badref>";
Chris Lattner061269b2002-10-02 19:38:55 +0000961 }
Chris Lattner4e4d8622003-11-20 00:09:43 +0000962
963 if (BB->getParent() == 0)
Misha Brukman0313e0b2004-06-21 21:53:56 +0000964 Out << "\t\t; Error: Block without parent!";
Chris Lattner4e4d8622003-11-20 00:09:43 +0000965 else {
966 if (BB != &BB->getParent()->front()) { // Not the entry block?
967 // Output predecessors for the block...
Misha Brukman0313e0b2004-06-21 21:53:56 +0000968 Out << "\t\t;";
Chris Lattner4e4d8622003-11-20 00:09:43 +0000969 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
970
971 if (PI == PE) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000972 Out << " No predecessors!";
Chris Lattner4e4d8622003-11-20 00:09:43 +0000973 } else {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000974 Out << " preds =";
Chris Lattner40efcec2003-11-16 22:59:57 +0000975 writeOperand(*PI, false, true);
Chris Lattner4e4d8622003-11-20 00:09:43 +0000976 for (++PI; PI != PE; ++PI) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000977 Out << ',';
Chris Lattner4e4d8622003-11-20 00:09:43 +0000978 writeOperand(*PI, false, true);
979 }
Chris Lattner40efcec2003-11-16 22:59:57 +0000980 }
Chris Lattner061269b2002-10-02 19:38:55 +0000981 }
Chris Lattner00950542001-06-06 20:29:01 +0000982 }
Chris Lattnerafc38682002-05-14 16:02:05 +0000983
Misha Brukman0313e0b2004-06-21 21:53:56 +0000984 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000985
Misha Brukman0313e0b2004-06-21 21:53:56 +0000986 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000987
Chris Lattner007377f2001-09-07 16:36:04 +0000988 // Output all of the instructions in the basic block...
Chris Lattner7e708292002-06-25 16:13:24 +0000989 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
990 printInstruction(*I);
Chris Lattner9f717ef2004-03-08 18:51:45 +0000991
Misha Brukman0313e0b2004-06-21 21:53:56 +0000992 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner00950542001-06-06 20:29:01 +0000993}
994
Chris Lattnere02fa852001-10-13 06:42:36 +0000995
Misha Brukmanab5c6002004-03-02 00:22:19 +0000996/// printInfoComment - Print a little comment after the instruction indicating
997/// which slot it occupies.
998///
Chris Lattner7e708292002-06-25 16:13:24 +0000999void AssemblyWriter::printInfoComment(const Value &V) {
1000 if (V.getType() != Type::VoidTy) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001001 Out << "\t\t; <";
Misha Brukman40c732c2004-06-04 21:11:51 +00001002 printType(V.getType()) << '>';
Chris Lattnere02fa852001-10-13 06:42:36 +00001003
Chris Lattner7e708292002-06-25 16:13:24 +00001004 if (!V.hasName()) {
Chris Lattner69566452004-06-09 19:41:19 +00001005 int SlotNum = Machine.getSlot(&V);
1006 if (SlotNum == -1)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001007 Out << ":<badref>";
Reid Spencerfc621e22004-06-09 15:26:53 +00001008 else
Misha Brukman0313e0b2004-06-21 21:53:56 +00001009 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattnere02fa852001-10-13 06:42:36 +00001010 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001011 Out << " [#uses=" << V.use_size() << ']'; // Output # uses
Chris Lattnere02fa852001-10-13 06:42:36 +00001012 }
1013}
1014
Reid Spencerfc621e22004-06-09 15:26:53 +00001015/// printInstruction - This member is called for each Instruction in a function..
Misha Brukmanab5c6002004-03-02 00:22:19 +00001016///
Chris Lattner7e708292002-06-25 16:13:24 +00001017void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001018 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001019
Misha Brukman0313e0b2004-06-21 21:53:56 +00001020 Out << "\t";
Chris Lattner00950542001-06-06 20:29:01 +00001021
1022 // Print out name if it exists...
Chris Lattner7e708292002-06-25 16:13:24 +00001023 if (I.hasName())
Misha Brukman0313e0b2004-06-21 21:53:56 +00001024 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner00950542001-06-06 20:29:01 +00001025
Chris Lattnere5e475e2003-09-08 17:45:59 +00001026 // If this is a volatile load or store, print out the volatile marker
1027 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
1028 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()))
Misha Brukman0313e0b2004-06-21 21:53:56 +00001029 Out << "volatile ";
Chris Lattnere5e475e2003-09-08 17:45:59 +00001030
Chris Lattner00950542001-06-06 20:29:01 +00001031 // Print out the opcode...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001032 Out << I.getOpcodeName();
Chris Lattner00950542001-06-06 20:29:01 +00001033
1034 // Print out the type of the operands...
Chris Lattner7e708292002-06-25 16:13:24 +00001035 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner00950542001-06-06 20:29:01 +00001036
1037 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner7e708292002-06-25 16:13:24 +00001038 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1039 writeOperand(I.getOperand(2), true);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001040 Out << ',';
Chris Lattner00950542001-06-06 20:29:01 +00001041 writeOperand(Operand, true);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001042 Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001043 writeOperand(I.getOperand(1), true);
Chris Lattner00950542001-06-06 20:29:01 +00001044
Chris Lattner94dc1f22002-04-13 18:34:38 +00001045 } else if (isa<SwitchInst>(I)) {
Chris Lattner00950542001-06-06 20:29:01 +00001046 // Special case switch statement to get formatting nice and correct...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001047 writeOperand(Operand , true); Out << ',';
1048 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner00950542001-06-06 20:29:01 +00001049
Chris Lattner7e708292002-06-25 16:13:24 +00001050 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001051 Out << "\n\t\t";
1052 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001053 writeOperand(I.getOperand(op+1), true);
Chris Lattner00950542001-06-06 20:29:01 +00001054 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001055 Out << "\n\t]";
Chris Lattnerb00c5822001-10-02 03:41:24 +00001056 } else if (isa<PHINode>(I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001057 Out << ' ';
Chris Lattner7e708292002-06-25 16:13:24 +00001058 printType(I.getType());
Misha Brukman0313e0b2004-06-21 21:53:56 +00001059 Out << ' ';
Chris Lattner00950542001-06-06 20:29:01 +00001060
Chris Lattner7e708292002-06-25 16:13:24 +00001061 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001062 if (op) Out << ", ";
1063 Out << '[';
1064 writeOperand(I.getOperand(op ), false); Out << ',';
1065 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattnerc24d2082001-06-11 15:04:20 +00001066 }
Chris Lattnere02fa852001-10-13 06:42:36 +00001067 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001068 Out << " void";
Chris Lattnere02fa852001-10-13 06:42:36 +00001069 } else if (isa<CallInst>(I)) {
Chris Lattner7a012292003-08-05 15:34:45 +00001070 const PointerType *PTy = cast<PointerType>(Operand->getType());
1071 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1072 const Type *RetTy = FTy->getReturnType();
Chris Lattner268de042001-11-06 21:28:12 +00001073
Chris Lattner7a012292003-08-05 15:34:45 +00001074 // If possible, print out the short form of the call instruction. We can
Chris Lattnerb5794002002-04-07 22:49:37 +00001075 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner7a012292003-08-05 15:34:45 +00001076 // and if the return type is not a pointer to a function.
Chris Lattner268de042001-11-06 21:28:12 +00001077 //
Chris Lattner7a012292003-08-05 15:34:45 +00001078 if (!FTy->isVarArg() &&
Chris Lattner94dc1f22002-04-13 18:34:38 +00001079 (!isa<PointerType>(RetTy) ||
Chris Lattnerc1b27182002-07-25 20:58:51 +00001080 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001081 Out << ' '; printType(RetTy);
Chris Lattner268de042001-11-06 21:28:12 +00001082 writeOperand(Operand, false);
1083 } else {
1084 writeOperand(Operand, true);
1085 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001086 Out << '(';
Chris Lattner7e708292002-06-25 16:13:24 +00001087 if (I.getNumOperands() > 1) writeOperand(I.getOperand(1), true);
1088 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001089 Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001090 writeOperand(I.getOperand(op), true);
Chris Lattner00950542001-06-06 20:29:01 +00001091 }
1092
Misha Brukman0313e0b2004-06-21 21:53:56 +00001093 Out << " )";
Chris Lattner7e708292002-06-25 16:13:24 +00001094 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner7a012292003-08-05 15:34:45 +00001095 const PointerType *PTy = cast<PointerType>(Operand->getType());
1096 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1097 const Type *RetTy = FTy->getReturnType();
1098
1099 // If possible, print out the short form of the invoke instruction. We can
1100 // only do this if the first argument is a pointer to a nonvararg function,
1101 // and if the return type is not a pointer to a function.
1102 //
1103 if (!FTy->isVarArg() &&
1104 (!isa<PointerType>(RetTy) ||
1105 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001106 Out << ' '; printType(RetTy);
Chris Lattner7a012292003-08-05 15:34:45 +00001107 writeOperand(Operand, false);
1108 } else {
1109 writeOperand(Operand, true);
1110 }
1111
Misha Brukman0313e0b2004-06-21 21:53:56 +00001112 Out << '(';
Chris Lattner7e708292002-06-25 16:13:24 +00001113 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
1114 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001115 Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001116 writeOperand(I.getOperand(op), true);
Chris Lattnere02fa852001-10-13 06:42:36 +00001117 }
1118
Misha Brukman0313e0b2004-06-21 21:53:56 +00001119 Out << " )\n\t\t\tto";
Chris Lattnere02fa852001-10-13 06:42:36 +00001120 writeOperand(II->getNormalDest(), true);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001121 Out << " unwind";
Chris Lattneraeb2a1d2004-02-08 21:44:31 +00001122 writeOperand(II->getUnwindDest(), true);
Chris Lattnere02fa852001-10-13 06:42:36 +00001123
Chris Lattner7e708292002-06-25 16:13:24 +00001124 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001125 Out << ' ';
Chris Lattner94dc1f22002-04-13 18:34:38 +00001126 printType(AI->getType()->getElementType());
1127 if (AI->isArrayAllocation()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001128 Out << ',';
Chris Lattner94dc1f22002-04-13 18:34:38 +00001129 writeOperand(AI->getArraySize(), true);
Chris Lattner00950542001-06-06 20:29:01 +00001130 }
Chris Lattnere02fa852001-10-13 06:42:36 +00001131 } else if (isa<CastInst>(I)) {
Chris Lattner41495a22003-11-17 01:17:04 +00001132 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukman0313e0b2004-06-21 21:53:56 +00001133 Out << " to ";
Chris Lattner7e708292002-06-25 16:13:24 +00001134 printType(I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +00001135 } else if (isa<VAArgInst>(I)) {
Chris Lattner41495a22003-11-17 01:17:04 +00001136 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukman0313e0b2004-06-21 21:53:56 +00001137 Out << ", ";
Chris Lattner8f77dae2003-05-08 02:44:12 +00001138 printType(I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +00001139 } else if (const VANextInst *VAN = dyn_cast<VANextInst>(&I)) {
Chris Lattner41495a22003-11-17 01:17:04 +00001140 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukman0313e0b2004-06-21 21:53:56 +00001141 Out << ", ";
Chris Lattner4d45bd02003-10-18 05:57:43 +00001142 printType(VAN->getArgType());
Chris Lattner00950542001-06-06 20:29:01 +00001143 } else if (Operand) { // Print the normal way...
1144
1145 // PrintAllTypes - Instructions who have operands of all the same type
1146 // omit the type from all but the first operand. If the instruction has
1147 // different type operands (for example br), then they are all printed.
1148 bool PrintAllTypes = false;
1149 const Type *TheType = Operand->getType();
Chris Lattner00950542001-06-06 20:29:01 +00001150
Chris Lattnercfdd1482004-03-12 05:53:14 +00001151 // Shift Left & Right print both types even for Ubyte LHS, and select prints
1152 // types even if all operands are bools.
1153 if (isa<ShiftInst>(I) || isa<SelectInst>(I)) {
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001154 PrintAllTypes = true;
1155 } else {
1156 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1157 Operand = I.getOperand(i);
1158 if (Operand->getType() != TheType) {
1159 PrintAllTypes = true; // We have differing types! Print them all!
1160 break;
1161 }
Chris Lattner00950542001-06-06 20:29:01 +00001162 }
1163 }
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001164
Chris Lattnerc1824992001-10-29 16:05:51 +00001165 if (!PrintAllTypes) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001166 Out << ' ';
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001167 printType(TheType);
Chris Lattnerc1824992001-10-29 16:05:51 +00001168 }
Chris Lattner00950542001-06-06 20:29:01 +00001169
Chris Lattner7e708292002-06-25 16:13:24 +00001170 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001171 if (i) Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001172 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner00950542001-06-06 20:29:01 +00001173 }
1174 }
1175
Chris Lattnere02fa852001-10-13 06:42:36 +00001176 printInfoComment(I);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001177 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +00001178}
1179
1180
1181//===----------------------------------------------------------------------===//
1182// External Interface declarations
1183//===----------------------------------------------------------------------===//
1184
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001185void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001186 SlotMachine SlotTable(this);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001187 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001188 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001189}
1190
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001191void GlobalVariable::print(std::ostream &o) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001192 SlotMachine SlotTable(getParent());
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001193 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001194 W.write(this);
Chris Lattnerb0e45232001-09-10 20:08:19 +00001195}
1196
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001197void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001198 SlotMachine SlotTable(getParent());
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001199 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner00950542001-06-06 20:29:01 +00001200
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001201 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001202}
1203
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001204void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001205 SlotMachine SlotTable(getParent());
Chris Lattnerc1824992001-10-29 16:05:51 +00001206 AssemblyWriter W(o, SlotTable,
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001207 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001208 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001209}
1210
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001211void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001212 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001213 SlotMachine SlotTable(F);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001214 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner00950542001-06-06 20:29:01 +00001215
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001216 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001217}
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001218
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001219void Constant::print(std::ostream &o) const {
1220 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner3bc06b32002-09-10 15:53:49 +00001221
Misha Brukman40c732c2004-06-04 21:11:51 +00001222 o << ' ' << getType()->getDescription() << ' ';
Chris Lattner66e810b2002-04-18 18:53:13 +00001223
Chris Lattner7b13f562003-05-08 02:08:14 +00001224 std::map<const Type *, std::string> TypeTable;
Chris Lattner66e810b2002-04-18 18:53:13 +00001225 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001226}
1227
1228void Type::print(std::ostream &o) const {
1229 if (this == 0)
1230 o << "<null Type>";
1231 else
1232 o << getDescription();
1233}
1234
Chris Lattner73e21422002-04-09 19:48:49 +00001235void Argument::print(std::ostream &o) const {
Chris Lattner144d9ba2004-07-13 23:14:34 +00001236 WriteAsOperand(o, this, true, true,
1237 getParent() ? getParent()->getParent() : 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001238}
1239
Reid Spencerfa452c02004-05-25 18:14:38 +00001240// Value::dump - allow easy printing of Values from the debugger.
1241// Located here because so much of the needed functionality is here.
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001242void Value::dump() const { print(std::cerr); }
Reid Spencerfa452c02004-05-25 18:14:38 +00001243
1244// Type::dump - allow easy printing of Values from the debugger.
1245// Located here because so much of the needed functionality is here.
Reid Spencer9231ac82004-05-25 08:53:40 +00001246void Type::dump() const { print(std::cerr); }
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001247
1248//===----------------------------------------------------------------------===//
1249// CachedWriter Class Implementation
1250//===----------------------------------------------------------------------===//
1251
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001252void CachedWriter::setModule(const Module *M) {
1253 delete SC; delete AW;
1254 if (M) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001255 SC = new SlotMachine(M );
Misha Brukman40c732c2004-06-04 21:11:51 +00001256 AW = new AssemblyWriter(Out, *SC, M, 0);
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001257 } else {
1258 SC = 0; AW = 0;
1259 }
1260}
1261
1262CachedWriter::~CachedWriter() {
1263 delete AW;
1264 delete SC;
1265}
1266
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001267CachedWriter &CachedWriter::operator<<(const Value &V) {
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001268 assert(AW && SC && "CachedWriter does not have a current module!");
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001269 if (const Instruction *I = dyn_cast<Instruction>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001270 AW->write(I);
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001271 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001272 AW->write(BB);
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001273 else if (const Function *F = dyn_cast<Function>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001274 AW->write(F);
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001275 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001276 AW->write(GV);
Chris Lattnerfae098a2004-06-26 19:40:40 +00001277 else
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001278 AW->writeOperand(&V, true, true);
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001279 return *this;
1280}
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001281
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001282CachedWriter& CachedWriter::operator<<(const Type &Ty) {
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001283 if (SymbolicTypes) {
1284 const Module *M = AW->getModule();
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001285 if (M) WriteTypeSymbolic(Out, &Ty, M);
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001286 } else {
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001287 AW->write(&Ty);
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001288 }
1289 return *this;
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001290}
Misha Brukmane5242de2004-04-28 19:24:28 +00001291
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001292//===----------------------------------------------------------------------===//
1293//===-- SlotMachine Implementation
1294//===----------------------------------------------------------------------===//
1295
1296#if 0
1297#define SC_DEBUG(X) std::cerr << X
1298#else
1299#define SC_DEBUG(X)
1300#endif
1301
1302// Module level constructor. Causes the contents of the Module (sans functions)
1303// to be added to the slot table.
1304SlotMachine::SlotMachine(const Module *M)
Reid Spencerb03de0c2004-05-26 21:56:09 +00001305 : TheModule(M) ///< Saved for lazy initialization.
1306 , TheFunction(0)
Reid Spencer28531c72004-08-16 07:46:33 +00001307 , FunctionProcessed(false)
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001308 , mMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001309 , mTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001310 , fMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001311 , fTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001312{
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001313}
1314
1315// Function level constructor. Causes the contents of the Module and the one
1316// function provided to be added to the slot table.
1317SlotMachine::SlotMachine(const Function *F )
Reid Spencerb03de0c2004-05-26 21:56:09 +00001318 : TheModule( F ? F->getParent() : 0 ) ///< Saved for lazy initialization
1319 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencer28531c72004-08-16 07:46:33 +00001320 , FunctionProcessed(false)
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001321 , mMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001322 , mTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001323 , fMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001324 , fTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001325{
Reid Spencerb03de0c2004-05-26 21:56:09 +00001326}
1327
1328inline void SlotMachine::initialize(void) {
1329 if ( TheModule) {
1330 processModule();
1331 TheModule = 0; ///< Prevent re-processing next time we're called.
1332 }
Reid Spencer28531c72004-08-16 07:46:33 +00001333 if ( TheFunction && ! FunctionProcessed) {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001334 processFunction();
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001335 }
1336}
1337
1338// Iterate through all the global variables, functions, and global
1339// variable initializers and create slots for them.
1340void SlotMachine::processModule() {
1341 SC_DEBUG("begin processModule!\n");
1342
1343 // Add all of the global variables to the value table...
1344 for (Module::const_giterator I = TheModule->gbegin(), E = TheModule->gend();
1345 I != E; ++I)
1346 createSlot(I);
1347
1348 // Add all the functions to the table
1349 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1350 I != E; ++I)
1351 createSlot(I);
1352
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001353 SC_DEBUG("end processModule!\n");
1354}
1355
1356
Reid Spencerb03de0c2004-05-26 21:56:09 +00001357// Process the arguments, basic blocks, and instructions of a function.
1358void SlotMachine::processFunction() {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001359 SC_DEBUG("begin processFunction!\n");
1360
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001361 // Add all the function arguments
Reid Spencerb03de0c2004-05-26 21:56:09 +00001362 for(Function::const_aiterator AI = TheFunction->abegin(),
1363 AE = TheFunction->aend(); AI != AE; ++AI)
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001364 createSlot(AI);
1365
1366 SC_DEBUG("Inserting Instructions:\n");
1367
1368 // Add all of the basic blocks and instructions
Reid Spencerb03de0c2004-05-26 21:56:09 +00001369 for (Function::const_iterator BB = TheFunction->begin(),
1370 E = TheFunction->end(); BB != E; ++BB) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001371 createSlot(BB);
1372 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
1373 createSlot(I);
1374 }
1375 }
1376
Reid Spencer28531c72004-08-16 07:46:33 +00001377 FunctionProcessed = true;
1378
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001379 SC_DEBUG("end processFunction!\n");
1380}
1381
1382// Clean up after incorporating a function. This is the only way
Reid Spencerb03de0c2004-05-26 21:56:09 +00001383// to get out of the function incorporation state that affects the
1384// getSlot/createSlot lock. Function incorporation state is indicated
1385// by TheFunction != 0.
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001386void SlotMachine::purgeFunction() {
1387 SC_DEBUG("begin purgeFunction!\n");
1388 fMap.clear(); // Simply discard the function level map
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001389 fTypes.clear();
Reid Spencerb03de0c2004-05-26 21:56:09 +00001390 TheFunction = 0;
Reid Spencer28531c72004-08-16 07:46:33 +00001391 FunctionProcessed = false;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001392 SC_DEBUG("end purgeFunction!\n");
1393}
1394
1395/// Get the slot number for a value. This function will assert if you
1396/// ask for a Value that hasn't previously been inserted with createSlot.
1397/// Types are forbidden because Type does not inherit from Value (any more).
Chris Lattner69566452004-06-09 19:41:19 +00001398int SlotMachine::getSlot(const Value *V) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001399 assert( V && "Can't get slot for null Value" );
Reid Spencerb03de0c2004-05-26 21:56:09 +00001400 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1401 "Can't insert a non-GlobalValue Constant into SlotMachine");
1402
1403 // Check for uninitialized state and do lazy initialization
1404 this->initialize();
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001405
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001406 // Get the type of the value
1407 const Type* VTy = V->getType();
1408
1409 // Find the type plane in the module map
1410 TypedPlanes::const_iterator MI = mMap.find(VTy);
1411
Reid Spencerb03de0c2004-05-26 21:56:09 +00001412 if ( TheFunction ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001413 // Lookup the type in the function map too
1414 TypedPlanes::const_iterator FI = fMap.find(VTy);
1415 // If there is a corresponding type plane in the function map
1416 if ( FI != fMap.end() ) {
1417 // Lookup the Value in the function map
1418 ValueMap::const_iterator FVI = FI->second.map.find(V);
1419 // If the value doesn't exist in the function map
1420 if ( FVI == FI->second.map.end() ) {
Chris Lattnere9e326e2004-06-09 22:22:10 +00001421 // Look up the value in the module map.
1422 if (MI == mMap.end()) return -1;
Reid Spencerb03de0c2004-05-26 21:56:09 +00001423 ValueMap::const_iterator MVI = MI->second.map.find(V);
1424 // If we didn't find it, it wasn't inserted
Chris Lattner69566452004-06-09 19:41:19 +00001425 if (MVI == MI->second.map.end()) return -1;
Reid Spencerb03de0c2004-05-26 21:56:09 +00001426 assert( MVI != MI->second.map.end() && "Value not found");
1427 // We found it only at the module level
1428 return MVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001429
1430 // else the value exists in the function map
1431 } else {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001432 // Return the slot number as the module's contribution to
1433 // the type plane plus the index in the function's contribution
1434 // to the type plane.
Chris Lattnerd1cd3282004-06-15 21:07:32 +00001435 if (MI != mMap.end())
1436 return MI->second.next_slot + FVI->second;
1437 else
1438 return FVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001439 }
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001440 }
1441 }
1442
Reid Spencerfc621e22004-06-09 15:26:53 +00001443 // N.B. Can get here only if either !TheFunction or the function doesn't
1444 // have a corresponding type plane for the Value
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001445
1446 // Make sure the type plane exists
Chris Lattner69566452004-06-09 19:41:19 +00001447 if (MI == mMap.end()) return -1;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001448 // Lookup the value in the module's map
1449 ValueMap::const_iterator MVI = MI->second.map.find(V);
1450 // Make sure we found it.
Chris Lattner69566452004-06-09 19:41:19 +00001451 if (MVI == MI->second.map.end()) return -1;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001452 // Return it.
1453 return MVI->second;
1454}
1455
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001456/// Get the slot number for a value. This function will assert if you
1457/// ask for a Value that hasn't previously been inserted with createSlot.
1458/// Types are forbidden because Type does not inherit from Value (any more).
1459int SlotMachine::getSlot(const Type *Ty) {
1460 assert( Ty && "Can't get slot for null Type" );
1461
1462 // Check for uninitialized state and do lazy initialization
1463 this->initialize();
1464
1465 if ( TheFunction ) {
1466 // Lookup the Type in the function map
1467 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1468 // If the Type doesn't exist in the function map
1469 if ( FTI == fTypes.map.end() ) {
1470 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1471 // If we didn't find it, it wasn't inserted
1472 if (MTI == mTypes.map.end())
1473 return -1;
1474 // We found it only at the module level
1475 return MTI->second;
1476
1477 // else the value exists in the function map
1478 } else {
1479 // Return the slot number as the module's contribution to
1480 // the type plane plus the index in the function's contribution
1481 // to the type plane.
1482 return mTypes.next_slot + FTI->second;
1483 }
1484 }
1485
1486 // N.B. Can get here only if either !TheFunction
1487
1488 // Lookup the value in the module's map
1489 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1490 // Make sure we found it.
1491 if (MTI == mTypes.map.end()) return -1;
1492 // Return it.
1493 return MTI->second;
1494}
1495
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001496// Create a new slot, or return the existing slot if it is already
1497// inserted. Note that the logic here parallels getSlot but instead
1498// of asserting when the Value* isn't found, it inserts the value.
1499unsigned SlotMachine::createSlot(const Value *V) {
1500 assert( V && "Can't insert a null Value to SlotMachine");
Reid Spencerb03de0c2004-05-26 21:56:09 +00001501 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1502 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001503
1504 const Type* VTy = V->getType();
1505
1506 // Just ignore void typed things
1507 if (VTy == Type::VoidTy) return 0; // FIXME: Wrong return value!
1508
1509 // Look up the type plane for the Value's type from the module map
1510 TypedPlanes::const_iterator MI = mMap.find(VTy);
1511
Reid Spencerb03de0c2004-05-26 21:56:09 +00001512 if ( TheFunction ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001513 // Get the type plane for the Value's type from the function map
1514 TypedPlanes::const_iterator FI = fMap.find(VTy);
1515 // If there is a corresponding type plane in the function map
1516 if ( FI != fMap.end() ) {
1517 // Lookup the Value in the function map
1518 ValueMap::const_iterator FVI = FI->second.map.find(V);
1519 // If the value doesn't exist in the function map
1520 if ( FVI == FI->second.map.end() ) {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001521 // If there is no corresponding type plane in the module map
1522 if ( MI == mMap.end() )
1523 return insertValue(V);
1524 // Look up the value in the module map
1525 ValueMap::const_iterator MVI = MI->second.map.find(V);
1526 // If we didn't find it, it wasn't inserted
1527 if ( MVI == MI->second.map.end() )
1528 return insertValue(V);
1529 else
1530 // We found it only at the module level
1531 return MVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001532
1533 // else the value exists in the function map
1534 } else {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001535 if ( MI == mMap.end() )
1536 return FVI->second;
1537 else
1538 // Return the slot number as the module's contribution to
1539 // the type plane plus the index in the function's contribution
1540 // to the type plane.
1541 return MI->second.next_slot + FVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001542 }
1543
1544 // else there is not a corresponding type plane in the function map
1545 } else {
1546 // If the type plane doesn't exists at the module level
1547 if ( MI == mMap.end() ) {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001548 return insertValue(V);
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001549 // else type plane exists at the module level, examine it
1550 } else {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001551 // Look up the value in the module's map
1552 ValueMap::const_iterator MVI = MI->second.map.find(V);
1553 // If we didn't find it there either
1554 if ( MVI == MI->second.map.end() )
1555 // Return the slot number as the module's contribution to
1556 // the type plane plus the index of the function map insertion.
1557 return MI->second.next_slot + insertValue(V);
1558 else
1559 return MVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001560 }
1561 }
1562 }
1563
Reid Spencerb03de0c2004-05-26 21:56:09 +00001564 // N.B. Can only get here if !TheFunction
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001565
1566 // If the module map's type plane is not for the Value's type
1567 if ( MI != mMap.end() ) {
1568 // Lookup the value in the module's map
1569 ValueMap::const_iterator MVI = MI->second.map.find(V);
1570 if ( MVI != MI->second.map.end() )
1571 return MVI->second;
1572 }
1573
1574 return insertValue(V);
1575}
1576
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001577// Create a new slot, or return the existing slot if it is already
1578// inserted. Note that the logic here parallels getSlot but instead
1579// of asserting when the Value* isn't found, it inserts the value.
1580unsigned SlotMachine::createSlot(const Type *Ty) {
1581 assert( Ty && "Can't insert a null Type to SlotMachine");
1582
1583 if ( TheFunction ) {
1584 // Lookup the Type in the function map
1585 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1586 // If the type doesn't exist in the function map
1587 if ( FTI == fTypes.map.end() ) {
1588 // Look up the type in the module map
1589 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1590 // If we didn't find it, it wasn't inserted
1591 if ( MTI == mTypes.map.end() )
1592 return insertValue(Ty);
1593 else
1594 // We found it only at the module level
1595 return MTI->second;
1596
1597 // else the value exists in the function map
1598 } else {
1599 // Return the slot number as the module's contribution to
1600 // the type plane plus the index in the function's contribution
1601 // to the type plane.
1602 return mTypes.next_slot + FTI->second;
1603 }
1604 }
1605
1606 // N.B. Can only get here if !TheFunction
1607
1608 // Lookup the type in the module's map
1609 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1610 if ( MTI != mTypes.map.end() )
1611 return MTI->second;
1612
1613 return insertValue(Ty);
1614}
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001615
1616// Low level insert function. Minimal checking is done. This
1617// function is just for the convenience of createSlot (above).
1618unsigned SlotMachine::insertValue(const Value *V ) {
1619 assert(V && "Can't insert a null Value into SlotMachine!");
Reid Spencerb03de0c2004-05-26 21:56:09 +00001620 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1621 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001622
Reid Spencerb03de0c2004-05-26 21:56:09 +00001623 // If this value does not contribute to a plane (is void)
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001624 // or if the value already has a name then ignore it.
Reid Spencerb03de0c2004-05-26 21:56:09 +00001625 if (V->getType() == Type::VoidTy || V->hasName() ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001626 SC_DEBUG("ignored value " << *V << "\n");
1627 return 0; // FIXME: Wrong return value
1628 }
1629
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001630 const Type *VTy = V->getType();
1631 unsigned DestSlot = 0;
1632
Reid Spencerb03de0c2004-05-26 21:56:09 +00001633 if ( TheFunction ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001634 TypedPlanes::iterator I = fMap.find( VTy );
1635 if ( I == fMap.end() )
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001636 I = fMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001637 DestSlot = I->second.map[V] = I->second.next_slot++;
1638 } else {
1639 TypedPlanes::iterator I = mMap.find( VTy );
1640 if ( I == mMap.end() )
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001641 I = mMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001642 DestSlot = I->second.map[V] = I->second.next_slot++;
1643 }
1644
1645 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
Reid Spencerb03de0c2004-05-26 21:56:09 +00001646 DestSlot << " [");
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001647 // G = Global, C = Constant, T = Type, F = Function, o = other
Reid Spencer79703962004-07-17 23:47:01 +00001648 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : (isa<Function>(V) ? 'F' :
1649 (isa<Constant>(V) ? 'C' : 'o'))));
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001650 SC_DEBUG("]\n");
1651 return DestSlot;
1652}
1653
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001654// Low level insert function. Minimal checking is done. This
1655// function is just for the convenience of createSlot (above).
1656unsigned SlotMachine::insertValue(const Type *Ty ) {
1657 assert(Ty && "Can't insert a null Type into SlotMachine!");
1658
1659 unsigned DestSlot = 0;
1660
1661 if ( TheFunction ) {
1662 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1663 } else {
1664 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1665 }
1666 SC_DEBUG(" Inserting type [" << DestSlot << "] = " << Ty << "\n");
1667 return DestSlot;
1668}
1669
Reid Spencer9231ac82004-05-25 08:53:40 +00001670// vim: sw=2