blob: e06bf50a9d183a895028c92c530443bf266037f7 [file] [log] [blame]
Chris Lattnerf7e79482002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
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.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Assembly/Writer.h
11//
Chris Lattner189088e2002-04-12 18:21:53 +000012// Note that these routines must be extremely tolerant of various errors in the
Chris Lattnerf70da102003-05-08 02:44:12 +000013// LLVM code, because it can be used for debugging transformations.
Chris Lattner189088e2002-04-12 18:21:53 +000014//
Chris Lattner2f7c9632001-06-06 20:29:01 +000015//===----------------------------------------------------------------------===//
16
Chris 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 Lattnerf7b6d312005-05-06 20:26:43 +000021#include "llvm/CallingConv.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000022#include "llvm/Constants.h"
Chris Lattner913d18f2002-04-29 18:46:50 +000023#include "llvm/DerivedTypes.h"
Vikram S. Adveb952b542002-07-14 23:14:45 +000024#include "llvm/Instruction.h"
Misha Brukman2d3fa9e2004-07-29 16:53:53 +000025#include "llvm/Instructions.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000026#include "llvm/Module.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000027#include "llvm/SymbolTable.h"
Misha Brukman4685e262004-04-28 15:31:21 +000028#include "llvm/Assembly/Writer.h"
Chris Lattner58185f22002-10-02 19:38:55 +000029#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000030#include "llvm/ADT/StringExtras.h"
31#include "llvm/ADT/STLExtras.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000032#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000033using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000034
Chris Lattner60a7dd12004-07-15 02:51:31 +000035namespace llvm {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000036
Reid Spencer294715b2005-05-15 16:13:11 +000037// Make virtual table appear in this compilation unit.
38AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
39
Reid Spencer16f2f7f2004-05-26 07:18:52 +000040/// This class provides computation of slot numbers for LLVM Assembly writing.
41/// @brief LLVM Assembly Writing Slot Computation.
42class SlotMachine {
43
44/// @name Types
45/// @{
46public:
47
48 /// @brief A mapping of Values to slot numbers
49 typedef std::map<const Value*, unsigned> ValueMap;
Reid Spencer58d30f22004-07-04 11:50:43 +000050 typedef std::map<const Type*, unsigned> TypeMap;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000051
52 /// @brief A plane with next slot number and ValueMap
Misha Brukmanb1c93172005-04-21 23:48:37 +000053 struct ValuePlane {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000054 unsigned next_slot; ///< The next slot number to use
55 ValueMap map; ///< The map of Value* -> unsigned
Reid Spencer58d30f22004-07-04 11:50:43 +000056 ValuePlane() { next_slot = 0; } ///< Make sure we start at 0
57 };
58
59 struct TypePlane {
60 unsigned next_slot;
61 TypeMap map;
62 TypePlane() { next_slot = 0; }
63 void clear() { map.clear(); next_slot = 0; }
Reid Spencer16f2f7f2004-05-26 07:18:52 +000064 };
65
66 /// @brief The map of planes by Type
Reid Spencer58d30f22004-07-04 11:50:43 +000067 typedef std::map<const Type*, ValuePlane> TypedPlanes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000068
69/// @}
70/// @name Constructors
71/// @{
72public:
73 /// @brief Construct from a module
74 SlotMachine(const Module *M );
75
76 /// @brief Construct from a function, starting out in incorp state.
77 SlotMachine(const Function *F );
78
79/// @}
80/// @name Accessors
81/// @{
82public:
83 /// Return the slot number of the specified value in it's type
84 /// plane. Its an error to ask for something not in the SlotMachine.
85 /// Its an error to ask for a Type*
Chris Lattner757ee0b2004-06-09 19:41:19 +000086 int getSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +000087 int getSlot(const Type*Ty);
Reid Spencer8beac692004-06-09 15:26:53 +000088
89 /// Determine if a Value has a slot or not
90 bool hasSlot(const Value* V);
Reid Spencer58d30f22004-07-04 11:50:43 +000091 bool hasSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000092
93/// @}
94/// @name Mutators
95/// @{
96public:
Misha Brukmanb1c93172005-04-21 23:48:37 +000097 /// If you'd like to deal with a function instead of just a module, use
Reid Spencer16f2f7f2004-05-26 07:18:52 +000098 /// this method to get its data into the SlotMachine.
Misha Brukmanb1c93172005-04-21 23:48:37 +000099 void incorporateFunction(const Function *F) {
100 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000101 FunctionProcessed = false;
102 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000103
Misha Brukmanb1c93172005-04-21 23:48:37 +0000104 /// After calling incorporateFunction, use this method to remove the
105 /// most recently incorporated function from the SlotMachine. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000106 /// will reset the state of the machine back to just the module contents.
107 void purgeFunction();
108
109/// @}
110/// @name Implementation Details
111/// @{
112private:
Reid Spencer56010e42004-05-26 21:56:09 +0000113 /// This function does the actual initialization.
114 inline void initialize();
115
Misha Brukmanb1c93172005-04-21 23:48:37 +0000116 /// Values can be crammed into here at will. If they haven't
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000117 /// been inserted already, they get inserted, otherwise they are ignored.
118 /// Either way, the slot number for the Value* is returned.
119 unsigned createSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +0000120 unsigned createSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000121
122 /// Insert a value into the value table. Return the slot number
123 /// that it now occupies. BadThings(TM) will happen if you insert a
Misha Brukmanb1c93172005-04-21 23:48:37 +0000124 /// Value that's already been inserted.
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000125 unsigned insertValue( const Value *V );
Reid Spencer58d30f22004-07-04 11:50:43 +0000126 unsigned insertValue( const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000127
128 /// Add all of the module level global variables (and their initializers)
129 /// and function declarations, but not the contents of those functions.
130 void processModule();
131
Reid Spencer56010e42004-05-26 21:56:09 +0000132 /// Add all of the functions arguments, basic blocks, and instructions
133 void processFunction();
134
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000135 SlotMachine(const SlotMachine &); // DO NOT IMPLEMENT
136 void operator=(const SlotMachine &); // DO NOT IMPLEMENT
137
138/// @}
139/// @name Data
140/// @{
141public:
142
143 /// @brief The module for which we are holding slot numbers
Reid Spencer56010e42004-05-26 21:56:09 +0000144 const Module* TheModule;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000145
Reid Spencer56010e42004-05-26 21:56:09 +0000146 /// @brief The function for which we are holding slot numbers
147 const Function* TheFunction;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000148 bool FunctionProcessed;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000149
150 /// @brief The TypePlanes map for the module level data
151 TypedPlanes mMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000152 TypePlane mTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000153
154 /// @brief The TypePlanes map for the function level data
155 TypedPlanes fMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000156 TypePlane fTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000157
158/// @}
159
160};
161
Chris Lattner60a7dd12004-07-15 02:51:31 +0000162} // end namespace llvm
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000163
Chris Lattnerc8b70922002-07-26 21:12:46 +0000164static RegisterPass<PrintModulePass>
165X("printm", "Print module to stderr",PassInfo::Analysis|PassInfo::Optimization);
166static RegisterPass<PrintFunctionPass>
167Y("print","Print function to stderr",PassInfo::Analysis|PassInfo::Optimization);
Chris Lattner7f8845a2002-07-23 18:07:49 +0000168
Misha Brukmanb1c93172005-04-21 23:48:37 +0000169static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000170 bool PrintName,
171 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000172 SlotMachine *Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000173
Misha Brukmanb1c93172005-04-21 23:48:37 +0000174static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer58d30f22004-07-04 11:50:43 +0000175 bool PrintName,
176 std::map<const Type *, std::string> &TypeTable,
177 SlotMachine *Machine);
178
Chris Lattnerb86620e2001-10-29 16:37:48 +0000179static const Module *getModuleFromVal(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000180 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000181 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000182 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000183 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000184 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner57698e22002-03-26 18:01:55 +0000185 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000186 return M ? M->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000187 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000188 return GV->getParent();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000189 return 0;
190}
191
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000192static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000193 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000194 return new SlotMachine(FA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000195 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000196 return new SlotMachine(I->getParent()->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000197 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000198 return new SlotMachine(BB->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000199 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000200 return new SlotMachine(GV->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000201 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000202 return new SlotMachine(Func);
Chris Lattner7bfee412001-10-29 16:05:51 +0000203 }
204 return 0;
205}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000206
Chris Lattner1c343042003-08-22 05:40:38 +0000207// getLLVMName - Turn the specified string into an 'LLVM name', which is either
208// prefixed with % (if the string only contains simple characters) or is
209// surrounded with ""'s (if it has special chars in it).
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000210static std::string getLLVMName(const std::string &Name,
211 bool prefixName = true) {
Chris Lattner1c343042003-08-22 05:40:38 +0000212 assert(!Name.empty() && "Cannot get empty name!");
213
214 // First character cannot start with a number...
215 if (Name[0] >= '0' && Name[0] <= '9')
216 return "\"" + Name + "\"";
217
218 // Scan to see if we have any characters that are not on the "white list"
219 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
220 char C = Name[i];
221 assert(C != '"' && "Illegal character in LLVM value name!");
222 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
223 C != '-' && C != '.' && C != '_')
224 return "\"" + Name + "\"";
225 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000226
Chris Lattner1c343042003-08-22 05:40:38 +0000227 // If we get here, then the identifier is legal to use as a "VarID".
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000228 if (prefixName)
229 return "%"+Name;
230 else
231 return Name;
Chris Lattner1c343042003-08-22 05:40:38 +0000232}
233
Chris Lattnerb86620e2001-10-29 16:37:48 +0000234
Misha Brukmanc566ca362004-03-02 00:22:19 +0000235/// fillTypeNameTable - If the module has a symbol table, take all global types
236/// and stuff their names into the TypeNames map.
237///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000238static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000239 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000240 if (!M) return;
241 const SymbolTable &ST = M->getSymbolTable();
Reid Spencere7e96712004-05-25 08:53:40 +0000242 SymbolTable::type_const_iterator TI = ST.type_begin();
243 for (; TI != ST.type_end(); ++TI ) {
244 // As a heuristic, don't insert pointer to primitive types, because
245 // they are used too often to have a single useful name.
246 //
247 const Type *Ty = cast<Type>(TI->second);
248 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000249 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
250 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencere7e96712004-05-25 08:53:40 +0000251 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000252 }
253}
254
255
256
Misha Brukmanb1c93172005-04-21 23:48:37 +0000257static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000258 std::vector<const Type *> &TypeStack,
259 std::map<const Type *, std::string> &TypeNames,
260 std::string & Result){
261 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)) {
262 Result += Ty->getDescription(); // Base case
263 return;
264 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000265
266 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000267 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000268 if (I != TypeNames.end()) {
269 Result += I->second;
270 return;
271 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000272
John Criswellcd116ba2004-06-01 14:54:08 +0000273 if (isa<OpaqueType>(Ty)) {
274 Result += "opaque";
275 return;
276 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000277
Chris Lattnerb86620e2001-10-29 16:37:48 +0000278 // Check to see if the Type is already on the stack...
279 unsigned Slot = 0, CurSize = TypeStack.size();
280 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
281
Misha Brukmanb1c93172005-04-21 23:48:37 +0000282 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000283 // that we have looped back to a type that we have previously visited.
284 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000285 if (Slot < CurSize) {
286 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
287 return;
288 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000289
290 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000291
Chris Lattner6b727592004-06-17 18:19:28 +0000292 switch (Ty->getTypeID()) {
Chris Lattner91db5822002-03-29 03:44:36 +0000293 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000294 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000295 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
296 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000297 for (FunctionType::param_iterator I = FTy->param_begin(),
298 E = FTy->param_end(); I != E; ++I) {
299 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000300 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000301 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000302 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000303 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000304 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000305 Result += "...";
306 }
307 Result += ")";
308 break;
309 }
310 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000311 const StructType *STy = cast<StructType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000312 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000313 for (StructType::element_iterator I = STy->element_begin(),
314 E = STy->element_end(); I != E; ++I) {
315 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000316 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000317 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000318 }
319 Result += " }";
320 break;
321 }
322 case Type::PointerTyID:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000323 calcTypeName(cast<PointerType>(Ty)->getElementType(),
John Criswellcd116ba2004-06-01 14:54:08 +0000324 TypeStack, TypeNames, Result);
325 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000326 break;
327 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000328 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000329 Result += "[" + utostr(ATy->getNumElements()) + " x ";
330 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
331 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000332 break;
333 }
Brian Gaeke02209042004-08-20 06:00:58 +0000334 case Type::PackedTyID: {
335 const PackedType *PTy = cast<PackedType>(Ty);
336 Result += "<" + utostr(PTy->getNumElements()) + " x ";
337 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
338 Result += ">";
339 break;
340 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000341 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000342 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000343 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000344 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000345 Result += "<unrecognized-type>";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000346 }
347
348 TypeStack.pop_back(); // Remove self from stack...
John Criswellcd116ba2004-06-01 14:54:08 +0000349 return;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000350}
351
352
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000353/// printTypeInt - The internal guts of printing out a type that has a
354/// potentially named portion.
355///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000356static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
357 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000358 // Primitive types always print out their description, regardless of whether
359 // they have been named or not.
360 //
Chris Lattner92d60532003-10-30 00:12:51 +0000361 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
362 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000363
364 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000365 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000366 if (I != TypeNames.end()) return Out << I->second;
367
368 // Otherwise we have a type that has not been named but is a derived type.
369 // Carefully recurse the type hierarchy to print out any contained symbolic
370 // names.
371 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000372 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000373 std::string TypeName;
374 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000375 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000376 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000377}
378
Chris Lattner34b95182001-10-31 04:33:19 +0000379
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000380/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
381/// type, iff there is an entry in the modules symbol table for the specified
382/// type or one of it's component types. This is slower than a simple x << Type
383///
Chris Lattner189d19f2003-11-21 20:23:48 +0000384std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
385 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000386 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000387
388 // If they want us to print out a type, attempt to make it symbolic if there
389 // is a symbol table in the module...
Chris Lattner98cf1f52002-11-20 18:36:02 +0000390 if (M) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000391 std::map<const Type *, std::string> TypeNames;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000392 fillTypeNameTable(M, TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000393
Chris Lattner72f866e2001-10-29 16:40:32 +0000394 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000395 } else {
Chris Lattner72f866e2001-10-29 16:40:32 +0000396 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000397 }
398}
399
Misha Brukmanb1c93172005-04-21 23:48:37 +0000400/// @brief Internal constant writer.
401static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000402 bool PrintName,
403 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000404 SlotMachine *Machine) {
Chris Lattner1e194682002-04-18 18:53:13 +0000405 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
406 Out << (CB == ConstantBool::True ? "true" : "false");
407 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
408 Out << CI->getValue();
409 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
410 Out << CI->getValue();
411 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
412 // We would like to output the FP constant value in exponential notation,
413 // but we cannot do this if doing so will lose precision. Check here to
414 // make sure that we only output it in exponential format if we can parse
415 // the value back and get the same value.
416 //
417 std::string StrVal = ftostr(CFP->getValue());
418
419 // Check to make sure that the stringized number is not some string like
420 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
421 // the string matches the "[-+]?[0-9]" regex.
422 //
423 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
424 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaeke87b4f072003-06-17 23:55:35 +0000425 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner1e194682002-04-18 18:53:13 +0000426 // Reparse stringized version!
427 if (atof(StrVal.c_str()) == CFP->getValue()) {
Chris Lattner472cc102005-01-04 01:56:57 +0000428 Out << StrVal;
429 return;
Chris Lattner1e194682002-04-18 18:53:13 +0000430 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000431
Chris Lattner1e194682002-04-18 18:53:13 +0000432 // Otherwise we could not reparse it to exactly the same value, so we must
433 // output the string in hexadecimal format!
434 //
435 // Behave nicely in the face of C TBAA rules... see:
436 // http://www.nullstone.com/htmls/category/aliastyp.htm
437 //
Chris Lattner472cc102005-01-04 01:56:57 +0000438 union {
439 double D;
440 uint64_t U;
441 } V;
442 V.D = CFP->getValue();
443 assert(sizeof(double) == sizeof(uint64_t) &&
Chris Lattner1e194682002-04-18 18:53:13 +0000444 "assuming that double is 64 bits!");
Chris Lattner472cc102005-01-04 01:56:57 +0000445 Out << "0x" << utohexstr(V.U);
Chris Lattner1e194682002-04-18 18:53:13 +0000446
Chris Lattner76b2ff42004-02-15 05:55:15 +0000447 } else if (isa<ConstantAggregateZero>(CV)) {
448 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000449 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
450 // As a special case, print the array as a string if it is an array of
451 // ubytes or an array of sbytes with positive values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000452 //
Chris Lattner1e194682002-04-18 18:53:13 +0000453 const Type *ETy = CA->getType()->getElementType();
454 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
455
456 if (ETy == Type::SByteTy)
457 for (unsigned i = 0; i < CA->getNumOperands(); ++i)
458 if (cast<ConstantSInt>(CA->getOperand(i))->getValue() < 0) {
459 isString = false;
460 break;
461 }
462
463 if (isString) {
464 Out << "c\"";
465 for (unsigned i = 0; i < CA->getNumOperands(); ++i) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000466 unsigned char C =
Chris Lattneraa6ff272004-06-04 23:53:20 +0000467 (unsigned char)cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000468
Chris Lattnere5fd3862002-07-31 23:56:44 +0000469 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner1e194682002-04-18 18:53:13 +0000470 Out << C;
471 } else {
472 Out << '\\'
473 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
474 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
475 }
476 }
477 Out << "\"";
478
479 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000480 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000481 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000482 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000483 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000484 WriteAsOperandInternal(Out, CA->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000485 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000486 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
487 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000488 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000489 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000490 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000491 }
492 }
493 Out << " ]";
494 }
495 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000496 Out << '{';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000497 if (CS->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000498 Out << ' ';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000499 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
500
501 WriteAsOperandInternal(Out, CS->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000502 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000503
504 for (unsigned i = 1; i < CS->getNumOperands(); i++) {
505 Out << ", ";
506 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
507
508 WriteAsOperandInternal(Out, CS->getOperand(i),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000509 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000510 }
511 }
512
513 Out << " }";
Brian Gaeke02209042004-08-20 06:00:58 +0000514 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
515 const Type *ETy = CP->getType()->getElementType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000516 assert(CP->getNumOperands() > 0 &&
Brian Gaeke02209042004-08-20 06:00:58 +0000517 "Number of operands for a PackedConst must be > 0");
518 Out << '<';
519 Out << ' ';
520 printTypeInt(Out, ETy, TypeTable);
521 WriteAsOperandInternal(Out, CP->getOperand(0),
522 PrintName, TypeTable, Machine);
523 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
524 Out << ", ";
525 printTypeInt(Out, ETy, TypeTable);
526 WriteAsOperandInternal(Out, CP->getOperand(i), PrintName,
527 TypeTable, Machine);
528 }
529 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000530 } else if (isa<ConstantPointerNull>(CV)) {
531 Out << "null";
532
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000533 } else if (isa<UndefValue>(CV)) {
534 Out << "undef";
535
Chris Lattner3cd8c562002-07-30 18:54:25 +0000536 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattnerb8257222003-03-06 23:23:32 +0000537 Out << CE->getOpcodeName() << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000538
Vikram S. Adveb952b542002-07-14 23:14:45 +0000539 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
540 printTypeInt(Out, (*OI)->getType(), TypeTable);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000541 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000542 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000543 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000544 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000545
Chris Lattnercfe8f532002-08-16 21:17:11 +0000546 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000547 Out << " to ";
548 printTypeInt(Out, CE->getType(), TypeTable);
549 }
Misha Brukman21bbdb92004-06-04 21:11:51 +0000550 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000551
Chris Lattnerd84bb632002-04-16 21:36:08 +0000552 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000553 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000554 }
555}
556
557
Misha Brukmanc566ca362004-03-02 00:22:19 +0000558/// WriteAsOperand - Write the name of the specified value out to the specified
559/// ostream. This can be useful when you just want to print int %reg126, not
560/// the whole instruction that generated it.
561///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000562static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000563 bool PrintName,
564 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000565 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000566 Out << ' ';
Reid Spenceraccd7c72004-07-17 23:47:01 +0000567 if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
Chris Lattner1c343042003-08-22 05:40:38 +0000568 Out << getLLVMName(V->getName());
Reid Spenceraccd7c72004-07-17 23:47:01 +0000569 else {
570 const Constant *CV = dyn_cast<Constant>(V);
571 if (CV && !isa<GlobalValue>(CV))
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000572 WriteConstantInt(Out, CV, PrintName, TypeTable, Machine);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000573 else {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000574 int Slot;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000575 if (Machine) {
Reid Spencer56010e42004-05-26 21:56:09 +0000576 Slot = Machine->getSlot(V);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000577 } else {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000578 Machine = createSlotMachine(V);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000579 if (Machine == 0)
Chris Lattner757ee0b2004-06-09 19:41:19 +0000580 Slot = Machine->getSlot(V);
581 else
582 Slot = -1;
Reid Spencer56010e42004-05-26 21:56:09 +0000583 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000584 }
Chris Lattner757ee0b2004-06-09 19:41:19 +0000585 if (Slot != -1)
586 Out << '%' << Slot;
587 else
588 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000589 }
590 }
591}
592
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000593/// WriteAsOperand - Write the name of the specified value out to the specified
594/// ostream. This can be useful when you just want to print int %reg126, not
595/// the whole instruction that generated it.
596///
Chris Lattner189d19f2003-11-21 20:23:48 +0000597std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukmanb1c93172005-04-21 23:48:37 +0000598 bool PrintType, bool PrintName,
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000599 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000600 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000601 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000602
Chris Lattner98cf1f52002-11-20 18:36:02 +0000603 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000604 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000605
606 if (PrintType)
607 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000608
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000609 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000610 return Out;
611}
612
Misha Brukmanb1c93172005-04-21 23:48:37 +0000613/// WriteAsOperandInternal - Write the name of the specified value out to
614/// the specified ostream. This can be useful when you just want to print
Reid Spencer58d30f22004-07-04 11:50:43 +0000615/// int %reg126, not the whole instruction that generated it.
616///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000617static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer58d30f22004-07-04 11:50:43 +0000618 bool PrintName,
619 std::map<const Type*, std::string> &TypeTable,
620 SlotMachine *Machine) {
621 Out << ' ';
622 int Slot;
623 if (Machine) {
624 Slot = Machine->getSlot(T);
625 if (Slot != -1)
626 Out << '%' << Slot;
627 else
628 Out << "<badref>";
629 } else {
630 Out << T->getDescription();
631 }
632}
633
634/// WriteAsOperand - Write the name of the specified value out to the specified
635/// ostream. This can be useful when you just want to print int %reg126, not
636/// the whole instruction that generated it.
637///
638std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Type *Ty,
Misha Brukmanb1c93172005-04-21 23:48:37 +0000639 bool PrintType, bool PrintName,
Reid Spencer58d30f22004-07-04 11:50:43 +0000640 const Module *Context) {
641 std::map<const Type *, std::string> TypeNames;
642 assert(Context != 0 && "Can't write types as operand without module context");
643
644 fillTypeNameTable(Context, TypeNames);
645
646 // if (PrintType)
647 // printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000648
Reid Spencer58d30f22004-07-04 11:50:43 +0000649 printTypeInt(Out, Ty, TypeNames);
650
651 WriteAsOperandInternal(Out, Ty, PrintName, TypeNames, 0);
652 return Out;
653}
654
Chris Lattner189d19f2003-11-21 20:23:48 +0000655namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000656
Chris Lattnerfee714f2001-09-07 16:36:04 +0000657class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000658 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000659 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000660 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000661 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000662 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000663public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000664 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000665 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000666 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000667
668 // If the module has a symbol table, take all global types and stuff their
669 // names into the TypeNames map.
670 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000671 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000672 }
673
Chris Lattner7bfee412001-10-29 16:05:51 +0000674 inline void write(const Module *M) { printModule(M); }
675 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner57698e22002-03-26 18:01:55 +0000676 inline void write(const Function *F) { printFunction(F); }
Chris Lattner7bfee412001-10-29 16:05:51 +0000677 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000678 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattner3462ae32001-12-03 22:26:30 +0000679 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattner7db79582001-11-07 04:21:57 +0000680 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000681
Chris Lattner1e194682002-04-18 18:53:13 +0000682 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
683
Misha Brukman4685e262004-04-28 15:31:21 +0000684 const Module* getModule() { return TheModule; }
685
Misha Brukmand92f54a2004-11-15 19:30:05 +0000686private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000687 void printModule(const Module *M);
688 void printSymbolTable(const SymbolTable &ST);
Chris Lattner3462ae32001-12-03 22:26:30 +0000689 void printConstant(const Constant *CPV);
Chris Lattner7bfee412001-10-29 16:05:51 +0000690 void printGlobal(const GlobalVariable *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000691 void printFunction(const Function *F);
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000692 void printArgument(const Argument *FA);
Chris Lattner7bfee412001-10-29 16:05:51 +0000693 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000694 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000695
696 // printType - Go to extreme measures to attempt to print out a short,
697 // symbolic version of a type name.
698 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000699 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000700 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000701 }
702
703 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
704 // without considering any symbolic types that we may have equal to it.
705 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000706 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000707
Chris Lattner862e3382001-10-13 06:42:36 +0000708 // printInfoComment - Print a little comment after the instruction indicating
709 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000710 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000711};
Reid Spencerf43ac622004-05-27 22:04:46 +0000712} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000713
Misha Brukmanc566ca362004-03-02 00:22:19 +0000714/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
715/// without considering any symbolic types that we may have equal to it.
716///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000717std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000718 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattnerd816b532002-04-13 20:53:41 +0000719 printType(FTy->getReturnType()) << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000720 for (FunctionType::param_iterator I = FTy->param_begin(),
721 E = FTy->param_end(); I != E; ++I) {
722 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000723 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000724 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000725 }
726 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000727 if (FTy->getNumParams()) Out << ", ";
728 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000729 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000730 Out << ')';
Chris Lattner113f4f42002-06-25 16:13:24 +0000731 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000732 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000733 for (StructType::element_iterator I = STy->element_begin(),
734 E = STy->element_end(); I != E; ++I) {
735 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000736 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000737 printType(*I);
738 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000739 Out << " }";
Chris Lattner113f4f42002-06-25 16:13:24 +0000740 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000741 printType(PTy->getElementType()) << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000742 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000743 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000744 printType(ATy->getElementType()) << ']';
Reid Spencere203d352004-08-20 15:37:30 +0000745 } else if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
746 Out << '<' << PTy->getNumElements() << " x ";
747 printType(PTy->getElementType()) << '>';
748 }
749 else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000750 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000751 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000752 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000753 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000754 printType(Ty);
755 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000756 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000757}
758
759
Misha Brukmanb1c93172005-04-21 23:48:37 +0000760void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
Reid Spencer56010e42004-05-26 21:56:09 +0000761 bool PrintName) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000762 if (Operand != 0) {
763 if (PrintType) { Out << ' '; printType(Operand->getType()); }
764 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Machine);
765 } else {
766 Out << "<null operand!>";
767 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000768}
769
Chris Lattner2f7c9632001-06-06 20:29:01 +0000770
Chris Lattner7bfee412001-10-29 16:05:51 +0000771void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +0000772 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +0000773 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +0000774 // require a comment char before it).
775 M->getModuleIdentifier().find('\n') == std::string::npos)
776 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
777
Chris Lattner8068e0c2003-08-24 13:48:48 +0000778 switch (M->getEndianness()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000779 case Module::LittleEndian: Out << "target endian = little\n"; break;
780 case Module::BigEndian: Out << "target endian = big\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000781 case Module::AnyEndianness: break;
782 }
783 switch (M->getPointerSize()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000784 case Module::Pointer32: Out << "target pointersize = 32\n"; break;
785 case Module::Pointer64: Out << "target pointersize = 64\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000786 case Module::AnyPointerSize: break;
787 }
Reid Spencer48f98c82004-07-25 21:44:54 +0000788 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000789 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000790
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000791 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000792 Module::lib_iterator LI = M->lib_begin();
793 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000794 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000795 Out << "deplibs = [ ";
796 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000797 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000798 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000799 if (LI != LE)
800 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000801 }
802 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000803 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000804
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000805 // Loop over the symbol table, emitting all named constants.
Chris Lattner98cf1f52002-11-20 18:36:02 +0000806 printSymbolTable(M->getSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000807
Chris Lattner531f9e92005-03-15 04:54:21 +0000808 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000809 printGlobal(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000810
Misha Brukmana6619a92004-06-21 21:53:56 +0000811 Out << "\nimplementation ; Functions:\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000812
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000813 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000814 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
815 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000816}
817
Chris Lattner7bfee412001-10-29 16:05:51 +0000818void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000819 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000820
Misha Brukmanb1c93172005-04-21 23:48:37 +0000821 if (!GV->hasInitializer())
Misha Brukmana6619a92004-06-21 21:53:56 +0000822 Out << "external ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000823 else
824 switch (GV->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000825 case GlobalValue::InternalLinkage: Out << "internal "; break;
826 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
827 case GlobalValue::WeakLinkage: Out << "weak "; break;
828 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000829 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000830 case GlobalValue::GhostLinkage:
831 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
832 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000833 }
Chris Lattner37798642001-09-18 04:01:05 +0000834
Misha Brukmana6619a92004-06-21 21:53:56 +0000835 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +0000836 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +0000837
Reid Spenceraccd7c72004-07-17 23:47:01 +0000838 if (GV->hasInitializer()) {
839 Constant* C = cast<Constant>(GV->getInitializer());
840 assert(C && "GlobalVar initializer isn't constant?");
Reid Spencerc9c90cf2004-07-18 01:04:19 +0000841 writeOperand(GV->getInitializer(), false, isa<GlobalValue>(C));
Reid Spenceraccd7c72004-07-17 23:47:01 +0000842 }
Chris Lattner37798642001-09-18 04:01:05 +0000843
Chris Lattner113f4f42002-06-25 16:13:24 +0000844 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000845 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +0000846}
847
Chris Lattnerfee714f2001-09-07 16:36:04 +0000848
Reid Spencere7e96712004-05-25 08:53:40 +0000849// printSymbolTable - Run through symbol table looking for constants
850// and types. Emit their declarations.
Chris Lattner7bfee412001-10-29 16:05:51 +0000851void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +0000852
853 // Print the types.
854 for (SymbolTable::type_const_iterator TI = ST.type_begin();
855 TI != ST.type_end(); ++TI ) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000856 Out << "\t" << getLLVMName(TI->first) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +0000857
858 // Make sure we print out at least one level of the type structure, so
859 // that we do not get %FILE = type %FILE
860 //
861 printTypeAtLeastOneLevel(TI->second) << "\n";
862 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000863
Reid Spencere7e96712004-05-25 08:53:40 +0000864 // Print the constants, in type plane order.
865 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
866 PI != ST.plane_end(); ++PI ) {
867 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
868 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
869
870 for (; VI != VE; ++VI) {
Reid Spenceraccd7c72004-07-17 23:47:01 +0000871 const Value* V = VI->second;
872 const Constant *CPV = dyn_cast<Constant>(V) ;
873 if (CPV && !isa<GlobalValue>(V)) {
Reid Spencer56010e42004-05-26 21:56:09 +0000874 printConstant(CPV);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000875 }
876 }
Chris Lattnera7620d92001-07-15 06:35:59 +0000877 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000878}
879
880
Misha Brukmanc566ca362004-03-02 00:22:19 +0000881/// printConstant - Print out a constant pool entry...
882///
Chris Lattner3462ae32001-12-03 22:26:30 +0000883void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattnerfee714f2001-09-07 16:36:04 +0000884 // Don't print out unnamed constants, they will be inlined
885 if (!CPV->hasName()) return;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000886
Chris Lattneree998be2001-07-26 16:29:38 +0000887 // Print out name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000888 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000889
890 // Write the value out now...
Chris Lattnerd84bb632002-04-16 21:36:08 +0000891 writeOperand(CPV, true, false);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000892
Chris Lattner113f4f42002-06-25 16:13:24 +0000893 printInfoComment(*CPV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000894 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000895}
896
Misha Brukmanc566ca362004-03-02 00:22:19 +0000897/// printFunction - Print all aspects of a function.
898///
Chris Lattner113f4f42002-06-25 16:13:24 +0000899void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000900 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000901 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +0000902
Chris Lattner97e36f22004-12-05 06:44:09 +0000903 // Ensure that no local symbols conflict with global symbols.
904 const_cast<Function*>(F)->renameLocalSymbols();
905
Misha Brukmana6619a92004-06-21 21:53:56 +0000906 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000907
Chris Lattner379a8d22003-04-16 20:28:45 +0000908 if (F->isExternal())
Misha Brukmana6619a92004-06-21 21:53:56 +0000909 Out << "declare ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000910 else
911 switch (F->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000912 case GlobalValue::InternalLinkage: Out << "internal "; break;
913 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
914 case GlobalValue::WeakLinkage: Out << "weak "; break;
915 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000916 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000917 case GlobalValue::GhostLinkage:
918 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
919 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000920 }
921
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000922 // Print the calling convention.
923 switch (F->getCallingConv()) {
924 case CallingConv::C: break; // default
925 case CallingConv::Fast: Out << "fastcc "; break;
926 case CallingConv::Cold: Out << "coldcc "; break;
927 default: Out << "cc" << F->getCallingConv() << " "; break;
928 }
929
Misha Brukman21bbdb92004-06-04 21:11:51 +0000930 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +0000931 if (!F->getName().empty())
Misha Brukmana6619a92004-06-21 21:53:56 +0000932 Out << getLLVMName(F->getName());
Chris Lattner5b337482003-10-18 05:57:43 +0000933 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000934 Out << "\"\"";
935 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000936 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000937
Chris Lattner7bfee412001-10-29 16:05:51 +0000938 // Loop over the arguments, printing them...
Chris Lattner113f4f42002-06-25 16:13:24 +0000939 const FunctionType *FT = F->getFunctionType();
Chris Lattnerfee714f2001-09-07 16:36:04 +0000940
Chris Lattner531f9e92005-03-15 04:54:21 +0000941 for(Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattner149376d2002-10-13 20:57:00 +0000942 printArgument(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000943
944 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +0000945 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000946 if (FT->getNumParams()) Out << ", ";
947 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +0000948 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000949 Out << ')';
Chris Lattnerfee714f2001-09-07 16:36:04 +0000950
Chris Lattner113f4f42002-06-25 16:13:24 +0000951 if (F->isExternal()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000952 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +0000953 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +0000954 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000955
Chris Lattner6915f8f2002-04-07 22:49:37 +0000956 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +0000957 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
958 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000959
Misha Brukmana6619a92004-06-21 21:53:56 +0000960 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +0000961 }
962
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000963 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000964}
965
Misha Brukmanc566ca362004-03-02 00:22:19 +0000966/// printArgument - This member is called for every argument that is passed into
967/// the function. Simply print it out
968///
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000969void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000970 // Insert commas as we go... the first arg doesn't get a comma
Chris Lattnerfb972ad2005-03-15 05:03:36 +0000971 if (Arg != Arg->getParent()->arg_begin()) Out << ", ";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000972
973 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +0000974 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000975
Chris Lattner2f7c9632001-06-06 20:29:01 +0000976 // Output name, if available...
977 if (Arg->hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +0000978 Out << ' ' << getLLVMName(Arg->getName());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000979}
980
Misha Brukmanc566ca362004-03-02 00:22:19 +0000981/// printBasicBlock - This member is called for each basic block in a method.
982///
Chris Lattner7bfee412001-10-29 16:05:51 +0000983void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000984 if (BB->hasName()) { // Print out the label if it exists...
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000985 Out << "\n" << getLLVMName(BB->getName(), false) << ':';
Chris Lattner408dbdb2002-05-14 16:02:05 +0000986 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukmana6619a92004-06-21 21:53:56 +0000987 Out << "\n; <label>:";
Chris Lattner757ee0b2004-06-09 19:41:19 +0000988 int Slot = Machine.getSlot(BB);
989 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +0000990 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +0000991 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000992 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +0000993 }
Chris Lattner2447ef52003-11-20 00:09:43 +0000994
995 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +0000996 Out << "\t\t; Error: Block without parent!";
Chris Lattner2447ef52003-11-20 00:09:43 +0000997 else {
998 if (BB != &BB->getParent()->front()) { // Not the entry block?
999 // Output predecessors for the block...
Misha Brukmana6619a92004-06-21 21:53:56 +00001000 Out << "\t\t;";
Chris Lattner2447ef52003-11-20 00:09:43 +00001001 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001002
Chris Lattner2447ef52003-11-20 00:09:43 +00001003 if (PI == PE) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001004 Out << " No predecessors!";
Chris Lattner2447ef52003-11-20 00:09:43 +00001005 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +00001006 Out << " preds =";
Chris Lattner00211f12003-11-16 22:59:57 +00001007 writeOperand(*PI, false, true);
Chris Lattner2447ef52003-11-20 00:09:43 +00001008 for (++PI; PI != PE; ++PI) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001009 Out << ',';
Chris Lattner2447ef52003-11-20 00:09:43 +00001010 writeOperand(*PI, false, true);
1011 }
Chris Lattner00211f12003-11-16 22:59:57 +00001012 }
Chris Lattner58185f22002-10-02 19:38:55 +00001013 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001014 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001015
Misha Brukmana6619a92004-06-21 21:53:56 +00001016 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001017
Misha Brukmana6619a92004-06-21 21:53:56 +00001018 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001019
Chris Lattnerfee714f2001-09-07 16:36:04 +00001020 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001021 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1022 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001023
Misha Brukmana6619a92004-06-21 21:53:56 +00001024 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001025}
1026
Chris Lattner862e3382001-10-13 06:42:36 +00001027
Misha Brukmanc566ca362004-03-02 00:22:19 +00001028/// printInfoComment - Print a little comment after the instruction indicating
1029/// which slot it occupies.
1030///
Chris Lattner113f4f42002-06-25 16:13:24 +00001031void AssemblyWriter::printInfoComment(const Value &V) {
1032 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001033 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001034 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001035
Chris Lattner113f4f42002-06-25 16:13:24 +00001036 if (!V.hasName()) {
Chris Lattner757ee0b2004-06-09 19:41:19 +00001037 int SlotNum = Machine.getSlot(&V);
1038 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001039 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001040 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001041 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001042 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001043 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001044 }
1045}
1046
Reid Spencer8beac692004-06-09 15:26:53 +00001047/// printInstruction - This member is called for each Instruction in a function..
Misha Brukmanc566ca362004-03-02 00:22:19 +00001048///
Chris Lattner113f4f42002-06-25 16:13:24 +00001049void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001050 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001051
Misha Brukmana6619a92004-06-21 21:53:56 +00001052 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001053
1054 // Print out name if it exists...
Chris Lattner113f4f42002-06-25 16:13:24 +00001055 if (I.hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +00001056 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001057
Chris Lattner06038452005-05-06 05:51:46 +00001058 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001059 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001060 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001061 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001062 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1063 // If this is a call, check if it's a tail call.
1064 Out << "tail ";
1065 }
Chris Lattner504f9242003-09-08 17:45:59 +00001066
Chris Lattner2f7c9632001-06-06 20:29:01 +00001067 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001068 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001069
1070 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001071 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001072
1073 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001074 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1075 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001076 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001077 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001078 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001079 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001080
Chris Lattner8d48df22002-04-13 18:34:38 +00001081 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001082 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001083 writeOperand(Operand , true); Out << ',';
1084 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001085
Chris Lattner113f4f42002-06-25 16:13:24 +00001086 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001087 Out << "\n\t\t";
1088 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001089 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001090 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001091 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001092 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001093 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001094 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001095 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001096
Chris Lattner113f4f42002-06-25 16:13:24 +00001097 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001098 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001099 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001100 writeOperand(I.getOperand(op ), false); Out << ',';
1101 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001102 }
Chris Lattner862e3382001-10-13 06:42:36 +00001103 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001104 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001105 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1106 // Print the calling convention being used.
1107 switch (CI->getCallingConv()) {
1108 case CallingConv::C: break; // default
1109 case CallingConv::Fast: Out << " fastcc"; break;
1110 case CallingConv::Cold: Out << " coldcc"; break;
1111 default: Out << " cc" << CI->getCallingConv(); break;
1112 }
1113
Chris Lattner463d6a52003-08-05 15:34:45 +00001114 const PointerType *PTy = cast<PointerType>(Operand->getType());
1115 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1116 const Type *RetTy = FTy->getReturnType();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001117
Chris Lattner463d6a52003-08-05 15:34:45 +00001118 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001119 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001120 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001121 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001122 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001123 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001124 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001125 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001126 writeOperand(Operand, false);
1127 } else {
1128 writeOperand(Operand, true);
1129 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001130 Out << '(';
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001131 if (CI->getNumOperands() > 1) writeOperand(CI->getOperand(1), true);
Chris Lattner113f4f42002-06-25 16:13:24 +00001132 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001133 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001134 writeOperand(I.getOperand(op), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001135 }
1136
Misha Brukmana6619a92004-06-21 21:53:56 +00001137 Out << " )";
Chris Lattner113f4f42002-06-25 16:13:24 +00001138 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner463d6a52003-08-05 15:34:45 +00001139 const PointerType *PTy = cast<PointerType>(Operand->getType());
1140 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1141 const Type *RetTy = FTy->getReturnType();
1142
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001143 // Print the calling convention being used.
1144 switch (II->getCallingConv()) {
1145 case CallingConv::C: break; // default
1146 case CallingConv::Fast: Out << " fastcc"; break;
1147 case CallingConv::Cold: Out << " coldcc"; break;
1148 default: Out << " cc" << II->getCallingConv(); break;
1149 }
1150
Chris Lattner463d6a52003-08-05 15:34:45 +00001151 // If possible, print out the short form of the invoke instruction. We can
1152 // only do this if the first argument is a pointer to a nonvararg function,
1153 // and if the return type is not a pointer to a function.
1154 //
1155 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001156 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001157 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001158 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001159 writeOperand(Operand, false);
1160 } else {
1161 writeOperand(Operand, true);
1162 }
1163
Misha Brukmana6619a92004-06-21 21:53:56 +00001164 Out << '(';
Chris Lattner113f4f42002-06-25 16:13:24 +00001165 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
1166 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001167 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001168 writeOperand(I.getOperand(op), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001169 }
1170
Misha Brukmana6619a92004-06-21 21:53:56 +00001171 Out << " )\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001172 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001173 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001174 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001175
Chris Lattner113f4f42002-06-25 16:13:24 +00001176 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001177 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001178 printType(AI->getType()->getElementType());
1179 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001180 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001181 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001182 }
Chris Lattner862e3382001-10-13 06:42:36 +00001183 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001184 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001185 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001186 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001187 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001188 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001189 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001190 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001191 } else if (Operand) { // Print the normal way...
1192
Misha Brukmanb1c93172005-04-21 23:48:37 +00001193 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001194 // omit the type from all but the first operand. If the instruction has
1195 // different type operands (for example br), then they are all printed.
1196 bool PrintAllTypes = false;
1197 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001198
Chris Lattner52bd5cb92004-03-12 05:53:14 +00001199 // Shift Left & Right print both types even for Ubyte LHS, and select prints
1200 // types even if all operands are bools.
Chris Lattner159485f2005-02-09 17:45:03 +00001201 if (isa<ShiftInst>(I) || isa<SelectInst>(I) || isa<StoreInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001202 PrintAllTypes = true;
1203 } else {
1204 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1205 Operand = I.getOperand(i);
1206 if (Operand->getType() != TheType) {
1207 PrintAllTypes = true; // We have differing types! Print them all!
1208 break;
1209 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001210 }
1211 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001212
Chris Lattner7bfee412001-10-29 16:05:51 +00001213 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001214 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001215 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001216 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001217
Chris Lattner113f4f42002-06-25 16:13:24 +00001218 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001219 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001220 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001221 }
1222 }
1223
Chris Lattner862e3382001-10-13 06:42:36 +00001224 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001225 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001226}
1227
1228
1229//===----------------------------------------------------------------------===//
1230// External Interface declarations
1231//===----------------------------------------------------------------------===//
1232
Chris Lattner8339f7d2003-10-30 23:41:03 +00001233void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001234 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001235 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001236 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001237}
1238
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001239void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001240 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001241 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001242 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001243}
1244
Chris Lattner8339f7d2003-10-30 23:41:03 +00001245void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001246 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001247 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001248
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001249 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001250}
1251
Chris Lattner8339f7d2003-10-30 23:41:03 +00001252void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001253 SlotMachine SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001254 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001255 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001256 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001257}
1258
Chris Lattner8339f7d2003-10-30 23:41:03 +00001259void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001260 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001261 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001262 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001263
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001264 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001265}
Chris Lattner7db79582001-11-07 04:21:57 +00001266
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001267void Constant::print(std::ostream &o) const {
1268 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001269
Misha Brukman21bbdb92004-06-04 21:11:51 +00001270 o << ' ' << getType()->getDescription() << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +00001271
Chris Lattnerab7d1ab2003-05-08 02:08:14 +00001272 std::map<const Type *, std::string> TypeTable;
Chris Lattner1e194682002-04-18 18:53:13 +00001273 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001274}
1275
Misha Brukmanb1c93172005-04-21 23:48:37 +00001276void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001277 if (this == 0)
1278 o << "<null Type>";
1279 else
1280 o << getDescription();
1281}
1282
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001283void Argument::print(std::ostream &o) const {
Chris Lattnere52ed452004-07-13 23:14:34 +00001284 WriteAsOperand(o, this, true, true,
1285 getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001286}
1287
Reid Spencer52641832004-05-25 18:14:38 +00001288// Value::dump - allow easy printing of Values from the debugger.
1289// Located here because so much of the needed functionality is here.
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001290void Value::dump() const { print(std::cerr); }
Reid Spencer52641832004-05-25 18:14:38 +00001291
1292// Type::dump - allow easy printing of Values from the debugger.
1293// Located here because so much of the needed functionality is here.
Reid Spencere7e96712004-05-25 08:53:40 +00001294void Type::dump() const { print(std::cerr); }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001295
1296//===----------------------------------------------------------------------===//
1297// CachedWriter Class Implementation
1298//===----------------------------------------------------------------------===//
1299
Chris Lattner7db79582001-11-07 04:21:57 +00001300void CachedWriter::setModule(const Module *M) {
1301 delete SC; delete AW;
1302 if (M) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001303 SC = new SlotMachine(M );
Misha Brukman21bbdb92004-06-04 21:11:51 +00001304 AW = new AssemblyWriter(Out, *SC, M, 0);
Chris Lattner7db79582001-11-07 04:21:57 +00001305 } else {
1306 SC = 0; AW = 0;
1307 }
1308}
1309
1310CachedWriter::~CachedWriter() {
1311 delete AW;
1312 delete SC;
1313}
1314
Chris Lattner60a7dd12004-07-15 02:51:31 +00001315CachedWriter &CachedWriter::operator<<(const Value &V) {
Chris Lattner7db79582001-11-07 04:21:57 +00001316 assert(AW && SC && "CachedWriter does not have a current module!");
Chris Lattner60a7dd12004-07-15 02:51:31 +00001317 if (const Instruction *I = dyn_cast<Instruction>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001318 AW->write(I);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001319 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001320 AW->write(BB);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001321 else if (const Function *F = dyn_cast<Function>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001322 AW->write(F);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001323 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001324 AW->write(GV);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001325 else
Chris Lattner60a7dd12004-07-15 02:51:31 +00001326 AW->writeOperand(&V, true, true);
Chris Lattner7db79582001-11-07 04:21:57 +00001327 return *this;
1328}
Misha Brukman4685e262004-04-28 15:31:21 +00001329
Chris Lattner60a7dd12004-07-15 02:51:31 +00001330CachedWriter& CachedWriter::operator<<(const Type &Ty) {
Misha Brukman4685e262004-04-28 15:31:21 +00001331 if (SymbolicTypes) {
1332 const Module *M = AW->getModule();
Chris Lattner60a7dd12004-07-15 02:51:31 +00001333 if (M) WriteTypeSymbolic(Out, &Ty, M);
Reid Spencer58d30f22004-07-04 11:50:43 +00001334 } else {
Chris Lattner60a7dd12004-07-15 02:51:31 +00001335 AW->write(&Ty);
Reid Spencer58d30f22004-07-04 11:50:43 +00001336 }
1337 return *this;
Misha Brukman4685e262004-04-28 15:31:21 +00001338}
Misha Brukmanda546ea2004-04-28 19:24:28 +00001339
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001340//===----------------------------------------------------------------------===//
1341//===-- SlotMachine Implementation
1342//===----------------------------------------------------------------------===//
1343
1344#if 0
1345#define SC_DEBUG(X) std::cerr << X
1346#else
1347#define SC_DEBUG(X)
1348#endif
1349
1350// Module level constructor. Causes the contents of the Module (sans functions)
1351// to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001352SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001353 : TheModule(M) ///< Saved for lazy initialization.
1354 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001355 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001356 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001357 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001358 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001359 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001360{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001361}
1362
1363// Function level constructor. Causes the contents of the Module and the one
1364// function provided to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001365SlotMachine::SlotMachine(const Function *F )
Reid Spencer56010e42004-05-26 21:56:09 +00001366 : TheModule( F ? F->getParent() : 0 ) ///< Saved for lazy initialization
1367 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001368 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001369 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001370 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001371 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001372 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001373{
Reid Spencer56010e42004-05-26 21:56:09 +00001374}
1375
1376inline void SlotMachine::initialize(void) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001377 if ( TheModule) {
1378 processModule();
Reid Spencer56010e42004-05-26 21:56:09 +00001379 TheModule = 0; ///< Prevent re-processing next time we're called.
1380 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001381 if ( TheFunction && ! FunctionProcessed) {
1382 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001383 }
1384}
1385
1386// Iterate through all the global variables, functions, and global
Misha Brukmanb1c93172005-04-21 23:48:37 +00001387// variable initializers and create slots for them.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001388void SlotMachine::processModule() {
1389 SC_DEBUG("begin processModule!\n");
1390
1391 // Add all of the global variables to the value table...
Chris Lattner531f9e92005-03-15 04:54:21 +00001392 for (Module::const_global_iterator I = TheModule->global_begin(), E = TheModule->global_end();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001393 I != E; ++I)
1394 createSlot(I);
1395
1396 // Add all the functions to the table
1397 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1398 I != E; ++I)
1399 createSlot(I);
1400
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001401 SC_DEBUG("end processModule!\n");
1402}
1403
1404
Reid Spencer56010e42004-05-26 21:56:09 +00001405// Process the arguments, basic blocks, and instructions of a function.
1406void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001407 SC_DEBUG("begin processFunction!\n");
1408
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001409 // Add all the function arguments
Misha Brukmanb1c93172005-04-21 23:48:37 +00001410 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
Chris Lattner531f9e92005-03-15 04:54:21 +00001411 AE = TheFunction->arg_end(); AI != AE; ++AI)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001412 createSlot(AI);
1413
1414 SC_DEBUG("Inserting Instructions:\n");
1415
1416 // Add all of the basic blocks and instructions
Misha Brukmanb1c93172005-04-21 23:48:37 +00001417 for (Function::const_iterator BB = TheFunction->begin(),
Reid Spencer56010e42004-05-26 21:56:09 +00001418 E = TheFunction->end(); BB != E; ++BB) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001419 createSlot(BB);
1420 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
1421 createSlot(I);
1422 }
1423 }
1424
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001425 FunctionProcessed = true;
1426
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001427 SC_DEBUG("end processFunction!\n");
1428}
1429
1430// Clean up after incorporating a function. This is the only way
Reid Spencer56010e42004-05-26 21:56:09 +00001431// to get out of the function incorporation state that affects the
1432// getSlot/createSlot lock. Function incorporation state is indicated
1433// by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001434void SlotMachine::purgeFunction() {
1435 SC_DEBUG("begin purgeFunction!\n");
1436 fMap.clear(); // Simply discard the function level map
Reid Spencer58d30f22004-07-04 11:50:43 +00001437 fTypes.clear();
Reid Spencer56010e42004-05-26 21:56:09 +00001438 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001439 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001440 SC_DEBUG("end purgeFunction!\n");
1441}
1442
1443/// Get the slot number for a value. This function will assert if you
1444/// ask for a Value that hasn't previously been inserted with createSlot.
1445/// Types are forbidden because Type does not inherit from Value (any more).
Chris Lattner757ee0b2004-06-09 19:41:19 +00001446int SlotMachine::getSlot(const Value *V) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001447 assert( V && "Can't get slot for null Value" );
Misha Brukmanb1c93172005-04-21 23:48:37 +00001448 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1449 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer56010e42004-05-26 21:56:09 +00001450
1451 // Check for uninitialized state and do lazy initialization
1452 this->initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001453
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001454 // Get the type of the value
1455 const Type* VTy = V->getType();
1456
1457 // Find the type plane in the module map
1458 TypedPlanes::const_iterator MI = mMap.find(VTy);
1459
Reid Spencer56010e42004-05-26 21:56:09 +00001460 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001461 // Lookup the type in the function map too
1462 TypedPlanes::const_iterator FI = fMap.find(VTy);
1463 // If there is a corresponding type plane in the function map
1464 if ( FI != fMap.end() ) {
1465 // Lookup the Value in the function map
1466 ValueMap::const_iterator FVI = FI->second.map.find(V);
1467 // If the value doesn't exist in the function map
1468 if ( FVI == FI->second.map.end() ) {
Chris Lattner68a038e2004-06-09 22:22:10 +00001469 // Look up the value in the module map.
1470 if (MI == mMap.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001471 ValueMap::const_iterator MVI = MI->second.map.find(V);
1472 // If we didn't find it, it wasn't inserted
Chris Lattner757ee0b2004-06-09 19:41:19 +00001473 if (MVI == MI->second.map.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001474 assert( MVI != MI->second.map.end() && "Value not found");
1475 // We found it only at the module level
Misha Brukmanb1c93172005-04-21 23:48:37 +00001476 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001477
1478 // else the value exists in the function map
1479 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001480 // Return the slot number as the module's contribution to
1481 // the type plane plus the index in the function's contribution
1482 // to the type plane.
Chris Lattnerb1f04782004-06-15 21:07:32 +00001483 if (MI != mMap.end())
1484 return MI->second.next_slot + FVI->second;
1485 else
1486 return FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001487 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001488 }
1489 }
1490
Reid Spencer8beac692004-06-09 15:26:53 +00001491 // N.B. Can get here only if either !TheFunction or the function doesn't
1492 // have a corresponding type plane for the Value
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001493
1494 // Make sure the type plane exists
Chris Lattner757ee0b2004-06-09 19:41:19 +00001495 if (MI == mMap.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001496 // Lookup the value in the module's map
1497 ValueMap::const_iterator MVI = MI->second.map.find(V);
1498 // Make sure we found it.
Chris Lattner757ee0b2004-06-09 19:41:19 +00001499 if (MVI == MI->second.map.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001500 // Return it.
1501 return MVI->second;
1502}
1503
Reid Spencer58d30f22004-07-04 11:50:43 +00001504/// Get the slot number for a value. This function will assert if you
1505/// ask for a Value that hasn't previously been inserted with createSlot.
1506/// Types are forbidden because Type does not inherit from Value (any more).
1507int SlotMachine::getSlot(const Type *Ty) {
1508 assert( Ty && "Can't get slot for null Type" );
1509
1510 // Check for uninitialized state and do lazy initialization
1511 this->initialize();
1512
1513 if ( TheFunction ) {
1514 // Lookup the Type in the function map
1515 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1516 // If the Type doesn't exist in the function map
1517 if ( FTI == fTypes.map.end() ) {
1518 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1519 // If we didn't find it, it wasn't inserted
Misha Brukmanb1c93172005-04-21 23:48:37 +00001520 if (MTI == mTypes.map.end())
Reid Spencer58d30f22004-07-04 11:50:43 +00001521 return -1;
1522 // We found it only at the module level
Misha Brukmanb1c93172005-04-21 23:48:37 +00001523 return MTI->second;
Reid Spencer58d30f22004-07-04 11:50:43 +00001524
1525 // else the value exists in the function map
1526 } else {
1527 // Return the slot number as the module's contribution to
1528 // the type plane plus the index in the function's contribution
1529 // to the type plane.
1530 return mTypes.next_slot + FTI->second;
1531 }
1532 }
1533
1534 // N.B. Can get here only if either !TheFunction
1535
1536 // Lookup the value in the module's map
1537 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1538 // Make sure we found it.
1539 if (MTI == mTypes.map.end()) return -1;
1540 // Return it.
1541 return MTI->second;
1542}
1543
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001544// Create a new slot, or return the existing slot if it is already
1545// inserted. Note that the logic here parallels getSlot but instead
1546// of asserting when the Value* isn't found, it inserts the value.
1547unsigned SlotMachine::createSlot(const Value *V) {
1548 assert( V && "Can't insert a null Value to SlotMachine");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001549 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1550 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001551
1552 const Type* VTy = V->getType();
1553
1554 // Just ignore void typed things
1555 if (VTy == Type::VoidTy) return 0; // FIXME: Wrong return value!
1556
1557 // Look up the type plane for the Value's type from the module map
1558 TypedPlanes::const_iterator MI = mMap.find(VTy);
1559
Reid Spencer56010e42004-05-26 21:56:09 +00001560 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001561 // Get the type plane for the Value's type from the function map
1562 TypedPlanes::const_iterator FI = fMap.find(VTy);
1563 // If there is a corresponding type plane in the function map
1564 if ( FI != fMap.end() ) {
1565 // Lookup the Value in the function map
1566 ValueMap::const_iterator FVI = FI->second.map.find(V);
1567 // If the value doesn't exist in the function map
1568 if ( FVI == FI->second.map.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001569 // If there is no corresponding type plane in the module map
1570 if ( MI == mMap.end() )
1571 return insertValue(V);
1572 // Look up the value in the module map
1573 ValueMap::const_iterator MVI = MI->second.map.find(V);
1574 // If we didn't find it, it wasn't inserted
1575 if ( MVI == MI->second.map.end() )
1576 return insertValue(V);
1577 else
1578 // We found it only at the module level
1579 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001580
1581 // else the value exists in the function map
1582 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001583 if ( MI == mMap.end() )
1584 return FVI->second;
1585 else
1586 // Return the slot number as the module's contribution to
1587 // the type plane plus the index in the function's contribution
1588 // to the type plane.
1589 return MI->second.next_slot + FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001590 }
1591
1592 // else there is not a corresponding type plane in the function map
1593 } else {
1594 // If the type plane doesn't exists at the module level
1595 if ( MI == mMap.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001596 return insertValue(V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001597 // else type plane exists at the module level, examine it
1598 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001599 // Look up the value in the module's map
1600 ValueMap::const_iterator MVI = MI->second.map.find(V);
1601 // If we didn't find it there either
1602 if ( MVI == MI->second.map.end() )
1603 // Return the slot number as the module's contribution to
1604 // the type plane plus the index of the function map insertion.
1605 return MI->second.next_slot + insertValue(V);
1606 else
1607 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001608 }
1609 }
1610 }
1611
Reid Spencer56010e42004-05-26 21:56:09 +00001612 // N.B. Can only get here if !TheFunction
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001613
1614 // If the module map's type plane is not for the Value's type
1615 if ( MI != mMap.end() ) {
1616 // Lookup the value in the module's map
1617 ValueMap::const_iterator MVI = MI->second.map.find(V);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001618 if ( MVI != MI->second.map.end() )
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001619 return MVI->second;
1620 }
1621
1622 return insertValue(V);
1623}
1624
Reid Spencer58d30f22004-07-04 11:50:43 +00001625// Create a new slot, or return the existing slot if it is already
1626// inserted. Note that the logic here parallels getSlot but instead
1627// of asserting when the Value* isn't found, it inserts the value.
1628unsigned SlotMachine::createSlot(const Type *Ty) {
1629 assert( Ty && "Can't insert a null Type to SlotMachine");
1630
1631 if ( TheFunction ) {
1632 // Lookup the Type in the function map
1633 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1634 // If the type doesn't exist in the function map
1635 if ( FTI == fTypes.map.end() ) {
1636 // Look up the type in the module map
1637 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1638 // If we didn't find it, it wasn't inserted
1639 if ( MTI == mTypes.map.end() )
1640 return insertValue(Ty);
1641 else
1642 // We found it only at the module level
1643 return MTI->second;
1644
1645 // else the value exists in the function map
1646 } else {
1647 // Return the slot number as the module's contribution to
1648 // the type plane plus the index in the function's contribution
1649 // to the type plane.
1650 return mTypes.next_slot + FTI->second;
1651 }
1652 }
1653
1654 // N.B. Can only get here if !TheFunction
1655
1656 // Lookup the type in the module's map
1657 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001658 if ( MTI != mTypes.map.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001659 return MTI->second;
1660
1661 return insertValue(Ty);
1662}
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001663
1664// Low level insert function. Minimal checking is done. This
1665// function is just for the convenience of createSlot (above).
1666unsigned SlotMachine::insertValue(const Value *V ) {
1667 assert(V && "Can't insert a null Value into SlotMachine!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001668 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1669 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001670
Reid Spencer56010e42004-05-26 21:56:09 +00001671 // If this value does not contribute to a plane (is void)
Misha Brukmanb1c93172005-04-21 23:48:37 +00001672 // or if the value already has a name then ignore it.
Reid Spencer56010e42004-05-26 21:56:09 +00001673 if (V->getType() == Type::VoidTy || V->hasName() ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001674 SC_DEBUG("ignored value " << *V << "\n");
1675 return 0; // FIXME: Wrong return value
1676 }
1677
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001678 const Type *VTy = V->getType();
1679 unsigned DestSlot = 0;
1680
Reid Spencer56010e42004-05-26 21:56:09 +00001681 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001682 TypedPlanes::iterator I = fMap.find( VTy );
Misha Brukmanb1c93172005-04-21 23:48:37 +00001683 if ( I == fMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001684 I = fMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001685 DestSlot = I->second.map[V] = I->second.next_slot++;
1686 } else {
1687 TypedPlanes::iterator I = mMap.find( VTy );
1688 if ( I == mMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001689 I = mMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001690 DestSlot = I->second.map[V] = I->second.next_slot++;
1691 }
1692
Misha Brukmanb1c93172005-04-21 23:48:37 +00001693 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
Reid Spencer56010e42004-05-26 21:56:09 +00001694 DestSlot << " [");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001695 // G = Global, C = Constant, T = Type, F = Function, o = other
Misha Brukmanb1c93172005-04-21 23:48:37 +00001696 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : (isa<Function>(V) ? 'F' :
Reid Spenceraccd7c72004-07-17 23:47:01 +00001697 (isa<Constant>(V) ? 'C' : 'o'))));
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001698 SC_DEBUG("]\n");
1699 return DestSlot;
1700}
1701
Reid Spencer58d30f22004-07-04 11:50:43 +00001702// Low level insert function. Minimal checking is done. This
1703// function is just for the convenience of createSlot (above).
1704unsigned SlotMachine::insertValue(const Type *Ty ) {
1705 assert(Ty && "Can't insert a null Type into SlotMachine!");
1706
1707 unsigned DestSlot = 0;
1708
1709 if ( TheFunction ) {
1710 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1711 } else {
1712 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1713 }
1714 SC_DEBUG(" Inserting type [" << DestSlot << "] = " << Ty << "\n");
1715 return DestSlot;
1716}
1717
Reid Spencere7e96712004-05-25 08:53:40 +00001718// vim: sw=2