blob: ecdc521457f68ddc9261f1a8059e213a00ac07d6 [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"
Jim Laskeyb74c6662005-08-17 19:34:49 +000032#include "llvm/Support/MathExtras.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000033#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000034using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000035
Chris Lattner60a7dd12004-07-15 02:51:31 +000036namespace llvm {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000037
Reid Spencer294715b2005-05-15 16:13:11 +000038// Make virtual table appear in this compilation unit.
39AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
40
Reid Spencer16f2f7f2004-05-26 07:18:52 +000041/// This class provides computation of slot numbers for LLVM Assembly writing.
42/// @brief LLVM Assembly Writing Slot Computation.
43class SlotMachine {
44
45/// @name Types
46/// @{
47public:
48
49 /// @brief A mapping of Values to slot numbers
50 typedef std::map<const Value*, unsigned> ValueMap;
Reid Spencer58d30f22004-07-04 11:50:43 +000051 typedef std::map<const Type*, unsigned> TypeMap;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000052
53 /// @brief A plane with next slot number and ValueMap
Misha Brukmanb1c93172005-04-21 23:48:37 +000054 struct ValuePlane {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000055 unsigned next_slot; ///< The next slot number to use
56 ValueMap map; ///< The map of Value* -> unsigned
Reid Spencer58d30f22004-07-04 11:50:43 +000057 ValuePlane() { next_slot = 0; } ///< Make sure we start at 0
58 };
59
60 struct TypePlane {
61 unsigned next_slot;
62 TypeMap map;
63 TypePlane() { next_slot = 0; }
64 void clear() { map.clear(); next_slot = 0; }
Reid Spencer16f2f7f2004-05-26 07:18:52 +000065 };
66
67 /// @brief The map of planes by Type
Reid Spencer58d30f22004-07-04 11:50:43 +000068 typedef std::map<const Type*, ValuePlane> TypedPlanes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000069
70/// @}
71/// @name Constructors
72/// @{
73public:
74 /// @brief Construct from a module
75 SlotMachine(const Module *M );
76
77 /// @brief Construct from a function, starting out in incorp state.
78 SlotMachine(const Function *F );
79
80/// @}
81/// @name Accessors
82/// @{
83public:
84 /// Return the slot number of the specified value in it's type
85 /// plane. Its an error to ask for something not in the SlotMachine.
86 /// Its an error to ask for a Type*
Chris Lattner757ee0b2004-06-09 19:41:19 +000087 int getSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +000088 int getSlot(const Type*Ty);
Reid Spencer8beac692004-06-09 15:26:53 +000089
90 /// Determine if a Value has a slot or not
91 bool hasSlot(const Value* V);
Reid Spencer58d30f22004-07-04 11:50:43 +000092 bool hasSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000093
94/// @}
95/// @name Mutators
96/// @{
97public:
Misha Brukmanb1c93172005-04-21 23:48:37 +000098 /// If you'd like to deal with a function instead of just a module, use
Reid Spencer16f2f7f2004-05-26 07:18:52 +000099 /// this method to get its data into the SlotMachine.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000100 void incorporateFunction(const Function *F) {
101 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000102 FunctionProcessed = false;
103 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000104
Misha Brukmanb1c93172005-04-21 23:48:37 +0000105 /// After calling incorporateFunction, use this method to remove the
106 /// most recently incorporated function from the SlotMachine. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000107 /// will reset the state of the machine back to just the module contents.
108 void purgeFunction();
109
110/// @}
111/// @name Implementation Details
112/// @{
113private:
Reid Spencer56010e42004-05-26 21:56:09 +0000114 /// This function does the actual initialization.
115 inline void initialize();
116
Misha Brukmanb1c93172005-04-21 23:48:37 +0000117 /// Values can be crammed into here at will. If they haven't
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000118 /// been inserted already, they get inserted, otherwise they are ignored.
119 /// Either way, the slot number for the Value* is returned.
120 unsigned createSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +0000121 unsigned createSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000122
123 /// Insert a value into the value table. Return the slot number
124 /// that it now occupies. BadThings(TM) will happen if you insert a
Misha Brukmanb1c93172005-04-21 23:48:37 +0000125 /// Value that's already been inserted.
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000126 unsigned insertValue( const Value *V );
Reid Spencer58d30f22004-07-04 11:50:43 +0000127 unsigned insertValue( const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000128
129 /// Add all of the module level global variables (and their initializers)
130 /// and function declarations, but not the contents of those functions.
131 void processModule();
132
Reid Spencer56010e42004-05-26 21:56:09 +0000133 /// Add all of the functions arguments, basic blocks, and instructions
134 void processFunction();
135
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000136 SlotMachine(const SlotMachine &); // DO NOT IMPLEMENT
137 void operator=(const SlotMachine &); // DO NOT IMPLEMENT
138
139/// @}
140/// @name Data
141/// @{
142public:
143
144 /// @brief The module for which we are holding slot numbers
Reid Spencer56010e42004-05-26 21:56:09 +0000145 const Module* TheModule;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000146
Reid Spencer56010e42004-05-26 21:56:09 +0000147 /// @brief The function for which we are holding slot numbers
148 const Function* TheFunction;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000149 bool FunctionProcessed;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000150
151 /// @brief The TypePlanes map for the module level data
152 TypedPlanes mMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000153 TypePlane mTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000154
155 /// @brief The TypePlanes map for the function level data
156 TypedPlanes fMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000157 TypePlane fTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000158
159/// @}
160
161};
162
Chris Lattner60a7dd12004-07-15 02:51:31 +0000163} // end namespace llvm
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000164
Chris Lattnerc8b70922002-07-26 21:12:46 +0000165static RegisterPass<PrintModulePass>
166X("printm", "Print module to stderr",PassInfo::Analysis|PassInfo::Optimization);
167static RegisterPass<PrintFunctionPass>
168Y("print","Print function to stderr",PassInfo::Analysis|PassInfo::Optimization);
Chris Lattner7f8845a2002-07-23 18:07:49 +0000169
Misha Brukmanb1c93172005-04-21 23:48:37 +0000170static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000171 bool PrintName,
172 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000173 SlotMachine *Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000174
Misha Brukmanb1c93172005-04-21 23:48:37 +0000175static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer58d30f22004-07-04 11:50:43 +0000176 bool PrintName,
177 std::map<const Type *, std::string> &TypeTable,
178 SlotMachine *Machine);
179
Chris Lattnerb86620e2001-10-29 16:37:48 +0000180static const Module *getModuleFromVal(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000181 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000182 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000183 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000184 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000185 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner57698e22002-03-26 18:01:55 +0000186 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000187 return M ? M->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000188 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000189 return GV->getParent();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000190 return 0;
191}
192
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000193static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000194 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000195 return new SlotMachine(FA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000196 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000197 return new SlotMachine(I->getParent()->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000198 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000199 return new SlotMachine(BB->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000200 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000201 return new SlotMachine(GV->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000202 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000203 return new SlotMachine(Func);
Chris Lattner7bfee412001-10-29 16:05:51 +0000204 }
205 return 0;
206}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000207
Chris Lattner1c343042003-08-22 05:40:38 +0000208// getLLVMName - Turn the specified string into an 'LLVM name', which is either
209// prefixed with % (if the string only contains simple characters) or is
210// surrounded with ""'s (if it has special chars in it).
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000211static std::string getLLVMName(const std::string &Name,
212 bool prefixName = true) {
Chris Lattner1c343042003-08-22 05:40:38 +0000213 assert(!Name.empty() && "Cannot get empty name!");
214
215 // First character cannot start with a number...
216 if (Name[0] >= '0' && Name[0] <= '9')
217 return "\"" + Name + "\"";
218
219 // Scan to see if we have any characters that are not on the "white list"
220 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
221 char C = Name[i];
222 assert(C != '"' && "Illegal character in LLVM value name!");
223 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
224 C != '-' && C != '.' && C != '_')
225 return "\"" + Name + "\"";
226 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000227
Chris Lattner1c343042003-08-22 05:40:38 +0000228 // If we get here, then the identifier is legal to use as a "VarID".
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000229 if (prefixName)
230 return "%"+Name;
231 else
232 return Name;
Chris Lattner1c343042003-08-22 05:40:38 +0000233}
234
Chris Lattnerb86620e2001-10-29 16:37:48 +0000235
Misha Brukmanc566ca362004-03-02 00:22:19 +0000236/// fillTypeNameTable - If the module has a symbol table, take all global types
237/// and stuff their names into the TypeNames map.
238///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000239static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000240 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000241 if (!M) return;
242 const SymbolTable &ST = M->getSymbolTable();
Reid Spencere7e96712004-05-25 08:53:40 +0000243 SymbolTable::type_const_iterator TI = ST.type_begin();
244 for (; TI != ST.type_end(); ++TI ) {
245 // As a heuristic, don't insert pointer to primitive types, because
246 // they are used too often to have a single useful name.
247 //
248 const Type *Ty = cast<Type>(TI->second);
249 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000250 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
251 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencere7e96712004-05-25 08:53:40 +0000252 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000253 }
254}
255
256
257
Misha Brukmanb1c93172005-04-21 23:48:37 +0000258static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000259 std::vector<const Type *> &TypeStack,
260 std::map<const Type *, std::string> &TypeNames,
261 std::string & Result){
262 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)) {
263 Result += Ty->getDescription(); // Base case
264 return;
265 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000266
267 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000268 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000269 if (I != TypeNames.end()) {
270 Result += I->second;
271 return;
272 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000273
John Criswellcd116ba2004-06-01 14:54:08 +0000274 if (isa<OpaqueType>(Ty)) {
275 Result += "opaque";
276 return;
277 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000278
Chris Lattnerb86620e2001-10-29 16:37:48 +0000279 // Check to see if the Type is already on the stack...
280 unsigned Slot = 0, CurSize = TypeStack.size();
281 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
282
Misha Brukmanb1c93172005-04-21 23:48:37 +0000283 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000284 // that we have looped back to a type that we have previously visited.
285 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000286 if (Slot < CurSize) {
287 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
288 return;
289 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000290
291 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000292
Chris Lattner6b727592004-06-17 18:19:28 +0000293 switch (Ty->getTypeID()) {
Chris Lattner91db5822002-03-29 03:44:36 +0000294 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000295 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000296 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
297 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000298 for (FunctionType::param_iterator I = FTy->param_begin(),
299 E = FTy->param_end(); I != E; ++I) {
300 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000301 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000302 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000303 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000304 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000305 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000306 Result += "...";
307 }
308 Result += ")";
309 break;
310 }
311 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000312 const StructType *STy = cast<StructType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000313 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000314 for (StructType::element_iterator I = STy->element_begin(),
315 E = STy->element_end(); I != E; ++I) {
316 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000317 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000318 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000319 }
320 Result += " }";
321 break;
322 }
323 case Type::PointerTyID:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000324 calcTypeName(cast<PointerType>(Ty)->getElementType(),
John Criswellcd116ba2004-06-01 14:54:08 +0000325 TypeStack, TypeNames, Result);
326 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000327 break;
328 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000329 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000330 Result += "[" + utostr(ATy->getNumElements()) + " x ";
331 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
332 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000333 break;
334 }
Brian Gaeke02209042004-08-20 06:00:58 +0000335 case Type::PackedTyID: {
336 const PackedType *PTy = cast<PackedType>(Ty);
337 Result += "<" + utostr(PTy->getNumElements()) + " x ";
338 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
339 Result += ">";
340 break;
341 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000342 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000343 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000344 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000345 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000346 Result += "<unrecognized-type>";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000347 }
348
349 TypeStack.pop_back(); // Remove self from stack...
John Criswellcd116ba2004-06-01 14:54:08 +0000350 return;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000351}
352
353
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000354/// printTypeInt - The internal guts of printing out a type that has a
355/// potentially named portion.
356///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000357static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
358 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000359 // Primitive types always print out their description, regardless of whether
360 // they have been named or not.
361 //
Chris Lattner92d60532003-10-30 00:12:51 +0000362 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
363 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000364
365 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000366 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000367 if (I != TypeNames.end()) return Out << I->second;
368
369 // Otherwise we have a type that has not been named but is a derived type.
370 // Carefully recurse the type hierarchy to print out any contained symbolic
371 // names.
372 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000373 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000374 std::string TypeName;
375 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000376 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000377 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000378}
379
Chris Lattner34b95182001-10-31 04:33:19 +0000380
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000381/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
382/// type, iff there is an entry in the modules symbol table for the specified
383/// type or one of it's component types. This is slower than a simple x << Type
384///
Chris Lattner189d19f2003-11-21 20:23:48 +0000385std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
386 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000387 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000388
389 // If they want us to print out a type, attempt to make it symbolic if there
390 // is a symbol table in the module...
Chris Lattner98cf1f52002-11-20 18:36:02 +0000391 if (M) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000392 std::map<const Type *, std::string> TypeNames;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000393 fillTypeNameTable(M, TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000394
Chris Lattner72f866e2001-10-29 16:40:32 +0000395 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000396 } else {
Chris Lattner72f866e2001-10-29 16:40:32 +0000397 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000398 }
399}
400
Misha Brukmanb1c93172005-04-21 23:48:37 +0000401/// @brief Internal constant writer.
402static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000403 bool PrintName,
404 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000405 SlotMachine *Machine) {
Chris Lattner1e194682002-04-18 18:53:13 +0000406 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
407 Out << (CB == ConstantBool::True ? "true" : "false");
408 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
409 Out << CI->getValue();
410 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
411 Out << CI->getValue();
412 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
413 // We would like to output the FP constant value in exponential notation,
414 // but we cannot do this if doing so will lose precision. Check here to
415 // make sure that we only output it in exponential format if we can parse
416 // the value back and get the same value.
417 //
418 std::string StrVal = ftostr(CFP->getValue());
419
420 // Check to make sure that the stringized number is not some string like
421 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
422 // the string matches the "[-+]?[0-9]" regex.
423 //
424 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
425 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaeke87b4f072003-06-17 23:55:35 +0000426 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner1e194682002-04-18 18:53:13 +0000427 // Reparse stringized version!
428 if (atof(StrVal.c_str()) == CFP->getValue()) {
Chris Lattner472cc102005-01-04 01:56:57 +0000429 Out << StrVal;
430 return;
Chris Lattner1e194682002-04-18 18:53:13 +0000431 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000432
Chris Lattner1e194682002-04-18 18:53:13 +0000433 // Otherwise we could not reparse it to exactly the same value, so we must
434 // output the string in hexadecimal format!
Chris Lattner472cc102005-01-04 01:56:57 +0000435 assert(sizeof(double) == sizeof(uint64_t) &&
Chris Lattner1e194682002-04-18 18:53:13 +0000436 "assuming that double is 64 bits!");
Jim Laskeyb74c6662005-08-17 19:34:49 +0000437 Out << "0x" << utohexstr(DoubleToBits(CFP->getValue()));
Chris Lattner1e194682002-04-18 18:53:13 +0000438
Chris Lattner76b2ff42004-02-15 05:55:15 +0000439 } else if (isa<ConstantAggregateZero>(CV)) {
440 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000441 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
442 // As a special case, print the array as a string if it is an array of
443 // ubytes or an array of sbytes with positive values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000444 //
Chris Lattner1e194682002-04-18 18:53:13 +0000445 const Type *ETy = CA->getType()->getElementType();
446 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
447
448 if (ETy == Type::SByteTy)
449 for (unsigned i = 0; i < CA->getNumOperands(); ++i)
450 if (cast<ConstantSInt>(CA->getOperand(i))->getValue() < 0) {
451 isString = false;
452 break;
453 }
454
455 if (isString) {
456 Out << "c\"";
457 for (unsigned i = 0; i < CA->getNumOperands(); ++i) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000458 unsigned char C =
Chris Lattneraa6ff272004-06-04 23:53:20 +0000459 (unsigned char)cast<ConstantInt>(CA->getOperand(i))->getRawValue();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000460
Chris Lattnere5fd3862002-07-31 23:56:44 +0000461 if (isprint(C) && C != '"' && C != '\\') {
Chris Lattner1e194682002-04-18 18:53:13 +0000462 Out << C;
463 } else {
464 Out << '\\'
465 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
466 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
467 }
468 }
469 Out << "\"";
470
471 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000472 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000473 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000474 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000475 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000476 WriteAsOperandInternal(Out, CA->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000477 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000478 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
479 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000480 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000481 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000482 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000483 }
484 }
485 Out << " ]";
486 }
487 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000488 Out << '{';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000489 if (CS->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000490 Out << ' ';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000491 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
492
493 WriteAsOperandInternal(Out, CS->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000494 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000495
496 for (unsigned i = 1; i < CS->getNumOperands(); i++) {
497 Out << ", ";
498 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
499
500 WriteAsOperandInternal(Out, CS->getOperand(i),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000501 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000502 }
503 }
504
505 Out << " }";
Brian Gaeke02209042004-08-20 06:00:58 +0000506 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
507 const Type *ETy = CP->getType()->getElementType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000508 assert(CP->getNumOperands() > 0 &&
Brian Gaeke02209042004-08-20 06:00:58 +0000509 "Number of operands for a PackedConst must be > 0");
510 Out << '<';
511 Out << ' ';
512 printTypeInt(Out, ETy, TypeTable);
513 WriteAsOperandInternal(Out, CP->getOperand(0),
514 PrintName, TypeTable, Machine);
515 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
516 Out << ", ";
517 printTypeInt(Out, ETy, TypeTable);
518 WriteAsOperandInternal(Out, CP->getOperand(i), PrintName,
519 TypeTable, Machine);
520 }
521 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000522 } else if (isa<ConstantPointerNull>(CV)) {
523 Out << "null";
524
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000525 } else if (isa<UndefValue>(CV)) {
526 Out << "undef";
527
Chris Lattner3cd8c562002-07-30 18:54:25 +0000528 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattnerb8257222003-03-06 23:23:32 +0000529 Out << CE->getOpcodeName() << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000530
Vikram S. Adveb952b542002-07-14 23:14:45 +0000531 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
532 printTypeInt(Out, (*OI)->getType(), TypeTable);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000533 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000534 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000535 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000536 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000537
Chris Lattnercfe8f532002-08-16 21:17:11 +0000538 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000539 Out << " to ";
540 printTypeInt(Out, CE->getType(), TypeTable);
541 }
Misha Brukman21bbdb92004-06-04 21:11:51 +0000542 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000543
Chris Lattnerd84bb632002-04-16 21:36:08 +0000544 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000545 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000546 }
547}
548
549
Misha Brukmanc566ca362004-03-02 00:22:19 +0000550/// WriteAsOperand - Write the name of the specified value out to the specified
551/// ostream. This can be useful when you just want to print int %reg126, not
552/// the whole instruction that generated it.
553///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000554static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000555 bool PrintName,
556 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000557 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000558 Out << ' ';
Reid Spenceraccd7c72004-07-17 23:47:01 +0000559 if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
Chris Lattner1c343042003-08-22 05:40:38 +0000560 Out << getLLVMName(V->getName());
Reid Spenceraccd7c72004-07-17 23:47:01 +0000561 else {
562 const Constant *CV = dyn_cast<Constant>(V);
563 if (CV && !isa<GlobalValue>(CV))
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000564 WriteConstantInt(Out, CV, PrintName, TypeTable, Machine);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000565 else {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000566 int Slot;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000567 if (Machine) {
Reid Spencer56010e42004-05-26 21:56:09 +0000568 Slot = Machine->getSlot(V);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000569 } else {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000570 Machine = createSlotMachine(V);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000571 if (Machine == 0)
Chris Lattner757ee0b2004-06-09 19:41:19 +0000572 Slot = Machine->getSlot(V);
573 else
574 Slot = -1;
Reid Spencer56010e42004-05-26 21:56:09 +0000575 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000576 }
Chris Lattner757ee0b2004-06-09 19:41:19 +0000577 if (Slot != -1)
578 Out << '%' << Slot;
579 else
580 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000581 }
582 }
583}
584
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000585/// WriteAsOperand - Write the name of the specified value out to the specified
586/// ostream. This can be useful when you just want to print int %reg126, not
587/// the whole instruction that generated it.
588///
Chris Lattner189d19f2003-11-21 20:23:48 +0000589std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukmanb1c93172005-04-21 23:48:37 +0000590 bool PrintType, bool PrintName,
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000591 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000592 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000593 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000594
Chris Lattner98cf1f52002-11-20 18:36:02 +0000595 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000596 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000597
598 if (PrintType)
599 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000600
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000601 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000602 return Out;
603}
604
Misha Brukmanb1c93172005-04-21 23:48:37 +0000605/// WriteAsOperandInternal - Write the name of the specified value out to
606/// the specified ostream. This can be useful when you just want to print
Reid Spencer58d30f22004-07-04 11:50:43 +0000607/// int %reg126, not the whole instruction that generated it.
608///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000609static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer58d30f22004-07-04 11:50:43 +0000610 bool PrintName,
611 std::map<const Type*, std::string> &TypeTable,
612 SlotMachine *Machine) {
613 Out << ' ';
614 int Slot;
615 if (Machine) {
616 Slot = Machine->getSlot(T);
617 if (Slot != -1)
618 Out << '%' << Slot;
619 else
620 Out << "<badref>";
621 } else {
622 Out << T->getDescription();
623 }
624}
625
626/// WriteAsOperand - Write the name of the specified value out to the specified
627/// ostream. This can be useful when you just want to print int %reg126, not
628/// the whole instruction that generated it.
629///
630std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Type *Ty,
Misha Brukmanb1c93172005-04-21 23:48:37 +0000631 bool PrintType, bool PrintName,
Reid Spencer58d30f22004-07-04 11:50:43 +0000632 const Module *Context) {
633 std::map<const Type *, std::string> TypeNames;
634 assert(Context != 0 && "Can't write types as operand without module context");
635
636 fillTypeNameTable(Context, TypeNames);
637
638 // if (PrintType)
639 // printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000640
Reid Spencer58d30f22004-07-04 11:50:43 +0000641 printTypeInt(Out, Ty, TypeNames);
642
643 WriteAsOperandInternal(Out, Ty, PrintName, TypeNames, 0);
644 return Out;
645}
646
Chris Lattner189d19f2003-11-21 20:23:48 +0000647namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000648
Chris Lattnerfee714f2001-09-07 16:36:04 +0000649class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000650 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000651 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000652 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000653 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000654 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000655public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000656 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000657 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000658 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000659
660 // If the module has a symbol table, take all global types and stuff their
661 // names into the TypeNames map.
662 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000663 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000664 }
665
Chris Lattner7bfee412001-10-29 16:05:51 +0000666 inline void write(const Module *M) { printModule(M); }
667 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner57698e22002-03-26 18:01:55 +0000668 inline void write(const Function *F) { printFunction(F); }
Chris Lattner7bfee412001-10-29 16:05:51 +0000669 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000670 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattner3462ae32001-12-03 22:26:30 +0000671 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattner7db79582001-11-07 04:21:57 +0000672 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000673
Chris Lattner1e194682002-04-18 18:53:13 +0000674 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
675
Misha Brukman4685e262004-04-28 15:31:21 +0000676 const Module* getModule() { return TheModule; }
677
Misha Brukmand92f54a2004-11-15 19:30:05 +0000678private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000679 void printModule(const Module *M);
680 void printSymbolTable(const SymbolTable &ST);
Chris Lattner3462ae32001-12-03 22:26:30 +0000681 void printConstant(const Constant *CPV);
Chris Lattner7bfee412001-10-29 16:05:51 +0000682 void printGlobal(const GlobalVariable *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000683 void printFunction(const Function *F);
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000684 void printArgument(const Argument *FA);
Chris Lattner7bfee412001-10-29 16:05:51 +0000685 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000686 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000687
688 // printType - Go to extreme measures to attempt to print out a short,
689 // symbolic version of a type name.
690 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000691 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000692 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000693 }
694
695 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
696 // without considering any symbolic types that we may have equal to it.
697 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000698 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000699
Chris Lattner862e3382001-10-13 06:42:36 +0000700 // printInfoComment - Print a little comment after the instruction indicating
701 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000702 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000703};
Reid Spencerf43ac622004-05-27 22:04:46 +0000704} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000705
Misha Brukmanc566ca362004-03-02 00:22:19 +0000706/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
707/// without considering any symbolic types that we may have equal to it.
708///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000709std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000710 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattnerd816b532002-04-13 20:53:41 +0000711 printType(FTy->getReturnType()) << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000712 for (FunctionType::param_iterator I = FTy->param_begin(),
713 E = FTy->param_end(); I != E; ++I) {
714 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000715 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000716 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000717 }
718 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000719 if (FTy->getNumParams()) Out << ", ";
720 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000721 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000722 Out << ')';
Chris Lattner113f4f42002-06-25 16:13:24 +0000723 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000724 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000725 for (StructType::element_iterator I = STy->element_begin(),
726 E = STy->element_end(); I != E; ++I) {
727 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000728 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000729 printType(*I);
730 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000731 Out << " }";
Chris Lattner113f4f42002-06-25 16:13:24 +0000732 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000733 printType(PTy->getElementType()) << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000734 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000735 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000736 printType(ATy->getElementType()) << ']';
Reid Spencere203d352004-08-20 15:37:30 +0000737 } else if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
738 Out << '<' << PTy->getNumElements() << " x ";
739 printType(PTy->getElementType()) << '>';
740 }
741 else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000742 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000743 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000744 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000745 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000746 printType(Ty);
747 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000748 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000749}
750
751
Misha Brukmanb1c93172005-04-21 23:48:37 +0000752void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
Reid Spencer56010e42004-05-26 21:56:09 +0000753 bool PrintName) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000754 if (Operand != 0) {
755 if (PrintType) { Out << ' '; printType(Operand->getType()); }
756 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Machine);
757 } else {
758 Out << "<null operand!>";
759 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000760}
761
Chris Lattner2f7c9632001-06-06 20:29:01 +0000762
Chris Lattner7bfee412001-10-29 16:05:51 +0000763void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +0000764 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +0000765 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +0000766 // require a comment char before it).
767 M->getModuleIdentifier().find('\n') == std::string::npos)
768 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
769
Chris Lattner8068e0c2003-08-24 13:48:48 +0000770 switch (M->getEndianness()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000771 case Module::LittleEndian: Out << "target endian = little\n"; break;
772 case Module::BigEndian: Out << "target endian = big\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000773 case Module::AnyEndianness: break;
774 }
775 switch (M->getPointerSize()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000776 case Module::Pointer32: Out << "target pointersize = 32\n"; break;
777 case Module::Pointer64: Out << "target pointersize = 64\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000778 case Module::AnyPointerSize: break;
779 }
Reid Spencer48f98c82004-07-25 21:44:54 +0000780 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000781 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000782
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000783 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000784 Module::lib_iterator LI = M->lib_begin();
785 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000786 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000787 Out << "deplibs = [ ";
788 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000789 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000790 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000791 if (LI != LE)
792 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000793 }
794 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000795 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000796
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000797 // Loop over the symbol table, emitting all named constants.
Chris Lattner98cf1f52002-11-20 18:36:02 +0000798 printSymbolTable(M->getSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000799
Chris Lattner531f9e92005-03-15 04:54:21 +0000800 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000801 printGlobal(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000802
Misha Brukmana6619a92004-06-21 21:53:56 +0000803 Out << "\nimplementation ; Functions:\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000804
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000805 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000806 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
807 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000808}
809
Chris Lattner7bfee412001-10-29 16:05:51 +0000810void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000811 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000812
Misha Brukmanb1c93172005-04-21 23:48:37 +0000813 if (!GV->hasInitializer())
Misha Brukmana6619a92004-06-21 21:53:56 +0000814 Out << "external ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000815 else
816 switch (GV->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000817 case GlobalValue::InternalLinkage: Out << "internal "; break;
818 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
819 case GlobalValue::WeakLinkage: Out << "weak "; break;
820 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000821 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000822 case GlobalValue::GhostLinkage:
823 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
824 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000825 }
Chris Lattner37798642001-09-18 04:01:05 +0000826
Misha Brukmana6619a92004-06-21 21:53:56 +0000827 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +0000828 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +0000829
Reid Spenceraccd7c72004-07-17 23:47:01 +0000830 if (GV->hasInitializer()) {
831 Constant* C = cast<Constant>(GV->getInitializer());
832 assert(C && "GlobalVar initializer isn't constant?");
Reid Spencerc9c90cf2004-07-18 01:04:19 +0000833 writeOperand(GV->getInitializer(), false, isa<GlobalValue>(C));
Reid Spenceraccd7c72004-07-17 23:47:01 +0000834 }
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000835
Chris Lattner4b96c542005-11-12 00:10:19 +0000836 if (GV->hasSection())
837 Out << ", section \"" << GV->getSection() << '"';
838 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000839 Out << ", align " << GV->getAlignment();
Chris Lattner4b96c542005-11-12 00:10:19 +0000840
Chris Lattner113f4f42002-06-25 16:13:24 +0000841 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000842 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +0000843}
844
Chris Lattnerfee714f2001-09-07 16:36:04 +0000845
Reid Spencere7e96712004-05-25 08:53:40 +0000846// printSymbolTable - Run through symbol table looking for constants
847// and types. Emit their declarations.
Chris Lattner7bfee412001-10-29 16:05:51 +0000848void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +0000849
850 // Print the types.
851 for (SymbolTable::type_const_iterator TI = ST.type_begin();
852 TI != ST.type_end(); ++TI ) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000853 Out << "\t" << getLLVMName(TI->first) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +0000854
855 // Make sure we print out at least one level of the type structure, so
856 // that we do not get %FILE = type %FILE
857 //
858 printTypeAtLeastOneLevel(TI->second) << "\n";
859 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000860
Reid Spencere7e96712004-05-25 08:53:40 +0000861 // Print the constants, in type plane order.
862 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
863 PI != ST.plane_end(); ++PI ) {
864 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
865 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
866
867 for (; VI != VE; ++VI) {
Reid Spenceraccd7c72004-07-17 23:47:01 +0000868 const Value* V = VI->second;
869 const Constant *CPV = dyn_cast<Constant>(V) ;
870 if (CPV && !isa<GlobalValue>(V)) {
Reid Spencer56010e42004-05-26 21:56:09 +0000871 printConstant(CPV);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000872 }
873 }
Chris Lattnera7620d92001-07-15 06:35:59 +0000874 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000875}
876
877
Misha Brukmanc566ca362004-03-02 00:22:19 +0000878/// printConstant - Print out a constant pool entry...
879///
Chris Lattner3462ae32001-12-03 22:26:30 +0000880void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattnerfee714f2001-09-07 16:36:04 +0000881 // Don't print out unnamed constants, they will be inlined
882 if (!CPV->hasName()) return;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000883
Chris Lattneree998be2001-07-26 16:29:38 +0000884 // Print out name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000885 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000886
887 // Write the value out now...
Chris Lattnerd84bb632002-04-16 21:36:08 +0000888 writeOperand(CPV, true, false);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000889
Chris Lattner113f4f42002-06-25 16:13:24 +0000890 printInfoComment(*CPV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000891 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000892}
893
Misha Brukmanc566ca362004-03-02 00:22:19 +0000894/// printFunction - Print all aspects of a function.
895///
Chris Lattner113f4f42002-06-25 16:13:24 +0000896void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000897 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000898 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +0000899
Chris Lattner97e36f22004-12-05 06:44:09 +0000900 // Ensure that no local symbols conflict with global symbols.
901 const_cast<Function*>(F)->renameLocalSymbols();
902
Misha Brukmana6619a92004-06-21 21:53:56 +0000903 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000904
Chris Lattner379a8d22003-04-16 20:28:45 +0000905 if (F->isExternal())
Misha Brukmana6619a92004-06-21 21:53:56 +0000906 Out << "declare ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000907 else
908 switch (F->getLinkage()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000909 case GlobalValue::InternalLinkage: Out << "internal "; break;
910 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
911 case GlobalValue::WeakLinkage: Out << "weak "; break;
912 case GlobalValue::AppendingLinkage: Out << "appending "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000913 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000914 case GlobalValue::GhostLinkage:
915 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
916 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000917 }
918
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000919 // Print the calling convention.
920 switch (F->getCallingConv()) {
921 case CallingConv::C: break; // default
922 case CallingConv::Fast: Out << "fastcc "; break;
923 case CallingConv::Cold: Out << "coldcc "; break;
924 default: Out << "cc" << F->getCallingConv() << " "; break;
925 }
926
Misha Brukman21bbdb92004-06-04 21:11:51 +0000927 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +0000928 if (!F->getName().empty())
Misha Brukmana6619a92004-06-21 21:53:56 +0000929 Out << getLLVMName(F->getName());
Chris Lattner5b337482003-10-18 05:57:43 +0000930 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000931 Out << "\"\"";
932 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000933 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000934
Chris Lattner7bfee412001-10-29 16:05:51 +0000935 // Loop over the arguments, printing them...
Chris Lattner113f4f42002-06-25 16:13:24 +0000936 const FunctionType *FT = F->getFunctionType();
Chris Lattnerfee714f2001-09-07 16:36:04 +0000937
Chris Lattner531f9e92005-03-15 04:54:21 +0000938 for(Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattner149376d2002-10-13 20:57:00 +0000939 printArgument(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000940
941 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +0000942 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000943 if (FT->getNumParams()) Out << ", ";
944 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +0000945 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000946 Out << ')';
Chris Lattnerfee714f2001-09-07 16:36:04 +0000947
Chris Lattner4b96c542005-11-12 00:10:19 +0000948 if (F->hasSection())
949 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000950 if (F->getAlignment())
951 Out << " align " << F->getAlignment();
Chris Lattner4b96c542005-11-12 00:10:19 +0000952
Chris Lattner113f4f42002-06-25 16:13:24 +0000953 if (F->isExternal()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000954 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +0000955 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +0000956 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000957
Chris Lattner6915f8f2002-04-07 22:49:37 +0000958 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +0000959 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
960 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000961
Misha Brukmana6619a92004-06-21 21:53:56 +0000962 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +0000963 }
964
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000965 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000966}
967
Misha Brukmanc566ca362004-03-02 00:22:19 +0000968/// printArgument - This member is called for every argument that is passed into
969/// the function. Simply print it out
970///
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000971void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000972 // Insert commas as we go... the first arg doesn't get a comma
Chris Lattnerfb972ad2005-03-15 05:03:36 +0000973 if (Arg != Arg->getParent()->arg_begin()) Out << ", ";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000974
975 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +0000976 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000977
Chris Lattner2f7c9632001-06-06 20:29:01 +0000978 // Output name, if available...
979 if (Arg->hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +0000980 Out << ' ' << getLLVMName(Arg->getName());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000981}
982
Misha Brukmanc566ca362004-03-02 00:22:19 +0000983/// printBasicBlock - This member is called for each basic block in a method.
984///
Chris Lattner7bfee412001-10-29 16:05:51 +0000985void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000986 if (BB->hasName()) { // Print out the label if it exists...
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000987 Out << "\n" << getLLVMName(BB->getName(), false) << ':';
Chris Lattner408dbdb2002-05-14 16:02:05 +0000988 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukmana6619a92004-06-21 21:53:56 +0000989 Out << "\n; <label>:";
Chris Lattner757ee0b2004-06-09 19:41:19 +0000990 int Slot = Machine.getSlot(BB);
991 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +0000992 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +0000993 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000994 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +0000995 }
Chris Lattner2447ef52003-11-20 00:09:43 +0000996
997 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +0000998 Out << "\t\t; Error: Block without parent!";
Chris Lattner2447ef52003-11-20 00:09:43 +0000999 else {
1000 if (BB != &BB->getParent()->front()) { // Not the entry block?
1001 // Output predecessors for the block...
Misha Brukmana6619a92004-06-21 21:53:56 +00001002 Out << "\t\t;";
Chris Lattner2447ef52003-11-20 00:09:43 +00001003 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001004
Chris Lattner2447ef52003-11-20 00:09:43 +00001005 if (PI == PE) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001006 Out << " No predecessors!";
Chris Lattner2447ef52003-11-20 00:09:43 +00001007 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +00001008 Out << " preds =";
Chris Lattner00211f12003-11-16 22:59:57 +00001009 writeOperand(*PI, false, true);
Chris Lattner2447ef52003-11-20 00:09:43 +00001010 for (++PI; PI != PE; ++PI) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001011 Out << ',';
Chris Lattner2447ef52003-11-20 00:09:43 +00001012 writeOperand(*PI, false, true);
1013 }
Chris Lattner00211f12003-11-16 22:59:57 +00001014 }
Chris Lattner58185f22002-10-02 19:38:55 +00001015 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001016 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001017
Misha Brukmana6619a92004-06-21 21:53:56 +00001018 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001019
Misha Brukmana6619a92004-06-21 21:53:56 +00001020 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001021
Chris Lattnerfee714f2001-09-07 16:36:04 +00001022 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001023 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1024 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001025
Misha Brukmana6619a92004-06-21 21:53:56 +00001026 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001027}
1028
Chris Lattner862e3382001-10-13 06:42:36 +00001029
Misha Brukmanc566ca362004-03-02 00:22:19 +00001030/// printInfoComment - Print a little comment after the instruction indicating
1031/// which slot it occupies.
1032///
Chris Lattner113f4f42002-06-25 16:13:24 +00001033void AssemblyWriter::printInfoComment(const Value &V) {
1034 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001035 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001036 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001037
Chris Lattner113f4f42002-06-25 16:13:24 +00001038 if (!V.hasName()) {
Chris Lattner757ee0b2004-06-09 19:41:19 +00001039 int SlotNum = Machine.getSlot(&V);
1040 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001041 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001042 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001043 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001044 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001045 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001046 }
1047}
1048
Reid Spencer8beac692004-06-09 15:26:53 +00001049/// printInstruction - This member is called for each Instruction in a function..
Misha Brukmanc566ca362004-03-02 00:22:19 +00001050///
Chris Lattner113f4f42002-06-25 16:13:24 +00001051void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001052 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001053
Misha Brukmana6619a92004-06-21 21:53:56 +00001054 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001055
1056 // Print out name if it exists...
Chris Lattner113f4f42002-06-25 16:13:24 +00001057 if (I.hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +00001058 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001059
Chris Lattner06038452005-05-06 05:51:46 +00001060 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001061 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001062 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001063 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001064 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1065 // If this is a call, check if it's a tail call.
1066 Out << "tail ";
1067 }
Chris Lattner504f9242003-09-08 17:45:59 +00001068
Chris Lattner2f7c9632001-06-06 20:29:01 +00001069 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001070 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001071
1072 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001073 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001074
1075 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001076 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1077 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001078 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001079 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001080 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001081 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001082
Chris Lattner8d48df22002-04-13 18:34:38 +00001083 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001084 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001085 writeOperand(Operand , true); Out << ',';
1086 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001087
Chris Lattner113f4f42002-06-25 16:13:24 +00001088 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001089 Out << "\n\t\t";
1090 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001091 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001092 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001093 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001094 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001095 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001096 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001097 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001098
Chris Lattner113f4f42002-06-25 16:13:24 +00001099 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001100 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001101 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001102 writeOperand(I.getOperand(op ), false); Out << ',';
1103 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001104 }
Chris Lattner862e3382001-10-13 06:42:36 +00001105 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001106 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001107 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1108 // Print the calling convention being used.
1109 switch (CI->getCallingConv()) {
1110 case CallingConv::C: break; // default
1111 case CallingConv::Fast: Out << " fastcc"; break;
1112 case CallingConv::Cold: Out << " coldcc"; break;
1113 default: Out << " cc" << CI->getCallingConv(); break;
1114 }
1115
Chris Lattner463d6a52003-08-05 15:34:45 +00001116 const PointerType *PTy = cast<PointerType>(Operand->getType());
1117 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1118 const Type *RetTy = FTy->getReturnType();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001119
Chris Lattner463d6a52003-08-05 15:34:45 +00001120 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001121 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001122 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001123 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001124 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001125 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001126 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001127 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001128 writeOperand(Operand, false);
1129 } else {
1130 writeOperand(Operand, true);
1131 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001132 Out << '(';
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001133 if (CI->getNumOperands() > 1) writeOperand(CI->getOperand(1), true);
Chris Lattner113f4f42002-06-25 16:13:24 +00001134 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001135 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001136 writeOperand(I.getOperand(op), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001137 }
1138
Misha Brukmana6619a92004-06-21 21:53:56 +00001139 Out << " )";
Chris Lattner113f4f42002-06-25 16:13:24 +00001140 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner463d6a52003-08-05 15:34:45 +00001141 const PointerType *PTy = cast<PointerType>(Operand->getType());
1142 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1143 const Type *RetTy = FTy->getReturnType();
1144
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001145 // Print the calling convention being used.
1146 switch (II->getCallingConv()) {
1147 case CallingConv::C: break; // default
1148 case CallingConv::Fast: Out << " fastcc"; break;
1149 case CallingConv::Cold: Out << " coldcc"; break;
1150 default: Out << " cc" << II->getCallingConv(); break;
1151 }
1152
Chris Lattner463d6a52003-08-05 15:34:45 +00001153 // If possible, print out the short form of the invoke instruction. We can
1154 // only do this if the first argument is a pointer to a nonvararg function,
1155 // and if the return type is not a pointer to a function.
1156 //
1157 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001158 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001159 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001160 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001161 writeOperand(Operand, false);
1162 } else {
1163 writeOperand(Operand, true);
1164 }
1165
Misha Brukmana6619a92004-06-21 21:53:56 +00001166 Out << '(';
Chris Lattner113f4f42002-06-25 16:13:24 +00001167 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
1168 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001169 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001170 writeOperand(I.getOperand(op), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001171 }
1172
Misha Brukmana6619a92004-06-21 21:53:56 +00001173 Out << " )\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001174 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001175 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001176 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001177
Chris Lattner113f4f42002-06-25 16:13:24 +00001178 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001179 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001180 printType(AI->getType()->getElementType());
1181 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001182 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001183 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001184 }
Nate Begeman848622f2005-11-05 09:21:28 +00001185 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001186 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001187 }
Chris Lattner862e3382001-10-13 06:42:36 +00001188 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001189 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001190 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001191 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001192 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001193 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001194 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001195 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001196 } else if (Operand) { // Print the normal way...
1197
Misha Brukmanb1c93172005-04-21 23:48:37 +00001198 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001199 // omit the type from all but the first operand. If the instruction has
1200 // different type operands (for example br), then they are all printed.
1201 bool PrintAllTypes = false;
1202 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001203
Chris Lattner52bd5cb92004-03-12 05:53:14 +00001204 // Shift Left & Right print both types even for Ubyte LHS, and select prints
1205 // types even if all operands are bools.
Chris Lattner159485f2005-02-09 17:45:03 +00001206 if (isa<ShiftInst>(I) || isa<SelectInst>(I) || isa<StoreInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001207 PrintAllTypes = true;
1208 } else {
1209 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1210 Operand = I.getOperand(i);
1211 if (Operand->getType() != TheType) {
1212 PrintAllTypes = true; // We have differing types! Print them all!
1213 break;
1214 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001215 }
1216 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001217
Chris Lattner7bfee412001-10-29 16:05:51 +00001218 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001219 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001220 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001221 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001222
Chris Lattner113f4f42002-06-25 16:13:24 +00001223 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001224 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001225 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001226 }
1227 }
1228
Chris Lattner862e3382001-10-13 06:42:36 +00001229 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001230 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001231}
1232
1233
1234//===----------------------------------------------------------------------===//
1235// External Interface declarations
1236//===----------------------------------------------------------------------===//
1237
Chris Lattner8339f7d2003-10-30 23:41:03 +00001238void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001239 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001240 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001241 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001242}
1243
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001244void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001245 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001246 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001247 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001248}
1249
Chris Lattner8339f7d2003-10-30 23:41:03 +00001250void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001251 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001252 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001253
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001254 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001255}
1256
Chris Lattner8339f7d2003-10-30 23:41:03 +00001257void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001258 SlotMachine SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001259 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001260 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001261 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001262}
1263
Chris Lattner8339f7d2003-10-30 23:41:03 +00001264void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001265 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001266 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001267 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001268
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001269 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001270}
Chris Lattner7db79582001-11-07 04:21:57 +00001271
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001272void Constant::print(std::ostream &o) const {
1273 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001274
Misha Brukman21bbdb92004-06-04 21:11:51 +00001275 o << ' ' << getType()->getDescription() << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +00001276
Chris Lattnerab7d1ab2003-05-08 02:08:14 +00001277 std::map<const Type *, std::string> TypeTable;
Chris Lattner1e194682002-04-18 18:53:13 +00001278 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001279}
1280
Misha Brukmanb1c93172005-04-21 23:48:37 +00001281void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001282 if (this == 0)
1283 o << "<null Type>";
1284 else
1285 o << getDescription();
1286}
1287
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001288void Argument::print(std::ostream &o) const {
Chris Lattnere52ed452004-07-13 23:14:34 +00001289 WriteAsOperand(o, this, true, true,
1290 getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001291}
1292
Reid Spencer52641832004-05-25 18:14:38 +00001293// Value::dump - allow easy printing of Values from the debugger.
1294// Located here because so much of the needed functionality is here.
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001295void Value::dump() const { print(std::cerr); }
Reid Spencer52641832004-05-25 18:14:38 +00001296
1297// Type::dump - allow easy printing of Values from the debugger.
1298// Located here because so much of the needed functionality is here.
Reid Spencere7e96712004-05-25 08:53:40 +00001299void Type::dump() const { print(std::cerr); }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001300
1301//===----------------------------------------------------------------------===//
1302// CachedWriter Class Implementation
1303//===----------------------------------------------------------------------===//
1304
Chris Lattner7db79582001-11-07 04:21:57 +00001305void CachedWriter::setModule(const Module *M) {
1306 delete SC; delete AW;
1307 if (M) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001308 SC = new SlotMachine(M );
Misha Brukman21bbdb92004-06-04 21:11:51 +00001309 AW = new AssemblyWriter(Out, *SC, M, 0);
Chris Lattner7db79582001-11-07 04:21:57 +00001310 } else {
1311 SC = 0; AW = 0;
1312 }
1313}
1314
1315CachedWriter::~CachedWriter() {
1316 delete AW;
1317 delete SC;
1318}
1319
Chris Lattner60a7dd12004-07-15 02:51:31 +00001320CachedWriter &CachedWriter::operator<<(const Value &V) {
Chris Lattner7db79582001-11-07 04:21:57 +00001321 assert(AW && SC && "CachedWriter does not have a current module!");
Chris Lattner60a7dd12004-07-15 02:51:31 +00001322 if (const Instruction *I = dyn_cast<Instruction>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001323 AW->write(I);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001324 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001325 AW->write(BB);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001326 else if (const Function *F = dyn_cast<Function>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001327 AW->write(F);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001328 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001329 AW->write(GV);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001330 else
Chris Lattner60a7dd12004-07-15 02:51:31 +00001331 AW->writeOperand(&V, true, true);
Chris Lattner7db79582001-11-07 04:21:57 +00001332 return *this;
1333}
Misha Brukman4685e262004-04-28 15:31:21 +00001334
Chris Lattner60a7dd12004-07-15 02:51:31 +00001335CachedWriter& CachedWriter::operator<<(const Type &Ty) {
Misha Brukman4685e262004-04-28 15:31:21 +00001336 if (SymbolicTypes) {
1337 const Module *M = AW->getModule();
Chris Lattner60a7dd12004-07-15 02:51:31 +00001338 if (M) WriteTypeSymbolic(Out, &Ty, M);
Reid Spencer58d30f22004-07-04 11:50:43 +00001339 } else {
Chris Lattner60a7dd12004-07-15 02:51:31 +00001340 AW->write(&Ty);
Reid Spencer58d30f22004-07-04 11:50:43 +00001341 }
1342 return *this;
Misha Brukman4685e262004-04-28 15:31:21 +00001343}
Misha Brukmanda546ea2004-04-28 19:24:28 +00001344
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001345//===----------------------------------------------------------------------===//
1346//===-- SlotMachine Implementation
1347//===----------------------------------------------------------------------===//
1348
1349#if 0
1350#define SC_DEBUG(X) std::cerr << X
1351#else
1352#define SC_DEBUG(X)
1353#endif
1354
1355// Module level constructor. Causes the contents of the Module (sans functions)
1356// to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001357SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001358 : TheModule(M) ///< Saved for lazy initialization.
1359 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001360 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001361 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001362 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001363 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001364 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001365{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001366}
1367
1368// Function level constructor. Causes the contents of the Module and the one
1369// function provided to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001370SlotMachine::SlotMachine(const Function *F )
Reid Spencer56010e42004-05-26 21:56:09 +00001371 : TheModule( F ? F->getParent() : 0 ) ///< Saved for lazy initialization
1372 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001373 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001374 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001375 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001376 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001377 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001378{
Reid Spencer56010e42004-05-26 21:56:09 +00001379}
1380
1381inline void SlotMachine::initialize(void) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001382 if ( TheModule) {
1383 processModule();
Reid Spencer56010e42004-05-26 21:56:09 +00001384 TheModule = 0; ///< Prevent re-processing next time we're called.
1385 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001386 if ( TheFunction && ! FunctionProcessed) {
1387 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001388 }
1389}
1390
1391// Iterate through all the global variables, functions, and global
Misha Brukmanb1c93172005-04-21 23:48:37 +00001392// variable initializers and create slots for them.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001393void SlotMachine::processModule() {
1394 SC_DEBUG("begin processModule!\n");
1395
1396 // Add all of the global variables to the value table...
Chris Lattner531f9e92005-03-15 04:54:21 +00001397 for (Module::const_global_iterator I = TheModule->global_begin(), E = TheModule->global_end();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001398 I != E; ++I)
1399 createSlot(I);
1400
1401 // Add all the functions to the table
1402 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1403 I != E; ++I)
1404 createSlot(I);
1405
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001406 SC_DEBUG("end processModule!\n");
1407}
1408
1409
Reid Spencer56010e42004-05-26 21:56:09 +00001410// Process the arguments, basic blocks, and instructions of a function.
1411void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001412 SC_DEBUG("begin processFunction!\n");
1413
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001414 // Add all the function arguments
Misha Brukmanb1c93172005-04-21 23:48:37 +00001415 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
Chris Lattner531f9e92005-03-15 04:54:21 +00001416 AE = TheFunction->arg_end(); AI != AE; ++AI)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001417 createSlot(AI);
1418
1419 SC_DEBUG("Inserting Instructions:\n");
1420
1421 // Add all of the basic blocks and instructions
Misha Brukmanb1c93172005-04-21 23:48:37 +00001422 for (Function::const_iterator BB = TheFunction->begin(),
Reid Spencer56010e42004-05-26 21:56:09 +00001423 E = TheFunction->end(); BB != E; ++BB) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001424 createSlot(BB);
1425 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
1426 createSlot(I);
1427 }
1428 }
1429
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001430 FunctionProcessed = true;
1431
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001432 SC_DEBUG("end processFunction!\n");
1433}
1434
1435// Clean up after incorporating a function. This is the only way
Reid Spencer56010e42004-05-26 21:56:09 +00001436// to get out of the function incorporation state that affects the
1437// getSlot/createSlot lock. Function incorporation state is indicated
1438// by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001439void SlotMachine::purgeFunction() {
1440 SC_DEBUG("begin purgeFunction!\n");
1441 fMap.clear(); // Simply discard the function level map
Reid Spencer58d30f22004-07-04 11:50:43 +00001442 fTypes.clear();
Reid Spencer56010e42004-05-26 21:56:09 +00001443 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001444 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001445 SC_DEBUG("end purgeFunction!\n");
1446}
1447
1448/// Get the slot number for a value. This function will assert if you
1449/// ask for a Value that hasn't previously been inserted with createSlot.
1450/// Types are forbidden because Type does not inherit from Value (any more).
Chris Lattner757ee0b2004-06-09 19:41:19 +00001451int SlotMachine::getSlot(const Value *V) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001452 assert( V && "Can't get slot for null Value" );
Misha Brukmanb1c93172005-04-21 23:48:37 +00001453 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1454 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer56010e42004-05-26 21:56:09 +00001455
1456 // Check for uninitialized state and do lazy initialization
1457 this->initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001458
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001459 // Get the type of the value
1460 const Type* VTy = V->getType();
1461
1462 // Find the type plane in the module map
1463 TypedPlanes::const_iterator MI = mMap.find(VTy);
1464
Reid Spencer56010e42004-05-26 21:56:09 +00001465 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001466 // Lookup the type in the function map too
1467 TypedPlanes::const_iterator FI = fMap.find(VTy);
1468 // If there is a corresponding type plane in the function map
1469 if ( FI != fMap.end() ) {
1470 // Lookup the Value in the function map
1471 ValueMap::const_iterator FVI = FI->second.map.find(V);
1472 // If the value doesn't exist in the function map
1473 if ( FVI == FI->second.map.end() ) {
Chris Lattner68a038e2004-06-09 22:22:10 +00001474 // Look up the value in the module map.
1475 if (MI == mMap.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001476 ValueMap::const_iterator MVI = MI->second.map.find(V);
1477 // If we didn't find it, it wasn't inserted
Chris Lattner757ee0b2004-06-09 19:41:19 +00001478 if (MVI == MI->second.map.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001479 assert( MVI != MI->second.map.end() && "Value not found");
1480 // We found it only at the module level
Misha Brukmanb1c93172005-04-21 23:48:37 +00001481 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001482
1483 // else the value exists in the function map
1484 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001485 // Return the slot number as the module's contribution to
1486 // the type plane plus the index in the function's contribution
1487 // to the type plane.
Chris Lattnerb1f04782004-06-15 21:07:32 +00001488 if (MI != mMap.end())
1489 return MI->second.next_slot + FVI->second;
1490 else
1491 return FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001492 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001493 }
1494 }
1495
Reid Spencer8beac692004-06-09 15:26:53 +00001496 // N.B. Can get here only if either !TheFunction or the function doesn't
1497 // have a corresponding type plane for the Value
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001498
1499 // Make sure the type plane exists
Chris Lattner757ee0b2004-06-09 19:41:19 +00001500 if (MI == mMap.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001501 // Lookup the value in the module's map
1502 ValueMap::const_iterator MVI = MI->second.map.find(V);
1503 // Make sure we found it.
Chris Lattner757ee0b2004-06-09 19:41:19 +00001504 if (MVI == MI->second.map.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001505 // Return it.
1506 return MVI->second;
1507}
1508
Reid Spencer58d30f22004-07-04 11:50:43 +00001509/// Get the slot number for a value. This function will assert if you
1510/// ask for a Value that hasn't previously been inserted with createSlot.
1511/// Types are forbidden because Type does not inherit from Value (any more).
1512int SlotMachine::getSlot(const Type *Ty) {
1513 assert( Ty && "Can't get slot for null Type" );
1514
1515 // Check for uninitialized state and do lazy initialization
1516 this->initialize();
1517
1518 if ( TheFunction ) {
1519 // Lookup the Type in the function map
1520 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1521 // If the Type doesn't exist in the function map
1522 if ( FTI == fTypes.map.end() ) {
1523 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1524 // If we didn't find it, it wasn't inserted
Misha Brukmanb1c93172005-04-21 23:48:37 +00001525 if (MTI == mTypes.map.end())
Reid Spencer58d30f22004-07-04 11:50:43 +00001526 return -1;
1527 // We found it only at the module level
Misha Brukmanb1c93172005-04-21 23:48:37 +00001528 return MTI->second;
Reid Spencer58d30f22004-07-04 11:50:43 +00001529
1530 // else the value exists in the function map
1531 } else {
1532 // Return the slot number as the module's contribution to
1533 // the type plane plus the index in the function's contribution
1534 // to the type plane.
1535 return mTypes.next_slot + FTI->second;
1536 }
1537 }
1538
1539 // N.B. Can get here only if either !TheFunction
1540
1541 // Lookup the value in the module's map
1542 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1543 // Make sure we found it.
1544 if (MTI == mTypes.map.end()) return -1;
1545 // Return it.
1546 return MTI->second;
1547}
1548
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001549// Create a new slot, or return the existing slot if it is already
1550// inserted. Note that the logic here parallels getSlot but instead
1551// of asserting when the Value* isn't found, it inserts the value.
1552unsigned SlotMachine::createSlot(const Value *V) {
1553 assert( V && "Can't insert a null Value to SlotMachine");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001554 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1555 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001556
1557 const Type* VTy = V->getType();
1558
1559 // Just ignore void typed things
1560 if (VTy == Type::VoidTy) return 0; // FIXME: Wrong return value!
1561
1562 // Look up the type plane for the Value's type from the module map
1563 TypedPlanes::const_iterator MI = mMap.find(VTy);
1564
Reid Spencer56010e42004-05-26 21:56:09 +00001565 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001566 // Get the type plane for the Value's type from the function map
1567 TypedPlanes::const_iterator FI = fMap.find(VTy);
1568 // If there is a corresponding type plane in the function map
1569 if ( FI != fMap.end() ) {
1570 // Lookup the Value in the function map
1571 ValueMap::const_iterator FVI = FI->second.map.find(V);
1572 // If the value doesn't exist in the function map
1573 if ( FVI == FI->second.map.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001574 // If there is no corresponding type plane in the module map
1575 if ( MI == mMap.end() )
1576 return insertValue(V);
1577 // Look up the value in the module map
1578 ValueMap::const_iterator MVI = MI->second.map.find(V);
1579 // If we didn't find it, it wasn't inserted
1580 if ( MVI == MI->second.map.end() )
1581 return insertValue(V);
1582 else
1583 // We found it only at the module level
1584 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001585
1586 // else the value exists in the function map
1587 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001588 if ( MI == mMap.end() )
1589 return FVI->second;
1590 else
1591 // Return the slot number as the module's contribution to
1592 // the type plane plus the index in the function's contribution
1593 // to the type plane.
1594 return MI->second.next_slot + FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001595 }
1596
1597 // else there is not a corresponding type plane in the function map
1598 } else {
1599 // If the type plane doesn't exists at the module level
1600 if ( MI == mMap.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001601 return insertValue(V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001602 // else type plane exists at the module level, examine it
1603 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001604 // Look up the value in the module's map
1605 ValueMap::const_iterator MVI = MI->second.map.find(V);
1606 // If we didn't find it there either
1607 if ( MVI == MI->second.map.end() )
1608 // Return the slot number as the module's contribution to
1609 // the type plane plus the index of the function map insertion.
1610 return MI->second.next_slot + insertValue(V);
1611 else
1612 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001613 }
1614 }
1615 }
1616
Reid Spencer56010e42004-05-26 21:56:09 +00001617 // N.B. Can only get here if !TheFunction
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001618
1619 // If the module map's type plane is not for the Value's type
1620 if ( MI != mMap.end() ) {
1621 // Lookup the value in the module's map
1622 ValueMap::const_iterator MVI = MI->second.map.find(V);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001623 if ( MVI != MI->second.map.end() )
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001624 return MVI->second;
1625 }
1626
1627 return insertValue(V);
1628}
1629
Reid Spencer58d30f22004-07-04 11:50:43 +00001630// Create a new slot, or return the existing slot if it is already
1631// inserted. Note that the logic here parallels getSlot but instead
1632// of asserting when the Value* isn't found, it inserts the value.
1633unsigned SlotMachine::createSlot(const Type *Ty) {
1634 assert( Ty && "Can't insert a null Type to SlotMachine");
1635
1636 if ( TheFunction ) {
1637 // Lookup the Type in the function map
1638 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1639 // If the type doesn't exist in the function map
1640 if ( FTI == fTypes.map.end() ) {
1641 // Look up the type in the module map
1642 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1643 // If we didn't find it, it wasn't inserted
1644 if ( MTI == mTypes.map.end() )
1645 return insertValue(Ty);
1646 else
1647 // We found it only at the module level
1648 return MTI->second;
1649
1650 // else the value exists in the function map
1651 } else {
1652 // Return the slot number as the module's contribution to
1653 // the type plane plus the index in the function's contribution
1654 // to the type plane.
1655 return mTypes.next_slot + FTI->second;
1656 }
1657 }
1658
1659 // N.B. Can only get here if !TheFunction
1660
1661 // Lookup the type in the module's map
1662 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001663 if ( MTI != mTypes.map.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001664 return MTI->second;
1665
1666 return insertValue(Ty);
1667}
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001668
1669// Low level insert function. Minimal checking is done. This
1670// function is just for the convenience of createSlot (above).
1671unsigned SlotMachine::insertValue(const Value *V ) {
1672 assert(V && "Can't insert a null Value into SlotMachine!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001673 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1674 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001675
Reid Spencer56010e42004-05-26 21:56:09 +00001676 // If this value does not contribute to a plane (is void)
Misha Brukmanb1c93172005-04-21 23:48:37 +00001677 // or if the value already has a name then ignore it.
Reid Spencer56010e42004-05-26 21:56:09 +00001678 if (V->getType() == Type::VoidTy || V->hasName() ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001679 SC_DEBUG("ignored value " << *V << "\n");
1680 return 0; // FIXME: Wrong return value
1681 }
1682
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001683 const Type *VTy = V->getType();
1684 unsigned DestSlot = 0;
1685
Reid Spencer56010e42004-05-26 21:56:09 +00001686 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001687 TypedPlanes::iterator I = fMap.find( VTy );
Misha Brukmanb1c93172005-04-21 23:48:37 +00001688 if ( I == fMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001689 I = fMap.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 } else {
1692 TypedPlanes::iterator I = mMap.find( VTy );
1693 if ( I == mMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001694 I = mMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001695 DestSlot = I->second.map[V] = I->second.next_slot++;
1696 }
1697
Misha Brukmanb1c93172005-04-21 23:48:37 +00001698 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
Reid Spencer56010e42004-05-26 21:56:09 +00001699 DestSlot << " [");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001700 // G = Global, C = Constant, T = Type, F = Function, o = other
Misha Brukmanb1c93172005-04-21 23:48:37 +00001701 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : (isa<Function>(V) ? 'F' :
Reid Spenceraccd7c72004-07-17 23:47:01 +00001702 (isa<Constant>(V) ? 'C' : 'o'))));
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001703 SC_DEBUG("]\n");
1704 return DestSlot;
1705}
1706
Reid Spencer58d30f22004-07-04 11:50:43 +00001707// Low level insert function. Minimal checking is done. This
1708// function is just for the convenience of createSlot (above).
1709unsigned SlotMachine::insertValue(const Type *Ty ) {
1710 assert(Ty && "Can't insert a null Type into SlotMachine!");
1711
1712 unsigned DestSlot = 0;
1713
1714 if ( TheFunction ) {
1715 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1716 } else {
1717 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1718 }
1719 SC_DEBUG(" Inserting type [" << DestSlot << "] = " << Ty << "\n");
1720 return DestSlot;
1721}
1722
Reid Spencere7e96712004-05-25 08:53:40 +00001723// vim: sw=2