blob: b6f5fb37a3e6b480c1b54c8154a0e27e09625721 [file] [log] [blame]
Chris Lattnerf7e79482002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Assembly/Writer.h
11//
Chris Lattner189088e2002-04-12 18:21:53 +000012// Note that these routines must be extremely tolerant of various errors in the
Chris Lattnerf70da102003-05-08 02:44:12 +000013// LLVM code, because it can be used for debugging transformations.
Chris Lattner189088e2002-04-12 18:21:53 +000014//
Chris Lattner2f7c9632001-06-06 20:29:01 +000015//===----------------------------------------------------------------------===//
16
Chris Lattner7db79582001-11-07 04:21:57 +000017#include "llvm/Assembly/CachedWriter.h"
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +000018#include "llvm/Assembly/Writer.h"
Chris Lattner7f8845a2002-07-23 18:07:49 +000019#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner8339f7d2003-10-30 23:41:03 +000020#include "llvm/Assembly/AsmAnnotationWriter.h"
Chris Lattnerf7b6d312005-05-06 20:26:43 +000021#include "llvm/CallingConv.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000022#include "llvm/Constants.h"
Chris Lattner913d18f2002-04-29 18:46:50 +000023#include "llvm/DerivedTypes.h"
Chris Lattner8bbcda22006-01-25 18:57:27 +000024#include "llvm/InlineAsm.h"
Vikram S. Adveb952b542002-07-14 23:14:45 +000025#include "llvm/Instruction.h"
Misha Brukman2d3fa9e2004-07-29 16:53:53 +000026#include "llvm/Instructions.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000027#include "llvm/Module.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000028#include "llvm/SymbolTable.h"
Chris Lattner58185f22002-10-02 19:38:55 +000029#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000030#include "llvm/ADT/StringExtras.h"
31#include "llvm/ADT/STLExtras.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000032#include "llvm/Support/MathExtras.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000033#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000034using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000035
Chris Lattner60a7dd12004-07-15 02:51:31 +000036namespace llvm {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000037
Reid Spencer294715b2005-05-15 16:13:11 +000038// Make virtual table appear in this compilation unit.
39AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
40
Reid Spencer16f2f7f2004-05-26 07:18:52 +000041/// This class provides computation of slot numbers for LLVM Assembly writing.
42/// @brief LLVM Assembly Writing Slot Computation.
43class SlotMachine {
44
45/// @name Types
46/// @{
47public:
48
49 /// @brief A mapping of Values to slot numbers
50 typedef std::map<const Value*, unsigned> ValueMap;
Reid Spencer58d30f22004-07-04 11:50:43 +000051 typedef std::map<const Type*, unsigned> TypeMap;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000052
53 /// @brief A plane with next slot number and ValueMap
Misha Brukmanb1c93172005-04-21 23:48:37 +000054 struct ValuePlane {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000055 unsigned next_slot; ///< The next slot number to use
56 ValueMap map; ///< The map of Value* -> unsigned
Reid Spencer58d30f22004-07-04 11:50:43 +000057 ValuePlane() { next_slot = 0; } ///< Make sure we start at 0
58 };
59
60 struct TypePlane {
61 unsigned next_slot;
62 TypeMap map;
63 TypePlane() { next_slot = 0; }
64 void clear() { map.clear(); next_slot = 0; }
Reid Spencer16f2f7f2004-05-26 07:18:52 +000065 };
66
67 /// @brief The map of planes by Type
Reid Spencer58d30f22004-07-04 11:50:43 +000068 typedef std::map<const Type*, ValuePlane> TypedPlanes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000069
70/// @}
71/// @name Constructors
72/// @{
73public:
74 /// @brief Construct from a module
75 SlotMachine(const Module *M );
76
77 /// @brief Construct from a function, starting out in incorp state.
78 SlotMachine(const Function *F );
79
80/// @}
81/// @name Accessors
82/// @{
83public:
84 /// Return the slot number of the specified value in it's type
85 /// plane. Its an error to ask for something not in the SlotMachine.
86 /// Its an error to ask for a Type*
Chris Lattner757ee0b2004-06-09 19:41:19 +000087 int getSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +000088 int getSlot(const Type*Ty);
Reid Spencer8beac692004-06-09 15:26:53 +000089
90 /// Determine if a Value has a slot or not
91 bool hasSlot(const Value* V);
Reid Spencer58d30f22004-07-04 11:50:43 +000092 bool hasSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000093
94/// @}
95/// @name Mutators
96/// @{
97public:
Misha Brukmanb1c93172005-04-21 23:48:37 +000098 /// If you'd like to deal with a function instead of just a module, use
Reid Spencer16f2f7f2004-05-26 07:18:52 +000099 /// this method to get its data into the SlotMachine.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000100 void incorporateFunction(const Function *F) {
101 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000102 FunctionProcessed = false;
103 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000104
Misha Brukmanb1c93172005-04-21 23:48:37 +0000105 /// After calling incorporateFunction, use this method to remove the
106 /// most recently incorporated function from the SlotMachine. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000107 /// will reset the state of the machine back to just the module contents.
108 void purgeFunction();
109
110/// @}
111/// @name Implementation Details
112/// @{
113private:
Reid Spencer56010e42004-05-26 21:56:09 +0000114 /// This function does the actual initialization.
115 inline void initialize();
116
Misha Brukmanb1c93172005-04-21 23:48:37 +0000117 /// Values can be crammed into here at will. If they haven't
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000118 /// been inserted already, they get inserted, otherwise they are ignored.
119 /// Either way, the slot number for the Value* is returned.
120 unsigned createSlot(const Value *V);
Reid Spencer58d30f22004-07-04 11:50:43 +0000121 unsigned createSlot(const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000122
123 /// Insert a value into the value table. Return the slot number
124 /// that it now occupies. BadThings(TM) will happen if you insert a
Misha Brukmanb1c93172005-04-21 23:48:37 +0000125 /// Value that's already been inserted.
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000126 unsigned insertValue( const Value *V );
Reid Spencer58d30f22004-07-04 11:50:43 +0000127 unsigned insertValue( const Type* Ty);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000128
129 /// Add all of the module level global variables (and their initializers)
130 /// and function declarations, but not the contents of those functions.
131 void processModule();
132
Reid Spencer56010e42004-05-26 21:56:09 +0000133 /// Add all of the functions arguments, basic blocks, and instructions
134 void processFunction();
135
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000136 SlotMachine(const SlotMachine &); // DO NOT IMPLEMENT
137 void operator=(const SlotMachine &); // DO NOT IMPLEMENT
138
139/// @}
140/// @name Data
141/// @{
142public:
143
144 /// @brief The module for which we are holding slot numbers
Reid Spencer56010e42004-05-26 21:56:09 +0000145 const Module* TheModule;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000146
Reid Spencer56010e42004-05-26 21:56:09 +0000147 /// @brief The function for which we are holding slot numbers
148 const Function* TheFunction;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000149 bool FunctionProcessed;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000150
151 /// @brief The TypePlanes map for the module level data
152 TypedPlanes mMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000153 TypePlane mTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000154
155 /// @brief The TypePlanes map for the function level data
156 TypedPlanes fMap;
Reid Spencer58d30f22004-07-04 11:50:43 +0000157 TypePlane fTypes;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000158
159/// @}
160
161};
162
Chris Lattner60a7dd12004-07-15 02:51:31 +0000163} // end namespace llvm
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000164
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000165static RegisterPass<PrintModulePass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000166X("printm", "Print module to stderr");
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000167static RegisterPass<PrintFunctionPass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000168Y("print","Print function to stderr");
Chris Lattner7f8845a2002-07-23 18:07:49 +0000169
Misha Brukmanb1c93172005-04-21 23:48:37 +0000170static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000171 bool PrintName,
172 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000173 SlotMachine *Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000174
Misha Brukmanb1c93172005-04-21 23:48:37 +0000175static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer58d30f22004-07-04 11:50:43 +0000176 bool PrintName,
177 std::map<const Type *, std::string> &TypeTable,
178 SlotMachine *Machine);
179
Chris Lattnerb86620e2001-10-29 16:37:48 +0000180static const Module *getModuleFromVal(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000181 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000182 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000183 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000184 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000185 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner57698e22002-03-26 18:01:55 +0000186 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000187 return M ? M->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000188 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000189 return GV->getParent();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000190 return 0;
191}
192
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000193static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000194 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000195 return new SlotMachine(FA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000196 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000197 return new SlotMachine(I->getParent()->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000198 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000199 return new SlotMachine(BB->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000200 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000201 return new SlotMachine(GV->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000202 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000203 return new SlotMachine(Func);
Chris Lattner7bfee412001-10-29 16:05:51 +0000204 }
205 return 0;
206}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000207
Chris Lattner1c343042003-08-22 05:40:38 +0000208// getLLVMName - Turn the specified string into an 'LLVM name', which is either
209// prefixed with % (if the string only contains simple characters) or is
210// surrounded with ""'s (if it has special chars in it).
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000211static std::string getLLVMName(const std::string &Name,
212 bool prefixName = true) {
Chris Lattner1c343042003-08-22 05:40:38 +0000213 assert(!Name.empty() && "Cannot get empty name!");
214
215 // First character cannot start with a number...
216 if (Name[0] >= '0' && Name[0] <= '9')
217 return "\"" + Name + "\"";
218
219 // Scan to see if we have any characters that are not on the "white list"
220 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
221 char C = Name[i];
222 assert(C != '"' && "Illegal character in LLVM value name!");
223 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
224 C != '-' && C != '.' && C != '_')
225 return "\"" + Name + "\"";
226 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000227
Chris Lattner1c343042003-08-22 05:40:38 +0000228 // If we get here, then the identifier is legal to use as a "VarID".
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +0000229 if (prefixName)
230 return "%"+Name;
231 else
232 return Name;
Chris Lattner1c343042003-08-22 05:40:38 +0000233}
234
Chris Lattnerb86620e2001-10-29 16:37:48 +0000235
Misha Brukmanc566ca362004-03-02 00:22:19 +0000236/// fillTypeNameTable - If the module has a symbol table, take all global types
237/// and stuff their names into the TypeNames map.
238///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000239static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000240 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000241 if (!M) return;
242 const SymbolTable &ST = M->getSymbolTable();
Reid Spencere7e96712004-05-25 08:53:40 +0000243 SymbolTable::type_const_iterator TI = ST.type_begin();
244 for (; TI != ST.type_end(); ++TI ) {
245 // As a heuristic, don't insert pointer to primitive types, because
246 // they are used too often to have a single useful name.
247 //
248 const Type *Ty = cast<Type>(TI->second);
249 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000250 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
251 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencere7e96712004-05-25 08:53:40 +0000252 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000253 }
254}
255
256
257
Misha Brukmanb1c93172005-04-21 23:48:37 +0000258static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000259 std::vector<const Type *> &TypeStack,
260 std::map<const Type *, std::string> &TypeNames,
261 std::string & Result){
262 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)) {
263 Result += Ty->getDescription(); // Base case
264 return;
265 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000266
267 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000268 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000269 if (I != TypeNames.end()) {
270 Result += I->second;
271 return;
272 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000273
John Criswellcd116ba2004-06-01 14:54:08 +0000274 if (isa<OpaqueType>(Ty)) {
275 Result += "opaque";
276 return;
277 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000278
Chris Lattnerb86620e2001-10-29 16:37:48 +0000279 // Check to see if the Type is already on the stack...
280 unsigned Slot = 0, CurSize = TypeStack.size();
281 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
282
Misha Brukmanb1c93172005-04-21 23:48:37 +0000283 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000284 // that we have looped back to a type that we have previously visited.
285 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000286 if (Slot < CurSize) {
287 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
288 return;
289 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000290
291 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000292
Chris Lattner6b727592004-06-17 18:19:28 +0000293 switch (Ty->getTypeID()) {
Chris Lattner91db5822002-03-29 03:44:36 +0000294 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000295 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000296 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
297 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000298 for (FunctionType::param_iterator I = FTy->param_begin(),
299 E = FTy->param_end(); I != E; ++I) {
300 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000301 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000302 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000303 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000304 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000305 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000306 Result += "...";
307 }
308 Result += ")";
309 break;
310 }
311 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000312 const StructType *STy = cast<StructType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000313 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000314 for (StructType::element_iterator I = STy->element_begin(),
315 E = STy->element_end(); I != E; ++I) {
316 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000317 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000318 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000319 }
320 Result += " }";
321 break;
322 }
323 case Type::PointerTyID:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000324 calcTypeName(cast<PointerType>(Ty)->getElementType(),
John Criswellcd116ba2004-06-01 14:54:08 +0000325 TypeStack, TypeNames, Result);
326 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000327 break;
328 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000329 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000330 Result += "[" + utostr(ATy->getNumElements()) + " x ";
331 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
332 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000333 break;
334 }
Brian Gaeke02209042004-08-20 06:00:58 +0000335 case Type::PackedTyID: {
336 const PackedType *PTy = cast<PackedType>(Ty);
337 Result += "<" + utostr(PTy->getNumElements()) + " x ";
338 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
339 Result += ">";
340 break;
341 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000342 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000343 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000344 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000345 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000346 Result += "<unrecognized-type>";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000347 }
348
349 TypeStack.pop_back(); // Remove self from stack...
John Criswellcd116ba2004-06-01 14:54:08 +0000350 return;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000351}
352
353
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000354/// printTypeInt - The internal guts of printing out a type that has a
355/// potentially named portion.
356///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000357static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
358 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000359 // Primitive types always print out their description, regardless of whether
360 // they have been named or not.
361 //
Chris Lattner92d60532003-10-30 00:12:51 +0000362 if (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))
363 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000364
365 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000366 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000367 if (I != TypeNames.end()) return Out << I->second;
368
369 // Otherwise we have a type that has not been named but is a derived type.
370 // Carefully recurse the type hierarchy to print out any contained symbolic
371 // names.
372 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000373 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000374 std::string TypeName;
375 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000376 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000377 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000378}
379
Chris Lattner34b95182001-10-31 04:33:19 +0000380
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000381/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
382/// type, iff there is an entry in the modules symbol table for the specified
383/// type or one of it's component types. This is slower than a simple x << Type
384///
Chris Lattner189d19f2003-11-21 20:23:48 +0000385std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
386 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000387 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000388
389 // If they want us to print out a type, attempt to make it symbolic if there
390 // is a symbol table in the module...
Chris Lattner98cf1f52002-11-20 18:36:02 +0000391 if (M) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000392 std::map<const Type *, std::string> TypeNames;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000393 fillTypeNameTable(M, TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000394
Chris Lattner72f866e2001-10-29 16:40:32 +0000395 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000396 } else {
Chris Lattner72f866e2001-10-29 16:40:32 +0000397 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000398 }
399}
400
Chris Lattner6ed87bd2006-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 Brukmanb1c93172005-04-21 23:48:37 +0000416/// @brief Internal constant writer.
417static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000418 bool PrintName,
419 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000420 SlotMachine *Machine) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000421 const int IndentSize = 4;
422 static std::string Indent = "\n";
Chris Lattner1e194682002-04-18 18:53:13 +0000423 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
424 Out << (CB == ConstantBool::True ? "true" : "false");
425 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV)) {
426 Out << CI->getValue();
427 } else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV)) {
428 Out << CI->getValue();
429 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
430 // We would like to output the FP constant value in exponential notation,
431 // but we cannot do this if doing so will lose precision. Check here to
432 // make sure that we only output it in exponential format if we can parse
433 // the value back and get the same value.
434 //
435 std::string StrVal = ftostr(CFP->getValue());
436
437 // Check to make sure that the stringized number is not some string like
438 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
439 // the string matches the "[-+]?[0-9]" regex.
440 //
441 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
442 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaeke87b4f072003-06-17 23:55:35 +0000443 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner1e194682002-04-18 18:53:13 +0000444 // Reparse stringized version!
445 if (atof(StrVal.c_str()) == CFP->getValue()) {
Chris Lattner472cc102005-01-04 01:56:57 +0000446 Out << StrVal;
447 return;
Chris Lattner1e194682002-04-18 18:53:13 +0000448 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000449
Chris Lattner1e194682002-04-18 18:53:13 +0000450 // Otherwise we could not reparse it to exactly the same value, so we must
451 // output the string in hexadecimal format!
Chris Lattner472cc102005-01-04 01:56:57 +0000452 assert(sizeof(double) == sizeof(uint64_t) &&
Chris Lattner1e194682002-04-18 18:53:13 +0000453 "assuming that double is 64 bits!");
Jim Laskeyb74c6662005-08-17 19:34:49 +0000454 Out << "0x" << utohexstr(DoubleToBits(CFP->getValue()));
Chris Lattner1e194682002-04-18 18:53:13 +0000455
Chris Lattner76b2ff42004-02-15 05:55:15 +0000456 } else if (isa<ConstantAggregateZero>(CV)) {
457 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000458 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
459 // As a special case, print the array as a string if it is an array of
460 // ubytes or an array of sbytes with positive values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000461 //
Chris Lattner1e194682002-04-18 18:53:13 +0000462 const Type *ETy = CA->getType()->getElementType();
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000463 if (CA->isString()) {
Chris Lattner1e194682002-04-18 18:53:13 +0000464 Out << "c\"";
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000465 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner1e194682002-04-18 18:53:13 +0000466 Out << "\"";
467
468 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000469 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000470 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000471 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000472 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000473 WriteAsOperandInternal(Out, CA->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000474 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000475 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
476 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000477 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000478 WriteAsOperandInternal(Out, CA->getOperand(i), PrintName,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000479 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000480 }
481 }
482 Out << " ]";
483 }
484 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000485 Out << '{';
Jim Laskey3bb78742006-02-25 12:27:03 +0000486 unsigned N = CS->getNumOperands();
487 if (N) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000488 if (N > 2) {
489 Indent += std::string(IndentSize, ' ');
490 Out << Indent;
491 } else {
492 Out << ' ';
493 }
Chris Lattnerd84bb632002-04-16 21:36:08 +0000494 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
495
496 WriteAsOperandInternal(Out, CS->getOperand(0),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000497 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000498
Jim Laskey3bb78742006-02-25 12:27:03 +0000499 for (unsigned i = 1; i < N; i++) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000500 Out << ", ";
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000501 if (N > 2) Out << Indent;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000502 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
503
504 WriteAsOperandInternal(Out, CS->getOperand(i),
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000505 PrintName, TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000506 }
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000507 if (N > 2) Indent.resize(Indent.size() - IndentSize);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000508 }
Jim Laskey3bb78742006-02-25 12:27:03 +0000509
Chris Lattnerd84bb632002-04-16 21:36:08 +0000510 Out << " }";
Brian Gaeke02209042004-08-20 06:00:58 +0000511 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
512 const Type *ETy = CP->getType()->getElementType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000513 assert(CP->getNumOperands() > 0 &&
Brian Gaeke02209042004-08-20 06:00:58 +0000514 "Number of operands for a PackedConst must be > 0");
515 Out << '<';
516 Out << ' ';
517 printTypeInt(Out, ETy, TypeTable);
518 WriteAsOperandInternal(Out, CP->getOperand(0),
519 PrintName, TypeTable, Machine);
520 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
521 Out << ", ";
522 printTypeInt(Out, ETy, TypeTable);
523 WriteAsOperandInternal(Out, CP->getOperand(i), PrintName,
524 TypeTable, Machine);
525 }
526 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000527 } else if (isa<ConstantPointerNull>(CV)) {
528 Out << "null";
529
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000530 } else if (isa<UndefValue>(CV)) {
531 Out << "undef";
532
Chris Lattner3cd8c562002-07-30 18:54:25 +0000533 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Chris Lattnerb8257222003-03-06 23:23:32 +0000534 Out << CE->getOpcodeName() << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000535
Vikram S. Adveb952b542002-07-14 23:14:45 +0000536 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
537 printTypeInt(Out, (*OI)->getType(), TypeTable);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000538 WriteAsOperandInternal(Out, *OI, PrintName, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000539 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000540 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000541 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000542
Chris Lattnercfe8f532002-08-16 21:17:11 +0000543 if (CE->getOpcode() == Instruction::Cast) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000544 Out << " to ";
545 printTypeInt(Out, CE->getType(), TypeTable);
546 }
Misha Brukman21bbdb92004-06-04 21:11:51 +0000547 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000548
Chris Lattnerd84bb632002-04-16 21:36:08 +0000549 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000550 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000551 }
552}
553
554
Misha Brukmanc566ca362004-03-02 00:22:19 +0000555/// WriteAsOperand - Write the name of the specified value out to the specified
556/// ostream. This can be useful when you just want to print int %reg126, not
557/// the whole instruction that generated it.
558///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000559static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000560 bool PrintName,
561 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000562 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000563 Out << ' ';
Reid Spenceraccd7c72004-07-17 23:47:01 +0000564 if ((PrintName || isa<GlobalValue>(V)) && V->hasName())
Chris Lattner1c343042003-08-22 05:40:38 +0000565 Out << getLLVMName(V->getName());
Reid Spenceraccd7c72004-07-17 23:47:01 +0000566 else {
567 const Constant *CV = dyn_cast<Constant>(V);
Chris Lattnera2d810d2006-01-25 22:26:05 +0000568 if (CV && !isa<GlobalValue>(CV)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000569 WriteConstantInt(Out, CV, PrintName, TypeTable, Machine);
Chris Lattnera2d810d2006-01-25 22:26:05 +0000570 } else if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
571 Out << "asm ";
572 if (IA->hasSideEffects())
573 Out << "sideeffect ";
574 Out << '"';
575 PrintEscapedString(IA->getAsmString(), Out);
576 Out << "\", \"";
577 PrintEscapedString(IA->getConstraintString(), Out);
578 Out << '"';
579 } else {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000580 int Slot;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000581 if (Machine) {
Reid Spencer56010e42004-05-26 21:56:09 +0000582 Slot = Machine->getSlot(V);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000583 } else {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000584 Machine = createSlotMachine(V);
Chris Lattner96749c42006-05-14 18:46:52 +0000585 if (Machine)
Chris Lattner757ee0b2004-06-09 19:41:19 +0000586 Slot = Machine->getSlot(V);
587 else
588 Slot = -1;
Reid Spencer56010e42004-05-26 21:56:09 +0000589 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000590 }
Chris Lattner757ee0b2004-06-09 19:41:19 +0000591 if (Slot != -1)
592 Out << '%' << Slot;
593 else
594 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000595 }
596 }
597}
598
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000599/// WriteAsOperand - Write the name of the specified value out to the specified
600/// ostream. This can be useful when you just want to print int %reg126, not
601/// the whole instruction that generated it.
602///
Chris Lattner189d19f2003-11-21 20:23:48 +0000603std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Misha Brukmanb1c93172005-04-21 23:48:37 +0000604 bool PrintType, bool PrintName,
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000605 const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000606 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000607 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000608
Chris Lattner98cf1f52002-11-20 18:36:02 +0000609 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000610 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000611
612 if (PrintType)
613 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000614
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000615 WriteAsOperandInternal(Out, V, PrintName, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000616 return Out;
617}
618
Misha Brukmanb1c93172005-04-21 23:48:37 +0000619/// WriteAsOperandInternal - Write the name of the specified value out to
620/// the specified ostream. This can be useful when you just want to print
Reid Spencer58d30f22004-07-04 11:50:43 +0000621/// int %reg126, not the whole instruction that generated it.
622///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000623static void WriteAsOperandInternal(std::ostream &Out, const Type *T,
Reid Spencer58d30f22004-07-04 11:50:43 +0000624 bool PrintName,
625 std::map<const Type*, std::string> &TypeTable,
626 SlotMachine *Machine) {
627 Out << ' ';
628 int Slot;
629 if (Machine) {
630 Slot = Machine->getSlot(T);
631 if (Slot != -1)
632 Out << '%' << Slot;
633 else
634 Out << "<badref>";
635 } else {
636 Out << T->getDescription();
637 }
638}
639
640/// WriteAsOperand - Write the name of the specified value out to the specified
641/// ostream. This can be useful when you just want to print int %reg126, not
642/// the whole instruction that generated it.
643///
644std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Type *Ty,
Misha Brukmanb1c93172005-04-21 23:48:37 +0000645 bool PrintType, bool PrintName,
Reid Spencer58d30f22004-07-04 11:50:43 +0000646 const Module *Context) {
647 std::map<const Type *, std::string> TypeNames;
648 assert(Context != 0 && "Can't write types as operand without module context");
649
650 fillTypeNameTable(Context, TypeNames);
651
652 // if (PrintType)
653 // printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000654
Reid Spencer58d30f22004-07-04 11:50:43 +0000655 printTypeInt(Out, Ty, TypeNames);
656
657 WriteAsOperandInternal(Out, Ty, PrintName, TypeNames, 0);
658 return Out;
659}
660
Chris Lattner189d19f2003-11-21 20:23:48 +0000661namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000662
Chris Lattnerfee714f2001-09-07 16:36:04 +0000663class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000664 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000665 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000666 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000667 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000668 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000669public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000670 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000671 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000672 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000673
674 // If the module has a symbol table, take all global types and stuff their
675 // names into the TypeNames map.
676 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000677 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000678 }
679
Chris Lattner7bfee412001-10-29 16:05:51 +0000680 inline void write(const Module *M) { printModule(M); }
681 inline void write(const GlobalVariable *G) { printGlobal(G); }
Chris Lattner57698e22002-03-26 18:01:55 +0000682 inline void write(const Function *F) { printFunction(F); }
Chris Lattner7bfee412001-10-29 16:05:51 +0000683 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000684 inline void write(const Instruction *I) { printInstruction(*I); }
Chris Lattner3462ae32001-12-03 22:26:30 +0000685 inline void write(const Constant *CPV) { printConstant(CPV); }
Chris Lattner7db79582001-11-07 04:21:57 +0000686 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000687
Chris Lattner1e194682002-04-18 18:53:13 +0000688 void writeOperand(const Value *Op, bool PrintType, bool PrintName = true);
689
Misha Brukman4685e262004-04-28 15:31:21 +0000690 const Module* getModule() { return TheModule; }
691
Misha Brukmand92f54a2004-11-15 19:30:05 +0000692private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000693 void printModule(const Module *M);
694 void printSymbolTable(const SymbolTable &ST);
Chris Lattner3462ae32001-12-03 22:26:30 +0000695 void printConstant(const Constant *CPV);
Chris Lattner7bfee412001-10-29 16:05:51 +0000696 void printGlobal(const GlobalVariable *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000697 void printFunction(const Function *F);
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000698 void printArgument(const Argument *FA);
Chris Lattner7bfee412001-10-29 16:05:51 +0000699 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000700 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000701
702 // printType - Go to extreme measures to attempt to print out a short,
703 // symbolic version of a type name.
704 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000705 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000706 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000707 }
708
709 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
710 // without considering any symbolic types that we may have equal to it.
711 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000712 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000713
Chris Lattner862e3382001-10-13 06:42:36 +0000714 // printInfoComment - Print a little comment after the instruction indicating
715 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000716 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000717};
Reid Spencerf43ac622004-05-27 22:04:46 +0000718} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000719
Misha Brukmanc566ca362004-03-02 00:22:19 +0000720/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
721/// without considering any symbolic types that we may have equal to it.
722///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000723std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000724 if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Chris Lattnerd816b532002-04-13 20:53:41 +0000725 printType(FTy->getReturnType()) << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000726 for (FunctionType::param_iterator I = FTy->param_begin(),
727 E = FTy->param_end(); I != E; ++I) {
728 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000729 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000730 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000731 }
732 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000733 if (FTy->getNumParams()) Out << ", ";
734 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000735 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000736 Out << ')';
Chris Lattner113f4f42002-06-25 16:13:24 +0000737 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000738 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000739 for (StructType::element_iterator I = STy->element_begin(),
740 E = STy->element_end(); I != E; ++I) {
741 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000742 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000743 printType(*I);
744 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000745 Out << " }";
Chris Lattner113f4f42002-06-25 16:13:24 +0000746 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000747 printType(PTy->getElementType()) << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000748 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000749 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000750 printType(ATy->getElementType()) << ']';
Reid Spencere203d352004-08-20 15:37:30 +0000751 } else if (const PackedType *PTy = dyn_cast<PackedType>(Ty)) {
752 Out << '<' << PTy->getNumElements() << " x ";
753 printType(PTy->getElementType()) << '>';
754 }
755 else if (const OpaqueType *OTy = dyn_cast<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000756 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000757 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000758 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000759 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000760 printType(Ty);
761 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000762 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000763}
764
765
Misha Brukmanb1c93172005-04-21 23:48:37 +0000766void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType,
Reid Spencer56010e42004-05-26 21:56:09 +0000767 bool PrintName) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000768 if (Operand != 0) {
769 if (PrintType) { Out << ' '; printType(Operand->getType()); }
770 WriteAsOperandInternal(Out, Operand, PrintName, TypeNames, &Machine);
771 } else {
772 Out << "<null operand!>";
773 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000774}
775
Chris Lattner2f7c9632001-06-06 20:29:01 +0000776
Chris Lattner7bfee412001-10-29 16:05:51 +0000777void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +0000778 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +0000779 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +0000780 // require a comment char before it).
781 M->getModuleIdentifier().find('\n') == std::string::npos)
782 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
783
Chris Lattner8068e0c2003-08-24 13:48:48 +0000784 switch (M->getEndianness()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000785 case Module::LittleEndian: Out << "target endian = little\n"; break;
786 case Module::BigEndian: Out << "target endian = big\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000787 case Module::AnyEndianness: break;
788 }
789 switch (M->getPointerSize()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000790 case Module::Pointer32: Out << "target pointersize = 32\n"; break;
791 case Module::Pointer64: Out << "target pointersize = 64\n"; break;
Chris Lattner8068e0c2003-08-24 13:48:48 +0000792 case Module::AnyPointerSize: break;
793 }
Reid Spencer48f98c82004-07-25 21:44:54 +0000794 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000795 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000796
Chris Lattnereef2fe72006-01-24 04:13:11 +0000797 if (!M->getModuleInlineAsm().empty()) {
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000798 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnereef2fe72006-01-24 04:13:11 +0000799 std::string Asm = M->getModuleInlineAsm();
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000800 size_t CurPos = 0;
801 size_t NewLine = Asm.find_first_of('\n', CurPos);
802 while (NewLine != std::string::npos) {
803 // We found a newline, print the portion of the asm string from the
804 // last newline up to this newline.
805 Out << "module asm \"";
806 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
807 Out);
808 Out << "\"\n";
809 CurPos = NewLine+1;
810 NewLine = Asm.find_first_of('\n', CurPos);
811 }
Chris Lattner3acaf5c2006-01-24 00:40:17 +0000812 Out << "module asm \"";
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000813 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000814 Out << "\"\n";
815 }
816
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000817 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000818 Module::lib_iterator LI = M->lib_begin();
819 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000820 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000821 Out << "deplibs = [ ";
822 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000823 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000824 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000825 if (LI != LE)
826 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000827 }
828 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000829 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000830
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000831 // Loop over the symbol table, emitting all named constants.
Chris Lattner98cf1f52002-11-20 18:36:02 +0000832 printSymbolTable(M->getSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000833
Chris Lattner531f9e92005-03-15 04:54:21 +0000834 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000835 printGlobal(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000836
Misha Brukmana6619a92004-06-21 21:53:56 +0000837 Out << "\nimplementation ; Functions:\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000838
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000839 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000840 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
841 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000842}
843
Chris Lattner7bfee412001-10-29 16:05:51 +0000844void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000845 if (GV->hasName()) Out << getLLVMName(GV->getName()) << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000846
Misha Brukmanb1c93172005-04-21 23:48:37 +0000847 if (!GV->hasInitializer())
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000848 switch (GV->getLinkage()) {
849 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
850 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
851 default: Out << "external "; break;
852 }
Chris Lattner379a8d22003-04-16 20:28:45 +0000853 else
854 switch (GV->getLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000855 case GlobalValue::InternalLinkage: Out << "internal "; break;
856 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
857 case GlobalValue::WeakLinkage: Out << "weak "; break;
858 case GlobalValue::AppendingLinkage: Out << "appending "; break;
859 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
860 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
861 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
862 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000863 case GlobalValue::GhostLinkage:
864 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
865 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000866 }
Chris Lattner37798642001-09-18 04:01:05 +0000867
Misha Brukmana6619a92004-06-21 21:53:56 +0000868 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +0000869 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +0000870
Reid Spenceraccd7c72004-07-17 23:47:01 +0000871 if (GV->hasInitializer()) {
872 Constant* C = cast<Constant>(GV->getInitializer());
873 assert(C && "GlobalVar initializer isn't constant?");
Reid Spencerc9c90cf2004-07-18 01:04:19 +0000874 writeOperand(GV->getInitializer(), false, isa<GlobalValue>(C));
Reid Spenceraccd7c72004-07-17 23:47:01 +0000875 }
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000876
Chris Lattner4b96c542005-11-12 00:10:19 +0000877 if (GV->hasSection())
878 Out << ", section \"" << GV->getSection() << '"';
879 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000880 Out << ", align " << GV->getAlignment();
Chris Lattner4b96c542005-11-12 00:10:19 +0000881
Chris Lattner113f4f42002-06-25 16:13:24 +0000882 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000883 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +0000884}
885
Chris Lattnerfee714f2001-09-07 16:36:04 +0000886
Reid Spencere7e96712004-05-25 08:53:40 +0000887// printSymbolTable - Run through symbol table looking for constants
888// and types. Emit their declarations.
Chris Lattner7bfee412001-10-29 16:05:51 +0000889void AssemblyWriter::printSymbolTable(const SymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +0000890
891 // Print the types.
892 for (SymbolTable::type_const_iterator TI = ST.type_begin();
893 TI != ST.type_end(); ++TI ) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000894 Out << "\t" << getLLVMName(TI->first) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +0000895
896 // Make sure we print out at least one level of the type structure, so
897 // that we do not get %FILE = type %FILE
898 //
899 printTypeAtLeastOneLevel(TI->second) << "\n";
900 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000901
Reid Spencere7e96712004-05-25 08:53:40 +0000902 // Print the constants, in type plane order.
903 for (SymbolTable::plane_const_iterator PI = ST.plane_begin();
904 PI != ST.plane_end(); ++PI ) {
905 SymbolTable::value_const_iterator VI = ST.value_begin(PI->first);
906 SymbolTable::value_const_iterator VE = ST.value_end(PI->first);
907
908 for (; VI != VE; ++VI) {
Reid Spenceraccd7c72004-07-17 23:47:01 +0000909 const Value* V = VI->second;
910 const Constant *CPV = dyn_cast<Constant>(V) ;
911 if (CPV && !isa<GlobalValue>(V)) {
Reid Spencer56010e42004-05-26 21:56:09 +0000912 printConstant(CPV);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000913 }
914 }
Chris Lattnera7620d92001-07-15 06:35:59 +0000915 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000916}
917
918
Misha Brukmanc566ca362004-03-02 00:22:19 +0000919/// printConstant - Print out a constant pool entry...
920///
Chris Lattner3462ae32001-12-03 22:26:30 +0000921void AssemblyWriter::printConstant(const Constant *CPV) {
Chris Lattnerfee714f2001-09-07 16:36:04 +0000922 // Don't print out unnamed constants, they will be inlined
923 if (!CPV->hasName()) return;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000924
Chris Lattneree998be2001-07-26 16:29:38 +0000925 // Print out name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000926 Out << "\t" << getLLVMName(CPV->getName()) << " =";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000927
928 // Write the value out now...
Chris Lattnerd84bb632002-04-16 21:36:08 +0000929 writeOperand(CPV, true, false);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000930
Chris Lattner113f4f42002-06-25 16:13:24 +0000931 printInfoComment(*CPV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000932 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +0000933}
934
Misha Brukmanc566ca362004-03-02 00:22:19 +0000935/// printFunction - Print all aspects of a function.
936///
Chris Lattner113f4f42002-06-25 16:13:24 +0000937void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000938 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000939 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +0000940
Chris Lattner97e36f22004-12-05 06:44:09 +0000941 // Ensure that no local symbols conflict with global symbols.
942 const_cast<Function*>(F)->renameLocalSymbols();
943
Misha Brukmana6619a92004-06-21 21:53:56 +0000944 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000945
Chris Lattner379a8d22003-04-16 20:28:45 +0000946 if (F->isExternal())
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000947 switch (F->getLinkage()) {
948 case GlobalValue::DLLImportLinkage: Out << "declare dllimport "; break;
949 case GlobalValue::ExternalWeakLinkage: Out << "declare extern_weak "; break;
950 default: Out << "declare ";
951 }
Chris Lattner379a8d22003-04-16 20:28:45 +0000952 else
953 switch (F->getLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000954 case GlobalValue::InternalLinkage: Out << "internal "; break;
955 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
956 case GlobalValue::WeakLinkage: Out << "weak "; break;
957 case GlobalValue::AppendingLinkage: Out << "appending "; break;
958 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
959 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
960 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000961 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000962 case GlobalValue::GhostLinkage:
963 std::cerr << "GhostLinkage not allowed in AsmWriter!\n";
964 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000965 }
966
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000967 // Print the calling convention.
968 switch (F->getCallingConv()) {
969 case CallingConv::C: break; // default
Chris Lattner5bdc7122006-05-19 21:29:57 +0000970 case CallingConv::CSRet: Out << "csretcc "; break;
Chris Lattner29d20852006-05-19 21:58:52 +0000971 case CallingConv::Fast: Out << "fastcc "; break;
972 case CallingConv::Cold: Out << "coldcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000973 default: Out << "cc" << F->getCallingConv() << " "; break;
974 }
975
Misha Brukman21bbdb92004-06-04 21:11:51 +0000976 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +0000977 if (!F->getName().empty())
Misha Brukmana6619a92004-06-21 21:53:56 +0000978 Out << getLLVMName(F->getName());
Chris Lattner5b337482003-10-18 05:57:43 +0000979 else
Misha Brukmana6619a92004-06-21 21:53:56 +0000980 Out << "\"\"";
981 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000982 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000983
Chris Lattner7bfee412001-10-29 16:05:51 +0000984 // Loop over the arguments, printing them...
Chris Lattner113f4f42002-06-25 16:13:24 +0000985 const FunctionType *FT = F->getFunctionType();
Chris Lattnerfee714f2001-09-07 16:36:04 +0000986
Chris Lattner531f9e92005-03-15 04:54:21 +0000987 for(Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattner149376d2002-10-13 20:57:00 +0000988 printArgument(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000989
990 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +0000991 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000992 if (FT->getNumParams()) Out << ", ";
993 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +0000994 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000995 Out << ')';
Chris Lattnerfee714f2001-09-07 16:36:04 +0000996
Chris Lattner4b96c542005-11-12 00:10:19 +0000997 if (F->hasSection())
998 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000999 if (F->getAlignment())
1000 Out << " align " << F->getAlignment();
Chris Lattner4b96c542005-11-12 00:10:19 +00001001
Chris Lattner113f4f42002-06-25 16:13:24 +00001002 if (F->isExternal()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001003 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +00001004 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +00001005 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001006
Chris Lattner6915f8f2002-04-07 22:49:37 +00001007 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +00001008 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1009 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001010
Misha Brukmana6619a92004-06-21 21:53:56 +00001011 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +00001012 }
1013
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001014 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001015}
1016
Misha Brukmanc566ca362004-03-02 00:22:19 +00001017/// printArgument - This member is called for every argument that is passed into
1018/// the function. Simply print it out
1019///
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001020void AssemblyWriter::printArgument(const Argument *Arg) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001021 // Insert commas as we go... the first arg doesn't get a comma
Chris Lattnerfb972ad2005-03-15 05:03:36 +00001022 if (Arg != Arg->getParent()->arg_begin()) Out << ", ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001023
1024 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +00001025 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001026
Chris Lattner2f7c9632001-06-06 20:29:01 +00001027 // Output name, if available...
1028 if (Arg->hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +00001029 Out << ' ' << getLLVMName(Arg->getName());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001030}
1031
Misha Brukmanc566ca362004-03-02 00:22:19 +00001032/// printBasicBlock - This member is called for each basic block in a method.
1033///
Chris Lattner7bfee412001-10-29 16:05:51 +00001034void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001035 if (BB->hasName()) { // Print out the label if it exists...
Alkis Evlogimenos991d6ad2004-12-10 05:41:10 +00001036 Out << "\n" << getLLVMName(BB->getName(), false) << ':';
Chris Lattner408dbdb2002-05-14 16:02:05 +00001037 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukmana6619a92004-06-21 21:53:56 +00001038 Out << "\n; <label>:";
Chris Lattner757ee0b2004-06-09 19:41:19 +00001039 int Slot = Machine.getSlot(BB);
1040 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001041 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +00001042 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001043 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +00001044 }
Chris Lattner2447ef52003-11-20 00:09:43 +00001045
1046 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +00001047 Out << "\t\t; Error: Block without parent!";
Chris Lattner2447ef52003-11-20 00:09:43 +00001048 else {
1049 if (BB != &BB->getParent()->front()) { // Not the entry block?
1050 // Output predecessors for the block...
Misha Brukmana6619a92004-06-21 21:53:56 +00001051 Out << "\t\t;";
Chris Lattner2447ef52003-11-20 00:09:43 +00001052 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001053
Chris Lattner2447ef52003-11-20 00:09:43 +00001054 if (PI == PE) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001055 Out << " No predecessors!";
Chris Lattner2447ef52003-11-20 00:09:43 +00001056 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +00001057 Out << " preds =";
Chris Lattner00211f12003-11-16 22:59:57 +00001058 writeOperand(*PI, false, true);
Chris Lattner2447ef52003-11-20 00:09:43 +00001059 for (++PI; PI != PE; ++PI) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001060 Out << ',';
Chris Lattner2447ef52003-11-20 00:09:43 +00001061 writeOperand(*PI, false, true);
1062 }
Chris Lattner00211f12003-11-16 22:59:57 +00001063 }
Chris Lattner58185f22002-10-02 19:38:55 +00001064 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001065 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001066
Misha Brukmana6619a92004-06-21 21:53:56 +00001067 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001068
Misha Brukmana6619a92004-06-21 21:53:56 +00001069 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001070
Chris Lattnerfee714f2001-09-07 16:36:04 +00001071 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001072 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1073 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001074
Misha Brukmana6619a92004-06-21 21:53:56 +00001075 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001076}
1077
Chris Lattner862e3382001-10-13 06:42:36 +00001078
Misha Brukmanc566ca362004-03-02 00:22:19 +00001079/// printInfoComment - Print a little comment after the instruction indicating
1080/// which slot it occupies.
1081///
Chris Lattner113f4f42002-06-25 16:13:24 +00001082void AssemblyWriter::printInfoComment(const Value &V) {
1083 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001084 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001085 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001086
Chris Lattner113f4f42002-06-25 16:13:24 +00001087 if (!V.hasName()) {
Chris Lattner757ee0b2004-06-09 19:41:19 +00001088 int SlotNum = Machine.getSlot(&V);
1089 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001090 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001091 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001092 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001093 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001094 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001095 }
1096}
1097
Reid Spencere7141c82006-08-28 01:02:49 +00001098// This member is called for each Instruction in a function..
Chris Lattner113f4f42002-06-25 16:13:24 +00001099void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001100 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001101
Misha Brukmana6619a92004-06-21 21:53:56 +00001102 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001103
1104 // Print out name if it exists...
Chris Lattner113f4f42002-06-25 16:13:24 +00001105 if (I.hasName())
Misha Brukmana6619a92004-06-21 21:53:56 +00001106 Out << getLLVMName(I.getName()) << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001107
Chris Lattner06038452005-05-06 05:51:46 +00001108 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001109 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001110 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001111 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001112 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1113 // If this is a call, check if it's a tail call.
1114 Out << "tail ";
1115 }
Chris Lattner504f9242003-09-08 17:45:59 +00001116
Chris Lattner2f7c9632001-06-06 20:29:01 +00001117 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001118 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001119
1120 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001121 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001122
1123 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001124 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1125 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001126 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001127 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001128 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001129 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001130
Chris Lattner8d48df22002-04-13 18:34:38 +00001131 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001132 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001133 writeOperand(Operand , true); Out << ',';
1134 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001135
Chris Lattner113f4f42002-06-25 16:13:24 +00001136 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001137 Out << "\n\t\t";
1138 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001139 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001140 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001141 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001142 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001143 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001144 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001145 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001146
Chris Lattner113f4f42002-06-25 16:13:24 +00001147 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001148 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001149 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001150 writeOperand(I.getOperand(op ), false); Out << ',';
1151 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001152 }
Chris Lattner862e3382001-10-13 06:42:36 +00001153 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001154 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001155 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1156 // Print the calling convention being used.
1157 switch (CI->getCallingConv()) {
1158 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001159 case CallingConv::CSRet: Out << " csretcc"; break;
1160 case CallingConv::Fast: Out << " fastcc"; break;
1161 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001162 default: Out << " cc" << CI->getCallingConv(); break;
1163 }
1164
Chris Lattner463d6a52003-08-05 15:34:45 +00001165 const PointerType *PTy = cast<PointerType>(Operand->getType());
1166 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1167 const Type *RetTy = FTy->getReturnType();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001168
Chris Lattner463d6a52003-08-05 15:34:45 +00001169 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001170 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001171 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001172 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001173 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001174 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001175 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001176 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001177 writeOperand(Operand, false);
1178 } else {
1179 writeOperand(Operand, true);
1180 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001181 Out << '(';
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001182 if (CI->getNumOperands() > 1) writeOperand(CI->getOperand(1), true);
Chris Lattner113f4f42002-06-25 16:13:24 +00001183 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001184 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001185 writeOperand(I.getOperand(op), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001186 }
1187
Misha Brukmana6619a92004-06-21 21:53:56 +00001188 Out << " )";
Chris Lattner113f4f42002-06-25 16:13:24 +00001189 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattner463d6a52003-08-05 15:34:45 +00001190 const PointerType *PTy = cast<PointerType>(Operand->getType());
1191 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1192 const Type *RetTy = FTy->getReturnType();
1193
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001194 // Print the calling convention being used.
1195 switch (II->getCallingConv()) {
1196 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001197 case CallingConv::CSRet: Out << " csretcc"; break;
1198 case CallingConv::Fast: Out << " fastcc"; break;
1199 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001200 default: Out << " cc" << II->getCallingConv(); break;
1201 }
1202
Chris Lattner463d6a52003-08-05 15:34:45 +00001203 // If possible, print out the short form of the invoke instruction. We can
1204 // only do this if the first argument is a pointer to a nonvararg function,
1205 // and if the return type is not a pointer to a function.
1206 //
1207 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001208 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001209 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001210 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001211 writeOperand(Operand, false);
1212 } else {
1213 writeOperand(Operand, true);
1214 }
1215
Misha Brukmana6619a92004-06-21 21:53:56 +00001216 Out << '(';
Chris Lattner113f4f42002-06-25 16:13:24 +00001217 if (I.getNumOperands() > 3) writeOperand(I.getOperand(3), true);
1218 for (unsigned op = 4, Eop = I.getNumOperands(); op < Eop; ++op) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001219 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001220 writeOperand(I.getOperand(op), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001221 }
1222
Misha Brukmana6619a92004-06-21 21:53:56 +00001223 Out << " )\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001224 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001225 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001226 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001227
Chris Lattner113f4f42002-06-25 16:13:24 +00001228 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001229 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001230 printType(AI->getType()->getElementType());
1231 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001232 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001233 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001234 }
Nate Begeman848622f2005-11-05 09:21:28 +00001235 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001236 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001237 }
Chris Lattner862e3382001-10-13 06:42:36 +00001238 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001239 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001240 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001241 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001242 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001243 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001244 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001245 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001246 } else if (Operand) { // Print the normal way...
1247
Misha Brukmanb1c93172005-04-21 23:48:37 +00001248 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001249 // omit the type from all but the first operand. If the instruction has
1250 // different type operands (for example br), then they are all printed.
1251 bool PrintAllTypes = false;
1252 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001253
Chris Lattner52bd5cb92004-03-12 05:53:14 +00001254 // Shift Left & Right print both types even for Ubyte LHS, and select prints
1255 // types even if all operands are bools.
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001256 if (isa<ShiftInst>(I) || isa<SelectInst>(I) || isa<StoreInst>(I) ||
1257 isa<ShuffleVectorInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001258 PrintAllTypes = true;
1259 } else {
1260 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1261 Operand = I.getOperand(i);
1262 if (Operand->getType() != TheType) {
1263 PrintAllTypes = true; // We have differing types! Print them all!
1264 break;
1265 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001266 }
1267 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001268
Chris Lattner7bfee412001-10-29 16:05:51 +00001269 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001270 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001271 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001272 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001273
Chris Lattner113f4f42002-06-25 16:13:24 +00001274 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001275 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001276 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001277 }
1278 }
1279
Chris Lattner862e3382001-10-13 06:42:36 +00001280 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001281 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001282}
1283
1284
1285//===----------------------------------------------------------------------===//
1286// External Interface declarations
1287//===----------------------------------------------------------------------===//
1288
Chris Lattner8339f7d2003-10-30 23:41:03 +00001289void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001290 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001291 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001292 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001293}
1294
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001295void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001296 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001297 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001298 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001299}
1300
Chris Lattner8339f7d2003-10-30 23:41:03 +00001301void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001302 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001303 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001304
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001305 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001306}
1307
Chris Lattnereef2fe72006-01-24 04:13:11 +00001308void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnera2d810d2006-01-25 22:26:05 +00001309 WriteAsOperand(o, this, true, true, 0);
Chris Lattnereef2fe72006-01-24 04:13:11 +00001310}
1311
Chris Lattner8339f7d2003-10-30 23:41:03 +00001312void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001313 SlotMachine SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001314 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001315 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001316 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001317}
1318
Chris Lattner8339f7d2003-10-30 23:41:03 +00001319void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001320 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001321 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001322 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001323
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001324 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001325}
Chris Lattner7db79582001-11-07 04:21:57 +00001326
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001327void Constant::print(std::ostream &o) const {
1328 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001329
Misha Brukman21bbdb92004-06-04 21:11:51 +00001330 o << ' ' << getType()->getDescription() << ' ';
Evan Cheng5b19a802006-03-01 22:17:00 +00001331
1332 std::map<const Type *, std::string> TypeTable;
1333 WriteConstantInt(o, this, false, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001334}
1335
Misha Brukmanb1c93172005-04-21 23:48:37 +00001336void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001337 if (this == 0)
1338 o << "<null Type>";
1339 else
1340 o << getDescription();
1341}
1342
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001343void Argument::print(std::ostream &o) const {
Chris Lattnere52ed452004-07-13 23:14:34 +00001344 WriteAsOperand(o, this, true, true,
1345 getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001346}
1347
Reid Spencer52641832004-05-25 18:14:38 +00001348// Value::dump - allow easy printing of Values from the debugger.
1349// Located here because so much of the needed functionality is here.
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001350void Value::dump() const { print(std::cerr); }
Reid Spencer52641832004-05-25 18:14:38 +00001351
1352// Type::dump - allow easy printing of Values from the debugger.
1353// Located here because so much of the needed functionality is here.
Reid Spencere7e96712004-05-25 08:53:40 +00001354void Type::dump() const { print(std::cerr); }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001355
1356//===----------------------------------------------------------------------===//
1357// CachedWriter Class Implementation
1358//===----------------------------------------------------------------------===//
1359
Chris Lattner7db79582001-11-07 04:21:57 +00001360void CachedWriter::setModule(const Module *M) {
1361 delete SC; delete AW;
1362 if (M) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001363 SC = new SlotMachine(M );
Misha Brukman21bbdb92004-06-04 21:11:51 +00001364 AW = new AssemblyWriter(Out, *SC, M, 0);
Chris Lattner7db79582001-11-07 04:21:57 +00001365 } else {
1366 SC = 0; AW = 0;
1367 }
1368}
1369
1370CachedWriter::~CachedWriter() {
1371 delete AW;
1372 delete SC;
1373}
1374
Chris Lattner60a7dd12004-07-15 02:51:31 +00001375CachedWriter &CachedWriter::operator<<(const Value &V) {
Chris Lattner7db79582001-11-07 04:21:57 +00001376 assert(AW && SC && "CachedWriter does not have a current module!");
Chris Lattner60a7dd12004-07-15 02:51:31 +00001377 if (const Instruction *I = dyn_cast<Instruction>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001378 AW->write(I);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001379 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001380 AW->write(BB);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001381 else if (const Function *F = dyn_cast<Function>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001382 AW->write(F);
Chris Lattner60a7dd12004-07-15 02:51:31 +00001383 else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(&V))
Chris Lattner80d2d532004-06-26 19:40:40 +00001384 AW->write(GV);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001385 else
Chris Lattner60a7dd12004-07-15 02:51:31 +00001386 AW->writeOperand(&V, true, true);
Chris Lattner7db79582001-11-07 04:21:57 +00001387 return *this;
1388}
Misha Brukman4685e262004-04-28 15:31:21 +00001389
Chris Lattner60a7dd12004-07-15 02:51:31 +00001390CachedWriter& CachedWriter::operator<<(const Type &Ty) {
Misha Brukman4685e262004-04-28 15:31:21 +00001391 if (SymbolicTypes) {
1392 const Module *M = AW->getModule();
Chris Lattner60a7dd12004-07-15 02:51:31 +00001393 if (M) WriteTypeSymbolic(Out, &Ty, M);
Reid Spencer58d30f22004-07-04 11:50:43 +00001394 } else {
Chris Lattner60a7dd12004-07-15 02:51:31 +00001395 AW->write(&Ty);
Reid Spencer58d30f22004-07-04 11:50:43 +00001396 }
1397 return *this;
Misha Brukman4685e262004-04-28 15:31:21 +00001398}
Misha Brukmanda546ea2004-04-28 19:24:28 +00001399
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001400//===----------------------------------------------------------------------===//
1401//===-- SlotMachine Implementation
1402//===----------------------------------------------------------------------===//
1403
1404#if 0
1405#define SC_DEBUG(X) std::cerr << X
1406#else
1407#define SC_DEBUG(X)
1408#endif
1409
1410// Module level constructor. Causes the contents of the Module (sans functions)
1411// to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001412SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001413 : TheModule(M) ///< Saved for lazy initialization.
1414 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001415 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001416 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001417 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001418 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001419 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001420{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001421}
1422
1423// Function level constructor. Causes the contents of the Module and the one
1424// function provided to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001425SlotMachine::SlotMachine(const Function *F )
Reid Spencer56010e42004-05-26 21:56:09 +00001426 : TheModule( F ? F->getParent() : 0 ) ///< Saved for lazy initialization
1427 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001428 , FunctionProcessed(false)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001429 , mMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001430 , mTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001431 , fMap()
Reid Spencer58d30f22004-07-04 11:50:43 +00001432 , fTypes()
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001433{
Reid Spencer56010e42004-05-26 21:56:09 +00001434}
1435
1436inline void SlotMachine::initialize(void) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001437 if ( TheModule) {
1438 processModule();
Reid Spencer56010e42004-05-26 21:56:09 +00001439 TheModule = 0; ///< Prevent re-processing next time we're called.
1440 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001441 if ( TheFunction && ! FunctionProcessed) {
1442 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001443 }
1444}
1445
1446// Iterate through all the global variables, functions, and global
Misha Brukmanb1c93172005-04-21 23:48:37 +00001447// variable initializers and create slots for them.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001448void SlotMachine::processModule() {
1449 SC_DEBUG("begin processModule!\n");
1450
1451 // Add all of the global variables to the value table...
Chris Lattner531f9e92005-03-15 04:54:21 +00001452 for (Module::const_global_iterator I = TheModule->global_begin(), E = TheModule->global_end();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001453 I != E; ++I)
1454 createSlot(I);
1455
1456 // Add all the functions to the table
1457 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1458 I != E; ++I)
1459 createSlot(I);
1460
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001461 SC_DEBUG("end processModule!\n");
1462}
1463
1464
Reid Spencer56010e42004-05-26 21:56:09 +00001465// Process the arguments, basic blocks, and instructions of a function.
1466void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001467 SC_DEBUG("begin processFunction!\n");
1468
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001469 // Add all the function arguments
Misha Brukmanb1c93172005-04-21 23:48:37 +00001470 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
Chris Lattner531f9e92005-03-15 04:54:21 +00001471 AE = TheFunction->arg_end(); AI != AE; ++AI)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001472 createSlot(AI);
1473
1474 SC_DEBUG("Inserting Instructions:\n");
1475
1476 // Add all of the basic blocks and instructions
Misha Brukmanb1c93172005-04-21 23:48:37 +00001477 for (Function::const_iterator BB = TheFunction->begin(),
Reid Spencer56010e42004-05-26 21:56:09 +00001478 E = TheFunction->end(); BB != E; ++BB) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001479 createSlot(BB);
1480 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
1481 createSlot(I);
1482 }
1483 }
1484
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001485 FunctionProcessed = true;
1486
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001487 SC_DEBUG("end processFunction!\n");
1488}
1489
1490// Clean up after incorporating a function. This is the only way
Reid Spencer56010e42004-05-26 21:56:09 +00001491// to get out of the function incorporation state that affects the
1492// getSlot/createSlot lock. Function incorporation state is indicated
1493// by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001494void SlotMachine::purgeFunction() {
1495 SC_DEBUG("begin purgeFunction!\n");
1496 fMap.clear(); // Simply discard the function level map
Reid Spencer58d30f22004-07-04 11:50:43 +00001497 fTypes.clear();
Reid Spencer56010e42004-05-26 21:56:09 +00001498 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001499 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001500 SC_DEBUG("end purgeFunction!\n");
1501}
1502
1503/// Get the slot number for a value. This function will assert if you
1504/// ask for a Value that hasn't previously been inserted with createSlot.
1505/// Types are forbidden because Type does not inherit from Value (any more).
Chris Lattner757ee0b2004-06-09 19:41:19 +00001506int SlotMachine::getSlot(const Value *V) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001507 assert( V && "Can't get slot for null Value" );
Misha Brukmanb1c93172005-04-21 23:48:37 +00001508 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1509 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer56010e42004-05-26 21:56:09 +00001510
1511 // Check for uninitialized state and do lazy initialization
1512 this->initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001513
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001514 // Get the type of the value
1515 const Type* VTy = V->getType();
1516
1517 // Find the type plane in the module map
1518 TypedPlanes::const_iterator MI = mMap.find(VTy);
1519
Reid Spencer56010e42004-05-26 21:56:09 +00001520 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001521 // Lookup the type in the function map too
1522 TypedPlanes::const_iterator FI = fMap.find(VTy);
1523 // If there is a corresponding type plane in the function map
1524 if ( FI != fMap.end() ) {
1525 // Lookup the Value in the function map
1526 ValueMap::const_iterator FVI = FI->second.map.find(V);
1527 // If the value doesn't exist in the function map
1528 if ( FVI == FI->second.map.end() ) {
Chris Lattner68a038e2004-06-09 22:22:10 +00001529 // Look up the value in the module map.
1530 if (MI == mMap.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001531 ValueMap::const_iterator MVI = MI->second.map.find(V);
1532 // If we didn't find it, it wasn't inserted
Chris Lattner757ee0b2004-06-09 19:41:19 +00001533 if (MVI == MI->second.map.end()) return -1;
Reid Spencer56010e42004-05-26 21:56:09 +00001534 assert( MVI != MI->second.map.end() && "Value not found");
1535 // We found it only at the module level
Misha Brukmanb1c93172005-04-21 23:48:37 +00001536 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001537
1538 // else the value exists in the function map
1539 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001540 // Return the slot number as the module's contribution to
1541 // the type plane plus the index in the function's contribution
1542 // to the type plane.
Chris Lattnerb1f04782004-06-15 21:07:32 +00001543 if (MI != mMap.end())
1544 return MI->second.next_slot + FVI->second;
1545 else
1546 return FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001547 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001548 }
1549 }
1550
Reid Spencer8beac692004-06-09 15:26:53 +00001551 // N.B. Can get here only if either !TheFunction or the function doesn't
1552 // have a corresponding type plane for the Value
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001553
1554 // Make sure the type plane exists
Chris Lattner757ee0b2004-06-09 19:41:19 +00001555 if (MI == mMap.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001556 // Lookup the value in the module's map
1557 ValueMap::const_iterator MVI = MI->second.map.find(V);
1558 // Make sure we found it.
Chris Lattner757ee0b2004-06-09 19:41:19 +00001559 if (MVI == MI->second.map.end()) return -1;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001560 // Return it.
1561 return MVI->second;
1562}
1563
Reid Spencer58d30f22004-07-04 11:50:43 +00001564/// Get the slot number for a value. This function will assert if you
1565/// ask for a Value that hasn't previously been inserted with createSlot.
1566/// Types are forbidden because Type does not inherit from Value (any more).
1567int SlotMachine::getSlot(const Type *Ty) {
1568 assert( Ty && "Can't get slot for null Type" );
1569
1570 // Check for uninitialized state and do lazy initialization
1571 this->initialize();
1572
1573 if ( TheFunction ) {
1574 // Lookup the Type in the function map
1575 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1576 // If the Type doesn't exist in the function map
1577 if ( FTI == fTypes.map.end() ) {
1578 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1579 // If we didn't find it, it wasn't inserted
Misha Brukmanb1c93172005-04-21 23:48:37 +00001580 if (MTI == mTypes.map.end())
Reid Spencer58d30f22004-07-04 11:50:43 +00001581 return -1;
1582 // We found it only at the module level
Misha Brukmanb1c93172005-04-21 23:48:37 +00001583 return MTI->second;
Reid Spencer58d30f22004-07-04 11:50:43 +00001584
1585 // else the value exists in the function map
1586 } else {
1587 // Return the slot number as the module's contribution to
1588 // the type plane plus the index in the function's contribution
1589 // to the type plane.
1590 return mTypes.next_slot + FTI->second;
1591 }
1592 }
1593
1594 // N.B. Can get here only if either !TheFunction
1595
1596 // Lookup the value in the module's map
1597 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1598 // Make sure we found it.
1599 if (MTI == mTypes.map.end()) return -1;
1600 // Return it.
1601 return MTI->second;
1602}
1603
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001604// Create a new slot, or return the existing slot if it is already
1605// inserted. Note that the logic here parallels getSlot but instead
1606// of asserting when the Value* isn't found, it inserts the value.
1607unsigned SlotMachine::createSlot(const Value *V) {
1608 assert( V && "Can't insert a null Value to SlotMachine");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001609 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1610 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001611
1612 const Type* VTy = V->getType();
1613
1614 // Just ignore void typed things
1615 if (VTy == Type::VoidTy) return 0; // FIXME: Wrong return value!
1616
1617 // Look up the type plane for the Value's type from the module map
1618 TypedPlanes::const_iterator MI = mMap.find(VTy);
1619
Reid Spencer56010e42004-05-26 21:56:09 +00001620 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001621 // Get the type plane for the Value's type from the function map
1622 TypedPlanes::const_iterator FI = fMap.find(VTy);
1623 // If there is a corresponding type plane in the function map
1624 if ( FI != fMap.end() ) {
1625 // Lookup the Value in the function map
1626 ValueMap::const_iterator FVI = FI->second.map.find(V);
1627 // If the value doesn't exist in the function map
1628 if ( FVI == FI->second.map.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001629 // If there is no corresponding type plane in the module map
1630 if ( MI == mMap.end() )
1631 return insertValue(V);
1632 // Look up the value in the module map
1633 ValueMap::const_iterator MVI = MI->second.map.find(V);
1634 // If we didn't find it, it wasn't inserted
1635 if ( MVI == MI->second.map.end() )
1636 return insertValue(V);
1637 else
1638 // We found it only at the module level
1639 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001640
1641 // else the value exists in the function map
1642 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001643 if ( MI == mMap.end() )
1644 return FVI->second;
1645 else
1646 // Return the slot number as the module's contribution to
1647 // the type plane plus the index in the function's contribution
1648 // to the type plane.
1649 return MI->second.next_slot + FVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001650 }
1651
1652 // else there is not a corresponding type plane in the function map
1653 } else {
1654 // If the type plane doesn't exists at the module level
1655 if ( MI == mMap.end() ) {
Reid Spencer56010e42004-05-26 21:56:09 +00001656 return insertValue(V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001657 // else type plane exists at the module level, examine it
1658 } else {
Reid Spencer56010e42004-05-26 21:56:09 +00001659 // Look up the value in the module's map
1660 ValueMap::const_iterator MVI = MI->second.map.find(V);
1661 // If we didn't find it there either
1662 if ( MVI == MI->second.map.end() )
1663 // Return the slot number as the module's contribution to
1664 // the type plane plus the index of the function map insertion.
1665 return MI->second.next_slot + insertValue(V);
1666 else
1667 return MVI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001668 }
1669 }
1670 }
1671
Reid Spencer56010e42004-05-26 21:56:09 +00001672 // N.B. Can only get here if !TheFunction
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001673
1674 // If the module map's type plane is not for the Value's type
1675 if ( MI != mMap.end() ) {
1676 // Lookup the value in the module's map
1677 ValueMap::const_iterator MVI = MI->second.map.find(V);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001678 if ( MVI != MI->second.map.end() )
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001679 return MVI->second;
1680 }
1681
1682 return insertValue(V);
1683}
1684
Reid Spencer58d30f22004-07-04 11:50:43 +00001685// Create a new slot, or return the existing slot if it is already
1686// inserted. Note that the logic here parallels getSlot but instead
1687// of asserting when the Value* isn't found, it inserts the value.
1688unsigned SlotMachine::createSlot(const Type *Ty) {
1689 assert( Ty && "Can't insert a null Type to SlotMachine");
1690
1691 if ( TheFunction ) {
1692 // Lookup the Type in the function map
1693 TypeMap::const_iterator FTI = fTypes.map.find(Ty);
1694 // If the type doesn't exist in the function map
1695 if ( FTI == fTypes.map.end() ) {
1696 // Look up the type in the module map
1697 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
1698 // If we didn't find it, it wasn't inserted
1699 if ( MTI == mTypes.map.end() )
1700 return insertValue(Ty);
1701 else
1702 // We found it only at the module level
1703 return MTI->second;
1704
1705 // else the value exists in the function map
1706 } else {
1707 // Return the slot number as the module's contribution to
1708 // the type plane plus the index in the function's contribution
1709 // to the type plane.
1710 return mTypes.next_slot + FTI->second;
1711 }
1712 }
1713
1714 // N.B. Can only get here if !TheFunction
1715
1716 // Lookup the type in the module's map
1717 TypeMap::const_iterator MTI = mTypes.map.find(Ty);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001718 if ( MTI != mTypes.map.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001719 return MTI->second;
1720
1721 return insertValue(Ty);
1722}
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001723
1724// Low level insert function. Minimal checking is done. This
1725// function is just for the convenience of createSlot (above).
1726unsigned SlotMachine::insertValue(const Value *V ) {
1727 assert(V && "Can't insert a null Value into SlotMachine!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001728 assert(!isa<Constant>(V) || isa<GlobalValue>(V) &&
1729 "Can't insert a non-GlobalValue Constant into SlotMachine");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001730
Reid Spencer56010e42004-05-26 21:56:09 +00001731 // If this value does not contribute to a plane (is void)
Misha Brukmanb1c93172005-04-21 23:48:37 +00001732 // or if the value already has a name then ignore it.
Reid Spencer56010e42004-05-26 21:56:09 +00001733 if (V->getType() == Type::VoidTy || V->hasName() ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001734 SC_DEBUG("ignored value " << *V << "\n");
1735 return 0; // FIXME: Wrong return value
1736 }
1737
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001738 const Type *VTy = V->getType();
1739 unsigned DestSlot = 0;
1740
Reid Spencer56010e42004-05-26 21:56:09 +00001741 if ( TheFunction ) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001742 TypedPlanes::iterator I = fMap.find( VTy );
Misha Brukmanb1c93172005-04-21 23:48:37 +00001743 if ( I == fMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001744 I = fMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001745 DestSlot = I->second.map[V] = I->second.next_slot++;
1746 } else {
1747 TypedPlanes::iterator I = mMap.find( VTy );
1748 if ( I == mMap.end() )
Reid Spencer58d30f22004-07-04 11:50:43 +00001749 I = mMap.insert(std::make_pair(VTy,ValuePlane())).first;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001750 DestSlot = I->second.map[V] = I->second.next_slot++;
1751 }
1752
Misha Brukmanb1c93172005-04-21 23:48:37 +00001753 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
Reid Spencer56010e42004-05-26 21:56:09 +00001754 DestSlot << " [");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001755 // G = Global, C = Constant, T = Type, F = Function, o = other
Misha Brukmanb1c93172005-04-21 23:48:37 +00001756 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : (isa<Function>(V) ? 'F' :
Reid Spenceraccd7c72004-07-17 23:47:01 +00001757 (isa<Constant>(V) ? 'C' : 'o'))));
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001758 SC_DEBUG("]\n");
1759 return DestSlot;
1760}
1761
Reid Spencer58d30f22004-07-04 11:50:43 +00001762// Low level insert function. Minimal checking is done. This
1763// function is just for the convenience of createSlot (above).
1764unsigned SlotMachine::insertValue(const Type *Ty ) {
1765 assert(Ty && "Can't insert a null Type into SlotMachine!");
1766
1767 unsigned DestSlot = 0;
1768
1769 if ( TheFunction ) {
1770 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1771 } else {
1772 DestSlot = fTypes.map[Ty] = fTypes.next_slot++;
1773 }
1774 SC_DEBUG(" Inserting type [" << DestSlot << "] = " << Ty << "\n");
1775 return DestSlot;
1776}
1777
Reid Spencere7e96712004-05-25 08:53:40 +00001778// vim: sw=2