blob: ec9a5539b9fa3aafd1d37b763a37c9a58c23d708 [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 Lattnerc0b4c7b2002-04-08 22:03:40 +000017#include "llvm/Assembly/Writer.h"
Chris Lattner7f8845a2002-07-23 18:07:49 +000018#include "llvm/Assembly/PrintModulePass.h"
Chris Lattner8339f7d2003-10-30 23:41:03 +000019#include "llvm/Assembly/AsmAnnotationWriter.h"
Chris Lattnerf7b6d312005-05-06 20:26:43 +000020#include "llvm/CallingConv.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000021#include "llvm/Constants.h"
Chris Lattner913d18f2002-04-29 18:46:50 +000022#include "llvm/DerivedTypes.h"
Reid Spencer1517de32007-04-09 06:10:42 +000023#include "llvm/ParameterAttributes.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"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000028#include "llvm/ValueSymbolTable.h"
Reid Spencer32af9e82007-01-06 07:24:44 +000029#include "llvm/TypeSymbolTable.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000030#include "llvm/ADT/StringExtras.h"
31#include "llvm/ADT/STLExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000032#include "llvm/Support/CFG.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000033#include "llvm/Support/MathExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000034#include "llvm/Support/Streams.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000035#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000036using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000037
Chris Lattner60a7dd12004-07-15 02:51:31 +000038namespace llvm {
Reid Spencer16f2f7f2004-05-26 07:18:52 +000039
Reid Spencer294715b2005-05-15 16:13:11 +000040// Make virtual table appear in this compilation unit.
41AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
42
Reid Spencer16f2f7f2004-05-26 07:18:52 +000043/// This class provides computation of slot numbers for LLVM Assembly writing.
44/// @brief LLVM Assembly Writing Slot Computation.
45class SlotMachine {
46
47/// @name Types
48/// @{
49public:
50
51 /// @brief A mapping of Values to slot numbers
Reid Spencer50816782007-03-19 18:32:53 +000052 typedef std::map<const Value*,unsigned> ValueMap;
Reid Spencer16f2f7f2004-05-26 07:18:52 +000053
54/// @}
55/// @name Constructors
56/// @{
57public:
58 /// @brief Construct from a module
Chris Lattner23e829a2006-12-06 05:12:21 +000059 SlotMachine(const Module *M);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000060
61 /// @brief Construct from a function, starting out in incorp state.
Chris Lattner23e829a2006-12-06 05:12:21 +000062 SlotMachine(const Function *F);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000063
64/// @}
65/// @name Accessors
66/// @{
67public:
68 /// Return the slot number of the specified value in it's type
Chris Lattner5e043322007-01-11 03:54:27 +000069 /// plane. If something is not in the SlotMachine, return -1.
70 int getLocalSlot(const Value *V);
71 int getGlobalSlot(const GlobalValue *V);
Reid Spencer8beac692004-06-09 15:26:53 +000072
Reid Spencer16f2f7f2004-05-26 07:18:52 +000073/// @}
74/// @name Mutators
75/// @{
76public:
Misha Brukmanb1c93172005-04-21 23:48:37 +000077 /// If you'd like to deal with a function instead of just a module, use
Reid Spencer16f2f7f2004-05-26 07:18:52 +000078 /// this method to get its data into the SlotMachine.
Misha Brukmanb1c93172005-04-21 23:48:37 +000079 void incorporateFunction(const Function *F) {
80 TheFunction = F;
Reid Spencerb0ac8c42004-08-16 07:46:33 +000081 FunctionProcessed = false;
82 }
Reid Spencer16f2f7f2004-05-26 07:18:52 +000083
Misha Brukmanb1c93172005-04-21 23:48:37 +000084 /// After calling incorporateFunction, use this method to remove the
85 /// most recently incorporated function from the SlotMachine. This
Reid Spencer16f2f7f2004-05-26 07:18:52 +000086 /// will reset the state of the machine back to just the module contents.
87 void purgeFunction();
88
89/// @}
90/// @name Implementation Details
91/// @{
92private:
Reid Spencer56010e42004-05-26 21:56:09 +000093 /// This function does the actual initialization.
94 inline void initialize();
95
Chris Lattnerea862a32007-01-09 07:55:49 +000096 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
97 void CreateModuleSlot(const GlobalValue *V);
98
99 /// CreateFunctionSlot - Insert the specified Value* into the slot table.
100 void CreateFunctionSlot(const Value *V);
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000101
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000102 /// Add all of the module level global variables (and their initializers)
103 /// and function declarations, but not the contents of those functions.
104 void processModule();
105
Reid Spencer56010e42004-05-26 21:56:09 +0000106 /// Add all of the functions arguments, basic blocks, and instructions
107 void processFunction();
108
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000109 SlotMachine(const SlotMachine &); // DO NOT IMPLEMENT
110 void operator=(const SlotMachine &); // DO NOT IMPLEMENT
111
112/// @}
113/// @name Data
114/// @{
115public:
116
117 /// @brief The module for which we are holding slot numbers
Reid Spencer56010e42004-05-26 21:56:09 +0000118 const Module* TheModule;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000119
Reid Spencer56010e42004-05-26 21:56:09 +0000120 /// @brief The function for which we are holding slot numbers
121 const Function* TheFunction;
Reid Spencerb0ac8c42004-08-16 07:46:33 +0000122 bool FunctionProcessed;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000123
124 /// @brief The TypePlanes map for the module level data
Reid Spencer50816782007-03-19 18:32:53 +0000125 ValueMap mMap;
126 unsigned mNext;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000127
128 /// @brief The TypePlanes map for the function level data
Reid Spencer50816782007-03-19 18:32:53 +0000129 ValueMap fMap;
130 unsigned fNext;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000131
132/// @}
133
134};
135
Chris Lattner60a7dd12004-07-15 02:51:31 +0000136} // end namespace llvm
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000137
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000138static RegisterPass<PrintModulePass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000139X("printm", "Print module to stderr");
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000140static RegisterPass<PrintFunctionPass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000141Y("print","Print function to stderr");
Chris Lattner7f8845a2002-07-23 18:07:49 +0000142
Misha Brukmanb1c93172005-04-21 23:48:37 +0000143static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnera9f0a112006-12-06 05:50:41 +0000144 std::map<const Type *, std::string> &TypeTable,
Reid Spencer58d30f22004-07-04 11:50:43 +0000145 SlotMachine *Machine);
146
Chris Lattnerb86620e2001-10-29 16:37:48 +0000147static const Module *getModuleFromVal(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000148 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000149 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000150 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000151 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000152 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner57698e22002-03-26 18:01:55 +0000153 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000154 return M ? M->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000155 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000156 return GV->getParent();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000157 return 0;
158}
159
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000160static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000161 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000162 return new SlotMachine(FA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000163 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000164 return new SlotMachine(I->getParent()->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000165 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000166 return new SlotMachine(BB->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000167 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000168 return new SlotMachine(GV->getParent());
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000169 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)){
170 return new SlotMachine(GA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000171 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000172 return new SlotMachine(Func);
Chris Lattner7bfee412001-10-29 16:05:51 +0000173 }
174 return 0;
175}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000176
Reid Spencer788e3172007-01-26 08:02:52 +0000177/// NameNeedsQuotes - Return true if the specified llvm name should be wrapped
178/// with ""'s.
179static bool NameNeedsQuotes(const std::string &Name) {
180 if (Name[0] >= '0' && Name[0] <= '9') return true;
Chris Lattner1c343042003-08-22 05:40:38 +0000181 // Scan to see if we have any characters that are not on the "white list"
182 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
183 char C = Name[i];
184 assert(C != '"' && "Illegal character in LLVM value name!");
185 if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
186 C != '-' && C != '.' && C != '_')
Reid Spencer788e3172007-01-26 08:02:52 +0000187 return true;
188 }
189 return false;
190}
191
192enum PrefixType {
193 GlobalPrefix,
194 LabelPrefix,
195 LocalPrefix
196};
197
198/// getLLVMName - Turn the specified string into an 'LLVM name', which is either
199/// prefixed with % (if the string only contains simple characters) or is
200/// surrounded with ""'s (if it has special chars in it).
201static std::string getLLVMName(const std::string &Name, PrefixType Prefix) {
202 assert(!Name.empty() && "Cannot get empty name!");
203
204 // First character cannot start with a number...
205 if (NameNeedsQuotes(Name)) {
206 if (Prefix == GlobalPrefix)
207 return "@\"" + Name + "\"";
208 return "\"" + Name + "\"";
Chris Lattner1c343042003-08-22 05:40:38 +0000209 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000210
Chris Lattner1c343042003-08-22 05:40:38 +0000211 // If we get here, then the identifier is legal to use as a "VarID".
Reid Spencer788e3172007-01-26 08:02:52 +0000212 switch (Prefix) {
213 default: assert(0 && "Bad prefix!");
214 case GlobalPrefix: return '@' + Name;
215 case LabelPrefix: return Name;
216 case LocalPrefix: return '%' + Name;
217 }
Chris Lattner1c343042003-08-22 05:40:38 +0000218}
219
Chris Lattnerb86620e2001-10-29 16:37:48 +0000220
Misha Brukmanc566ca362004-03-02 00:22:19 +0000221/// fillTypeNameTable - If the module has a symbol table, take all global types
222/// and stuff their names into the TypeNames map.
223///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000224static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000225 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000226 if (!M) return;
Reid Spencer32af9e82007-01-06 07:24:44 +0000227 const TypeSymbolTable &ST = M->getTypeSymbolTable();
228 TypeSymbolTable::const_iterator TI = ST.begin();
229 for (; TI != ST.end(); ++TI) {
Reid Spencere7e96712004-05-25 08:53:40 +0000230 // As a heuristic, don't insert pointer to primitive types, because
231 // they are used too often to have a single useful name.
232 //
233 const Type *Ty = cast<Type>(TI->second);
234 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000235 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
Chris Lattner03c49532007-01-15 02:27:26 +0000236 !cast<PointerType>(Ty)->getElementType()->isInteger() ||
Reid Spencer56010e42004-05-26 21:56:09 +0000237 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencer788e3172007-01-26 08:02:52 +0000238 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first, LocalPrefix)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000239 }
240}
241
242
243
Misha Brukmanb1c93172005-04-21 23:48:37 +0000244static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000245 std::vector<const Type *> &TypeStack,
246 std::map<const Type *, std::string> &TypeNames,
247 std::string & Result){
Chris Lattner03c49532007-01-15 02:27:26 +0000248 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
John Criswellcd116ba2004-06-01 14:54:08 +0000249 Result += Ty->getDescription(); // Base case
250 return;
251 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000252
253 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000254 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000255 if (I != TypeNames.end()) {
256 Result += I->second;
257 return;
258 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000259
John Criswellcd116ba2004-06-01 14:54:08 +0000260 if (isa<OpaqueType>(Ty)) {
261 Result += "opaque";
262 return;
263 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000264
Chris Lattnerb86620e2001-10-29 16:37:48 +0000265 // Check to see if the Type is already on the stack...
266 unsigned Slot = 0, CurSize = TypeStack.size();
267 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
268
Misha Brukmanb1c93172005-04-21 23:48:37 +0000269 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000270 // that we have looped back to a type that we have previously visited.
271 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000272 if (Slot < CurSize) {
273 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
274 return;
275 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000276
277 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000278
Chris Lattner6b727592004-06-17 18:19:28 +0000279 switch (Ty->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000280 case Type::IntegerTyID: {
281 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc8721592007-01-12 07:25:20 +0000282 Result += "i" + utostr(BitWidth);
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000283 break;
284 }
Chris Lattner91db5822002-03-29 03:44:36 +0000285 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000286 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000287 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
288 Result += " (";
Reid Spencer8c4914c2006-12-31 05:24:50 +0000289 unsigned Idx = 1;
Reid Spencer1517de32007-04-09 06:10:42 +0000290 const ParamAttrsList *Attrs = FTy->getParamAttrs();
Chris Lattnerfa829be2004-02-09 04:14:01 +0000291 for (FunctionType::param_iterator I = FTy->param_begin(),
292 E = FTy->param_end(); I != E; ++I) {
293 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000294 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000295 calcTypeName(*I, TypeStack, TypeNames, Result);
Reid Spencera472f662007-04-11 02:44:20 +0000296 if (Attrs && Attrs->getParamAttrs(Idx) != ParamAttr::None) {
Reid Spencer8c4914c2006-12-31 05:24:50 +0000297 Result += + " ";
Reid Spencer1517de32007-04-09 06:10:42 +0000298 Result += Attrs->getParamAttrsTextByIndex(Idx);
Reid Spencer8c4914c2006-12-31 05:24:50 +0000299 }
300 Idx++;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000301 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000302 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000303 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000304 Result += "...";
305 }
306 Result += ")";
Reid Spencera472f662007-04-11 02:44:20 +0000307 if (Attrs && Attrs->getParamAttrs(0) != ParamAttr::None) {
Reid Spencer136a91c2007-01-05 17:06:19 +0000308 Result += " ";
Reid Spencer1517de32007-04-09 06:10:42 +0000309 Result += Attrs->getParamAttrsTextByIndex(0);
Reid Spencer136a91c2007-01-05 17:06:19 +0000310 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000311 break;
312 }
313 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000314 const StructType *STy = cast<StructType>(Ty);
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000315 if (STy->isPacked())
316 Result += '<';
John Criswellcd116ba2004-06-01 14:54:08 +0000317 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000318 for (StructType::element_iterator I = STy->element_begin(),
319 E = STy->element_end(); I != E; ++I) {
320 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000321 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000322 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000323 }
324 Result += " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000325 if (STy->isPacked())
326 Result += '>';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000327 break;
328 }
329 case Type::PointerTyID:
Misha Brukmanb1c93172005-04-21 23:48:37 +0000330 calcTypeName(cast<PointerType>(Ty)->getElementType(),
John Criswellcd116ba2004-06-01 14:54:08 +0000331 TypeStack, TypeNames, Result);
332 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000333 break;
334 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000335 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000336 Result += "[" + utostr(ATy->getNumElements()) + " x ";
337 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
338 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000339 break;
340 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000341 case Type::VectorTyID: {
342 const VectorType *PTy = cast<VectorType>(Ty);
Brian Gaeke02209042004-08-20 06:00:58 +0000343 Result += "<" + utostr(PTy->getNumElements()) + " x ";
344 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
345 Result += ">";
346 break;
347 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000348 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000349 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000350 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000351 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000352 Result += "<unrecognized-type>";
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000353 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000354 }
355
356 TypeStack.pop_back(); // Remove self from stack...
Chris Lattnerb86620e2001-10-29 16:37:48 +0000357}
358
359
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000360/// printTypeInt - The internal guts of printing out a type that has a
361/// potentially named portion.
362///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000363static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
364 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000365 // Primitive types always print out their description, regardless of whether
366 // they have been named or not.
367 //
Chris Lattner03c49532007-01-15 02:27:26 +0000368 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)))
Chris Lattner92d60532003-10-30 00:12:51 +0000369 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000370
371 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000372 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000373 if (I != TypeNames.end()) return Out << I->second;
374
375 // Otherwise we have a type that has not been named but is a derived type.
376 // Carefully recurse the type hierarchy to print out any contained symbolic
377 // names.
378 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000379 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000380 std::string TypeName;
381 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000382 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000383 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000384}
385
Chris Lattner34b95182001-10-31 04:33:19 +0000386
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000387/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
388/// type, iff there is an entry in the modules symbol table for the specified
389/// type or one of it's component types. This is slower than a simple x << Type
390///
Chris Lattner189d19f2003-11-21 20:23:48 +0000391std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
392 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000393 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000394
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000395 // If they want us to print out a type, but there is no context, we can't
396 // print it symbolically.
397 if (!M)
Chris Lattner72f866e2001-10-29 16:40:32 +0000398 return Out << Ty->getDescription();
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000399
400 std::map<const Type *, std::string> TypeNames;
401 fillTypeNameTable(M, TypeNames);
402 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000403}
404
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000405// PrintEscapedString - Print each character of the specified string, escaping
406// it if it is not printable or if it is an escape char.
407static void PrintEscapedString(const std::string &Str, std::ostream &Out) {
408 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
409 unsigned char C = Str[i];
410 if (isprint(C) && C != '"' && C != '\\') {
411 Out << C;
412 } else {
413 Out << '\\'
414 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
415 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
416 }
417 }
418}
419
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000420static const char *getPredicateText(unsigned predicate) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000421 const char * pred = "unknown";
422 switch (predicate) {
423 case FCmpInst::FCMP_FALSE: pred = "false"; break;
424 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
425 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
426 case FCmpInst::FCMP_OGE: pred = "oge"; break;
427 case FCmpInst::FCMP_OLT: pred = "olt"; break;
428 case FCmpInst::FCMP_OLE: pred = "ole"; break;
429 case FCmpInst::FCMP_ONE: pred = "one"; break;
430 case FCmpInst::FCMP_ORD: pred = "ord"; break;
431 case FCmpInst::FCMP_UNO: pred = "uno"; break;
432 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
433 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
434 case FCmpInst::FCMP_UGE: pred = "uge"; break;
435 case FCmpInst::FCMP_ULT: pred = "ult"; break;
436 case FCmpInst::FCMP_ULE: pred = "ule"; break;
437 case FCmpInst::FCMP_UNE: pred = "une"; break;
438 case FCmpInst::FCMP_TRUE: pred = "true"; break;
439 case ICmpInst::ICMP_EQ: pred = "eq"; break;
440 case ICmpInst::ICMP_NE: pred = "ne"; break;
441 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
442 case ICmpInst::ICMP_SGE: pred = "sge"; break;
443 case ICmpInst::ICMP_SLT: pred = "slt"; break;
444 case ICmpInst::ICMP_SLE: pred = "sle"; break;
445 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
446 case ICmpInst::ICMP_UGE: pred = "uge"; break;
447 case ICmpInst::ICMP_ULT: pred = "ult"; break;
448 case ICmpInst::ICMP_ULE: pred = "ule"; break;
449 }
450 return pred;
451}
452
Misha Brukmanb1c93172005-04-21 23:48:37 +0000453/// @brief Internal constant writer.
454static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000455 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000456 SlotMachine *Machine) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000457 const int IndentSize = 4;
458 static std::string Indent = "\n";
Zhou Sheng75b871f2007-01-11 12:24:14 +0000459 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Reid Spencer542964f2007-01-11 18:21:29 +0000460 if (CI->getType() == Type::Int1Ty)
Reid Spencercddc9df2007-01-12 04:24:46 +0000461 Out << (CI->getZExtValue() ? "true" : "false");
462 else
Reid Spencere2eb1fa2007-02-27 20:25:25 +0000463 Out << CI->getValue().toStringSigned(10);
Chris Lattner1e194682002-04-18 18:53:13 +0000464 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
465 // We would like to output the FP constant value in exponential notation,
466 // but we cannot do this if doing so will lose precision. Check here to
467 // make sure that we only output it in exponential format if we can parse
468 // the value back and get the same value.
469 //
470 std::string StrVal = ftostr(CFP->getValue());
471
472 // Check to make sure that the stringized number is not some string like
473 // "Inf" or NaN, that atof will accept, but the lexer will not. Check that
474 // the string matches the "[-+]?[0-9]" regex.
475 //
476 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
477 ((StrVal[0] == '-' || StrVal[0] == '+') &&
Brian Gaeke87b4f072003-06-17 23:55:35 +0000478 (StrVal[1] >= '0' && StrVal[1] <= '9')))
Chris Lattner1e194682002-04-18 18:53:13 +0000479 // Reparse stringized version!
480 if (atof(StrVal.c_str()) == CFP->getValue()) {
Chris Lattner472cc102005-01-04 01:56:57 +0000481 Out << StrVal;
482 return;
Chris Lattner1e194682002-04-18 18:53:13 +0000483 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000484
Chris Lattner1e194682002-04-18 18:53:13 +0000485 // Otherwise we could not reparse it to exactly the same value, so we must
486 // output the string in hexadecimal format!
Chris Lattner472cc102005-01-04 01:56:57 +0000487 assert(sizeof(double) == sizeof(uint64_t) &&
Chris Lattner1e194682002-04-18 18:53:13 +0000488 "assuming that double is 64 bits!");
Jim Laskeyb74c6662005-08-17 19:34:49 +0000489 Out << "0x" << utohexstr(DoubleToBits(CFP->getValue()));
Chris Lattner1e194682002-04-18 18:53:13 +0000490
Chris Lattner76b2ff42004-02-15 05:55:15 +0000491 } else if (isa<ConstantAggregateZero>(CV)) {
492 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000493 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
494 // As a special case, print the array as a string if it is an array of
495 // ubytes or an array of sbytes with positive values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000496 //
Chris Lattner1e194682002-04-18 18:53:13 +0000497 const Type *ETy = CA->getType()->getElementType();
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000498 if (CA->isString()) {
Chris Lattner1e194682002-04-18 18:53:13 +0000499 Out << "c\"";
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000500 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner1e194682002-04-18 18:53:13 +0000501 Out << "\"";
502
503 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000504 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000505 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000506 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000507 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000508 WriteAsOperandInternal(Out, CA->getOperand(0),
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000509 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000510 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
511 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000512 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000513 WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000514 }
515 }
516 Out << " ]";
517 }
518 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000519 if (CS->getType()->isPacked())
520 Out << '<';
Misha Brukman21bbdb92004-06-04 21:11:51 +0000521 Out << '{';
Jim Laskey3bb78742006-02-25 12:27:03 +0000522 unsigned N = CS->getNumOperands();
523 if (N) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000524 if (N > 2) {
525 Indent += std::string(IndentSize, ' ');
526 Out << Indent;
527 } else {
528 Out << ' ';
529 }
Chris Lattnerd84bb632002-04-16 21:36:08 +0000530 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
531
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000532 WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000533
Jim Laskey3bb78742006-02-25 12:27:03 +0000534 for (unsigned i = 1; i < N; i++) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000535 Out << ", ";
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000536 if (N > 2) Out << Indent;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000537 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
538
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000539 WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000540 }
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000541 if (N > 2) Indent.resize(Indent.size() - IndentSize);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000542 }
Jim Laskey3bb78742006-02-25 12:27:03 +0000543
Chris Lattnerd84bb632002-04-16 21:36:08 +0000544 Out << " }";
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000545 if (CS->getType()->isPacked())
546 Out << '>';
Reid Spencerd84d35b2007-02-15 02:26:10 +0000547 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
Brian Gaeke02209042004-08-20 06:00:58 +0000548 const Type *ETy = CP->getType()->getElementType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000549 assert(CP->getNumOperands() > 0 &&
Brian Gaeke02209042004-08-20 06:00:58 +0000550 "Number of operands for a PackedConst must be > 0");
551 Out << '<';
552 Out << ' ';
553 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000554 WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
Brian Gaeke02209042004-08-20 06:00:58 +0000555 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
556 Out << ", ";
557 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000558 WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
Brian Gaeke02209042004-08-20 06:00:58 +0000559 }
560 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000561 } else if (isa<ConstantPointerNull>(CV)) {
562 Out << "null";
563
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000564 } else if (isa<UndefValue>(CV)) {
565 Out << "undef";
566
Chris Lattner3cd8c562002-07-30 18:54:25 +0000567 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000568 Out << CE->getOpcodeName();
569 if (CE->isCompare())
570 Out << " " << getPredicateText(CE->getPredicate());
571 Out << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000572
Vikram S. Adveb952b542002-07-14 23:14:45 +0000573 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
574 printTypeInt(Out, (*OI)->getType(), TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000575 WriteAsOperandInternal(Out, *OI, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000576 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000577 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000578 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000579
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000580 if (CE->isCast()) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000581 Out << " to ";
582 printTypeInt(Out, CE->getType(), TypeTable);
583 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000584
Misha Brukman21bbdb92004-06-04 21:11:51 +0000585 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000586
Chris Lattnerd84bb632002-04-16 21:36:08 +0000587 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000588 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000589 }
590}
591
592
Misha Brukmanc566ca362004-03-02 00:22:19 +0000593/// WriteAsOperand - Write the name of the specified value out to the specified
594/// ostream. This can be useful when you just want to print int %reg126, not
595/// the whole instruction that generated it.
596///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000597static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000598 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000599 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000600 Out << ' ';
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000601 if (V->hasName())
Reid Spencer788e3172007-01-26 08:02:52 +0000602 Out << getLLVMName(V->getName(),
603 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000604 else {
605 const Constant *CV = dyn_cast<Constant>(V);
Chris Lattnera2d810d2006-01-25 22:26:05 +0000606 if (CV && !isa<GlobalValue>(CV)) {
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000607 WriteConstantInt(Out, CV, TypeTable, Machine);
Chris Lattnera2d810d2006-01-25 22:26:05 +0000608 } else if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
609 Out << "asm ";
610 if (IA->hasSideEffects())
611 Out << "sideeffect ";
612 Out << '"';
613 PrintEscapedString(IA->getAsmString(), Out);
614 Out << "\", \"";
615 PrintEscapedString(IA->getConstraintString(), Out);
616 Out << '"';
617 } else {
Reid Spencer788e3172007-01-26 08:02:52 +0000618 char Prefix = '%';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000619 int Slot;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000620 if (Machine) {
Reid Spencer788e3172007-01-26 08:02:52 +0000621 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner5e043322007-01-11 03:54:27 +0000622 Slot = Machine->getGlobalSlot(GV);
Reid Spencer788e3172007-01-26 08:02:52 +0000623 Prefix = '@';
624 } else {
Chris Lattner5e043322007-01-11 03:54:27 +0000625 Slot = Machine->getLocalSlot(V);
Reid Spencer788e3172007-01-26 08:02:52 +0000626 }
Chris Lattnerd84bb632002-04-16 21:36:08 +0000627 } else {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000628 Machine = createSlotMachine(V);
Chris Lattner5e043322007-01-11 03:54:27 +0000629 if (Machine) {
Reid Spencer788e3172007-01-26 08:02:52 +0000630 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner5e043322007-01-11 03:54:27 +0000631 Slot = Machine->getGlobalSlot(GV);
Reid Spencer788e3172007-01-26 08:02:52 +0000632 Prefix = '@';
633 } else {
Chris Lattner5e043322007-01-11 03:54:27 +0000634 Slot = Machine->getLocalSlot(V);
Reid Spencer788e3172007-01-26 08:02:52 +0000635 }
Chris Lattner5e043322007-01-11 03:54:27 +0000636 } else {
Chris Lattner757ee0b2004-06-09 19:41:19 +0000637 Slot = -1;
Chris Lattner5e043322007-01-11 03:54:27 +0000638 }
Reid Spencer56010e42004-05-26 21:56:09 +0000639 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000640 }
Chris Lattner757ee0b2004-06-09 19:41:19 +0000641 if (Slot != -1)
Reid Spencer788e3172007-01-26 08:02:52 +0000642 Out << Prefix << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +0000643 else
644 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000645 }
646 }
647}
648
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000649/// WriteAsOperand - Write the name of the specified value out to the specified
650/// ostream. This can be useful when you just want to print int %reg126, not
651/// the whole instruction that generated it.
652///
Chris Lattner189d19f2003-11-21 20:23:48 +0000653std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Chris Lattner0dda8612006-12-06 06:15:43 +0000654 bool PrintType, const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000655 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000656 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000657
Chris Lattner98cf1f52002-11-20 18:36:02 +0000658 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000659 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000660
661 if (PrintType)
662 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000663
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000664 WriteAsOperandInternal(Out, V, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000665 return Out;
666}
667
Reid Spencer58d30f22004-07-04 11:50:43 +0000668
Chris Lattner189d19f2003-11-21 20:23:48 +0000669namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000670
Chris Lattnerfee714f2001-09-07 16:36:04 +0000671class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000672 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000673 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000674 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000675 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000676 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000677public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000678 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000679 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000680 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000681
682 // If the module has a symbol table, take all global types and stuff their
683 // names into the TypeNames map.
684 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000685 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000686 }
687
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000688 inline void write(const Module *M) { printModule(M); }
689 inline void write(const GlobalVariable *G) { printGlobal(G); }
690 inline void write(const GlobalAlias *G) { printAlias(G); }
691 inline void write(const Function *F) { printFunction(F); }
692 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000693 inline void write(const Instruction *I) { printInstruction(*I); }
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000694 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000695
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000696 void writeOperand(const Value *Op, bool PrintType);
Chris Lattner1e194682002-04-18 18:53:13 +0000697
Misha Brukman4685e262004-04-28 15:31:21 +0000698 const Module* getModule() { return TheModule; }
699
Misha Brukmand92f54a2004-11-15 19:30:05 +0000700private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000701 void printModule(const Module *M);
Reid Spencer32af9e82007-01-06 07:24:44 +0000702 void printTypeSymbolTable(const TypeSymbolTable &ST);
Chris Lattner7bfee412001-10-29 16:05:51 +0000703 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000704 void printAlias(const GlobalAlias *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000705 void printFunction(const Function *F);
Reid Spencer1517de32007-04-09 06:10:42 +0000706 void printArgument(const Argument *FA, uint16_t ParamAttrs);
Chris Lattner7bfee412001-10-29 16:05:51 +0000707 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000708 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000709
710 // printType - Go to extreme measures to attempt to print out a short,
711 // symbolic version of a type name.
712 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000713 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000714 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000715 }
716
717 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
718 // without considering any symbolic types that we may have equal to it.
719 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000720 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000721
Chris Lattner862e3382001-10-13 06:42:36 +0000722 // printInfoComment - Print a little comment after the instruction indicating
723 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000724 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000725};
Reid Spencerf43ac622004-05-27 22:04:46 +0000726} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000727
Misha Brukmanc566ca362004-03-02 00:22:19 +0000728/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
729/// without considering any symbolic types that we may have equal to it.
730///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000731std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000732 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
733 Out << "i" << utostr(ITy->getBitWidth());
734 else if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Reid Spencer8c4914c2006-12-31 05:24:50 +0000735 printType(FTy->getReturnType());
Reid Spencer8c4914c2006-12-31 05:24:50 +0000736 Out << " (";
737 unsigned Idx = 1;
Reid Spencer1517de32007-04-09 06:10:42 +0000738 const ParamAttrsList *Attrs = FTy->getParamAttrs();
Chris Lattnerfa829be2004-02-09 04:14:01 +0000739 for (FunctionType::param_iterator I = FTy->param_begin(),
740 E = FTy->param_end(); I != E; ++I) {
741 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000742 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000743 printType(*I);
Reid Spencera472f662007-04-11 02:44:20 +0000744 if (Attrs && Attrs->getParamAttrs(Idx) != ParamAttr::None) {
Reid Spencer1517de32007-04-09 06:10:42 +0000745 Out << " " << Attrs->getParamAttrsTextByIndex(Idx);
Reid Spencer8c4914c2006-12-31 05:24:50 +0000746 }
747 Idx++;
Chris Lattnerd816b532002-04-13 20:53:41 +0000748 }
749 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000750 if (FTy->getNumParams()) Out << ", ";
751 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000752 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000753 Out << ')';
Reid Spencera472f662007-04-11 02:44:20 +0000754 if (Attrs && Attrs->getParamAttrs(0) != ParamAttr::None)
Reid Spencer1517de32007-04-09 06:10:42 +0000755 Out << ' ' << Attrs->getParamAttrsTextByIndex(0);
Chris Lattner113f4f42002-06-25 16:13:24 +0000756 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000757 if (STy->isPacked())
758 Out << '<';
Misha Brukmana6619a92004-06-21 21:53:56 +0000759 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000760 for (StructType::element_iterator I = STy->element_begin(),
761 E = STy->element_end(); I != E; ++I) {
762 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000763 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000764 printType(*I);
765 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000766 Out << " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000767 if (STy->isPacked())
768 Out << '>';
Chris Lattner113f4f42002-06-25 16:13:24 +0000769 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000770 printType(PTy->getElementType()) << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000771 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000772 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000773 printType(ATy->getElementType()) << ']';
Reid Spencerd84d35b2007-02-15 02:26:10 +0000774 } else if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
Reid Spencere203d352004-08-20 15:37:30 +0000775 Out << '<' << PTy->getNumElements() << " x ";
776 printType(PTy->getElementType()) << '>';
777 }
Reid Spencerde46e482006-11-02 20:25:50 +0000778 else if (isa<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000779 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000780 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000781 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000782 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000783 printType(Ty);
784 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000785 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000786}
787
788
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000789void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
790 if (Operand == 0) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000791 Out << "<null operand!>";
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000792 } else {
793 if (PrintType) { Out << ' '; printType(Operand->getType()); }
794 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000795 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000796}
797
Chris Lattner2f7c9632001-06-06 20:29:01 +0000798
Chris Lattner7bfee412001-10-29 16:05:51 +0000799void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +0000800 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +0000801 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +0000802 // require a comment char before it).
803 M->getModuleIdentifier().find('\n') == std::string::npos)
804 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
805
Owen Andersone2237542006-10-18 02:21:12 +0000806 if (!M->getDataLayout().empty())
Chris Lattner04897162006-10-22 06:06:56 +0000807 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencer48f98c82004-07-25 21:44:54 +0000808 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000809 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000810
Chris Lattnereef2fe72006-01-24 04:13:11 +0000811 if (!M->getModuleInlineAsm().empty()) {
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000812 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnereef2fe72006-01-24 04:13:11 +0000813 std::string Asm = M->getModuleInlineAsm();
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000814 size_t CurPos = 0;
815 size_t NewLine = Asm.find_first_of('\n', CurPos);
816 while (NewLine != std::string::npos) {
817 // We found a newline, print the portion of the asm string from the
818 // last newline up to this newline.
819 Out << "module asm \"";
820 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
821 Out);
822 Out << "\"\n";
823 CurPos = NewLine+1;
824 NewLine = Asm.find_first_of('\n', CurPos);
825 }
Chris Lattner3acaf5c2006-01-24 00:40:17 +0000826 Out << "module asm \"";
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000827 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000828 Out << "\"\n";
829 }
830
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000831 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000832 Module::lib_iterator LI = M->lib_begin();
833 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000834 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000835 Out << "deplibs = [ ";
836 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000837 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000838 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000839 if (LI != LE)
840 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000841 }
842 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000843 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000844
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000845 // Loop over the symbol table, emitting all named constants.
Reid Spencer32af9e82007-01-06 07:24:44 +0000846 printTypeSymbolTable(M->getTypeSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000847
Chris Lattner54932b02006-12-06 04:41:52 +0000848 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
849 I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000850 printGlobal(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000851
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000852 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000853 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
854 printFunction(I);
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000855
856 // Output all aliases
857 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
858 I != E; ++I)
859 printAlias(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000860}
861
Chris Lattner7bfee412001-10-29 16:05:51 +0000862void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Reid Spencer788e3172007-01-26 08:02:52 +0000863 if (GV->hasName()) Out << getLLVMName(GV->getName(), GlobalPrefix) << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000864
Misha Brukmanb1c93172005-04-21 23:48:37 +0000865 if (!GV->hasInitializer())
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000866 switch (GV->getLinkage()) {
867 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
868 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
869 default: Out << "external "; break;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000870 } else {
Chris Lattner379a8d22003-04-16 20:28:45 +0000871 switch (GV->getLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000872 case GlobalValue::InternalLinkage: Out << "internal "; break;
873 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
874 case GlobalValue::WeakLinkage: Out << "weak "; break;
875 case GlobalValue::AppendingLinkage: Out << "appending "; break;
876 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
877 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
878 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
879 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000880 case GlobalValue::GhostLinkage:
Bill Wendlingf3baad32006-12-07 01:30:32 +0000881 cerr << "GhostLinkage not allowed in AsmWriter!\n";
Misha Brukman70457632004-11-14 21:04:34 +0000882 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000883 }
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000884 switch (GV->getVisibility()) {
Chris Lattner90d2e422007-01-15 18:28:18 +0000885 default: assert(0 && "Invalid visibility style!");
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000886 case GlobalValue::DefaultVisibility: break;
887 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000888 }
889 }
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000890
891 if (GV->isThreadLocal()) Out << "thread_local ";
Misha Brukmana6619a92004-06-21 21:53:56 +0000892 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +0000893 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +0000894
Reid Spenceraccd7c72004-07-17 23:47:01 +0000895 if (GV->hasInitializer()) {
896 Constant* C = cast<Constant>(GV->getInitializer());
897 assert(C && "GlobalVar initializer isn't constant?");
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000898 writeOperand(GV->getInitializer(), false);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000899 }
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000900
Chris Lattner4b96c542005-11-12 00:10:19 +0000901 if (GV->hasSection())
902 Out << ", section \"" << GV->getSection() << '"';
903 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000904 Out << ", align " << GV->getAlignment();
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000905
Chris Lattner113f4f42002-06-25 16:13:24 +0000906 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000907 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +0000908}
909
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000910void AssemblyWriter::printAlias(const GlobalAlias *GA) {
911 Out << getLLVMName(GA->getName(), GlobalPrefix) << " = ";
912 switch (GA->getVisibility()) {
913 default: assert(0 && "Invalid visibility style!");
914 case GlobalValue::DefaultVisibility: break;
915 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
916 }
917
918 Out << "alias ";
919
920 switch (GA->getLinkage()) {
921 case GlobalValue::WeakLinkage: Out << "weak "; break;
922 case GlobalValue::InternalLinkage: Out << "internal "; break;
923 case GlobalValue::ExternalLinkage: break;
924 default:
925 assert(0 && "Invalid alias linkage");
926 }
927
928 const GlobalValue *Aliasee = GA->getAliasee();
929 assert(Aliasee && "Aliasee cannot be null");
930
931 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
932 printType(GV->getType());
933 Out << " " << getLLVMName(GV->getName(), GlobalPrefix);
934 } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
935 printType(F->getFunctionType());
936 Out << "* ";
937
938 if (!F->getName().empty())
939 Out << getLLVMName(F->getName(), GlobalPrefix);
940 else
941 Out << "@\"\"";
942 } else
943 assert(0 && "Unsupported aliasee");
944
945 printInfoComment(*GA);
946 Out << "\n";
947}
948
Reid Spencer32af9e82007-01-06 07:24:44 +0000949void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +0000950 // Print the types.
Reid Spencer32af9e82007-01-06 07:24:44 +0000951 for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
952 TI != TE; ++TI) {
Reid Spencer788e3172007-01-26 08:02:52 +0000953 Out << "\t" << getLLVMName(TI->first, LocalPrefix) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +0000954
955 // Make sure we print out at least one level of the type structure, so
956 // that we do not get %FILE = type %FILE
957 //
958 printTypeAtLeastOneLevel(TI->second) << "\n";
959 }
Reid Spencer32af9e82007-01-06 07:24:44 +0000960}
961
Misha Brukmanc566ca362004-03-02 00:22:19 +0000962/// printFunction - Print all aspects of a function.
963///
Chris Lattner113f4f42002-06-25 16:13:24 +0000964void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000965 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +0000966 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +0000967
Misha Brukmana6619a92004-06-21 21:53:56 +0000968 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +0000969
Reid Spencer5301e7c2007-01-30 20:08:39 +0000970 if (F->isDeclaration())
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000971 switch (F->getLinkage()) {
972 case GlobalValue::DLLImportLinkage: Out << "declare dllimport "; break;
973 case GlobalValue::ExternalWeakLinkage: Out << "declare extern_weak "; break;
974 default: Out << "declare ";
975 }
Reid Spencer7ce2d2a2006-12-29 20:29:48 +0000976 else {
977 Out << "define ";
Chris Lattner379a8d22003-04-16 20:28:45 +0000978 switch (F->getLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000979 case GlobalValue::InternalLinkage: Out << "internal "; break;
980 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
981 case GlobalValue::WeakLinkage: Out << "weak "; break;
982 case GlobalValue::AppendingLinkage: Out << "appending "; break;
983 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
984 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
985 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
Chris Lattner379a8d22003-04-16 20:28:45 +0000986 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000987 case GlobalValue::GhostLinkage:
Bill Wendlingf3baad32006-12-07 01:30:32 +0000988 cerr << "GhostLinkage not allowed in AsmWriter!\n";
Misha Brukman70457632004-11-14 21:04:34 +0000989 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000990 }
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000991 switch (F->getVisibility()) {
Chris Lattner90d2e422007-01-15 18:28:18 +0000992 default: assert(0 && "Invalid visibility style!");
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000993 case GlobalValue::DefaultVisibility: break;
994 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000995 }
Reid Spencer7ce2d2a2006-12-29 20:29:48 +0000996 }
Chris Lattner379a8d22003-04-16 20:28:45 +0000997
Chris Lattnerf7b6d312005-05-06 20:26:43 +0000998 // Print the calling convention.
999 switch (F->getCallingConv()) {
1000 case CallingConv::C: break; // default
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001001 case CallingConv::Fast: Out << "fastcc "; break;
1002 case CallingConv::Cold: Out << "coldcc "; break;
1003 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1004 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001005 default: Out << "cc" << F->getCallingConv() << " "; break;
1006 }
1007
Reid Spencer8c4914c2006-12-31 05:24:50 +00001008 const FunctionType *FT = F->getFunctionType();
Reid Spencer1517de32007-04-09 06:10:42 +00001009 const ParamAttrsList *Attrs = FT->getParamAttrs();
Misha Brukman21bbdb92004-06-04 21:11:51 +00001010 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +00001011 if (!F->getName().empty())
Reid Spencer788e3172007-01-26 08:02:52 +00001012 Out << getLLVMName(F->getName(), GlobalPrefix);
Chris Lattner5b337482003-10-18 05:57:43 +00001013 else
Reid Spencer788e3172007-01-26 08:02:52 +00001014 Out << "@\"\"";
Misha Brukmana6619a92004-06-21 21:53:56 +00001015 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001016 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001017
Chris Lattner7bfee412001-10-29 16:05:51 +00001018 // Loop over the arguments, printing them...
Chris Lattnerfee714f2001-09-07 16:36:04 +00001019
Reid Spencer8c4914c2006-12-31 05:24:50 +00001020 unsigned Idx = 1;
Chris Lattner82738fe2007-04-18 00:57:22 +00001021 if (!F->isDeclaration()) {
1022 // If this isn't a declaration, print the argument names as well.
1023 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1024 I != E; ++I) {
1025 // Insert commas as we go... the first arg doesn't get a comma
1026 if (I != F->arg_begin()) Out << ", ";
1027 printArgument(I, (Attrs ? Attrs->getParamAttrs(Idx)
1028 : uint16_t(ParamAttr::None)));
1029 Idx++;
1030 }
1031 } else {
1032 // Otherwise, print the types from the function type.
1033 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1034 // Insert commas as we go... the first arg doesn't get a comma
1035 if (i) Out << ", ";
1036
1037 // Output type...
1038 printType(FT->getParamType(i));
1039
1040 unsigned ArgAttrs = ParamAttr::None;
1041 if (Attrs) ArgAttrs = Attrs->getParamAttrs(i+1);
1042 if (ArgAttrs != ParamAttr::None)
1043 Out << ' ' << ParamAttrsList::getParamAttrsText(ArgAttrs);
1044 }
Reid Spencer8c4914c2006-12-31 05:24:50 +00001045 }
Chris Lattnerfee714f2001-09-07 16:36:04 +00001046
1047 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +00001048 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001049 if (FT->getNumParams()) Out << ", ";
1050 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +00001051 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001052 Out << ')';
Reid Spencera472f662007-04-11 02:44:20 +00001053 if (Attrs && Attrs->getParamAttrs(0) != ParamAttr::None)
Reid Spencer1517de32007-04-09 06:10:42 +00001054 Out << ' ' << Attrs->getParamAttrsTextByIndex(0);
Chris Lattner4b96c542005-11-12 00:10:19 +00001055 if (F->hasSection())
1056 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001057 if (F->getAlignment())
1058 Out << " align " << F->getAlignment();
Chris Lattner4b96c542005-11-12 00:10:19 +00001059
Reid Spencer5301e7c2007-01-30 20:08:39 +00001060 if (F->isDeclaration()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001061 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +00001062 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +00001063 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001064
Chris Lattner6915f8f2002-04-07 22:49:37 +00001065 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +00001066 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1067 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001068
Misha Brukmana6619a92004-06-21 21:53:56 +00001069 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +00001070 }
1071
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001072 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001073}
1074
Misha Brukmanc566ca362004-03-02 00:22:19 +00001075/// printArgument - This member is called for every argument that is passed into
1076/// the function. Simply print it out
1077///
Reid Spencer1517de32007-04-09 06:10:42 +00001078void AssemblyWriter::printArgument(const Argument *Arg, uint16_t Attrs) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001079 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +00001080 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001081
Reid Spencera472f662007-04-11 02:44:20 +00001082 if (Attrs != ParamAttr::None)
Reid Spencer1517de32007-04-09 06:10:42 +00001083 Out << ' ' << ParamAttrsList::getParamAttrsText(Attrs);
Reid Spencer8c4914c2006-12-31 05:24:50 +00001084
Chris Lattner2f7c9632001-06-06 20:29:01 +00001085 // Output name, if available...
1086 if (Arg->hasName())
Reid Spencer788e3172007-01-26 08:02:52 +00001087 Out << ' ' << getLLVMName(Arg->getName(), LocalPrefix);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001088}
1089
Misha Brukmanc566ca362004-03-02 00:22:19 +00001090/// printBasicBlock - This member is called for each basic block in a method.
1091///
Chris Lattner7bfee412001-10-29 16:05:51 +00001092void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001093 if (BB->hasName()) { // Print out the label if it exists...
Reid Spencer788e3172007-01-26 08:02:52 +00001094 Out << "\n" << getLLVMName(BB->getName(), LabelPrefix) << ':';
Chris Lattner408dbdb2002-05-14 16:02:05 +00001095 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Misha Brukmana6619a92004-06-21 21:53:56 +00001096 Out << "\n; <label>:";
Chris Lattner5e043322007-01-11 03:54:27 +00001097 int Slot = Machine.getLocalSlot(BB);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001098 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001099 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +00001100 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001101 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +00001102 }
Chris Lattner2447ef52003-11-20 00:09:43 +00001103
1104 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +00001105 Out << "\t\t; Error: Block without parent!";
Chris Lattner2447ef52003-11-20 00:09:43 +00001106 else {
Dan Gohmandcb291f2007-03-22 16:38:57 +00001107 if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
Chris Lattner2447ef52003-11-20 00:09:43 +00001108 // Output predecessors for the block...
Misha Brukmana6619a92004-06-21 21:53:56 +00001109 Out << "\t\t;";
Chris Lattner2447ef52003-11-20 00:09:43 +00001110 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001111
Chris Lattner2447ef52003-11-20 00:09:43 +00001112 if (PI == PE) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001113 Out << " No predecessors!";
Chris Lattner2447ef52003-11-20 00:09:43 +00001114 } else {
Misha Brukmana6619a92004-06-21 21:53:56 +00001115 Out << " preds =";
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001116 writeOperand(*PI, false);
Chris Lattner2447ef52003-11-20 00:09:43 +00001117 for (++PI; PI != PE; ++PI) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001118 Out << ',';
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001119 writeOperand(*PI, false);
Chris Lattner2447ef52003-11-20 00:09:43 +00001120 }
Chris Lattner00211f12003-11-16 22:59:57 +00001121 }
Chris Lattner58185f22002-10-02 19:38:55 +00001122 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001123 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001124
Misha Brukmana6619a92004-06-21 21:53:56 +00001125 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001126
Misha Brukmana6619a92004-06-21 21:53:56 +00001127 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001128
Chris Lattnerfee714f2001-09-07 16:36:04 +00001129 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001130 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1131 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001132
Misha Brukmana6619a92004-06-21 21:53:56 +00001133 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001134}
1135
Chris Lattner862e3382001-10-13 06:42:36 +00001136
Misha Brukmanc566ca362004-03-02 00:22:19 +00001137/// printInfoComment - Print a little comment after the instruction indicating
1138/// which slot it occupies.
1139///
Chris Lattner113f4f42002-06-25 16:13:24 +00001140void AssemblyWriter::printInfoComment(const Value &V) {
1141 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001142 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001143 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001144
Chris Lattner113f4f42002-06-25 16:13:24 +00001145 if (!V.hasName()) {
Chris Lattner5e043322007-01-11 03:54:27 +00001146 int SlotNum;
1147 if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1148 SlotNum = Machine.getGlobalSlot(GV);
1149 else
1150 SlotNum = Machine.getLocalSlot(&V);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001151 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001152 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001153 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001154 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001155 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001156 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001157 }
1158}
1159
Reid Spencere7141c82006-08-28 01:02:49 +00001160// This member is called for each Instruction in a function..
Chris Lattner113f4f42002-06-25 16:13:24 +00001161void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001162 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001163
Misha Brukmana6619a92004-06-21 21:53:56 +00001164 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001165
1166 // Print out name if it exists...
Chris Lattner113f4f42002-06-25 16:13:24 +00001167 if (I.hasName())
Reid Spencer788e3172007-01-26 08:02:52 +00001168 Out << getLLVMName(I.getName(), LocalPrefix) << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001169
Chris Lattner06038452005-05-06 05:51:46 +00001170 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001171 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001172 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001173 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001174 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1175 // If this is a call, check if it's a tail call.
1176 Out << "tail ";
1177 }
Chris Lattner504f9242003-09-08 17:45:59 +00001178
Chris Lattner2f7c9632001-06-06 20:29:01 +00001179 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001180 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001181
Reid Spencer45e52392006-12-03 06:27:29 +00001182 // Print out the compare instruction predicates
1183 if (const FCmpInst *FCI = dyn_cast<FCmpInst>(&I)) {
Reid Spencer812a1be2006-12-04 05:19:18 +00001184 Out << " " << getPredicateText(FCI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001185 } else if (const ICmpInst *ICI = dyn_cast<ICmpInst>(&I)) {
Reid Spencer812a1be2006-12-04 05:19:18 +00001186 Out << " " << getPredicateText(ICI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001187 }
1188
Chris Lattner2f7c9632001-06-06 20:29:01 +00001189 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001190 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001191
1192 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001193 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1194 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001195 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001196 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001197 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001198 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001199
Chris Lattner8d48df22002-04-13 18:34:38 +00001200 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001201 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001202 writeOperand(Operand , true); Out << ',';
1203 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001204
Chris Lattner113f4f42002-06-25 16:13:24 +00001205 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001206 Out << "\n\t\t";
1207 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001208 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001209 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001210 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001211 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001212 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001213 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001214 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001215
Chris Lattner113f4f42002-06-25 16:13:24 +00001216 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001217 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001218 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001219 writeOperand(I.getOperand(op ), false); Out << ',';
1220 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001221 }
Chris Lattner862e3382001-10-13 06:42:36 +00001222 } else if (isa<ReturnInst>(I) && !Operand) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001223 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001224 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1225 // Print the calling convention being used.
1226 switch (CI->getCallingConv()) {
1227 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001228 case CallingConv::Fast: Out << " fastcc"; break;
1229 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001230 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1231 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001232 default: Out << " cc" << CI->getCallingConv(); break;
1233 }
1234
Reid Spencer1517de32007-04-09 06:10:42 +00001235 const PointerType *PTy = cast<PointerType>(Operand->getType());
1236 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1237 const Type *RetTy = FTy->getReturnType();
1238 const ParamAttrsList *PAL = FTy->getParamAttrs();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001239
Chris Lattner463d6a52003-08-05 15:34:45 +00001240 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001241 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001242 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001243 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001244 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001245 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001246 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001247 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001248 writeOperand(Operand, false);
1249 } else {
1250 writeOperand(Operand, true);
1251 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001252 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001253 for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1254 if (op > 1)
1255 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001256 writeOperand(I.getOperand(op), true);
Reid Spencera472f662007-04-11 02:44:20 +00001257 if (PAL && PAL->getParamAttrs(op) != ParamAttr::None)
Reid Spencer1517de32007-04-09 06:10:42 +00001258 Out << " " << PAL->getParamAttrsTextByIndex(op);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001259 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001260 Out << " )";
Reid Spencera472f662007-04-11 02:44:20 +00001261 if (PAL && PAL->getParamAttrs(0) != ParamAttr::None)
Reid Spencer1517de32007-04-09 06:10:42 +00001262 Out << ' ' << PAL->getParamAttrsTextByIndex(0);
Chris Lattner113f4f42002-06-25 16:13:24 +00001263 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Reid Spencer1517de32007-04-09 06:10:42 +00001264 const PointerType *PTy = cast<PointerType>(Operand->getType());
1265 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1266 const Type *RetTy = FTy->getReturnType();
1267 const ParamAttrsList *PAL = FTy->getParamAttrs();
Chris Lattner463d6a52003-08-05 15:34:45 +00001268
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001269 // Print the calling convention being used.
1270 switch (II->getCallingConv()) {
1271 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001272 case CallingConv::Fast: Out << " fastcc"; break;
1273 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001274 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1275 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001276 default: Out << " cc" << II->getCallingConv(); break;
1277 }
1278
Chris Lattner463d6a52003-08-05 15:34:45 +00001279 // If possible, print out the short form of the invoke instruction. We can
1280 // only do this if the first argument is a pointer to a nonvararg function,
1281 // and if the return type is not a pointer to a function.
1282 //
1283 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001284 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001285 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001286 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001287 writeOperand(Operand, false);
1288 } else {
1289 writeOperand(Operand, true);
1290 }
1291
Misha Brukmana6619a92004-06-21 21:53:56 +00001292 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001293 for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1294 if (op > 3)
1295 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001296 writeOperand(I.getOperand(op), true);
Reid Spencera472f662007-04-11 02:44:20 +00001297 if (PAL && PAL->getParamAttrs(op-2) != ParamAttr::None)
Reid Spencer1517de32007-04-09 06:10:42 +00001298 Out << " " << PAL->getParamAttrsTextByIndex(op-2);
Chris Lattner862e3382001-10-13 06:42:36 +00001299 }
1300
Reid Spencer136a91c2007-01-05 17:06:19 +00001301 Out << " )";
Reid Spencera472f662007-04-11 02:44:20 +00001302 if (PAL && PAL->getParamAttrs(0) != ParamAttr::None)
Reid Spencer1517de32007-04-09 06:10:42 +00001303 Out << " " << PAL->getParamAttrsTextByIndex(0);
Reid Spencer136a91c2007-01-05 17:06:19 +00001304 Out << "\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001305 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001306 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001307 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001308
Chris Lattner113f4f42002-06-25 16:13:24 +00001309 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001310 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001311 printType(AI->getType()->getElementType());
1312 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001313 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001314 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001315 }
Nate Begeman848622f2005-11-05 09:21:28 +00001316 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001317 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001318 }
Chris Lattner862e3382001-10-13 06:42:36 +00001319 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001320 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001321 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001322 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001323 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001324 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001325 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001326 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001327 } else if (Operand) { // Print the normal way...
1328
Misha Brukmanb1c93172005-04-21 23:48:37 +00001329 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001330 // omit the type from all but the first operand. If the instruction has
1331 // different type operands (for example br), then they are all printed.
1332 bool PrintAllTypes = false;
1333 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001334
Reid Spencer0cdd04f2007-02-02 13:54:55 +00001335 // Select, Store and ShuffleVector always print all types.
Reid Spencer2341c222007-02-02 02:16:23 +00001336 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001337 PrintAllTypes = true;
1338 } else {
1339 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1340 Operand = I.getOperand(i);
1341 if (Operand->getType() != TheType) {
1342 PrintAllTypes = true; // We have differing types! Print them all!
1343 break;
1344 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001345 }
1346 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001347
Chris Lattner7bfee412001-10-29 16:05:51 +00001348 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001349 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001350 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001351 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001352
Chris Lattner113f4f42002-06-25 16:13:24 +00001353 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001354 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001355 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001356 }
1357 }
Christopher Lamb84485702007-04-22 19:24:39 +00001358
1359 // Print post operand alignment for load/store
1360 if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1361 Out << ", align " << cast<LoadInst>(I).getAlignment();
1362 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1363 Out << ", align " << cast<StoreInst>(I).getAlignment();
1364 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001365
Chris Lattner862e3382001-10-13 06:42:36 +00001366 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001367 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001368}
1369
1370
1371//===----------------------------------------------------------------------===//
1372// External Interface declarations
1373//===----------------------------------------------------------------------===//
1374
Chris Lattner8339f7d2003-10-30 23:41:03 +00001375void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001376 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001377 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001378 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001379}
1380
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001381void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001382 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001383 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001384 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001385}
1386
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001387void GlobalAlias::print(std::ostream &o) const {
1388 SlotMachine SlotTable(getParent());
1389 AssemblyWriter W(o, SlotTable, getParent(), 0);
1390 W.write(this);
1391}
1392
Chris Lattner8339f7d2003-10-30 23:41:03 +00001393void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001394 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001395 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001396
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001397 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001398}
1399
Chris Lattnereef2fe72006-01-24 04:13:11 +00001400void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001401 WriteAsOperand(o, this, true, 0);
Chris Lattnereef2fe72006-01-24 04:13:11 +00001402}
1403
Chris Lattner8339f7d2003-10-30 23:41:03 +00001404void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001405 SlotMachine SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001406 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001407 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001408 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001409}
1410
Chris Lattner8339f7d2003-10-30 23:41:03 +00001411void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001412 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001413 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001414 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001415
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001416 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001417}
Chris Lattner7db79582001-11-07 04:21:57 +00001418
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001419void Constant::print(std::ostream &o) const {
1420 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001421
Misha Brukman21bbdb92004-06-04 21:11:51 +00001422 o << ' ' << getType()->getDescription() << ' ';
Evan Cheng5b19a802006-03-01 22:17:00 +00001423
1424 std::map<const Type *, std::string> TypeTable;
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001425 WriteConstantInt(o, this, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001426}
1427
Misha Brukmanb1c93172005-04-21 23:48:37 +00001428void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001429 if (this == 0)
1430 o << "<null Type>";
1431 else
1432 o << getDescription();
1433}
1434
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001435void Argument::print(std::ostream &o) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001436 WriteAsOperand(o, this, true, getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001437}
1438
Reid Spencer52641832004-05-25 18:14:38 +00001439// Value::dump - allow easy printing of Values from the debugger.
1440// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001441void Value::dump() const { print(*cerr.stream()); cerr << '\n'; }
Reid Spencer52641832004-05-25 18:14:38 +00001442
1443// Type::dump - allow easy printing of Values from the debugger.
1444// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001445void Type::dump() const { print(*cerr.stream()); cerr << '\n'; }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001446
Reid Spencer4388f0b2007-04-22 05:46:44 +00001447void
1448ParamAttrsList::dump() const {
1449 cerr << "PAL[ ";
1450 for (unsigned i = 0; i < attrs.size(); ++i) {
1451 uint16_t index = getParamIndex(i);
1452 uint16_t attrs = getParamAttrs(index);
1453 cerr << "{" << index << "," << attrs << "} ";
1454 }
1455 cerr << "]\n";
1456}
1457
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001458//===----------------------------------------------------------------------===//
Chris Lattnerfc9f1c92006-12-06 06:40:49 +00001459// SlotMachine Implementation
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001460//===----------------------------------------------------------------------===//
1461
1462#if 0
Bill Wendlingf3baad32006-12-07 01:30:32 +00001463#define SC_DEBUG(X) cerr << X
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001464#else
1465#define SC_DEBUG(X)
1466#endif
1467
1468// Module level constructor. Causes the contents of the Module (sans functions)
1469// to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001470SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001471 : TheModule(M) ///< Saved for lazy initialization.
1472 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001473 , FunctionProcessed(false)
Reid Spencer50816782007-03-19 18:32:53 +00001474 , mMap(), mNext(0), fMap(), fNext(0)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001475{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001476}
1477
1478// Function level constructor. Causes the contents of the Module and the one
1479// function provided to be added to the slot table.
Chris Lattner23e829a2006-12-06 05:12:21 +00001480SlotMachine::SlotMachine(const Function *F)
1481 : TheModule(F ? F->getParent() : 0) ///< Saved for lazy initialization
Reid Spencer56010e42004-05-26 21:56:09 +00001482 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001483 , FunctionProcessed(false)
Reid Spencer50816782007-03-19 18:32:53 +00001484 , mMap(), mNext(0), fMap(), fNext(0)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001485{
Reid Spencer56010e42004-05-26 21:56:09 +00001486}
1487
Chris Lattner5e043322007-01-11 03:54:27 +00001488inline void SlotMachine::initialize() {
Chris Lattner23e829a2006-12-06 05:12:21 +00001489 if (TheModule) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001490 processModule();
Reid Spencer56010e42004-05-26 21:56:09 +00001491 TheModule = 0; ///< Prevent re-processing next time we're called.
1492 }
Chris Lattner193de902006-12-06 05:27:40 +00001493 if (TheFunction && !FunctionProcessed)
Misha Brukmanb1c93172005-04-21 23:48:37 +00001494 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001495}
1496
1497// Iterate through all the global variables, functions, and global
Misha Brukmanb1c93172005-04-21 23:48:37 +00001498// variable initializers and create slots for them.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001499void SlotMachine::processModule() {
1500 SC_DEBUG("begin processModule!\n");
1501
Chris Lattner0dda8612006-12-06 06:15:43 +00001502 // Add all of the unnamed global variables to the value table.
Chris Lattner54932b02006-12-06 04:41:52 +00001503 for (Module::const_global_iterator I = TheModule->global_begin(),
1504 E = TheModule->global_end(); I != E; ++I)
Chris Lattner0dda8612006-12-06 06:15:43 +00001505 if (!I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001506 CreateModuleSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001507
Chris Lattner0dda8612006-12-06 06:15:43 +00001508 // Add all the unnamed functions to the table.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001509 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1510 I != E; ++I)
Chris Lattner0dda8612006-12-06 06:15:43 +00001511 if (!I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001512 CreateModuleSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001513
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001514 SC_DEBUG("end processModule!\n");
1515}
1516
1517
Reid Spencer56010e42004-05-26 21:56:09 +00001518// Process the arguments, basic blocks, and instructions of a function.
1519void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001520 SC_DEBUG("begin processFunction!\n");
Reid Spencer50816782007-03-19 18:32:53 +00001521 fNext = 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001522
Chris Lattner0dda8612006-12-06 06:15:43 +00001523 // Add all the function arguments with no names.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001524 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
Chris Lattner531f9e92005-03-15 04:54:21 +00001525 AE = TheFunction->arg_end(); AI != AE; ++AI)
Chris Lattner0dda8612006-12-06 06:15:43 +00001526 if (!AI->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001527 CreateFunctionSlot(AI);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001528
1529 SC_DEBUG("Inserting Instructions:\n");
1530
Chris Lattner0dda8612006-12-06 06:15:43 +00001531 // Add all of the basic blocks and instructions with no names.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001532 for (Function::const_iterator BB = TheFunction->begin(),
Reid Spencer56010e42004-05-26 21:56:09 +00001533 E = TheFunction->end(); BB != E; ++BB) {
Chris Lattner0dda8612006-12-06 06:15:43 +00001534 if (!BB->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001535 CreateFunctionSlot(BB);
Chris Lattner0dda8612006-12-06 06:15:43 +00001536 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1537 if (I->getType() != Type::VoidTy && !I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001538 CreateFunctionSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001539 }
1540
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001541 FunctionProcessed = true;
1542
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001543 SC_DEBUG("end processFunction!\n");
1544}
1545
Chris Lattner193de902006-12-06 05:27:40 +00001546/// Clean up after incorporating a function. This is the only way to get out of
Chris Lattner5e043322007-01-11 03:54:27 +00001547/// the function incorporation state that affects get*Slot/Create*Slot. Function
Chris Lattner89e774e2007-01-09 07:46:21 +00001548/// incorporation state is indicated by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001549void SlotMachine::purgeFunction() {
1550 SC_DEBUG("begin purgeFunction!\n");
1551 fMap.clear(); // Simply discard the function level map
Reid Spencer56010e42004-05-26 21:56:09 +00001552 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001553 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001554 SC_DEBUG("end purgeFunction!\n");
1555}
1556
Chris Lattner5e043322007-01-11 03:54:27 +00001557/// getGlobalSlot - Get the slot number of a global value.
1558int SlotMachine::getGlobalSlot(const GlobalValue *V) {
1559 // Check for uninitialized state and do lazy initialization.
1560 initialize();
1561
1562 // Find the type plane in the module map
Reid Spencer50816782007-03-19 18:32:53 +00001563 ValueMap::const_iterator MI = mMap.find(V);
Chris Lattner5e043322007-01-11 03:54:27 +00001564 if (MI == mMap.end()) return -1;
Reid Spencer50816782007-03-19 18:32:53 +00001565
1566 return MI->second;
Chris Lattner5e043322007-01-11 03:54:27 +00001567}
Reid Spencer56010e42004-05-26 21:56:09 +00001568
Chris Lattner5e043322007-01-11 03:54:27 +00001569
1570/// getLocalSlot - Get the slot number for a value that is local to a function.
1571int SlotMachine::getLocalSlot(const Value *V) {
1572 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
1573
1574 // Check for uninitialized state and do lazy initialization.
1575 initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001576
Reid Spencer50816782007-03-19 18:32:53 +00001577 ValueMap::const_iterator FI = fMap.find(V);
Chris Lattner5e043322007-01-11 03:54:27 +00001578 if (FI == fMap.end()) return -1;
1579
Reid Spencer50816782007-03-19 18:32:53 +00001580 return FI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001581}
1582
Reid Spencer58d30f22004-07-04 11:50:43 +00001583
Chris Lattnerea862a32007-01-09 07:55:49 +00001584/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
1585void SlotMachine::CreateModuleSlot(const GlobalValue *V) {
Chris Lattner04398e82007-01-09 08:04:59 +00001586 assert(V && "Can't insert a null Value into SlotMachine!");
Reid Spencer50816782007-03-19 18:32:53 +00001587 assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
1588 assert(!V->hasName() && "Doesn't need a slot!");
Chris Lattner04398e82007-01-09 08:04:59 +00001589
Reid Spencer50816782007-03-19 18:32:53 +00001590 unsigned DestSlot = mNext++;
1591 mMap[V] = DestSlot;
Chris Lattner04398e82007-01-09 08:04:59 +00001592
Reid Spencer50816782007-03-19 18:32:53 +00001593 SC_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner04398e82007-01-09 08:04:59 +00001594 DestSlot << " [");
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001595 // G = Global, F = Function, A = Alias, o = other
1596 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' :
1597 (isa<Function> ? 'F' :
1598 (isa<GlobalAlias> ? 'A' : 'o'))) << "]\n");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001599}
1600
1601
Chris Lattnerea862a32007-01-09 07:55:49 +00001602/// CreateSlot - Create a new slot for the specified value if it has no name.
1603void SlotMachine::CreateFunctionSlot(const Value *V) {
1604 const Type *VTy = V->getType();
1605 assert(VTy != Type::VoidTy && !V->hasName() && "Doesn't need a slot!");
Chris Lattner04398e82007-01-09 08:04:59 +00001606
Reid Spencer50816782007-03-19 18:32:53 +00001607 unsigned DestSlot = fNext++;
1608 fMap[V] = DestSlot;
Chris Lattner04398e82007-01-09 08:04:59 +00001609
Chris Lattnerf8090cb2006-12-06 05:55:41 +00001610 // G = Global, F = Function, o = other
Chris Lattner04398e82007-01-09 08:04:59 +00001611 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
1612 DestSlot << " [o]\n");
1613}