blob: 8ff55b66409426e3513ae8092906d2e6ffb245cf [file] [log] [blame]
Chris Lattner8da78af2002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Assembly/Writer.h
11//
Chris Lattner02b93992002-04-12 18:21:53 +000012// Note that these routines must be extremely tolerant of various errors in the
Chris Lattner8f77dae2003-05-08 02:44:12 +000013// LLVM code, because it can be used for debugging transformations.
Chris Lattner02b93992002-04-12 18:21:53 +000014//
Chris Lattner00950542001-06-06 20:29:01 +000015//===----------------------------------------------------------------------===//
16
Chris Lattnerda1fbcc2001-11-07 04:21:57 +000017#include "llvm/Assembly/CachedWriter.h"
Chris Lattner75cf7cf2002-04-08 22:03:40 +000018#include "llvm/Assembly/Writer.h"
Chris Lattnerf082b802002-07-23 18:07:49 +000019#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner95e5a2c2003-10-30 23:41:03 +000020#include "llvm/Assembly/AsmAnnotationWriter.h"
Chris Lattnerd5118982005-05-06 20:26:43 +000021#include "llvm/CallingConv.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000022#include "llvm/Constants.h"
Chris Lattner3eb59c02002-04-29 18:46:50 +000023#include "llvm/DerivedTypes.h"
Chris Lattner863517a2006-01-25 18:57:27 +000024#include "llvm/InlineAsm.h"
Vikram S. Adveb4dbb442002-07-14 23:14:45 +000025#include "llvm/Instruction.h"
Misha Brukman44336292004-07-29 16:53:53 +000026#include "llvm/Instructions.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000027#include "llvm/Module.h"
Chris Lattner007377f2001-09-07 16:36:04 +000028#include "llvm/SymbolTable.h"
Chris Lattner061269b2002-10-02 19:38:55 +000029#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000030#include "llvm/ADT/StringExtras.h"
31#include "llvm/ADT/STLExtras.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000032#include "llvm/Support/MathExtras.h"
Chris Lattner007377f2001-09-07 16:36:04 +000033#include <algorithm>
Chris Lattner31f84992003-11-21 20:23:48 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattner0a8e8e12004-07-15 02:51:31 +000036namespace llvm {
Reid Spencer0d1b77e2004-05-26 07:18:52 +000037
Reid Spenceredd5d9e2005-05-15 16:13:11 +000038// Make virtual table appear in this compilation unit.
39AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
40
Reid Spencer0d1b77e2004-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 Spencer0e25e1c2004-07-04 11:50:43 +000051 typedef std::map<const Type*, unsigned> TypeMap;
Reid Spencer0d1b77e2004-05-26 07:18:52 +000052
53 /// @brief A plane with next slot number and ValueMap
Misha Brukmanfd939082005-04-21 23:48:37 +000054 struct ValuePlane {
Reid Spencer0d1b77e2004-05-26 07:18:52 +000055 unsigned next_slot; ///< The next slot number to use
56 ValueMap map; ///< The map of Value* -> unsigned
Reid Spencer0e25e1c2004-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 Spencer0d1b77e2004-05-26 07:18:52 +000065 };
66
67 /// @brief The map of planes by Type
Reid Spencer0e25e1c2004-07-04 11:50:43 +000068 typedef std::map<const Type*, ValuePlane> TypedPlanes;
Reid Spencer0d1b77e2004-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 Lattner69566452004-06-09 19:41:19 +000087 int getSlot(const Value *V);
Reid Spencer0e25e1c2004-07-04 11:50:43 +000088 int getSlot(const Type*Ty);
Reid Spencerfc621e22004-06-09 15:26:53 +000089
90 /// Determine if a Value has a slot or not
91 bool hasSlot(const Value* V);
Reid Spencer0e25e1c2004-07-04 11:50:43 +000092 bool hasSlot(const Type* Ty);
Reid Spencer0d1b77e2004-05-26 07:18:52 +000093
94/// @}
95/// @name Mutators
96/// @{
97public:
Misha Brukmanfd939082005-04-21 23:48:37 +000098 /// If you'd like to deal with a function instead of just a module, use
Reid Spencer0d1b77e2004-05-26 07:18:52 +000099 /// this method to get its data into the SlotMachine.
Misha Brukmanfd939082005-04-21 23:48:37 +0000100 void incorporateFunction(const Function *F) {
101 TheFunction = F;
Reid Spencer28531c72004-08-16 07:46:33 +0000102 FunctionProcessed = false;
103 }
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000104
Misha Brukmanfd939082005-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 Spencer0d1b77e2004-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 Spencerb03de0c2004-05-26 21:56:09 +0000114 /// This function does the actual initialization.
115 inline void initialize();
116
Misha Brukmanfd939082005-04-21 23:48:37 +0000117 /// Values can be crammed into here at will. If they haven't
Reid Spencer0d1b77e2004-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 Spencer0e25e1c2004-07-04 11:50:43 +0000121 unsigned createSlot(const Type* Ty);
Reid Spencer0d1b77e2004-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 Brukmanfd939082005-04-21 23:48:37 +0000125 /// Value that's already been inserted.
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000126 unsigned insertValue( const Value *V );
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000127 unsigned insertValue( const Type* Ty);
Reid Spencer0d1b77e2004-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 Spencerb03de0c2004-05-26 21:56:09 +0000133 /// Add all of the functions arguments, basic blocks, and instructions
134 void processFunction();
135
Reid Spencer0d1b77e2004-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 Spencerb03de0c2004-05-26 21:56:09 +0000145 const Module* TheModule;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000146
Reid Spencerb03de0c2004-05-26 21:56:09 +0000147 /// @brief The function for which we are holding slot numbers
148 const Function* TheFunction;
Reid Spencer28531c72004-08-16 07:46:33 +0000149 bool FunctionProcessed;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000150
151 /// @brief The TypePlanes map for the module level data
152 TypedPlanes mMap;
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000153 TypePlane mTypes;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000154
155 /// @brief The TypePlanes map for the function level data
156 TypedPlanes fMap;
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000157 TypePlane fTypes;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000158
159/// @}
160
161};
162
Chris Lattner0a8e8e12004-07-15 02:51:31 +0000163} // end namespace llvm
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000164
Chris Lattner7f8897f2006-08-27 22:42:52 +0000165static RegisterPass<PrintModulePass>
Chris Lattner3dd965c2006-08-21 17:20:01 +0000166X("printm", "Print module to stderr");
Chris Lattner7f8897f2006-08-27 22:42:52 +0000167static RegisterPass<PrintFunctionPass>
Chris Lattner3dd965c2006-08-21 17:20:01 +0000168Y("print","Print function to stderr");
Chris Lattnerf082b802002-07-23 18:07:49 +0000169
Misha Brukmanfd939082005-04-21 23:48:37 +0000170static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattner7b13f562003-05-08 02:08:14 +0000171 bool PrintName,
172 std::map<const Type *, std::string> &TypeTable,
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000173 SlotMachine *Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000174
Misha Brukmanfd939082005-04-21 23:48:37 +0000175static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000176 bool PrintName,
177 std::map<const Type *, std::string> &TypeTable,
178 SlotMachine *Machine);
179
Chris Lattner207b5bc2001-10-29 16:37:48 +0000180static const Module *getModuleFromVal(const Value *V) {
Chris Lattner949a3622003-07-23 15:30:06 +0000181 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +0000182 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +0000183 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +0000184 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +0000185 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner79df7c02002-03-26 18:01:55 +0000186 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000187 return M ? M->getParent() : 0;
Chris Lattner949a3622003-07-23 15:30:06 +0000188 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattner207b5bc2001-10-29 16:37:48 +0000189 return GV->getParent();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000190 return 0;
191}
192
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000193static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattner949a3622003-07-23 15:30:06 +0000194 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000195 return new SlotMachine(FA->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000196 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000197 return new SlotMachine(I->getParent()->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000198 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000199 return new SlotMachine(BB->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000200 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000201 return new SlotMachine(GV->getParent());
Chris Lattner949a3622003-07-23 15:30:06 +0000202 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000203 return new SlotMachine(Func);
Chris Lattnerc1824992001-10-29 16:05:51 +0000204 }
205 return 0;
206}
Chris Lattner00950542001-06-06 20:29:01 +0000207
Chris Lattner24b8a5d2003-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 Evlogimenos9913e592004-12-10 05:41:10 +0000211static std::string getLLVMName(const std::string &Name,
212 bool prefixName = true) {
Chris Lattner24b8a5d2003-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 Brukmanfd939082005-04-21 23:48:37 +0000227
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000228 // If we get here, then the identifier is legal to use as a "VarID".
Alkis Evlogimenos9913e592004-12-10 05:41:10 +0000229 if (prefixName)
230 return "%"+Name;
231 else
232 return Name;
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000233}
234
Chris Lattner207b5bc2001-10-29 16:37:48 +0000235
Misha Brukmanab5c6002004-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 Lattner207b5bc2001-10-29 16:37:48 +0000239static void fillTypeNameTable(const Module *M,
Chris Lattner7b13f562003-05-08 02:08:14 +0000240 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner6e6026b2002-11-20 18:36:02 +0000241 if (!M) return;
242 const SymbolTable &ST = M->getSymbolTable();
Reid Spencer9231ac82004-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 Spencerb03de0c2004-05-26 21:56:09 +0000250 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
251 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencer9231ac82004-05-25 08:53:40 +0000252 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattner207b5bc2001-10-29 16:37:48 +0000253 }
254}
255
256
257
Misha Brukmanfd939082005-04-21 23:48:37 +0000258static void calcTypeName(const Type *Ty,
John Criswell4ff620a2004-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 Lattner207b5bc2001-10-29 16:37:48 +0000266
267 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000268 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000269 if (I != TypeNames.end()) {
270 Result += I->second;
271 return;
272 }
Chris Lattner207b5bc2001-10-29 16:37:48 +0000273
John Criswell4ff620a2004-06-01 14:54:08 +0000274 if (isa<OpaqueType>(Ty)) {
275 Result += "opaque";
276 return;
277 }
Chris Lattner88c17382003-10-30 00:22:33 +0000278
Chris Lattner207b5bc2001-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 Brukmanfd939082005-04-21 23:48:37 +0000283 // This is another base case for the recursion. In this case, we know
Chris Lattner207b5bc2001-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 Criswell4ff620a2004-06-01 14:54:08 +0000286 if (Slot < CurSize) {
287 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
288 return;
289 }
Chris Lattner207b5bc2001-10-29 16:37:48 +0000290
291 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanfd939082005-04-21 23:48:37 +0000292
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000293 switch (Ty->getTypeID()) {
Chris Lattner6bfd6a52002-03-29 03:44:36 +0000294 case Type::FunctionTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000295 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000296 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
297 Result += " (";
Chris Lattnerd5d89962004-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 Lattner207b5bc2001-10-29 16:37:48 +0000301 Result += ", ";
John Criswell4ff620a2004-06-01 14:54:08 +0000302 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000303 }
Chris Lattner2761e9f2002-04-13 20:53:41 +0000304 if (FTy->isVarArg()) {
Chris Lattnerd5d89962004-02-09 04:14:01 +0000305 if (FTy->getNumParams()) Result += ", ";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000306 Result += "...";
307 }
308 Result += ")";
309 break;
310 }
311 case Type::StructTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000312 const StructType *STy = cast<StructType>(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000313 Result += "{ ";
Chris Lattnerd21cd802004-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 Lattner207b5bc2001-10-29 16:37:48 +0000317 Result += ", ";
John Criswell4ff620a2004-06-01 14:54:08 +0000318 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000319 }
320 Result += " }";
321 break;
322 }
323 case Type::PointerTyID:
Misha Brukmanfd939082005-04-21 23:48:37 +0000324 calcTypeName(cast<PointerType>(Ty)->getElementType(),
John Criswell4ff620a2004-06-01 14:54:08 +0000325 TypeStack, TypeNames, Result);
326 Result += "*";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000327 break;
328 case Type::ArrayTyID: {
Chris Lattner949a3622003-07-23 15:30:06 +0000329 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswell4ff620a2004-06-01 14:54:08 +0000330 Result += "[" + utostr(ATy->getNumElements()) + " x ";
331 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
332 Result += "]";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000333 break;
334 }
Brian Gaeke715c90b2004-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 Lattner9e094c42003-05-14 17:50:47 +0000342 case Type::OpaqueTyID:
John Criswell4ff620a2004-06-01 14:54:08 +0000343 Result += "opaque";
Chris Lattner9e094c42003-05-14 17:50:47 +0000344 break;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000345 default:
John Criswell4ff620a2004-06-01 14:54:08 +0000346 Result += "<unrecognized-type>";
Chris Lattner207b5bc2001-10-29 16:37:48 +0000347 }
348
349 TypeStack.pop_back(); // Remove self from stack...
John Criswell4ff620a2004-06-01 14:54:08 +0000350 return;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000351}
352
353
Misha Brukman9d0802e2004-03-01 19:48:13 +0000354/// printTypeInt - The internal guts of printing out a type that has a
355/// potentially named portion.
356///
Chris Lattner7b13f562003-05-08 02:08:14 +0000357static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
358 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner207b5bc2001-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 Lattnerdaf2a492003-10-30 00:12:51 +0000362 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
363 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000364
365 // Check to see if the type is named.
Chris Lattner7b13f562003-05-08 02:08:14 +0000366 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner207b5bc2001-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 Lattner7b13f562003-05-08 02:08:14 +0000373 std::vector<const Type *> TypeStack;
John Criswell4ff620a2004-06-01 14:54:08 +0000374 std::string TypeName;
375 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner697954c2002-01-20 22:54:45 +0000376 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswell4ff620a2004-06-01 14:54:08 +0000377 return (Out << TypeName);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000378}
379
Chris Lattnere51e03b2001-10-31 04:33:19 +0000380
Misha Brukman9d0802e2004-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 Lattner31f84992003-11-21 20:23:48 +0000385std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
386 const Module *M) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000387 Out << ' ';
Chris Lattner207b5bc2001-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 Lattner6e6026b2002-11-20 18:36:02 +0000391 if (M) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000392 std::map<const Type *, std::string> TypeNames;
Chris Lattner207b5bc2001-10-29 16:37:48 +0000393 fillTypeNameTable(M, TypeNames);
Misha Brukmanfd939082005-04-21 23:48:37 +0000394
Chris Lattner7b8660d2001-10-29 16:40:32 +0000395 return printTypeInt(Out, Ty, TypeNames);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000396 } else {
Chris Lattner7b8660d2001-10-29 16:40:32 +0000397 return Out << Ty->getDescription();
Chris Lattner207b5bc2001-10-29 16:37:48 +0000398 }
399}
400
Chris Lattner18365502006-01-23 23:03:36 +0000401// PrintEscapedString - Print each character of the specified string, escaping
402// it if it is not printable or if it is an escape char.
403static void PrintEscapedString(const std::string &Str, std::ostream &Out) {
404 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
405 unsigned char C = Str[i];
406 if (isprint(C) && C != '"' && C != '\\') {
407 Out << C;
408 } else {
409 Out << '\\'
410 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
411 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
412 }
413 }
414}
415
Misha Brukmanfd939082005-04-21 23:48:37 +0000416/// @brief Internal constant writer.
417static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattner7b13f562003-05-08 02:08:14 +0000418 bool PrintName,
419 std::map<const Type *, std::string> &TypeTable,
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000420 SlotMachine *Machine) {
Jim Laskey38a409c2006-02-27 10:33:53 +0000421 const int IndentSize = 4;
422 static std::string Indent = "\n";
Chris Lattner66e810b2002-04-18 18:53:13 +0000423 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
Chris Lattner9fb471d2006-09-28 22:50:29 +0000424 Out << (CB->getValue() ? "true" : "false");
Reid Spencerb83eb642006-10-20 07:07:24 +0000425 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
426 if (CI->getType()->isSigned())
427 Out << CI->getSExtValue();
428 else
429 Out << CI->getZExtValue();
Chris Lattner66e810b2002-04-18 18:53:13 +0000430 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
431 // We would like to output the FP constant value in exponential notation,
432 // but we cannot do this if doing so will lose precision. Check here to
433 // make sure that we only output it in exponential format if we can parse
434 // the value back and get the same value.
435 //
436 std::string StrVal = ftostr(CFP->getValue());
437
438 // Check to make sure that the stringized number is not some string like
439 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
440 // the string matches the "[-+]?[0-9]" regex.
441 //
442 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
443 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaekeb471a232003-06-17 23:55:35 +0000444 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner66e810b2002-04-18 18:53:13 +0000445 // Reparse stringized version!
446 if (atof(StrVal.c_str()) == CFP->getValue()) {
Chris Lattner71d94d12005-01-04 01:56:57 +0000447 Out << StrVal;
448 return;
Chris Lattner66e810b2002-04-18 18:53:13 +0000449 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000450
Chris Lattner66e810b2002-04-18 18:53:13 +0000451 // Otherwise we could not reparse it to exactly the same value, so we must
452 // output the string in hexadecimal format!
Chris Lattner71d94d12005-01-04 01:56:57 +0000453 assert(sizeof(double) == sizeof(uint64_t) &&
Chris Lattner66e810b2002-04-18 18:53:13 +0000454 "assuming that double is 64 bits!");
Jim Laskeycb6682f2005-08-17 19:34:49 +0000455 Out << "0x" << utohexstr(DoubleToBits(CFP->getValue()));
Chris Lattner66e810b2002-04-18 18:53:13 +0000456
Chris Lattnerde512b52004-02-15 05:55:15 +0000457 } else if (isa<ConstantAggregateZero>(CV)) {
458 Out << "zeroinitializer";
Chris Lattner66e810b2002-04-18 18:53:13 +0000459 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
460 // As a special case, print the array as a string if it is an array of
461 // ubytes or an array of sbytes with positive values.
Misha Brukmanfd939082005-04-21 23:48:37 +0000462 //
Chris Lattner66e810b2002-04-18 18:53:13 +0000463 const Type *ETy = CA->getType()->getElementType();
Chris Lattner18365502006-01-23 23:03:36 +0000464 if (CA->isString()) {
Chris Lattner66e810b2002-04-18 18:53:13 +0000465 Out << "c\"";
Chris Lattner18365502006-01-23 23:03:36 +0000466 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner66e810b2002-04-18 18:53:13 +0000467 Out << "\"";
468
469 } else { // Cannot output in string format...
Misha Brukman40c732c2004-06-04 21:11:51 +0000470 Out << '[';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000471 if (CA->getNumOperands()) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000472 Out << ' ';
Chris Lattner66e810b2002-04-18 18:53:13 +0000473 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000474 WriteAsOperandInternal(Out, CA->getOperand(0),
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000475 PrintName, TypeTable, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000476 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
477 Out << ", ";
Chris Lattner66e810b2002-04-18 18:53:13 +0000478 printTypeInt(Out, ETy, TypeTable);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000479 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000480 TypeTable, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000481 }
482 }
483 Out << " ]";
484 }
485 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000486 Out << '{';
Jim Laskeya3f332b2006-02-25 12:27:03 +0000487 unsigned N = CS->getNumOperands();
488 if (N) {
Jim Laskey38a409c2006-02-27 10:33:53 +0000489 if (N > 2) {
490 Indent += std::string(IndentSize, ' ');
491 Out << Indent;
492 } else {
493 Out << ' ';
494 }
Chris Lattner7a716ad2002-04-16 21:36:08 +0000495 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
496
497 WriteAsOperandInternal(Out, CS->getOperand(0),
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000498 PrintName, TypeTable, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000499
Jim Laskeya3f332b2006-02-25 12:27:03 +0000500 for (unsigned i = 1; i < N; i++) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000501 Out << ", ";
Jim Laskey38a409c2006-02-27 10:33:53 +0000502 if (N > 2) Out << Indent;
Chris Lattner7a716ad2002-04-16 21:36:08 +0000503 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
504
505 WriteAsOperandInternal(Out, CS->getOperand(i),
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000506 PrintName, TypeTable, Machine);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000507 }
Jim Laskey38a409c2006-02-27 10:33:53 +0000508 if (N > 2) Indent.resize(Indent.size() - IndentSize);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000509 }
Jim Laskeya3f332b2006-02-25 12:27:03 +0000510
Chris Lattner7a716ad2002-04-16 21:36:08 +0000511 Out << " }";
Brian Gaeke715c90b2004-08-20 06:00:58 +0000512 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
513 const Type *ETy = CP->getType()->getElementType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000514 assert(CP->getNumOperands() > 0 &&
Brian Gaeke715c90b2004-08-20 06:00:58 +0000515 "Number of operands for a PackedConst must be > 0");
516 Out << '<';
517 Out << ' ';
518 printTypeInt(Out, ETy, TypeTable);
519 WriteAsOperandInternal(Out, CP->getOperand(0),
520 PrintName, TypeTable, Machine);
521 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
522 Out << ", ";
523 printTypeInt(Out, ETy, TypeTable);
524 WriteAsOperandInternal(Out, CP->getOperand(i), PrintName,
525 TypeTable, Machine);
526 }
527 Out << " >";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000528 } else if (isa<ConstantPointerNull>(CV)) {
529 Out << "null";
530
Chris Lattnerb976e662004-10-16 18:08:06 +0000531 } else if (isa<UndefValue>(CV)) {
532 Out << "undef";
533
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000534 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattner38d87732003-03-06 23:23:32 +0000535 Out << CE->getOpcodeName() << " (";
Misha Brukmanfd939082005-04-21 23:48:37 +0000536
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000537 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
538 printTypeInt(Out, (*OI)->getType(), TypeTable);
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000539 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Machine);
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000540 if (OI+1 != CE->op_end())
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000541 Out << ", ";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000542 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000543
Reid Spencer3da59db2006-11-27 01:05:10 +0000544 if (CE->isCast()) {
Chris Lattner95586b82002-08-15 19:37:43 +0000545 Out << " to ";
546 printTypeInt(Out, CE->getType(), TypeTable);
547 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000548
Misha Brukman40c732c2004-06-04 21:11:51 +0000549 Out << ')';
Chris Lattner95586b82002-08-15 19:37:43 +0000550
Chris Lattner7a716ad2002-04-16 21:36:08 +0000551 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000552 Out << "<placeholder or erroneous Constant>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000553 }
554}
555
556
Misha Brukmanab5c6002004-03-02 00:22:19 +0000557/// WriteAsOperand - Write the name of the specified value out to the specified
558/// ostream. This can be useful when you just want to print int %reg126, not
559/// the whole instruction that generated it.
560///
Misha Brukmanfd939082005-04-21 23:48:37 +0000561static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattner7b13f562003-05-08 02:08:14 +0000562 bool PrintName,
563 std::map<const Type*, std::string> &TypeTable,
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000564 SlotMachine *Machine) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000565 Out << ' ';
Reid Spencer79703962004-07-17 23:47:01 +0000566 if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
Chris Lattner24b8a5d2003-08-22 05:40:38 +0000567 Out << getLLVMName(V->getName());
Reid Spencer79703962004-07-17 23:47:01 +0000568 else {
569 const Constant *CV = dyn_cast<Constant>(V);
Chris Lattner80cd1152006-01-25 22:26:05 +0000570 if (CV && !isa<GlobalValue>(CV)) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000571 WriteConstantInt(Out, CV, PrintName, TypeTable, Machine);
Chris Lattner80cd1152006-01-25 22:26:05 +0000572 } else if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
573 Out << "asm ";
574 if (IA->hasSideEffects())
575 Out << "sideeffect ";
576 Out << '"';
577 PrintEscapedString(IA->getAsmString(), Out);
578 Out << "\", \"";
579 PrintEscapedString(IA->getConstraintString(), Out);
580 Out << '"';
581 } else {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000582 int Slot;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000583 if (Machine) {
Reid Spencerb03de0c2004-05-26 21:56:09 +0000584 Slot = Machine->getSlot(V);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000585 } else {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000586 Machine = createSlotMachine(V);
Chris Lattner5b5cc5f2006-05-14 18:46:52 +0000587 if (Machine)
Chris Lattner69566452004-06-09 19:41:19 +0000588 Slot = Machine->getSlot(V);
589 else
590 Slot = -1;
Reid Spencerb03de0c2004-05-26 21:56:09 +0000591 delete Machine;
Chris Lattner7a716ad2002-04-16 21:36:08 +0000592 }
Chris Lattner69566452004-06-09 19:41:19 +0000593 if (Slot != -1)
594 Out << '%' << Slot;
595 else
596 Out << "<badref>";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000597 }
598 }
599}
600
Misha Brukman9d0802e2004-03-01 19:48:13 +0000601/// WriteAsOperand - Write the name of the specified value out to the specified
602/// ostream. This can be useful when you just want to print int %reg126, not
603/// the whole instruction that generated it.
604///
Chris Lattner31f84992003-11-21 20:23:48 +0000605std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukmanfd939082005-04-21 23:48:37 +0000606 bool PrintType, bool PrintName,
Misha Brukman9d0802e2004-03-01 19:48:13 +0000607 const Module *Context) {
Chris Lattner7b13f562003-05-08 02:08:14 +0000608 std::map<const Type *, std::string> TypeNames;
Chris Lattner607dc682002-07-10 16:48:17 +0000609 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattner207b5bc2001-10-29 16:37:48 +0000610
Chris Lattner6e6026b2002-11-20 18:36:02 +0000611 if (Context)
Chris Lattner607dc682002-07-10 16:48:17 +0000612 fillTypeNameTable(Context, TypeNames);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000613
614 if (PrintType)
615 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanfd939082005-04-21 23:48:37 +0000616
Chris Lattner607dc682002-07-10 16:48:17 +0000617 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner622f7402001-07-20 19:15:21 +0000618 return Out;
619}
620
Misha Brukmanfd939082005-04-21 23:48:37 +0000621/// WriteAsOperandInternal - Write the name of the specified value out to
622/// the specified ostream. This can be useful when you just want to print
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000623/// int %reg126, not the whole instruction that generated it.
624///
Misha Brukmanfd939082005-04-21 23:48:37 +0000625static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000626 bool PrintName,
627 std::map<const Type*, std::string> &TypeTable,
628 SlotMachine *Machine) {
629 Out << ' ';
630 int Slot;
631 if (Machine) {
632 Slot = Machine->getSlot(T);
633 if (Slot != -1)
634 Out << '%' << Slot;
635 else
636 Out << "<badref>";
637 } else {
638 Out << T->getDescription();
639 }
640}
641
642/// WriteAsOperand - Write the name of the specified value out to the specified
643/// ostream. This can be useful when you just want to print int %reg126, not
644/// the whole instruction that generated it.
645///
646std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Type *Ty,
Misha Brukmanfd939082005-04-21 23:48:37 +0000647 bool PrintType, bool PrintName,
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000648 const Module *Context) {
649 std::map<const Type *, std::string> TypeNames;
650 assert(Context != 0 && "Can't write types as operand without module context");
651
652 fillTypeNameTable(Context, TypeNames);
653
654 // if (PrintType)
655 // printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanfd939082005-04-21 23:48:37 +0000656
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000657 printTypeInt(Out, Ty, TypeNames);
658
659 WriteAsOperandInternal(Out, Ty, PrintName, TypeNames, 0);
660 return Out;
661}
662
Chris Lattner31f84992003-11-21 20:23:48 +0000663namespace llvm {
Chris Lattnerd8c2e422001-07-12 23:35:26 +0000664
Chris Lattner007377f2001-09-07 16:36:04 +0000665class AssemblyWriter {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000666 std::ostream &Out;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000667 SlotMachine &Machine;
Chris Lattnerc1824992001-10-29 16:05:51 +0000668 const Module *TheModule;
Chris Lattner7b13f562003-05-08 02:08:14 +0000669 std::map<const Type *, std::string> TypeNames;
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000670 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner00950542001-06-06 20:29:01 +0000671public:
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000672 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000673 AssemblyAnnotationWriter *AAW)
Misha Brukman0313e0b2004-06-21 21:53:56 +0000674 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattnerc1824992001-10-29 16:05:51 +0000675
676 // If the module has a symbol table, take all global types and stuff their
677 // names into the TypeNames map.
678 //
Chris Lattner207b5bc2001-10-29 16:37:48 +0000679 fillTypeNameTable(M, TypeNames);
Chris Lattner00950542001-06-06 20:29:01 +0000680 }
681
Chris Lattnerc1824992001-10-29 16:05:51 +0000682 inline void write(const Module *M) { printModule(M); }
683 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner79df7c02002-03-26 18:01:55 +0000684 inline void write(const Function *F) { printFunction(F); }
Chris Lattnerc1824992001-10-29 16:05:51 +0000685 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner7e708292002-06-25 16:13:24 +0000686 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000687 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattnerda1fbcc2001-11-07 04:21:57 +0000688 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner00950542001-06-06 20:29:01 +0000689
Chris Lattner66e810b2002-04-18 18:53:13 +0000690 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
691
Misha Brukman5cf1acf2004-04-28 15:31:21 +0000692 const Module* getModule() { return TheModule; }
693
Misha Brukmanf771bea2004-11-15 19:30:05 +0000694private:
Chris Lattnerc1824992001-10-29 16:05:51 +0000695 void printModule(const Module *M);
696 void printSymbolTable(const SymbolTable &ST);
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000697 void printConstant(const Constant *CPV);
Chris Lattnerc1824992001-10-29 16:05:51 +0000698 void printGlobal(const GlobalVariable *GV);
Chris Lattner79df7c02002-03-26 18:01:55 +0000699 void printFunction(const Function *F);
Chris Lattner73e21422002-04-09 19:48:49 +0000700 void printArgument(const Argument *FA);
Chris Lattnerc1824992001-10-29 16:05:51 +0000701 void printBasicBlock(const BasicBlock *BB);
Chris Lattner7e708292002-06-25 16:13:24 +0000702 void printInstruction(const Instruction &I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000703
704 // printType - Go to extreme measures to attempt to print out a short,
705 // symbolic version of a type name.
706 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000707 std::ostream &printType(const Type *Ty) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000708 return printTypeInt(Out, Ty, TypeNames);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000709 }
710
711 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
712 // without considering any symbolic types that we may have equal to it.
713 //
Chris Lattner7b13f562003-05-08 02:08:14 +0000714 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattnerc1824992001-10-29 16:05:51 +0000715
Chris Lattnere02fa852001-10-13 06:42:36 +0000716 // printInfoComment - Print a little comment after the instruction indicating
717 // which slot it occupies.
Chris Lattner7e708292002-06-25 16:13:24 +0000718 void printInfoComment(const Value &V);
Chris Lattner00950542001-06-06 20:29:01 +0000719};
Reid Spencer73b74952004-05-27 22:04:46 +0000720} // end of llvm namespace
Chris Lattner00950542001-06-06 20:29:01 +0000721
Misha Brukmanab5c6002004-03-02 00:22:19 +0000722/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
723/// without considering any symbolic types that we may have equal to it.
724///
Chris Lattner7b13f562003-05-08 02:08:14 +0000725std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner7e708292002-06-25 16:13:24 +0000726 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattner2761e9f2002-04-13 20:53:41 +0000727 printType(FTy->getReturnType()) << " (";
Chris Lattnerd5d89962004-02-09 04:14:01 +0000728 for (FunctionType::param_iterator I = FTy->param_begin(),
729 E = FTy->param_end(); I != E; ++I) {
730 if (I != FTy->param_begin())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000731 Out << ", ";
Chris Lattner7a716ad2002-04-16 21:36:08 +0000732 printType(*I);
Chris Lattner2761e9f2002-04-13 20:53:41 +0000733 }
734 if (FTy->isVarArg()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000735 if (FTy->getNumParams()) Out << ", ";
736 Out << "...";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000737 }
Misha Brukman0313e0b2004-06-21 21:53:56 +0000738 Out << ')';
Chris Lattner7e708292002-06-25 16:13:24 +0000739 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000740 Out << "{ ";
Chris Lattnerd21cd802004-02-09 04:37:31 +0000741 for (StructType::element_iterator I = STy->element_begin(),
742 E = STy->element_end(); I != E; ++I) {
743 if (I != STy->element_begin())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000744 Out << ", ";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000745 printType(*I);
746 }
Misha Brukman0313e0b2004-06-21 21:53:56 +0000747 Out << " }";
Chris Lattner7e708292002-06-25 16:13:24 +0000748 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman40c732c2004-06-04 21:11:51 +0000749 printType(PTy->getElementType()) << '*';
Chris Lattner7e708292002-06-25 16:13:24 +0000750 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000751 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman40c732c2004-06-04 21:11:51 +0000752 printType(ATy->getElementType()) << ']';
Reid Spencer5527c0b2004-08-20 15:37:30 +0000753 } else if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
754 Out << '<' << PTy->getNumElements() << " x ";
755 printType(PTy->getElementType()) << '>';
756 }
Reid Spencer3ed469c2006-11-02 20:25:50 +0000757 else if (isa<OpaqueType>(Ty)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000758 Out << "opaque";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000759 } else {
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000760 if (!Ty->isPrimitiveType())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000761 Out << "<unknown derived type>";
Chris Lattner2761e9f2002-04-13 20:53:41 +0000762 printType(Ty);
763 }
Misha Brukman0313e0b2004-06-21 21:53:56 +0000764 return Out;
Chris Lattner2761e9f2002-04-13 20:53:41 +0000765}
766
767
Misha Brukmanfd939082005-04-21 23:48:37 +0000768void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
Reid Spencerb03de0c2004-05-26 21:56:09 +0000769 bool PrintName) {
Chris Lattneraab18202005-02-24 16:58:29 +0000770 if (Operand != 0) {
771 if (PrintType) { Out << ' '; printType(Operand->getType()); }
772 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Machine);
773 } else {
774 Out << "<null operand!>";
775 }
Chris Lattner00950542001-06-06 20:29:01 +0000776}
777
Chris Lattner00950542001-06-06 20:29:01 +0000778
Chris Lattnerc1824992001-10-29 16:05:51 +0000779void AssemblyWriter::printModule(const Module *M) {
Chris Lattner31ab1b32005-03-02 23:12:40 +0000780 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanfd939082005-04-21 23:48:37 +0000781 // Don't print the ID if it will start a new line (which would
Chris Lattner31ab1b32005-03-02 23:12:40 +0000782 // require a comment char before it).
783 M->getModuleIdentifier().find('\n') == std::string::npos)
784 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
785
Owen Andersoncf7ff2b2006-10-18 02:21:12 +0000786 if (!M->getDataLayout().empty())
Chris Lattnerd2f9e602006-10-22 06:06:56 +0000787 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Owen Andersoncf7ff2b2006-10-18 02:21:12 +0000788
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000789 switch (M->getEndianness()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000790 case Module::LittleEndian: Out << "target endian = little\n"; break;
791 case Module::BigEndian: Out << "target endian = big\n"; break;
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000792 case Module::AnyEndianness: break;
793 }
794 switch (M->getPointerSize()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000795 case Module::Pointer32: Out << "target pointersize = 32\n"; break;
796 case Module::Pointer64: Out << "target pointersize = 64\n"; break;
Chris Lattnereb5d3a12003-08-24 13:48:48 +0000797 case Module::AnyPointerSize: break;
798 }
Reid Spencercddc86f2004-07-25 21:44:54 +0000799 if (!M->getTargetTriple().empty())
Reid Spencerc9a1f0d2004-07-25 21:29:43 +0000800 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanfd939082005-04-21 23:48:37 +0000801
Chris Lattnercc041ba2006-01-24 04:13:11 +0000802 if (!M->getModuleInlineAsm().empty()) {
Chris Lattner42a162e2006-01-24 00:45:30 +0000803 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnercc041ba2006-01-24 04:13:11 +0000804 std::string Asm = M->getModuleInlineAsm();
Chris Lattner42a162e2006-01-24 00:45:30 +0000805 size_t CurPos = 0;
806 size_t NewLine = Asm.find_first_of('\n', CurPos);
807 while (NewLine != std::string::npos) {
808 // We found a newline, print the portion of the asm string from the
809 // last newline up to this newline.
810 Out << "module asm \"";
811 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
812 Out);
813 Out << "\"\n";
814 CurPos = NewLine+1;
815 NewLine = Asm.find_first_of('\n', CurPos);
816 }
Chris Lattner71cdba32006-01-24 00:40:17 +0000817 Out << "module asm \"";
Chris Lattner42a162e2006-01-24 00:45:30 +0000818 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner18365502006-01-23 23:03:36 +0000819 Out << "\"\n";
820 }
821
Chris Lattner44da7d72004-09-14 05:06:58 +0000822 // Loop over the dependent libraries and emit them.
Chris Lattnercfe97b72004-09-14 04:51:44 +0000823 Module::lib_iterator LI = M->lib_begin();
824 Module::lib_iterator LE = M->lib_end();
Reid Spencercddc86f2004-07-25 21:44:54 +0000825 if (LI != LE) {
Chris Lattnercfe97b72004-09-14 04:51:44 +0000826 Out << "deplibs = [ ";
827 while (LI != LE) {
Chris Lattner44da7d72004-09-14 05:06:58 +0000828 Out << '"' << *LI << '"';
Reid Spencerc9a1f0d2004-07-25 21:29:43 +0000829 ++LI;
Chris Lattnercfe97b72004-09-14 04:51:44 +0000830 if (LI != LE)
831 Out << ", ";
Reid Spencerc9a1f0d2004-07-25 21:29:43 +0000832 }
833 Out << " ]\n";
Reid Spencer83f6a772004-07-25 18:08:18 +0000834 }
Reid Spencere59eaf42004-09-13 23:44:23 +0000835
Chris Lattner44da7d72004-09-14 05:06:58 +0000836 // Loop over the symbol table, emitting all named constants.
Chris Lattner6e6026b2002-11-20 18:36:02 +0000837 printSymbolTable(M->getSymbolTable());
Misha Brukmanfd939082005-04-21 23:48:37 +0000838
Chris Lattnere4d5c442005-03-15 04:54:21 +0000839 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); I != E; ++I)
Chris Lattner7e708292002-06-25 16:13:24 +0000840 printGlobal(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000841
Misha Brukman0313e0b2004-06-21 21:53:56 +0000842 Out << "\nimplementation ; Functions:\n";
Misha Brukmanfd939082005-04-21 23:48:37 +0000843
Chris Lattner44da7d72004-09-14 05:06:58 +0000844 // Output all of the functions.
Chris Lattner7e708292002-06-25 16:13:24 +0000845 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
846 printFunction(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000847}
848
Chris Lattnerc1824992001-10-29 16:05:51 +0000849void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000850 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattnerd70684f2001-09-18 04:01:05 +0000851
Misha Brukmanfd939082005-04-21 23:48:37 +0000852 if (!GV->hasInitializer())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000853 switch (GV->getLinkage()) {
854 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
855 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
856 default: Out << "external "; break;
857 }
Chris Lattner4ad02e72003-04-16 20:28:45 +0000858 else
859 switch (GV->getLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000860 case GlobalValue::InternalLinkage: Out << "internal "; break;
861 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
862 case GlobalValue::WeakLinkage: Out << "weak "; break;
863 case GlobalValue::AppendingLinkage: Out << "appending "; break;
864 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
865 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
866 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
867 case GlobalValue::ExternalLinkage: break;
Misha Brukman3c8f2c62004-11-14 21:04:34 +0000868 case GlobalValue::GhostLinkage:
869 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
870 abort();
Chris Lattner4ad02e72003-04-16 20:28:45 +0000871 }
Chris Lattnerd70684f2001-09-18 04:01:05 +0000872
Misha Brukman0313e0b2004-06-21 21:53:56 +0000873 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner7a176752001-12-04 00:03:30 +0000874 printType(GV->getType()->getElementType());
Chris Lattnerd70684f2001-09-18 04:01:05 +0000875
Reid Spencer79703962004-07-17 23:47:01 +0000876 if (GV->hasInitializer()) {
877 Constant* C = cast<Constant>(GV->getInitializer());
878 assert(C && "GlobalVar initializer isn't constant?");
Reid Spenceracc92802004-07-18 01:04:19 +0000879 writeOperand(GV->getInitializer(), false, isa<GlobalValue>(C));
Reid Spencer79703962004-07-17 23:47:01 +0000880 }
Chris Lattner30caa282005-11-06 06:48:53 +0000881
Chris Lattner60962db2005-11-12 00:10:19 +0000882 if (GV->hasSection())
883 Out << ", section \"" << GV->getSection() << '"';
884 if (GV->getAlignment())
Chris Lattner30caa282005-11-06 06:48:53 +0000885 Out << ", align " << GV->getAlignment();
Chris Lattner60962db2005-11-12 00:10:19 +0000886
Chris Lattner7e708292002-06-25 16:13:24 +0000887 printInfoComment(*GV);
Misha Brukman0313e0b2004-06-21 21:53:56 +0000888 Out << "\n";
Chris Lattner70cc3392001-09-10 07:58:01 +0000889}
890
Chris Lattner007377f2001-09-07 16:36:04 +0000891
Reid Spencer9231ac82004-05-25 08:53:40 +0000892// printSymbolTable - Run through symbol table looking for constants
893// and types. Emit their declarations.
Chris Lattnerc1824992001-10-29 16:05:51 +0000894void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencer9231ac82004-05-25 08:53:40 +0000895
896 // Print the types.
897 for (SymbolTable::type_const_iterator TI = ST.type_begin();
898 TI != ST.type_end(); ++TI ) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000899 Out << "\t" << getLLVMName(TI->first) << " = type ";
Reid Spencer9231ac82004-05-25 08:53:40 +0000900
901 // Make sure we print out at least one level of the type structure, so
902 // that we do not get %FILE = type %FILE
903 //
904 printTypeAtLeastOneLevel(TI->second) << "\n";
905 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000906
Reid Spencer9231ac82004-05-25 08:53:40 +0000907 // Print the constants, in type plane order.
908 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
909 PI != ST.plane_end(); ++PI ) {
910 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
911 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
912
913 for (; VI != VE; ++VI) {
Reid Spencer79703962004-07-17 23:47:01 +0000914 const Value* V = VI->second;
915 const Constant *CPV = dyn_cast<Constant>(V) ;
916 if (CPV && !isa<GlobalValue>(V)) {
Reid Spencerb03de0c2004-05-26 21:56:09 +0000917 printConstant(CPV);
Chris Lattner007377f2001-09-07 16:36:04 +0000918 }
919 }
Chris Lattner739a56d2001-07-15 06:35:59 +0000920 }
Chris Lattner00950542001-06-06 20:29:01 +0000921}
922
923
Misha Brukmanab5c6002004-03-02 00:22:19 +0000924/// printConstant - Print out a constant pool entry...
925///
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000926void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattner007377f2001-09-07 16:36:04 +0000927 // Don't print out unnamed constants, they will be inlined
928 if (!CPV->hasName()) return;
Chris Lattner00950542001-06-06 20:29:01 +0000929
Chris Lattner1333ed52001-07-26 16:29:38 +0000930 // Print out name...
Misha Brukman0313e0b2004-06-21 21:53:56 +0000931 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner00950542001-06-06 20:29:01 +0000932
933 // Write the value out now...
Chris Lattner7a716ad2002-04-16 21:36:08 +0000934 writeOperand(CPV, true, false);
Chris Lattner00950542001-06-06 20:29:01 +0000935
Chris Lattner7e708292002-06-25 16:13:24 +0000936 printInfoComment(*CPV);
Misha Brukman0313e0b2004-06-21 21:53:56 +0000937 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +0000938}
939
Misha Brukmanab5c6002004-03-02 00:22:19 +0000940/// printFunction - Print all aspects of a function.
941///
Chris Lattner7e708292002-06-25 16:13:24 +0000942void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000943 // Print out the return type and name...
Misha Brukman0313e0b2004-06-21 21:53:56 +0000944 Out << "\n";
Chris Lattner4ad02e72003-04-16 20:28:45 +0000945
Chris Lattner333529e2004-12-05 06:44:09 +0000946 // Ensure that no local symbols conflict with global symbols.
947 const_cast<Function*>(F)->renameLocalSymbols();
948
Misha Brukman0313e0b2004-06-21 21:53:56 +0000949 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +0000950
Chris Lattner4ad02e72003-04-16 20:28:45 +0000951 if (F->isExternal())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000952 switch (F->getLinkage()) {
953 case GlobalValue::DLLImportLinkage: Out << "declare dllimport "; break;
954 case GlobalValue::ExternalWeakLinkage: Out << "declare extern_weak "; break;
955 default: Out << "declare ";
956 }
Chris Lattner4ad02e72003-04-16 20:28:45 +0000957 else
958 switch (F->getLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000959 case GlobalValue::InternalLinkage: Out << "internal "; break;
960 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
961 case GlobalValue::WeakLinkage: Out << "weak "; break;
962 case GlobalValue::AppendingLinkage: Out << "appending "; break;
963 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
964 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
965 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
Chris Lattner4ad02e72003-04-16 20:28:45 +0000966 case GlobalValue::ExternalLinkage: break;
Misha Brukman3c8f2c62004-11-14 21:04:34 +0000967 case GlobalValue::GhostLinkage:
968 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
969 abort();
Chris Lattner4ad02e72003-04-16 20:28:45 +0000970 }
971
Chris Lattnerd5118982005-05-06 20:26:43 +0000972 // Print the calling convention.
973 switch (F->getCallingConv()) {
974 case CallingConv::C: break; // default
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000975 case CallingConv::CSRet: Out << "csretcc "; break;
976 case CallingConv::Fast: Out << "fastcc "; break;
977 case CallingConv::Cold: Out << "coldcc "; break;
978 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
979 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerd5118982005-05-06 20:26:43 +0000980 default: Out << "cc" << F->getCallingConv() << " "; break;
981 }
982
Misha Brukman40c732c2004-06-04 21:11:51 +0000983 printType(F->getReturnType()) << ' ';
Chris Lattner4d45bd02003-10-18 05:57:43 +0000984 if (!F->getName().empty())
Misha Brukman0313e0b2004-06-21 21:53:56 +0000985 Out << getLLVMName(F->getName());
Chris Lattner4d45bd02003-10-18 05:57:43 +0000986 else
Misha Brukman0313e0b2004-06-21 21:53:56 +0000987 Out << "\"\"";
988 Out << '(';
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000989 Machine.incorporateFunction(F);
Chris Lattner007377f2001-09-07 16:36:04 +0000990
Chris Lattnerc1824992001-10-29 16:05:51 +0000991 // Loop over the arguments, printing them...
Chris Lattner7e708292002-06-25 16:13:24 +0000992 const FunctionType *FT = F->getFunctionType();
Chris Lattner007377f2001-09-07 16:36:04 +0000993
Chris Lattnere4d5c442005-03-15 04:54:21 +0000994 for(Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattner69da5cf2002-10-13 20:57:00 +0000995 printArgument(I);
Chris Lattner007377f2001-09-07 16:36:04 +0000996
997 // Finish printing arguments...
Chris Lattner7e708292002-06-25 16:13:24 +0000998 if (FT->isVarArg()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +0000999 if (FT->getNumParams()) Out << ", ";
1000 Out << "..."; // Output varargs portion of signature!
Chris Lattner007377f2001-09-07 16:36:04 +00001001 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001002 Out << ')';
Chris Lattner007377f2001-09-07 16:36:04 +00001003
Chris Lattner60962db2005-11-12 00:10:19 +00001004 if (F->hasSection())
1005 Out << " section \"" << F->getSection() << '"';
Chris Lattner30caa282005-11-06 06:48:53 +00001006 if (F->getAlignment())
1007 Out << " align " << F->getAlignment();
Chris Lattner60962db2005-11-12 00:10:19 +00001008
Chris Lattner7e708292002-06-25 16:13:24 +00001009 if (F->isExternal()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001010 Out << "\n";
Chris Lattner03e2acb2002-05-06 03:00:40 +00001011 } else {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001012 Out << " {";
Misha Brukmanfd939082005-04-21 23:48:37 +00001013
Chris Lattnerb5794002002-04-07 22:49:37 +00001014 // Output all of its basic blocks... for the function
Chris Lattner7e708292002-06-25 16:13:24 +00001015 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1016 printBasicBlock(I);
Chris Lattner007377f2001-09-07 16:36:04 +00001017
Misha Brukman0313e0b2004-06-21 21:53:56 +00001018 Out << "}\n";
Chris Lattner007377f2001-09-07 16:36:04 +00001019 }
1020
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001021 Machine.purgeFunction();
Chris Lattner00950542001-06-06 20:29:01 +00001022}
1023
Misha Brukmanab5c6002004-03-02 00:22:19 +00001024/// printArgument - This member is called for every argument that is passed into
1025/// the function. Simply print it out
1026///
Chris Lattner73e21422002-04-09 19:48:49 +00001027void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner00950542001-06-06 20:29:01 +00001028 // Insert commas as we go... the first arg doesn't get a comma
Chris Lattner39220de2005-03-15 05:03:36 +00001029 if (Arg != Arg->getParent()->arg_begin()) Out << ", ";
Chris Lattner00950542001-06-06 20:29:01 +00001030
1031 // Output type...
Chris Lattnerc1824992001-10-29 16:05:51 +00001032 printType(Arg->getType());
Misha Brukmanfd939082005-04-21 23:48:37 +00001033
Chris Lattner00950542001-06-06 20:29:01 +00001034 // Output name, if available...
1035 if (Arg->hasName())
Misha Brukman0313e0b2004-06-21 21:53:56 +00001036 Out << ' ' << getLLVMName(Arg->getName());
Chris Lattner00950542001-06-06 20:29:01 +00001037}
1038
Misha Brukmanab5c6002004-03-02 00:22:19 +00001039/// printBasicBlock - This member is called for each basic block in a method.
1040///
Chris Lattnerc1824992001-10-29 16:05:51 +00001041void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner00950542001-06-06 20:29:01 +00001042 if (BB->hasName()) { // Print out the label if it exists...
Alkis Evlogimenos9913e592004-12-10 05:41:10 +00001043 Out << "\n" << getLLVMName(BB->getName(), false) << ':';
Chris Lattnerafc38682002-05-14 16:02:05 +00001044 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001045 Out << "\n; <label>:";
Chris Lattner69566452004-06-09 19:41:19 +00001046 int Slot = Machine.getSlot(BB);
1047 if (Slot != -1)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001048 Out << Slot;
Chris Lattner69566452004-06-09 19:41:19 +00001049 else
Misha Brukman0313e0b2004-06-21 21:53:56 +00001050 Out << "<badref>";
Chris Lattner061269b2002-10-02 19:38:55 +00001051 }
Chris Lattner4e4d8622003-11-20 00:09:43 +00001052
1053 if (BB->getParent() == 0)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001054 Out << "\t\t; Error: Block without parent!";
Chris Lattner4e4d8622003-11-20 00:09:43 +00001055 else {
1056 if (BB != &BB->getParent()->front()) { // Not the entry block?
1057 // Output predecessors for the block...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001058 Out << "\t\t;";
Chris Lattner4e4d8622003-11-20 00:09:43 +00001059 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
Misha Brukmanfd939082005-04-21 23:48:37 +00001060
Chris Lattner4e4d8622003-11-20 00:09:43 +00001061 if (PI == PE) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001062 Out << " No predecessors!";
Chris Lattner4e4d8622003-11-20 00:09:43 +00001063 } else {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001064 Out << " preds =";
Chris Lattner40efcec2003-11-16 22:59:57 +00001065 writeOperand(*PI, false, true);
Chris Lattner4e4d8622003-11-20 00:09:43 +00001066 for (++PI; PI != PE; ++PI) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001067 Out << ',';
Chris Lattner4e4d8622003-11-20 00:09:43 +00001068 writeOperand(*PI, false, true);
1069 }
Chris Lattner40efcec2003-11-16 22:59:57 +00001070 }
Chris Lattner061269b2002-10-02 19:38:55 +00001071 }
Chris Lattner00950542001-06-06 20:29:01 +00001072 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001073
Misha Brukman0313e0b2004-06-21 21:53:56 +00001074 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +00001075
Misha Brukman0313e0b2004-06-21 21:53:56 +00001076 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001077
Chris Lattner007377f2001-09-07 16:36:04 +00001078 // Output all of the instructions in the basic block...
Chris Lattner7e708292002-06-25 16:13:24 +00001079 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1080 printInstruction(*I);
Chris Lattner9f717ef2004-03-08 18:51:45 +00001081
Misha Brukman0313e0b2004-06-21 21:53:56 +00001082 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner00950542001-06-06 20:29:01 +00001083}
1084
Chris Lattnere02fa852001-10-13 06:42:36 +00001085
Misha Brukmanab5c6002004-03-02 00:22:19 +00001086/// printInfoComment - Print a little comment after the instruction indicating
1087/// which slot it occupies.
1088///
Chris Lattner7e708292002-06-25 16:13:24 +00001089void AssemblyWriter::printInfoComment(const Value &V) {
1090 if (V.getType() != Type::VoidTy) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001091 Out << "\t\t; <";
Misha Brukman40c732c2004-06-04 21:11:51 +00001092 printType(V.getType()) << '>';
Chris Lattnere02fa852001-10-13 06:42:36 +00001093
Chris Lattner7e708292002-06-25 16:13:24 +00001094 if (!V.hasName()) {
Chris Lattner69566452004-06-09 19:41:19 +00001095 int SlotNum = Machine.getSlot(&V);
1096 if (SlotNum == -1)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001097 Out << ":<badref>";
Reid Spencerfc621e22004-06-09 15:26:53 +00001098 else
Misha Brukman0313e0b2004-06-21 21:53:56 +00001099 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattnere02fa852001-10-13 06:42:36 +00001100 }
Chris Lattner5c461402005-02-01 01:24:01 +00001101 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattnere02fa852001-10-13 06:42:36 +00001102 }
1103}
1104
Reid Spencer3a9ec242006-08-28 01:02:49 +00001105// This member is called for each Instruction in a function..
Chris Lattner7e708292002-06-25 16:13:24 +00001106void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001107 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001108
Misha Brukman0313e0b2004-06-21 21:53:56 +00001109 Out << "\t";
Chris Lattner00950542001-06-06 20:29:01 +00001110
1111 // Print out name if it exists...
Chris Lattner7e708292002-06-25 16:13:24 +00001112 if (I.hasName())
Misha Brukman0313e0b2004-06-21 21:53:56 +00001113 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner00950542001-06-06 20:29:01 +00001114
Chris Lattnerddb6db42005-05-06 05:51:46 +00001115 // If this is a volatile load or store, print out the volatile marker.
Chris Lattnere5e475e2003-09-08 17:45:59 +00001116 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattnerddb6db42005-05-06 05:51:46 +00001117 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001118 Out << "volatile ";
Chris Lattnerddb6db42005-05-06 05:51:46 +00001119 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1120 // If this is a call, check if it's a tail call.
1121 Out << "tail ";
1122 }
Chris Lattnere5e475e2003-09-08 17:45:59 +00001123
Chris Lattner00950542001-06-06 20:29:01 +00001124 // Print out the opcode...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001125 Out << I.getOpcodeName();
Chris Lattner00950542001-06-06 20:29:01 +00001126
1127 // Print out the type of the operands...
Chris Lattner7e708292002-06-25 16:13:24 +00001128 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner00950542001-06-06 20:29:01 +00001129
1130 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner7e708292002-06-25 16:13:24 +00001131 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1132 writeOperand(I.getOperand(2), true);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001133 Out << ',';
Chris Lattner00950542001-06-06 20:29:01 +00001134 writeOperand(Operand, true);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001135 Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001136 writeOperand(I.getOperand(1), true);
Chris Lattner00950542001-06-06 20:29:01 +00001137
Chris Lattner94dc1f22002-04-13 18:34:38 +00001138 } else if (isa<SwitchInst>(I)) {
Chris Lattner00950542001-06-06 20:29:01 +00001139 // Special case switch statement to get formatting nice and correct...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001140 writeOperand(Operand , true); Out << ',';
1141 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner00950542001-06-06 20:29:01 +00001142
Chris Lattner7e708292002-06-25 16:13:24 +00001143 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001144 Out << "\n\t\t";
1145 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001146 writeOperand(I.getOperand(op+1), true);
Chris Lattner00950542001-06-06 20:29:01 +00001147 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001148 Out << "\n\t]";
Chris Lattnerb00c5822001-10-02 03:41:24 +00001149 } else if (isa<PHINode>(I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001150 Out << ' ';
Chris Lattner7e708292002-06-25 16:13:24 +00001151 printType(I.getType());
Misha Brukman0313e0b2004-06-21 21:53:56 +00001152 Out << ' ';
Chris Lattner00950542001-06-06 20:29:01 +00001153
Chris Lattner7e708292002-06-25 16:13:24 +00001154 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001155 if (op) Out << ", ";
Misha Brukmanfd939082005-04-21 23:48:37 +00001156 Out << '[';
Misha Brukman0313e0b2004-06-21 21:53:56 +00001157 writeOperand(I.getOperand(op ), false); Out << ',';
1158 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattnerc24d2082001-06-11 15:04:20 +00001159 }
Chris Lattnere02fa852001-10-13 06:42:36 +00001160 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001161 Out << " void";
Chris Lattnerd5118982005-05-06 20:26:43 +00001162 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1163 // Print the calling convention being used.
1164 switch (CI->getCallingConv()) {
1165 case CallingConv::C: break; // default
Chris Lattner0deaab82006-05-19 21:58:52 +00001166 case CallingConv::CSRet: Out << " csretcc"; break;
1167 case CallingConv::Fast: Out << " fastcc"; break;
1168 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikovf8248682006-09-20 22:03:51 +00001169 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1170 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerd5118982005-05-06 20:26:43 +00001171 default: Out << " cc" << CI->getCallingConv(); break;
1172 }
1173
Chris Lattner7a012292003-08-05 15:34:45 +00001174 const PointerType *PTy = cast<PointerType>(Operand->getType());
1175 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1176 const Type *RetTy = FTy->getReturnType();
Chris Lattner268de042001-11-06 21:28:12 +00001177
Chris Lattner7a012292003-08-05 15:34:45 +00001178 // If possible, print out the short form of the call instruction. We can
Chris Lattnerb5794002002-04-07 22:49:37 +00001179 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner7a012292003-08-05 15:34:45 +00001180 // and if the return type is not a pointer to a function.
Chris Lattner268de042001-11-06 21:28:12 +00001181 //
Chris Lattner7a012292003-08-05 15:34:45 +00001182 if (!FTy->isVarArg() &&
Misha Brukmanfd939082005-04-21 23:48:37 +00001183 (!isa<PointerType>(RetTy) ||
Chris Lattnerc1b27182002-07-25 20:58:51 +00001184 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001185 Out << ' '; printType(RetTy);
Chris Lattner268de042001-11-06 21:28:12 +00001186 writeOperand(Operand, false);
1187 } else {
1188 writeOperand(Operand, true);
1189 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001190 Out << '(';
Chris Lattnerd5118982005-05-06 20:26:43 +00001191 if (CI->getNumOperands() > 1) writeOperand(CI->getOperand(1), true);
Chris Lattner7e708292002-06-25 16:13:24 +00001192 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001193 Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001194 writeOperand(I.getOperand(op), true);
Chris Lattner00950542001-06-06 20:29:01 +00001195 }
1196
Misha Brukman0313e0b2004-06-21 21:53:56 +00001197 Out << " )";
Chris Lattner7e708292002-06-25 16:13:24 +00001198 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner7a012292003-08-05 15:34:45 +00001199 const PointerType *PTy = cast<PointerType>(Operand->getType());
1200 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1201 const Type *RetTy = FTy->getReturnType();
1202
Chris Lattnerd5118982005-05-06 20:26:43 +00001203 // Print the calling convention being used.
1204 switch (II->getCallingConv()) {
1205 case CallingConv::C: break; // default
Chris Lattner0deaab82006-05-19 21:58:52 +00001206 case CallingConv::CSRet: Out << " csretcc"; break;
1207 case CallingConv::Fast: Out << " fastcc"; break;
1208 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikovf8248682006-09-20 22:03:51 +00001209 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1210 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerd5118982005-05-06 20:26:43 +00001211 default: Out << " cc" << II->getCallingConv(); break;
1212 }
1213
Chris Lattner7a012292003-08-05 15:34:45 +00001214 // If possible, print out the short form of the invoke instruction. We can
1215 // only do this if the first argument is a pointer to a nonvararg function,
1216 // and if the return type is not a pointer to a function.
1217 //
1218 if (!FTy->isVarArg() &&
Misha Brukmanfd939082005-04-21 23:48:37 +00001219 (!isa<PointerType>(RetTy) ||
Chris Lattner7a012292003-08-05 15:34:45 +00001220 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001221 Out << ' '; printType(RetTy);
Chris Lattner7a012292003-08-05 15:34:45 +00001222 writeOperand(Operand, false);
1223 } else {
1224 writeOperand(Operand, true);
1225 }
1226
Misha Brukman0313e0b2004-06-21 21:53:56 +00001227 Out << '(';
Chris Lattner7e708292002-06-25 16:13:24 +00001228 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
1229 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001230 Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001231 writeOperand(I.getOperand(op), true);
Chris Lattnere02fa852001-10-13 06:42:36 +00001232 }
1233
Misha Brukman0313e0b2004-06-21 21:53:56 +00001234 Out << " )\n\t\t\tto";
Chris Lattnere02fa852001-10-13 06:42:36 +00001235 writeOperand(II->getNormalDest(), true);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001236 Out << " unwind";
Chris Lattneraeb2a1d2004-02-08 21:44:31 +00001237 writeOperand(II->getUnwindDest(), true);
Chris Lattnere02fa852001-10-13 06:42:36 +00001238
Chris Lattner7e708292002-06-25 16:13:24 +00001239 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001240 Out << ' ';
Chris Lattner94dc1f22002-04-13 18:34:38 +00001241 printType(AI->getType()->getElementType());
1242 if (AI->isArrayAllocation()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001243 Out << ',';
Chris Lattner94dc1f22002-04-13 18:34:38 +00001244 writeOperand(AI->getArraySize(), true);
Chris Lattner00950542001-06-06 20:29:01 +00001245 }
Nate Begeman14b05292005-11-05 09:21:28 +00001246 if (AI->getAlignment()) {
Chris Lattner9fad0b92005-11-05 21:20:34 +00001247 Out << ", align " << AI->getAlignment();
Nate Begeman14b05292005-11-05 09:21:28 +00001248 }
Chris Lattnere02fa852001-10-13 06:42:36 +00001249 } else if (isa<CastInst>(I)) {
Chris Lattner41495a22003-11-17 01:17:04 +00001250 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukman0313e0b2004-06-21 21:53:56 +00001251 Out << " to ";
Chris Lattner7e708292002-06-25 16:13:24 +00001252 printType(I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +00001253 } else if (isa<VAArgInst>(I)) {
Chris Lattner41495a22003-11-17 01:17:04 +00001254 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukman0313e0b2004-06-21 21:53:56 +00001255 Out << ", ";
Chris Lattner8f77dae2003-05-08 02:44:12 +00001256 printType(I.getType());
Chris Lattner00950542001-06-06 20:29:01 +00001257 } else if (Operand) { // Print the normal way...
1258
Misha Brukmanfd939082005-04-21 23:48:37 +00001259 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner00950542001-06-06 20:29:01 +00001260 // omit the type from all but the first operand. If the instruction has
1261 // different type operands (for example br), then they are all printed.
1262 bool PrintAllTypes = false;
1263 const Type *TheType = Operand->getType();
Chris Lattner00950542001-06-06 20:29:01 +00001264
Chris Lattnercfdd1482004-03-12 05:53:14 +00001265 // Shift Left & Right print both types even for Ubyte LHS, and select prints
1266 // types even if all operands are bools.
Chris Lattner00f10232006-04-08 01:18:18 +00001267 if (isa<ShiftInst>(I) || isa<SelectInst>(I) || isa<StoreInst>(I) ||
1268 isa<ShuffleVectorInst>(I)) {
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001269 PrintAllTypes = true;
1270 } else {
1271 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1272 Operand = I.getOperand(i);
1273 if (Operand->getType() != TheType) {
1274 PrintAllTypes = true; // We have differing types! Print them all!
1275 break;
1276 }
Chris Lattner00950542001-06-06 20:29:01 +00001277 }
1278 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001279
Chris Lattnerc1824992001-10-29 16:05:51 +00001280 if (!PrintAllTypes) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001281 Out << ' ';
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001282 printType(TheType);
Chris Lattnerc1824992001-10-29 16:05:51 +00001283 }
Chris Lattner00950542001-06-06 20:29:01 +00001284
Chris Lattner7e708292002-06-25 16:13:24 +00001285 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001286 if (i) Out << ',';
Chris Lattner7e708292002-06-25 16:13:24 +00001287 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner00950542001-06-06 20:29:01 +00001288 }
1289 }
1290
Chris Lattnere02fa852001-10-13 06:42:36 +00001291 printInfoComment(I);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001292 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +00001293}
1294
1295
1296//===----------------------------------------------------------------------===//
1297// External Interface declarations
1298//===----------------------------------------------------------------------===//
1299
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001300void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001301 SlotMachine SlotTable(this);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001302 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001303 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001304}
1305
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001306void GlobalVariable::print(std::ostream &o) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001307 SlotMachine SlotTable(getParent());
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001308 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001309 W.write(this);
Chris Lattnerb0e45232001-09-10 20:08:19 +00001310}
1311
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001312void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001313 SlotMachine SlotTable(getParent());
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001314 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner00950542001-06-06 20:29:01 +00001315
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001316 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001317}
1318
Chris Lattnercc041ba2006-01-24 04:13:11 +00001319void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner80cd1152006-01-25 22:26:05 +00001320 WriteAsOperand(o, this, true, true, 0);
Chris Lattnercc041ba2006-01-24 04:13:11 +00001321}
1322
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001323void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001324 SlotMachine SlotTable(getParent());
Misha Brukmanfd939082005-04-21 23:48:37 +00001325 AssemblyWriter W(o, SlotTable,
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001326 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001327 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001328}
1329
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001330void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001331 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001332 SlotMachine SlotTable(F);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001333 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner00950542001-06-06 20:29:01 +00001334
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001335 W.write(this);
Chris Lattner00950542001-06-06 20:29:01 +00001336}
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001337
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001338void Constant::print(std::ostream &o) const {
1339 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner3bc06b32002-09-10 15:53:49 +00001340
Misha Brukman40c732c2004-06-04 21:11:51 +00001341 o << ' ' << getType()->getDescription() << ' ';
Evan Chenga4ffcc22006-03-01 22:17:00 +00001342
1343 std::map<const Type *, std::string> TypeTable;
1344 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001345}
1346
Misha Brukmanfd939082005-04-21 23:48:37 +00001347void Type::print(std::ostream &o) const {
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001348 if (this == 0)
1349 o << "<null Type>";
1350 else
1351 o << getDescription();
1352}
1353
Chris Lattner73e21422002-04-09 19:48:49 +00001354void Argument::print(std::ostream &o) const {
Chris Lattner144d9ba2004-07-13 23:14:34 +00001355 WriteAsOperand(o, this, true, true,
1356 getParent() ? getParent()->getParent() : 0);
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001357}
1358
Reid Spencerfa452c02004-05-25 18:14:38 +00001359// Value::dump - allow easy printing of Values from the debugger.
1360// Located here because so much of the needed functionality is here.
Reid Spencer461076f2006-10-27 18:58:54 +00001361void Value::dump() const { print(std::cerr); std::cerr << '\n'; }
Reid Spencerfa452c02004-05-25 18:14:38 +00001362
1363// Type::dump - allow easy printing of Values from the debugger.
1364// Located here because so much of the needed functionality is here.
Reid Spencer461076f2006-10-27 18:58:54 +00001365void Type::dump() const { print(std::cerr); std::cerr << '\n'; }
Chris Lattner75cf7cf2002-04-08 22:03:40 +00001366
1367//===----------------------------------------------------------------------===//
1368// CachedWriter Class Implementation
1369//===----------------------------------------------------------------------===//
1370
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001371void CachedWriter::setModule(const Module *M) {
1372 delete SC; delete AW;
1373 if (M) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001374 SC = new SlotMachine(M );
Misha Brukman40c732c2004-06-04 21:11:51 +00001375 AW = new AssemblyWriter(Out, *SC, M, 0);
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001376 } else {
1377 SC = 0; AW = 0;
1378 }
1379}
1380
1381CachedWriter::~CachedWriter() {
1382 delete AW;
1383 delete SC;
1384}
1385
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001386CachedWriter &CachedWriter::operator<<(const Value &V) {
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001387 assert(AW && SC && "CachedWriter does not have a current module!");
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001388 if (const Instruction *I = dyn_cast<Instruction>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001389 AW->write(I);
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001390 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001391 AW->write(BB);
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001392 else if (const Function *F = dyn_cast<Function>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001393 AW->write(F);
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001394 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(&V))
Chris Lattnerfae098a2004-06-26 19:40:40 +00001395 AW->write(GV);
Misha Brukmanfd939082005-04-21 23:48:37 +00001396 else
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001397 AW->writeOperand(&V, true, true);
Chris Lattnerda1fbcc2001-11-07 04:21:57 +00001398 return *this;
1399}
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001400
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001401CachedWriter& CachedWriter::operator<<(const Type &Ty) {
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001402 if (SymbolicTypes) {
1403 const Module *M = AW->getModule();
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001404 if (M) WriteTypeSymbolic(Out, &Ty, M);
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001405 } else {
Chris Lattner0a8e8e12004-07-15 02:51:31 +00001406 AW->write(&Ty);
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001407 }
1408 return *this;
Misha Brukman5cf1acf2004-04-28 15:31:21 +00001409}
Misha Brukmane5242de2004-04-28 19:24:28 +00001410
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001411//===----------------------------------------------------------------------===//
1412//===-- SlotMachine Implementation
1413//===----------------------------------------------------------------------===//
1414
1415#if 0
1416#define SC_DEBUG(X) std::cerr << X
1417#else
1418#define SC_DEBUG(X)
1419#endif
1420
1421// Module level constructor. Causes the contents of the Module (sans functions)
1422// to be added to the slot table.
Misha Brukmanfd939082005-04-21 23:48:37 +00001423SlotMachine::SlotMachine(const Module *M)
Reid Spencerb03de0c2004-05-26 21:56:09 +00001424 : TheModule(M) ///< Saved for lazy initialization.
1425 , TheFunction(0)
Reid Spencer28531c72004-08-16 07:46:33 +00001426 , FunctionProcessed(false)
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001427 , mMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001428 , mTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001429 , fMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001430 , fTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001431{
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001432}
1433
1434// Function level constructor. Causes the contents of the Module and the one
1435// function provided to be added to the slot table.
Misha Brukmanfd939082005-04-21 23:48:37 +00001436SlotMachine::SlotMachine(const Function *F )
Reid Spencerb03de0c2004-05-26 21:56:09 +00001437 : TheModule( F ? F->getParent() : 0 ) ///< Saved for lazy initialization
1438 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencer28531c72004-08-16 07:46:33 +00001439 , FunctionProcessed(false)
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001440 , mMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001441 , mTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001442 , fMap()
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001443 , fTypes()
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001444{
Reid Spencerb03de0c2004-05-26 21:56:09 +00001445}
1446
1447inline void SlotMachine::initialize(void) {
Misha Brukmanfd939082005-04-21 23:48:37 +00001448 if ( TheModule) {
1449 processModule();
Reid Spencerb03de0c2004-05-26 21:56:09 +00001450 TheModule = 0; ///< Prevent re-processing next time we're called.
1451 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001452 if ( TheFunction && ! FunctionProcessed) {
1453 processFunction();
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001454 }
1455}
1456
1457// Iterate through all the global variables, functions, and global
Misha Brukmanfd939082005-04-21 23:48:37 +00001458// variable initializers and create slots for them.
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001459void SlotMachine::processModule() {
1460 SC_DEBUG("begin processModule!\n");
1461
1462 // Add all of the global variables to the value table...
Chris Lattnere4d5c442005-03-15 04:54:21 +00001463 for (Module::const_global_iterator I = TheModule->global_begin(), E = TheModule->global_end();
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001464 I != E; ++I)
1465 createSlot(I);
1466
1467 // Add all the functions to the table
1468 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1469 I != E; ++I)
1470 createSlot(I);
1471
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001472 SC_DEBUG("end processModule!\n");
1473}
1474
1475
Reid Spencerb03de0c2004-05-26 21:56:09 +00001476// Process the arguments, basic blocks, and instructions of a function.
1477void SlotMachine::processFunction() {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001478 SC_DEBUG("begin processFunction!\n");
1479
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001480 // Add all the function arguments
Misha Brukmanfd939082005-04-21 23:48:37 +00001481 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
Chris Lattnere4d5c442005-03-15 04:54:21 +00001482 AE = TheFunction->arg_end(); AI != AE; ++AI)
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001483 createSlot(AI);
1484
1485 SC_DEBUG("Inserting Instructions:\n");
1486
1487 // Add all of the basic blocks and instructions
Misha Brukmanfd939082005-04-21 23:48:37 +00001488 for (Function::const_iterator BB = TheFunction->begin(),
Reid Spencerb03de0c2004-05-26 21:56:09 +00001489 E = TheFunction->end(); BB != E; ++BB) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001490 createSlot(BB);
1491 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
1492 createSlot(I);
1493 }
1494 }
1495
Reid Spencer28531c72004-08-16 07:46:33 +00001496 FunctionProcessed = true;
1497
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001498 SC_DEBUG("end processFunction!\n");
1499}
1500
1501// Clean up after incorporating a function. This is the only way
Reid Spencerb03de0c2004-05-26 21:56:09 +00001502// to get out of the function incorporation state that affects the
1503// getSlot/createSlot lock. Function incorporation state is indicated
1504// by TheFunction != 0.
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001505void SlotMachine::purgeFunction() {
1506 SC_DEBUG("begin purgeFunction!\n");
1507 fMap.clear(); // Simply discard the function level map
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001508 fTypes.clear();
Reid Spencerb03de0c2004-05-26 21:56:09 +00001509 TheFunction = 0;
Reid Spencer28531c72004-08-16 07:46:33 +00001510 FunctionProcessed = false;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001511 SC_DEBUG("end purgeFunction!\n");
1512}
1513
1514/// Get the slot number for a value. This function will assert if you
1515/// ask for a Value that hasn't previously been inserted with createSlot.
1516/// Types are forbidden because Type does not inherit from Value (any more).
Chris Lattner69566452004-06-09 19:41:19 +00001517int SlotMachine::getSlot(const Value *V) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001518 assert( V && "Can't get slot for null Value" );
Misha Brukmanfd939082005-04-21 23:48:37 +00001519 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1520 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencerb03de0c2004-05-26 21:56:09 +00001521
1522 // Check for uninitialized state and do lazy initialization
1523 this->initialize();
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001524
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001525 // Get the type of the value
1526 const Type* VTy = V->getType();
1527
1528 // Find the type plane in the module map
1529 TypedPlanes::const_iterator MI = mMap.find(VTy);
1530
Reid Spencerb03de0c2004-05-26 21:56:09 +00001531 if ( TheFunction ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001532 // Lookup the type in the function map too
1533 TypedPlanes::const_iterator FI = fMap.find(VTy);
1534 // If there is a corresponding type plane in the function map
1535 if ( FI != fMap.end() ) {
1536 // Lookup the Value in the function map
1537 ValueMap::const_iterator FVI = FI->second.map.find(V);
1538 // If the value doesn't exist in the function map
1539 if ( FVI == FI->second.map.end() ) {
Chris Lattnere9e326e2004-06-09 22:22:10 +00001540 // Look up the value in the module map.
1541 if (MI == mMap.end()) return -1;
Reid Spencerb03de0c2004-05-26 21:56:09 +00001542 ValueMap::const_iterator MVI = MI->second.map.find(V);
1543 // If we didn't find it, it wasn't inserted
Chris Lattner69566452004-06-09 19:41:19 +00001544 if (MVI == MI->second.map.end()) return -1;
Reid Spencerb03de0c2004-05-26 21:56:09 +00001545 assert( MVI != MI->second.map.end() && "Value not found");
1546 // We found it only at the module level
Misha Brukmanfd939082005-04-21 23:48:37 +00001547 return MVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001548
1549 // else the value exists in the function map
1550 } else {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001551 // Return the slot number as the module's contribution to
1552 // the type plane plus the index in the function's contribution
1553 // to the type plane.
Chris Lattnerd1cd3282004-06-15 21:07:32 +00001554 if (MI != mMap.end())
1555 return MI->second.next_slot + FVI->second;
1556 else
1557 return FVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001558 }
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001559 }
1560 }
1561
Reid Spencerfc621e22004-06-09 15:26:53 +00001562 // N.B. Can get here only if either !TheFunction or the function doesn't
1563 // have a corresponding type plane for the Value
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001564
1565 // Make sure the type plane exists
Chris Lattner69566452004-06-09 19:41:19 +00001566 if (MI == mMap.end()) return -1;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001567 // Lookup the value in the module's map
1568 ValueMap::const_iterator MVI = MI->second.map.find(V);
1569 // Make sure we found it.
Chris Lattner69566452004-06-09 19:41:19 +00001570 if (MVI == MI->second.map.end()) return -1;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001571 // Return it.
1572 return MVI->second;
1573}
1574
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001575/// Get the slot number for a value. This function will assert if you
1576/// ask for a Value that hasn't previously been inserted with createSlot.
1577/// Types are forbidden because Type does not inherit from Value (any more).
1578int SlotMachine::getSlot(const Type *Ty) {
1579 assert( Ty && "Can't get slot for null Type" );
1580
1581 // Check for uninitialized state and do lazy initialization
1582 this->initialize();
1583
1584 if ( TheFunction ) {
1585 // Lookup the Type in the function map
1586 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1587 // If the Type doesn't exist in the function map
1588 if ( FTI == fTypes.map.end() ) {
1589 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1590 // If we didn't find it, it wasn't inserted
Misha Brukmanfd939082005-04-21 23:48:37 +00001591 if (MTI == mTypes.map.end())
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001592 return -1;
1593 // We found it only at the module level
Misha Brukmanfd939082005-04-21 23:48:37 +00001594 return MTI->second;
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001595
1596 // else the value exists in the function map
1597 } else {
1598 // Return the slot number as the module's contribution to
1599 // the type plane plus the index in the function's contribution
1600 // to the type plane.
1601 return mTypes.next_slot + FTI->second;
1602 }
1603 }
1604
1605 // N.B. Can get here only if either !TheFunction
1606
1607 // Lookup the value in the module's map
1608 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1609 // Make sure we found it.
1610 if (MTI == mTypes.map.end()) return -1;
1611 // Return it.
1612 return MTI->second;
1613}
1614
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001615// Create a new slot, or return the existing slot if it is already
1616// inserted. Note that the logic here parallels getSlot but instead
1617// of asserting when the Value* isn't found, it inserts the value.
1618unsigned SlotMachine::createSlot(const Value *V) {
1619 assert( V && "Can't insert a null Value to SlotMachine");
Misha Brukmanfd939082005-04-21 23:48:37 +00001620 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1621 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001622
1623 const Type* VTy = V->getType();
1624
1625 // Just ignore void typed things
1626 if (VTy == Type::VoidTy) return 0; // FIXME: Wrong return value!
1627
1628 // Look up the type plane for the Value's type from the module map
1629 TypedPlanes::const_iterator MI = mMap.find(VTy);
1630
Reid Spencerb03de0c2004-05-26 21:56:09 +00001631 if ( TheFunction ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001632 // Get the type plane for the Value's type from the function map
1633 TypedPlanes::const_iterator FI = fMap.find(VTy);
1634 // If there is a corresponding type plane in the function map
1635 if ( FI != fMap.end() ) {
1636 // Lookup the Value in the function map
1637 ValueMap::const_iterator FVI = FI->second.map.find(V);
1638 // If the value doesn't exist in the function map
1639 if ( FVI == FI->second.map.end() ) {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001640 // If there is no corresponding type plane in the module map
1641 if ( MI == mMap.end() )
1642 return insertValue(V);
1643 // Look up the value in the module map
1644 ValueMap::const_iterator MVI = MI->second.map.find(V);
1645 // If we didn't find it, it wasn't inserted
1646 if ( MVI == MI->second.map.end() )
1647 return insertValue(V);
1648 else
1649 // We found it only at the module level
1650 return MVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001651
1652 // else the value exists in the function map
1653 } else {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001654 if ( MI == mMap.end() )
1655 return FVI->second;
1656 else
1657 // Return the slot number as the module's contribution to
1658 // the type plane plus the index in the function's contribution
1659 // to the type plane.
1660 return MI->second.next_slot + FVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001661 }
1662
1663 // else there is not a corresponding type plane in the function map
1664 } else {
1665 // If the type plane doesn't exists at the module level
1666 if ( MI == mMap.end() ) {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001667 return insertValue(V);
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001668 // else type plane exists at the module level, examine it
1669 } else {
Reid Spencerb03de0c2004-05-26 21:56:09 +00001670 // Look up the value in the module's map
1671 ValueMap::const_iterator MVI = MI->second.map.find(V);
1672 // If we didn't find it there either
1673 if ( MVI == MI->second.map.end() )
1674 // Return the slot number as the module's contribution to
1675 // the type plane plus the index of the function map insertion.
1676 return MI->second.next_slot + insertValue(V);
1677 else
1678 return MVI->second;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001679 }
1680 }
1681 }
1682
Reid Spencerb03de0c2004-05-26 21:56:09 +00001683 // N.B. Can only get here if !TheFunction
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001684
1685 // If the module map's type plane is not for the Value's type
1686 if ( MI != mMap.end() ) {
1687 // Lookup the value in the module's map
1688 ValueMap::const_iterator MVI = MI->second.map.find(V);
Misha Brukmanfd939082005-04-21 23:48:37 +00001689 if ( MVI != MI->second.map.end() )
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001690 return MVI->second;
1691 }
1692
1693 return insertValue(V);
1694}
1695
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001696// Create a new slot, or return the existing slot if it is already
1697// inserted. Note that the logic here parallels getSlot but instead
1698// of asserting when the Value* isn't found, it inserts the value.
1699unsigned SlotMachine::createSlot(const Type *Ty) {
1700 assert( Ty && "Can't insert a null Type to SlotMachine");
1701
1702 if ( TheFunction ) {
1703 // Lookup the Type in the function map
1704 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1705 // If the type doesn't exist in the function map
1706 if ( FTI == fTypes.map.end() ) {
1707 // Look up the type in the module map
1708 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1709 // If we didn't find it, it wasn't inserted
1710 if ( MTI == mTypes.map.end() )
1711 return insertValue(Ty);
1712 else
1713 // We found it only at the module level
1714 return MTI->second;
1715
1716 // else the value exists in the function map
1717 } else {
1718 // Return the slot number as the module's contribution to
1719 // the type plane plus the index in the function's contribution
1720 // to the type plane.
1721 return mTypes.next_slot + FTI->second;
1722 }
1723 }
1724
1725 // N.B. Can only get here if !TheFunction
1726
1727 // Lookup the type in the module's map
1728 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
Misha Brukmanfd939082005-04-21 23:48:37 +00001729 if ( MTI != mTypes.map.end() )
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001730 return MTI->second;
1731
1732 return insertValue(Ty);
1733}
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001734
1735// Low level insert function. Minimal checking is done. This
1736// function is just for the convenience of createSlot (above).
1737unsigned SlotMachine::insertValue(const Value *V ) {
1738 assert(V && "Can't insert a null Value into SlotMachine!");
Misha Brukmanfd939082005-04-21 23:48:37 +00001739 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1740 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001741
Reid Spencerb03de0c2004-05-26 21:56:09 +00001742 // If this value does not contribute to a plane (is void)
Misha Brukmanfd939082005-04-21 23:48:37 +00001743 // or if the value already has a name then ignore it.
Reid Spencerb03de0c2004-05-26 21:56:09 +00001744 if (V->getType() == Type::VoidTy || V->hasName() ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001745 SC_DEBUG("ignored value " << *V << "\n");
1746 return 0; // FIXME: Wrong return value
1747 }
1748
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001749 const Type *VTy = V->getType();
1750 unsigned DestSlot = 0;
1751
Reid Spencerb03de0c2004-05-26 21:56:09 +00001752 if ( TheFunction ) {
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001753 TypedPlanes::iterator I = fMap.find( VTy );
Misha Brukmanfd939082005-04-21 23:48:37 +00001754 if ( I == fMap.end() )
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001755 I = fMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001756 DestSlot = I->second.map[V] = I->second.next_slot++;
1757 } else {
1758 TypedPlanes::iterator I = mMap.find( VTy );
1759 if ( I == mMap.end() )
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001760 I = mMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001761 DestSlot = I->second.map[V] = I->second.next_slot++;
1762 }
1763
Misha Brukmanfd939082005-04-21 23:48:37 +00001764 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
Reid Spencerb03de0c2004-05-26 21:56:09 +00001765 DestSlot << " [");
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001766 // G = Global, C = Constant, T = Type, F = Function, o = other
Misha Brukmanfd939082005-04-21 23:48:37 +00001767 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : (isa<Function>(V) ? 'F' :
Reid Spencer79703962004-07-17 23:47:01 +00001768 (isa<Constant>(V) ? 'C' : 'o'))));
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001769 SC_DEBUG("]\n");
1770 return DestSlot;
1771}
1772
Reid Spencer0e25e1c2004-07-04 11:50:43 +00001773// Low level insert function. Minimal checking is done. This
1774// function is just for the convenience of createSlot (above).
1775unsigned SlotMachine::insertValue(const Type *Ty ) {
1776 assert(Ty && "Can't insert a null Type into SlotMachine!");
1777
1778 unsigned DestSlot = 0;
1779
1780 if ( TheFunction ) {
1781 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1782 } else {
1783 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1784 }
1785 SC_DEBUG(" Inserting type [" << DestSlot << "] = " << Ty << "\n");
1786 return DestSlot;
1787}
1788
Reid Spencer9231ac82004-05-25 08:53:40 +00001789// vim: sw=2