blob: 7af26d0e8a73b46ad4c603fceaef840bd9b25958 [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//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// 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"
Chris Lattner8bbcda22006-01-25 18:57:27 +000023#include "llvm/InlineAsm.h"
Vikram S. Adveb952b542002-07-14 23:14:45 +000024#include "llvm/Instruction.h"
Misha Brukman2d3fa9e2004-07-29 16:53:53 +000025#include "llvm/Instructions.h"
Chris Lattnerc70b3f62004-01-20 19:50:34 +000026#include "llvm/Module.h"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000027#include "llvm/ValueSymbolTable.h"
Reid Spencer32af9e82007-01-06 07:24:44 +000028#include "llvm/TypeSymbolTable.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000029#include "llvm/ADT/StringExtras.h"
30#include "llvm/ADT/STLExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000031#include "llvm/Support/CFG.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000032#include "llvm/Support/MathExtras.h"
Bill Wendlingdfc91892006-11-28 02:09:03 +000033#include "llvm/Support/Streams.h"
Chris Lattnerfee714f2001-09-07 16:36:04 +000034#include <algorithm>
Reid Spencerbdf03b42007-05-22 19:27:35 +000035#include <cctype>
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
Dan Gohman242223a2008-01-29 11:36:12 +000059 explicit SlotMachine(const Module *M);
Reid Spencer16f2f7f2004-05-26 07:18:52 +000060
61 /// @brief Construct from a function, starting out in incorp state.
Dan Gohman242223a2008-01-29 11:36:12 +000062 explicit 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
Devang Patel8c78a0b2007-05-03 01:11:54 +0000138char PrintModulePass::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000139static RegisterPass<PrintModulePass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000140X("printm", "Print module to stderr");
Devang Patel8c78a0b2007-05-03 01:11:54 +0000141char PrintFunctionPass::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +0000142static RegisterPass<PrintFunctionPass>
Chris Lattnere7134c52006-08-21 17:20:01 +0000143Y("print","Print function to stderr");
Chris Lattner7f8845a2002-07-23 18:07:49 +0000144
Misha Brukmanb1c93172005-04-21 23:48:37 +0000145static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnera9f0a112006-12-06 05:50:41 +0000146 std::map<const Type *, std::string> &TypeTable,
Reid Spencer58d30f22004-07-04 11:50:43 +0000147 SlotMachine *Machine);
148
Chris Lattnerb86620e2001-10-29 16:37:48 +0000149static const Module *getModuleFromVal(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000150 if (const Argument *MA = dyn_cast<Argument>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000151 return MA->getParent() ? MA->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000152 else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000153 return BB->getParent() ? BB->getParent()->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000154 else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner57698e22002-03-26 18:01:55 +0000155 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000156 return M ? M->getParent() : 0;
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000157 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
Chris Lattnerb86620e2001-10-29 16:37:48 +0000158 return GV->getParent();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000159 return 0;
160}
161
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000162static SlotMachine *createSlotMachine(const Value *V) {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000163 if (const Argument *FA = dyn_cast<Argument>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000164 return new SlotMachine(FA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000165 } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000166 return new SlotMachine(I->getParent()->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000167 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000168 return new SlotMachine(BB->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000169 } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000170 return new SlotMachine(GV->getParent());
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000171 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)){
172 return new SlotMachine(GA->getParent());
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000173 } else if (const Function *Func = dyn_cast<Function>(V)) {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000174 return new SlotMachine(Func);
Chris Lattner7bfee412001-10-29 16:05:51 +0000175 }
176 return 0;
177}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000178
Reid Spencer788e3172007-01-26 08:02:52 +0000179/// NameNeedsQuotes - Return true if the specified llvm name should be wrapped
180/// with ""'s.
Reid Spencerbdf03b42007-05-22 19:27:35 +0000181static std::string QuoteNameIfNeeded(const std::string &Name) {
182 std::string result;
183 bool needsQuotes = Name[0] >= '0' && Name[0] <= '9';
184 // Scan the name to see if it needs quotes and to replace funky chars with
185 // their octal equivalent.
Chris Lattner1c343042003-08-22 05:40:38 +0000186 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
187 char C = Name[i];
188 assert(C != '"' && "Illegal character in LLVM value name!");
Reid Spencerbdf03b42007-05-22 19:27:35 +0000189 if (isalnum(C) || C == '-' || C == '.' || C == '_')
190 result += C;
191 else if (C == '\\') {
192 needsQuotes = true;
193 result += "\\\\";
194 } else if (isprint(C)) {
195 needsQuotes = true;
196 result += C;
197 } else {
198 needsQuotes = true;
199 result += "\\";
200 char hex1 = (C >> 4) & 0x0F;
201 if (hex1 < 10)
202 result += hex1 + '0';
203 else
204 result += hex1 - 10 + 'A';
205 char hex2 = C & 0x0F;
206 if (hex2 < 10)
207 result += hex2 + '0';
208 else
209 result += hex2 - 10 + 'A';
210 }
Reid Spencer788e3172007-01-26 08:02:52 +0000211 }
Reid Spencerbdf03b42007-05-22 19:27:35 +0000212 if (needsQuotes) {
213 result.insert(0,"\"");
214 result += '"';
215 }
216 return result;
Reid Spencer788e3172007-01-26 08:02:52 +0000217}
218
219enum PrefixType {
220 GlobalPrefix,
221 LabelPrefix,
222 LocalPrefix
223};
224
225/// getLLVMName - Turn the specified string into an 'LLVM name', which is either
226/// prefixed with % (if the string only contains simple characters) or is
227/// surrounded with ""'s (if it has special chars in it).
228static std::string getLLVMName(const std::string &Name, PrefixType Prefix) {
229 assert(!Name.empty() && "Cannot get empty name!");
Reid Spencer788e3172007-01-26 08:02:52 +0000230 switch (Prefix) {
231 default: assert(0 && "Bad prefix!");
Reid Spencerbdf03b42007-05-22 19:27:35 +0000232 case GlobalPrefix: return '@' + QuoteNameIfNeeded(Name);
233 case LabelPrefix: return QuoteNameIfNeeded(Name);
234 case LocalPrefix: return '%' + QuoteNameIfNeeded(Name);
Reid Spencer788e3172007-01-26 08:02:52 +0000235 }
Chris Lattner1c343042003-08-22 05:40:38 +0000236}
237
Chris Lattnerb86620e2001-10-29 16:37:48 +0000238
Misha Brukmanc566ca362004-03-02 00:22:19 +0000239/// fillTypeNameTable - If the module has a symbol table, take all global types
240/// and stuff their names into the TypeNames map.
241///
Chris Lattnerb86620e2001-10-29 16:37:48 +0000242static void fillTypeNameTable(const Module *M,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000243 std::map<const Type *, std::string> &TypeNames) {
Chris Lattner98cf1f52002-11-20 18:36:02 +0000244 if (!M) return;
Reid Spencer32af9e82007-01-06 07:24:44 +0000245 const TypeSymbolTable &ST = M->getTypeSymbolTable();
246 TypeSymbolTable::const_iterator TI = ST.begin();
247 for (; TI != ST.end(); ++TI) {
Reid Spencere7e96712004-05-25 08:53:40 +0000248 // As a heuristic, don't insert pointer to primitive types, because
249 // they are used too often to have a single useful name.
250 //
251 const Type *Ty = cast<Type>(TI->second);
252 if (!isa<PointerType>(Ty) ||
Reid Spencer56010e42004-05-26 21:56:09 +0000253 !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
Chris Lattner03c49532007-01-15 02:27:26 +0000254 !cast<PointerType>(Ty)->getElementType()->isInteger() ||
Reid Spencer56010e42004-05-26 21:56:09 +0000255 isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
Reid Spencer788e3172007-01-26 08:02:52 +0000256 TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first, LocalPrefix)));
Chris Lattnerb86620e2001-10-29 16:37:48 +0000257 }
258}
259
260
261
Misha Brukmanb1c93172005-04-21 23:48:37 +0000262static void calcTypeName(const Type *Ty,
John Criswellcd116ba2004-06-01 14:54:08 +0000263 std::vector<const Type *> &TypeStack,
264 std::map<const Type *, std::string> &TypeNames,
265 std::string & Result){
Chris Lattner03c49532007-01-15 02:27:26 +0000266 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
John Criswellcd116ba2004-06-01 14:54:08 +0000267 Result += Ty->getDescription(); // Base case
268 return;
269 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000270
271 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000272 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000273 if (I != TypeNames.end()) {
274 Result += I->second;
275 return;
276 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000277
John Criswellcd116ba2004-06-01 14:54:08 +0000278 if (isa<OpaqueType>(Ty)) {
279 Result += "opaque";
280 return;
281 }
Chris Lattnerf14ead92003-10-30 00:22:33 +0000282
Chris Lattnerb86620e2001-10-29 16:37:48 +0000283 // Check to see if the Type is already on the stack...
284 unsigned Slot = 0, CurSize = TypeStack.size();
285 while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
286
Misha Brukmanb1c93172005-04-21 23:48:37 +0000287 // This is another base case for the recursion. In this case, we know
Chris Lattnerb86620e2001-10-29 16:37:48 +0000288 // that we have looped back to a type that we have previously visited.
289 // Generate the appropriate upreference to handle this.
John Criswellcd116ba2004-06-01 14:54:08 +0000290 if (Slot < CurSize) {
291 Result += "\\" + utostr(CurSize-Slot); // Here's the upreference
292 return;
293 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000294
295 TypeStack.push_back(Ty); // Recursive case: Add us to the stack..
Misha Brukmanb1c93172005-04-21 23:48:37 +0000296
Chris Lattner6b727592004-06-17 18:19:28 +0000297 switch (Ty->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000298 case Type::IntegerTyID: {
299 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
Reid Spencerc8721592007-01-12 07:25:20 +0000300 Result += "i" + utostr(BitWidth);
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000301 break;
302 }
Chris Lattner91db5822002-03-29 03:44:36 +0000303 case Type::FunctionTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000304 const FunctionType *FTy = cast<FunctionType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000305 calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
306 Result += " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000307 for (FunctionType::param_iterator I = FTy->param_begin(),
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000308 E = FTy->param_end(); I != E; ++I) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000309 if (I != FTy->param_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000310 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000311 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000312 }
Chris Lattnerd816b532002-04-13 20:53:41 +0000313 if (FTy->isVarArg()) {
Chris Lattnerfa829be2004-02-09 04:14:01 +0000314 if (FTy->getNumParams()) Result += ", ";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000315 Result += "...";
316 }
317 Result += ")";
318 break;
319 }
320 case Type::StructTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000321 const StructType *STy = cast<StructType>(Ty);
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000322 if (STy->isPacked())
323 Result += '<';
John Criswellcd116ba2004-06-01 14:54:08 +0000324 Result += "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000325 for (StructType::element_iterator I = STy->element_begin(),
326 E = STy->element_end(); I != E; ++I) {
327 if (I != STy->element_begin())
Chris Lattnerb86620e2001-10-29 16:37:48 +0000328 Result += ", ";
John Criswellcd116ba2004-06-01 14:54:08 +0000329 calcTypeName(*I, TypeStack, TypeNames, Result);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000330 }
331 Result += " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000332 if (STy->isPacked())
333 Result += '>';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000334 break;
335 }
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000336 case Type::PointerTyID: {
337 const PointerType *PTy = cast<PointerType>(Ty);
338 calcTypeName(PTy->getElementType(),
John Criswellcd116ba2004-06-01 14:54:08 +0000339 TypeStack, TypeNames, Result);
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000340 if (unsigned AddressSpace = PTy->getAddressSpace())
341 Result += " addrspace(" + utostr(AddressSpace) + ")";
John Criswellcd116ba2004-06-01 14:54:08 +0000342 Result += "*";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000343 break;
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000344 }
Chris Lattnerb86620e2001-10-29 16:37:48 +0000345 case Type::ArrayTyID: {
Chris Lattnerf26a8ee2003-07-23 15:30:06 +0000346 const ArrayType *ATy = cast<ArrayType>(Ty);
John Criswellcd116ba2004-06-01 14:54:08 +0000347 Result += "[" + utostr(ATy->getNumElements()) + " x ";
348 calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
349 Result += "]";
Chris Lattnerb86620e2001-10-29 16:37:48 +0000350 break;
351 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000352 case Type::VectorTyID: {
353 const VectorType *PTy = cast<VectorType>(Ty);
Brian Gaeke02209042004-08-20 06:00:58 +0000354 Result += "<" + utostr(PTy->getNumElements()) + " x ";
355 calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
356 Result += ">";
357 break;
358 }
Chris Lattner15285ab2003-05-14 17:50:47 +0000359 case Type::OpaqueTyID:
John Criswellcd116ba2004-06-01 14:54:08 +0000360 Result += "opaque";
Chris Lattner15285ab2003-05-14 17:50:47 +0000361 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000362 default:
John Criswellcd116ba2004-06-01 14:54:08 +0000363 Result += "<unrecognized-type>";
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000364 break;
Chris Lattnerb86620e2001-10-29 16:37:48 +0000365 }
366
367 TypeStack.pop_back(); // Remove self from stack...
Chris Lattnerb86620e2001-10-29 16:37:48 +0000368}
369
370
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000371/// printTypeInt - The internal guts of printing out a type that has a
372/// potentially named portion.
373///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000374static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
375 std::map<const Type *, std::string> &TypeNames) {
Chris Lattnerb86620e2001-10-29 16:37:48 +0000376 // Primitive types always print out their description, regardless of whether
377 // they have been named or not.
378 //
Chris Lattner03c49532007-01-15 02:27:26 +0000379 if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)))
Chris Lattner92d60532003-10-30 00:12:51 +0000380 return Out << Ty->getDescription();
Chris Lattnerb86620e2001-10-29 16:37:48 +0000381
382 // Check to see if the type is named.
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000383 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000384 if (I != TypeNames.end()) return Out << I->second;
385
386 // Otherwise we have a type that has not been named but is a derived type.
387 // Carefully recurse the type hierarchy to print out any contained symbolic
388 // names.
389 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000390 std::vector<const Type *> TypeStack;
John Criswellcd116ba2004-06-01 14:54:08 +0000391 std::string TypeName;
392 calcTypeName(Ty, TypeStack, TypeNames, TypeName);
Chris Lattner7f74a562002-01-20 22:54:45 +0000393 TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
John Criswellcd116ba2004-06-01 14:54:08 +0000394 return (Out << TypeName);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000395}
396
Chris Lattner34b95182001-10-31 04:33:19 +0000397
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000398/// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
399/// type, iff there is an entry in the modules symbol table for the specified
400/// type or one of it's component types. This is slower than a simple x << Type
401///
Chris Lattner189d19f2003-11-21 20:23:48 +0000402std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
403 const Module *M) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000404 Out << ' ';
Chris Lattnerb86620e2001-10-29 16:37:48 +0000405
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000406 // If they want us to print out a type, but there is no context, we can't
407 // print it symbolically.
408 if (!M)
Chris Lattner72f866e2001-10-29 16:40:32 +0000409 return Out << Ty->getDescription();
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000410
411 std::map<const Type *, std::string> TypeNames;
412 fillTypeNameTable(M, TypeNames);
413 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000414}
415
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000416// PrintEscapedString - Print each character of the specified string, escaping
417// it if it is not printable or if it is an escape char.
418static void PrintEscapedString(const std::string &Str, std::ostream &Out) {
419 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
420 unsigned char C = Str[i];
421 if (isprint(C) && C != '"' && C != '\\') {
422 Out << C;
423 } else {
424 Out << '\\'
425 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
426 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
427 }
428 }
429}
430
Chris Lattnerfc9f1c92006-12-06 06:40:49 +0000431static const char *getPredicateText(unsigned predicate) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000432 const char * pred = "unknown";
433 switch (predicate) {
434 case FCmpInst::FCMP_FALSE: pred = "false"; break;
435 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
436 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
437 case FCmpInst::FCMP_OGE: pred = "oge"; break;
438 case FCmpInst::FCMP_OLT: pred = "olt"; break;
439 case FCmpInst::FCMP_OLE: pred = "ole"; break;
440 case FCmpInst::FCMP_ONE: pred = "one"; break;
441 case FCmpInst::FCMP_ORD: pred = "ord"; break;
442 case FCmpInst::FCMP_UNO: pred = "uno"; break;
443 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
444 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
445 case FCmpInst::FCMP_UGE: pred = "uge"; break;
446 case FCmpInst::FCMP_ULT: pred = "ult"; break;
447 case FCmpInst::FCMP_ULE: pred = "ule"; break;
448 case FCmpInst::FCMP_UNE: pred = "une"; break;
449 case FCmpInst::FCMP_TRUE: pred = "true"; break;
450 case ICmpInst::ICMP_EQ: pred = "eq"; break;
451 case ICmpInst::ICMP_NE: pred = "ne"; break;
452 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
453 case ICmpInst::ICMP_SGE: pred = "sge"; break;
454 case ICmpInst::ICMP_SLT: pred = "slt"; break;
455 case ICmpInst::ICMP_SLE: pred = "sle"; break;
456 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
457 case ICmpInst::ICMP_UGE: pred = "uge"; break;
458 case ICmpInst::ICMP_ULT: pred = "ult"; break;
459 case ICmpInst::ICMP_ULE: pred = "ule"; break;
460 }
461 return pred;
462}
463
Misha Brukmanb1c93172005-04-21 23:48:37 +0000464/// @brief Internal constant writer.
465static void WriteConstantInt(std::ostream &Out, const Constant *CV,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000466 std::map<const Type *, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000467 SlotMachine *Machine) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000468 const int IndentSize = 4;
469 static std::string Indent = "\n";
Zhou Sheng75b871f2007-01-11 12:24:14 +0000470 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Reid Spencer542964f2007-01-11 18:21:29 +0000471 if (CI->getType() == Type::Int1Ty)
Reid Spencercddc9df2007-01-12 04:24:46 +0000472 Out << (CI->getZExtValue() ? "true" : "false");
473 else
Reid Spencere2eb1fa2007-02-27 20:25:25 +0000474 Out << CI->getValue().toStringSigned(10);
Chris Lattner1e194682002-04-18 18:53:13 +0000475 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Dale Johannesen028084e2007-09-12 03:30:33 +0000476 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble ||
477 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) {
478 // We would like to output the FP constant value in exponential notation,
479 // but we cannot do this if doing so will lose precision. Check here to
480 // make sure that we only output it in exponential format if we can parse
481 // the value back and get the same value.
482 //
483 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
484 double Val = (isDouble) ? CFP->getValueAPF().convertToDouble() :
485 CFP->getValueAPF().convertToFloat();
486 std::string StrVal = ftostr(CFP->getValueAPF());
Chris Lattner1e194682002-04-18 18:53:13 +0000487
Dale Johannesen028084e2007-09-12 03:30:33 +0000488 // Check to make sure that the stringized number is not some string like
489 // "Inf" or NaN, that atof will accept, but the lexer will not. Check
490 // that the string matches the "[-+]?[0-9]" regex.
491 //
492 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
493 ((StrVal[0] == '-' || StrVal[0] == '+') &&
494 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
495 // Reparse stringized version!
496 if (atof(StrVal.c_str()) == Val) {
497 Out << StrVal;
498 return;
499 }
Chris Lattner1e194682002-04-18 18:53:13 +0000500 }
Dale Johannesen028084e2007-09-12 03:30:33 +0000501 // Otherwise we could not reparse it to exactly the same value, so we must
502 // output the string in hexadecimal format!
503 assert(sizeof(double) == sizeof(uint64_t) &&
504 "assuming that double is 64 bits!");
505 Out << "0x" << utohexstr(DoubleToBits(Val));
506 } else {
507 // Some form of long double. These appear as a magic letter identifying
508 // the type, then a fixed number of hex digits.
509 Out << "0x";
510 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended)
511 Out << 'K';
512 else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad)
513 Out << 'L';
Dale Johannesen007aa372007-10-11 18:07:22 +0000514 else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble)
515 Out << 'M';
Dale Johannesen028084e2007-09-12 03:30:33 +0000516 else
517 assert(0 && "Unsupported floating point type");
Dale Johannesen34aa41c2007-09-26 23:20:33 +0000518 // api needed to prevent premature destruction
519 APInt api = CFP->getValueAPF().convertToAPInt();
520 const uint64_t* p = api.getRawData();
Dale Johannesen028084e2007-09-12 03:30:33 +0000521 uint64_t word = *p;
522 int shiftcount=60;
Dale Johannesen007aa372007-10-11 18:07:22 +0000523 int width = api.getBitWidth();
Dale Johannesen028084e2007-09-12 03:30:33 +0000524 for (int j=0; j<width; j+=4, shiftcount-=4) {
525 unsigned int nibble = (word>>shiftcount) & 15;
526 if (nibble < 10)
527 Out << (unsigned char)(nibble + '0');
528 else
529 Out << (unsigned char)(nibble - 10 + 'A');
Dale Johannesen4675c4e2008-04-16 17:31:41 +0000530 if (shiftcount == 0 && j+4 < width) {
Dale Johannesen028084e2007-09-12 03:30:33 +0000531 word = *(++p);
Dale Johannesen007aa372007-10-11 18:07:22 +0000532 shiftcount = 64;
Dale Johannesen028084e2007-09-12 03:30:33 +0000533 if (width-j-4 < 64)
534 shiftcount = width-j-4;
535 }
536 }
537 }
Chris Lattner76b2ff42004-02-15 05:55:15 +0000538 } else if (isa<ConstantAggregateZero>(CV)) {
539 Out << "zeroinitializer";
Chris Lattner1e194682002-04-18 18:53:13 +0000540 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
541 // As a special case, print the array as a string if it is an array of
542 // ubytes or an array of sbytes with positive values.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000543 //
Chris Lattner1e194682002-04-18 18:53:13 +0000544 const Type *ETy = CA->getType()->getElementType();
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000545 if (CA->isString()) {
Chris Lattner1e194682002-04-18 18:53:13 +0000546 Out << "c\"";
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000547 PrintEscapedString(CA->getAsString(), Out);
Chris Lattner1e194682002-04-18 18:53:13 +0000548 Out << "\"";
549
550 } else { // Cannot output in string format...
Misha Brukman21bbdb92004-06-04 21:11:51 +0000551 Out << '[';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000552 if (CA->getNumOperands()) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000553 Out << ' ';
Chris Lattner1e194682002-04-18 18:53:13 +0000554 printTypeInt(Out, ETy, TypeTable);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000555 WriteAsOperandInternal(Out, CA->getOperand(0),
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000556 TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000557 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
558 Out << ", ";
Chris Lattner1e194682002-04-18 18:53:13 +0000559 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000560 WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000561 }
562 }
563 Out << " ]";
564 }
565 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000566 if (CS->getType()->isPacked())
567 Out << '<';
Misha Brukman21bbdb92004-06-04 21:11:51 +0000568 Out << '{';
Jim Laskey3bb78742006-02-25 12:27:03 +0000569 unsigned N = CS->getNumOperands();
570 if (N) {
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000571 if (N > 2) {
572 Indent += std::string(IndentSize, ' ');
573 Out << Indent;
574 } else {
575 Out << ' ';
576 }
Chris Lattnerd84bb632002-04-16 21:36:08 +0000577 printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
578
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000579 WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000580
Jim Laskey3bb78742006-02-25 12:27:03 +0000581 for (unsigned i = 1; i < N; i++) {
Chris Lattnerd84bb632002-04-16 21:36:08 +0000582 Out << ", ";
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000583 if (N > 2) Out << Indent;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000584 printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
585
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000586 WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000587 }
Jim Laskey6be3d8e2006-02-27 10:33:53 +0000588 if (N > 2) Indent.resize(Indent.size() - IndentSize);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000589 }
Jim Laskey3bb78742006-02-25 12:27:03 +0000590
Chris Lattnerd84bb632002-04-16 21:36:08 +0000591 Out << " }";
Andrew Lenharth0d124b82007-01-08 18:21:30 +0000592 if (CS->getType()->isPacked())
593 Out << '>';
Reid Spencerd84d35b2007-02-15 02:26:10 +0000594 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
Brian Gaeke02209042004-08-20 06:00:58 +0000595 const Type *ETy = CP->getType()->getElementType();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000596 assert(CP->getNumOperands() > 0 &&
Brian Gaeke02209042004-08-20 06:00:58 +0000597 "Number of operands for a PackedConst must be > 0");
598 Out << '<';
599 Out << ' ';
600 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000601 WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
Brian Gaeke02209042004-08-20 06:00:58 +0000602 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
603 Out << ", ";
604 printTypeInt(Out, ETy, TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000605 WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
Brian Gaeke02209042004-08-20 06:00:58 +0000606 }
607 Out << " >";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000608 } else if (isa<ConstantPointerNull>(CV)) {
609 Out << "null";
610
Chris Lattner5e0b9f22004-10-16 18:08:06 +0000611 } else if (isa<UndefValue>(CV)) {
612 Out << "undef";
613
Chris Lattner3cd8c562002-07-30 18:54:25 +0000614 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer812a1be2006-12-04 05:19:18 +0000615 Out << CE->getOpcodeName();
616 if (CE->isCompare())
617 Out << " " << getPredicateText(CE->getPredicate());
618 Out << " (";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000619
Vikram S. Adveb952b542002-07-14 23:14:45 +0000620 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
621 printTypeInt(Out, (*OI)->getType(), TypeTable);
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000622 WriteAsOperandInternal(Out, *OI, TypeTable, Machine);
Vikram S. Adveb952b542002-07-14 23:14:45 +0000623 if (OI+1 != CE->op_end())
Chris Lattner3cd8c562002-07-30 18:54:25 +0000624 Out << ", ";
Vikram S. Adveb952b542002-07-14 23:14:45 +0000625 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000626
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000627 if (CE->isCast()) {
Chris Lattner83b396b2002-08-15 19:37:43 +0000628 Out << " to ";
629 printTypeInt(Out, CE->getType(), TypeTable);
630 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000631
Misha Brukman21bbdb92004-06-04 21:11:51 +0000632 Out << ')';
Chris Lattner83b396b2002-08-15 19:37:43 +0000633
Chris Lattnerd84bb632002-04-16 21:36:08 +0000634 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000635 Out << "<placeholder or erroneous Constant>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000636 }
637}
638
639
Misha Brukmanc566ca362004-03-02 00:22:19 +0000640/// WriteAsOperand - Write the name of the specified value out to the specified
641/// ostream. This can be useful when you just want to print int %reg126, not
642/// the whole instruction that generated it.
643///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000644static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000645 std::map<const Type*, std::string> &TypeTable,
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000646 SlotMachine *Machine) {
Misha Brukman21bbdb92004-06-04 21:11:51 +0000647 Out << ' ';
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000648 if (V->hasName())
Reid Spencer788e3172007-01-26 08:02:52 +0000649 Out << getLLVMName(V->getName(),
650 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000651 else {
652 const Constant *CV = dyn_cast<Constant>(V);
Chris Lattnera2d810d2006-01-25 22:26:05 +0000653 if (CV && !isa<GlobalValue>(CV)) {
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000654 WriteConstantInt(Out, CV, TypeTable, Machine);
Chris Lattnera2d810d2006-01-25 22:26:05 +0000655 } else if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
656 Out << "asm ";
657 if (IA->hasSideEffects())
658 Out << "sideeffect ";
659 Out << '"';
660 PrintEscapedString(IA->getAsmString(), Out);
661 Out << "\", \"";
662 PrintEscapedString(IA->getConstraintString(), Out);
663 Out << '"';
664 } else {
Reid Spencer788e3172007-01-26 08:02:52 +0000665 char Prefix = '%';
Chris Lattnerd84bb632002-04-16 21:36:08 +0000666 int Slot;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000667 if (Machine) {
Reid Spencer788e3172007-01-26 08:02:52 +0000668 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner5e043322007-01-11 03:54:27 +0000669 Slot = Machine->getGlobalSlot(GV);
Reid Spencer788e3172007-01-26 08:02:52 +0000670 Prefix = '@';
671 } else {
Chris Lattner5e043322007-01-11 03:54:27 +0000672 Slot = Machine->getLocalSlot(V);
Reid Spencer788e3172007-01-26 08:02:52 +0000673 }
Chris Lattnerd84bb632002-04-16 21:36:08 +0000674 } else {
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000675 Machine = createSlotMachine(V);
Chris Lattner5e043322007-01-11 03:54:27 +0000676 if (Machine) {
Reid Spencer788e3172007-01-26 08:02:52 +0000677 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner5e043322007-01-11 03:54:27 +0000678 Slot = Machine->getGlobalSlot(GV);
Reid Spencer788e3172007-01-26 08:02:52 +0000679 Prefix = '@';
680 } else {
Chris Lattner5e043322007-01-11 03:54:27 +0000681 Slot = Machine->getLocalSlot(V);
Reid Spencer788e3172007-01-26 08:02:52 +0000682 }
Chris Lattner5e043322007-01-11 03:54:27 +0000683 } else {
Chris Lattner757ee0b2004-06-09 19:41:19 +0000684 Slot = -1;
Chris Lattner5e043322007-01-11 03:54:27 +0000685 }
Reid Spencer56010e42004-05-26 21:56:09 +0000686 delete Machine;
Chris Lattnerd84bb632002-04-16 21:36:08 +0000687 }
Chris Lattner757ee0b2004-06-09 19:41:19 +0000688 if (Slot != -1)
Reid Spencer788e3172007-01-26 08:02:52 +0000689 Out << Prefix << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +0000690 else
691 Out << "<badref>";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000692 }
693 }
694}
695
Misha Brukmanb22d09c2004-03-01 19:48:13 +0000696/// WriteAsOperand - Write the name of the specified value out to the specified
697/// ostream. This can be useful when you just want to print int %reg126, not
698/// the whole instruction that generated it.
699///
Chris Lattner189d19f2003-11-21 20:23:48 +0000700std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
Chris Lattner0dda8612006-12-06 06:15:43 +0000701 bool PrintType, const Module *Context) {
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000702 std::map<const Type *, std::string> TypeNames;
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000703 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattnerb86620e2001-10-29 16:37:48 +0000704
Chris Lattner98cf1f52002-11-20 18:36:02 +0000705 if (Context)
Chris Lattner5a9f63e2002-07-10 16:48:17 +0000706 fillTypeNameTable(Context, TypeNames);
Chris Lattnerd84bb632002-04-16 21:36:08 +0000707
708 if (PrintType)
709 printTypeInt(Out, V->getType(), TypeNames);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000710
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000711 WriteAsOperandInternal(Out, V, TypeNames, 0);
Chris Lattner5e5abe32001-07-20 19:15:21 +0000712 return Out;
713}
714
Reid Spencer58d30f22004-07-04 11:50:43 +0000715
Chris Lattner189d19f2003-11-21 20:23:48 +0000716namespace llvm {
Chris Lattner2e9fee42001-07-12 23:35:26 +0000717
Chris Lattnerfee714f2001-09-07 16:36:04 +0000718class AssemblyWriter {
Misha Brukmana6619a92004-06-21 21:53:56 +0000719 std::ostream &Out;
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000720 SlotMachine &Machine;
Chris Lattner7bfee412001-10-29 16:05:51 +0000721 const Module *TheModule;
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000722 std::map<const Type *, std::string> TypeNames;
Chris Lattner8339f7d2003-10-30 23:41:03 +0000723 AssemblyAnnotationWriter *AnnotationWriter;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000724public:
Reid Spencer16f2f7f2004-05-26 07:18:52 +0000725 inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
Chris Lattner8339f7d2003-10-30 23:41:03 +0000726 AssemblyAnnotationWriter *AAW)
Misha Brukmana6619a92004-06-21 21:53:56 +0000727 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner7bfee412001-10-29 16:05:51 +0000728
729 // If the module has a symbol table, take all global types and stuff their
730 // names into the TypeNames map.
731 //
Chris Lattnerb86620e2001-10-29 16:37:48 +0000732 fillTypeNameTable(M, TypeNames);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000733 }
734
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000735 inline void write(const Module *M) { printModule(M); }
736 inline void write(const GlobalVariable *G) { printGlobal(G); }
737 inline void write(const GlobalAlias *G) { printAlias(G); }
738 inline void write(const Function *F) { printFunction(F); }
739 inline void write(const BasicBlock *BB) { printBasicBlock(BB); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000740 inline void write(const Instruction *I) { printInstruction(*I); }
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000741 inline void write(const Type *Ty) { printType(Ty); }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000742
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000743 void writeOperand(const Value *Op, bool PrintType);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000744 void writeParamOperand(const Value *Operand, ParameterAttributes Attrs);
Chris Lattner1e194682002-04-18 18:53:13 +0000745
Misha Brukman4685e262004-04-28 15:31:21 +0000746 const Module* getModule() { return TheModule; }
747
Misha Brukmand92f54a2004-11-15 19:30:05 +0000748private:
Chris Lattner7bfee412001-10-29 16:05:51 +0000749 void printModule(const Module *M);
Reid Spencer32af9e82007-01-06 07:24:44 +0000750 void printTypeSymbolTable(const TypeSymbolTable &ST);
Chris Lattner7bfee412001-10-29 16:05:51 +0000751 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000752 void printAlias(const GlobalAlias *GV);
Chris Lattner57698e22002-03-26 18:01:55 +0000753 void printFunction(const Function *F);
Dale Johannesen89268bc2008-02-19 21:38:47 +0000754 void printArgument(const Argument *FA, ParameterAttributes Attrs);
Chris Lattner7bfee412001-10-29 16:05:51 +0000755 void printBasicBlock(const BasicBlock *BB);
Chris Lattner113f4f42002-06-25 16:13:24 +0000756 void printInstruction(const Instruction &I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000757
758 // printType - Go to extreme measures to attempt to print out a short,
759 // symbolic version of a type name.
760 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000761 std::ostream &printType(const Type *Ty) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000762 return printTypeInt(Out, Ty, TypeNames);
Chris Lattnerd816b532002-04-13 20:53:41 +0000763 }
764
765 // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
766 // without considering any symbolic types that we may have equal to it.
767 //
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000768 std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
Chris Lattner7bfee412001-10-29 16:05:51 +0000769
Chris Lattner862e3382001-10-13 06:42:36 +0000770 // printInfoComment - Print a little comment after the instruction indicating
771 // which slot it occupies.
Chris Lattner113f4f42002-06-25 16:13:24 +0000772 void printInfoComment(const Value &V);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000773};
Reid Spencerf43ac622004-05-27 22:04:46 +0000774} // end of llvm namespace
Chris Lattner2f7c9632001-06-06 20:29:01 +0000775
Misha Brukmanc566ca362004-03-02 00:22:19 +0000776/// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
777/// without considering any symbolic types that we may have equal to it.
778///
Chris Lattnerab7d1ab2003-05-08 02:08:14 +0000779std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000780 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
781 Out << "i" << utostr(ITy->getBitWidth());
782 else if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
Reid Spencer8c4914c2006-12-31 05:24:50 +0000783 printType(FTy->getReturnType());
Reid Spencer8c4914c2006-12-31 05:24:50 +0000784 Out << " (";
Chris Lattnerfa829be2004-02-09 04:14:01 +0000785 for (FunctionType::param_iterator I = FTy->param_begin(),
786 E = FTy->param_end(); I != E; ++I) {
787 if (I != FTy->param_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000788 Out << ", ";
Chris Lattnerd84bb632002-04-16 21:36:08 +0000789 printType(*I);
Chris Lattnerd816b532002-04-13 20:53:41 +0000790 }
791 if (FTy->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000792 if (FTy->getNumParams()) Out << ", ";
793 Out << "...";
Chris Lattnerd816b532002-04-13 20:53:41 +0000794 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000795 Out << ')';
Chris Lattner113f4f42002-06-25 16:13:24 +0000796 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000797 if (STy->isPacked())
798 Out << '<';
Misha Brukmana6619a92004-06-21 21:53:56 +0000799 Out << "{ ";
Chris Lattnerac6db752004-02-09 04:37:31 +0000800 for (StructType::element_iterator I = STy->element_begin(),
801 E = STy->element_end(); I != E; ++I) {
802 if (I != STy->element_begin())
Misha Brukmana6619a92004-06-21 21:53:56 +0000803 Out << ", ";
Chris Lattnerd816b532002-04-13 20:53:41 +0000804 printType(*I);
805 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000806 Out << " }";
Andrew Lenharthdcb3c972006-12-08 18:06:16 +0000807 if (STy->isPacked())
808 Out << '>';
Chris Lattner113f4f42002-06-25 16:13:24 +0000809 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
Christopher Lambac7d6312007-12-18 03:49:35 +0000810 printType(PTy->getElementType());
811 if (unsigned AddressSpace = PTy->getAddressSpace())
812 Out << " addrspace(" << AddressSpace << ")";
813 Out << '*';
Chris Lattner113f4f42002-06-25 16:13:24 +0000814 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000815 Out << '[' << ATy->getNumElements() << " x ";
Misha Brukman21bbdb92004-06-04 21:11:51 +0000816 printType(ATy->getElementType()) << ']';
Reid Spencerd84d35b2007-02-15 02:26:10 +0000817 } else if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
Reid Spencere203d352004-08-20 15:37:30 +0000818 Out << '<' << PTy->getNumElements() << " x ";
819 printType(PTy->getElementType()) << '>';
820 }
Reid Spencerde46e482006-11-02 20:25:50 +0000821 else if (isa<OpaqueType>(Ty)) {
Misha Brukmana6619a92004-06-21 21:53:56 +0000822 Out << "opaque";
Chris Lattnerd816b532002-04-13 20:53:41 +0000823 } else {
Vikram S. Adveb952b542002-07-14 23:14:45 +0000824 if (!Ty->isPrimitiveType())
Misha Brukmana6619a92004-06-21 21:53:56 +0000825 Out << "<unknown derived type>";
Chris Lattnerd816b532002-04-13 20:53:41 +0000826 printType(Ty);
827 }
Misha Brukmana6619a92004-06-21 21:53:56 +0000828 return Out;
Chris Lattnerd816b532002-04-13 20:53:41 +0000829}
830
831
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000832void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
833 if (Operand == 0) {
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000834 Out << "<null operand!>";
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000835 } else {
836 if (PrintType) { Out << ' '; printType(Operand->getType()); }
837 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
Chris Lattner08f7d0c2005-02-24 16:58:29 +0000838 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000839}
840
Dale Johannesen89268bc2008-02-19 21:38:47 +0000841void AssemblyWriter::writeParamOperand(const Value *Operand,
842 ParameterAttributes Attrs) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000843 if (Operand == 0) {
844 Out << "<null operand!>";
845 } else {
846 Out << ' ';
847 // Print the type
848 printType(Operand->getType());
849 // Print parameter attributes list
850 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +0000851 Out << ' ' << ParamAttr::getAsString(Attrs);
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000852 // Print the operand
853 WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
854 }
855}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000856
Chris Lattner7bfee412001-10-29 16:05:51 +0000857void AssemblyWriter::printModule(const Module *M) {
Chris Lattner4d8689e2005-03-02 23:12:40 +0000858 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +0000859 // Don't print the ID if it will start a new line (which would
Chris Lattner4d8689e2005-03-02 23:12:40 +0000860 // require a comment char before it).
861 M->getModuleIdentifier().find('\n') == std::string::npos)
862 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
863
Owen Andersone2237542006-10-18 02:21:12 +0000864 if (!M->getDataLayout().empty())
Chris Lattner04897162006-10-22 06:06:56 +0000865 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencer48f98c82004-07-25 21:44:54 +0000866 if (!M->getTargetTriple().empty())
Reid Spencerffec7df2004-07-25 21:29:43 +0000867 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanb1c93172005-04-21 23:48:37 +0000868
Chris Lattnereef2fe72006-01-24 04:13:11 +0000869 if (!M->getModuleInlineAsm().empty()) {
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000870 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnereef2fe72006-01-24 04:13:11 +0000871 std::string Asm = M->getModuleInlineAsm();
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000872 size_t CurPos = 0;
873 size_t NewLine = Asm.find_first_of('\n', CurPos);
874 while (NewLine != std::string::npos) {
875 // We found a newline, print the portion of the asm string from the
876 // last newline up to this newline.
877 Out << "module asm \"";
878 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
879 Out);
880 Out << "\"\n";
881 CurPos = NewLine+1;
882 NewLine = Asm.find_first_of('\n', CurPos);
883 }
Chris Lattner3acaf5c2006-01-24 00:40:17 +0000884 Out << "module asm \"";
Chris Lattnerefaf35d2006-01-24 00:45:30 +0000885 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
Chris Lattner6ed87bd2006-01-23 23:03:36 +0000886 Out << "\"\n";
887 }
888
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000889 // Loop over the dependent libraries and emit them.
Chris Lattner730cfe42004-09-14 04:51:44 +0000890 Module::lib_iterator LI = M->lib_begin();
891 Module::lib_iterator LE = M->lib_end();
Reid Spencer48f98c82004-07-25 21:44:54 +0000892 if (LI != LE) {
Chris Lattner730cfe42004-09-14 04:51:44 +0000893 Out << "deplibs = [ ";
894 while (LI != LE) {
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000895 Out << '"' << *LI << '"';
Reid Spencerffec7df2004-07-25 21:29:43 +0000896 ++LI;
Chris Lattner730cfe42004-09-14 04:51:44 +0000897 if (LI != LE)
898 Out << ", ";
Reid Spencerffec7df2004-07-25 21:29:43 +0000899 }
900 Out << " ]\n";
Reid Spencercc5ff642004-07-25 18:08:18 +0000901 }
Reid Spencerb9e08772004-09-13 23:44:23 +0000902
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000903 // Loop over the symbol table, emitting all named constants.
Reid Spencer32af9e82007-01-06 07:24:44 +0000904 printTypeSymbolTable(M->getTypeSymbolTable());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000905
Chris Lattner54932b02006-12-06 04:41:52 +0000906 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
907 I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000908 printGlobal(I);
Chris Lattnerd2747052007-04-26 02:24:10 +0000909
910 // Output all aliases.
911 if (!M->alias_empty()) Out << "\n";
912 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
913 I != E; ++I)
914 printAlias(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000915
Chris Lattner2cdd49d2004-09-14 05:06:58 +0000916 // Output all of the functions.
Chris Lattner113f4f42002-06-25 16:13:24 +0000917 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
918 printFunction(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +0000919}
920
Chris Lattner7bfee412001-10-29 16:05:51 +0000921void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Reid Spencer788e3172007-01-26 08:02:52 +0000922 if (GV->hasName()) Out << getLLVMName(GV->getName(), GlobalPrefix) << " = ";
Chris Lattner37798642001-09-18 04:01:05 +0000923
Bill Wendlingd21d90c2008-01-15 21:16:32 +0000924 if (!GV->hasInitializer()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000925 switch (GV->getLinkage()) {
926 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
927 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
928 default: Out << "external "; break;
Bill Wendlingd21d90c2008-01-15 21:16:32 +0000929 }
930 } else {
Chris Lattner379a8d22003-04-16 20:28:45 +0000931 switch (GV->getLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000932 case GlobalValue::InternalLinkage: Out << "internal "; break;
933 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
934 case GlobalValue::WeakLinkage: Out << "weak "; break;
935 case GlobalValue::AppendingLinkage: Out << "appending "; break;
936 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
937 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
938 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
939 case GlobalValue::ExternalLinkage: break;
Misha Brukman70457632004-11-14 21:04:34 +0000940 case GlobalValue::GhostLinkage:
Bill Wendlingf3baad32006-12-07 01:30:32 +0000941 cerr << "GhostLinkage not allowed in AsmWriter!\n";
Misha Brukman70457632004-11-14 21:04:34 +0000942 abort();
Chris Lattner379a8d22003-04-16 20:28:45 +0000943 }
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000944 switch (GV->getVisibility()) {
Chris Lattner90d2e422007-01-15 18:28:18 +0000945 default: assert(0 && "Invalid visibility style!");
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000946 case GlobalValue::DefaultVisibility: break;
947 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
Anton Korobeynikov39f3cff2007-04-29 18:35:00 +0000948 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000949 }
950 }
Lauro Ramos Venancio749e4662007-04-12 18:32:50 +0000951
952 if (GV->isThreadLocal()) Out << "thread_local ";
Misha Brukmana6619a92004-06-21 21:53:56 +0000953 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner2413b162001-12-04 00:03:30 +0000954 printType(GV->getType()->getElementType());
Chris Lattner37798642001-09-18 04:01:05 +0000955
Reid Spenceraccd7c72004-07-17 23:47:01 +0000956 if (GV->hasInitializer()) {
957 Constant* C = cast<Constant>(GV->getInitializer());
958 assert(C && "GlobalVar initializer isn't constant?");
Chris Lattner78e2e8b2006-12-06 06:24:27 +0000959 writeOperand(GV->getInitializer(), false);
Reid Spenceraccd7c72004-07-17 23:47:01 +0000960 }
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000961
Christopher Lamb54dd24c2007-12-11 08:59:05 +0000962 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
963 Out << " addrspace(" << AddressSpace << ") ";
964
Chris Lattner4b96c542005-11-12 00:10:19 +0000965 if (GV->hasSection())
966 Out << ", section \"" << GV->getSection() << '"';
967 if (GV->getAlignment())
Chris Lattnerf8a974d2005-11-06 06:48:53 +0000968 Out << ", align " << GV->getAlignment();
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000969
Chris Lattner113f4f42002-06-25 16:13:24 +0000970 printInfoComment(*GV);
Misha Brukmana6619a92004-06-21 21:53:56 +0000971 Out << "\n";
Chris Lattnerda975502001-09-10 07:58:01 +0000972}
973
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000974void AssemblyWriter::printAlias(const GlobalAlias *GA) {
975 Out << getLLVMName(GA->getName(), GlobalPrefix) << " = ";
976 switch (GA->getVisibility()) {
977 default: assert(0 && "Invalid visibility style!");
978 case GlobalValue::DefaultVisibility: break;
979 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
Anton Korobeynikov39f3cff2007-04-29 18:35:00 +0000980 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000981 }
982
983 Out << "alias ";
984
985 switch (GA->getLinkage()) {
986 case GlobalValue::WeakLinkage: Out << "weak "; break;
987 case GlobalValue::InternalLinkage: Out << "internal "; break;
988 case GlobalValue::ExternalLinkage: break;
989 default:
990 assert(0 && "Invalid alias linkage");
991 }
992
Anton Korobeynikov546ea7e2007-04-29 18:02:48 +0000993 const Constant *Aliasee = GA->getAliasee();
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000994
995 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
996 printType(GV->getType());
997 Out << " " << getLLVMName(GV->getName(), GlobalPrefix);
998 } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
999 printType(F->getFunctionType());
1000 Out << "* ";
1001
1002 if (!F->getName().empty())
1003 Out << getLLVMName(F->getName(), GlobalPrefix);
1004 else
1005 Out << "@\"\"";
Anton Korobeynikov72d5d422008-03-22 08:17:17 +00001006 } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Aliasee)) {
1007 printType(GA->getType());
1008 Out << " " << getLLVMName(GA->getName(), GlobalPrefix);
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +00001009 } else {
1010 const ConstantExpr *CE = 0;
1011 if ((CE = dyn_cast<ConstantExpr>(Aliasee)) &&
1012 (CE->getOpcode() == Instruction::BitCast)) {
1013 writeOperand(CE, false);
1014 } else
1015 assert(0 && "Unsupported aliasee");
1016 }
1017
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001018 printInfoComment(*GA);
1019 Out << "\n";
1020}
1021
Reid Spencer32af9e82007-01-06 07:24:44 +00001022void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
Reid Spencere7e96712004-05-25 08:53:40 +00001023 // Print the types.
Reid Spencer32af9e82007-01-06 07:24:44 +00001024 for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
1025 TI != TE; ++TI) {
Reid Spencer788e3172007-01-26 08:02:52 +00001026 Out << "\t" << getLLVMName(TI->first, LocalPrefix) << " = type ";
Reid Spencere7e96712004-05-25 08:53:40 +00001027
1028 // Make sure we print out at least one level of the type structure, so
1029 // that we do not get %FILE = type %FILE
1030 //
1031 printTypeAtLeastOneLevel(TI->second) << "\n";
1032 }
Reid Spencer32af9e82007-01-06 07:24:44 +00001033}
1034
Misha Brukmanc566ca362004-03-02 00:22:19 +00001035/// printFunction - Print all aspects of a function.
1036///
Chris Lattner113f4f42002-06-25 16:13:24 +00001037void AssemblyWriter::printFunction(const Function *F) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001038 // Print out the return type and name...
Misha Brukmana6619a92004-06-21 21:53:56 +00001039 Out << "\n";
Chris Lattner379a8d22003-04-16 20:28:45 +00001040
Misha Brukmana6619a92004-06-21 21:53:56 +00001041 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001042
Reid Spencer5301e7c2007-01-30 20:08:39 +00001043 if (F->isDeclaration())
Chris Lattner10f03a62007-08-19 22:15:26 +00001044 Out << "declare ";
1045 else
Reid Spencer7ce2d2a2006-12-29 20:29:48 +00001046 Out << "define ";
Chris Lattner10f03a62007-08-19 22:15:26 +00001047
1048 switch (F->getLinkage()) {
1049 case GlobalValue::InternalLinkage: Out << "internal "; break;
1050 case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break;
1051 case GlobalValue::WeakLinkage: Out << "weak "; break;
1052 case GlobalValue::AppendingLinkage: Out << "appending "; break;
1053 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
1054 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
1055 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
1056 case GlobalValue::ExternalLinkage: break;
1057 case GlobalValue::GhostLinkage:
1058 cerr << "GhostLinkage not allowed in AsmWriter!\n";
1059 abort();
1060 }
1061 switch (F->getVisibility()) {
1062 default: assert(0 && "Invalid visibility style!");
1063 case GlobalValue::DefaultVisibility: break;
1064 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1065 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
Reid Spencer7ce2d2a2006-12-29 20:29:48 +00001066 }
Chris Lattner379a8d22003-04-16 20:28:45 +00001067
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001068 // Print the calling convention.
1069 switch (F->getCallingConv()) {
1070 case CallingConv::C: break; // default
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001071 case CallingConv::Fast: Out << "fastcc "; break;
1072 case CallingConv::Cold: Out << "coldcc "; break;
1073 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1074 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001075 default: Out << "cc" << F->getCallingConv() << " "; break;
1076 }
1077
Reid Spencer8c4914c2006-12-31 05:24:50 +00001078 const FunctionType *FT = F->getFunctionType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001079 const PAListPtr &Attrs = F->getParamAttrs();
Misha Brukman21bbdb92004-06-04 21:11:51 +00001080 printType(F->getReturnType()) << ' ';
Chris Lattner5b337482003-10-18 05:57:43 +00001081 if (!F->getName().empty())
Reid Spencer788e3172007-01-26 08:02:52 +00001082 Out << getLLVMName(F->getName(), GlobalPrefix);
Chris Lattner5b337482003-10-18 05:57:43 +00001083 else
Reid Spencer788e3172007-01-26 08:02:52 +00001084 Out << "@\"\"";
Misha Brukmana6619a92004-06-21 21:53:56 +00001085 Out << '(';
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001086 Machine.incorporateFunction(F);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001087
Chris Lattner7bfee412001-10-29 16:05:51 +00001088 // Loop over the arguments, printing them...
Chris Lattnerfee714f2001-09-07 16:36:04 +00001089
Reid Spencer8c4914c2006-12-31 05:24:50 +00001090 unsigned Idx = 1;
Chris Lattner82738fe2007-04-18 00:57:22 +00001091 if (!F->isDeclaration()) {
1092 // If this isn't a declaration, print the argument names as well.
1093 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1094 I != E; ++I) {
1095 // Insert commas as we go... the first arg doesn't get a comma
1096 if (I != F->arg_begin()) Out << ", ";
Chris Lattner8a923e72008-03-12 17:45:29 +00001097 printArgument(I, Attrs.getParamAttrs(Idx));
Chris Lattner82738fe2007-04-18 00:57:22 +00001098 Idx++;
1099 }
1100 } else {
1101 // Otherwise, print the types from the function type.
1102 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1103 // Insert commas as we go... the first arg doesn't get a comma
1104 if (i) Out << ", ";
1105
1106 // Output type...
1107 printType(FT->getParamType(i));
1108
Chris Lattner8a923e72008-03-12 17:45:29 +00001109 ParameterAttributes ArgAttrs = Attrs.getParamAttrs(i+1);
Chris Lattner82738fe2007-04-18 00:57:22 +00001110 if (ArgAttrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001111 Out << ' ' << ParamAttr::getAsString(ArgAttrs);
Chris Lattner82738fe2007-04-18 00:57:22 +00001112 }
Reid Spencer8c4914c2006-12-31 05:24:50 +00001113 }
Chris Lattnerfee714f2001-09-07 16:36:04 +00001114
1115 // Finish printing arguments...
Chris Lattner113f4f42002-06-25 16:13:24 +00001116 if (FT->isVarArg()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001117 if (FT->getNumParams()) Out << ", ";
1118 Out << "..."; // Output varargs portion of signature!
Chris Lattnerfee714f2001-09-07 16:36:04 +00001119 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001120 Out << ')';
Chris Lattner8a923e72008-03-12 17:45:29 +00001121 ParameterAttributes RetAttrs = Attrs.getParamAttrs(0);
1122 if (RetAttrs != ParamAttr::None)
1123 Out << ' ' << ParamAttr::getAsString(Attrs.getParamAttrs(0));
Chris Lattner4b96c542005-11-12 00:10:19 +00001124 if (F->hasSection())
1125 Out << " section \"" << F->getSection() << '"';
Chris Lattnerf8a974d2005-11-06 06:48:53 +00001126 if (F->getAlignment())
1127 Out << " align " << F->getAlignment();
Gordon Henriksen71183b62007-12-10 03:18:06 +00001128 if (F->hasCollector())
1129 Out << " gc \"" << F->getCollector() << '"';
Chris Lattner4b96c542005-11-12 00:10:19 +00001130
Reid Spencer5301e7c2007-01-30 20:08:39 +00001131 if (F->isDeclaration()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001132 Out << "\n";
Chris Lattnerb2f02e52002-05-06 03:00:40 +00001133 } else {
Chris Lattnerd5fbc8f2008-04-21 06:12:55 +00001134 Out << " {";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001135
Chris Lattner6915f8f2002-04-07 22:49:37 +00001136 // Output all of its basic blocks... for the function
Chris Lattner113f4f42002-06-25 16:13:24 +00001137 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1138 printBasicBlock(I);
Chris Lattnerfee714f2001-09-07 16:36:04 +00001139
Misha Brukmana6619a92004-06-21 21:53:56 +00001140 Out << "}\n";
Chris Lattnerfee714f2001-09-07 16:36:04 +00001141 }
1142
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001143 Machine.purgeFunction();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001144}
1145
Misha Brukmanc566ca362004-03-02 00:22:19 +00001146/// printArgument - This member is called for every argument that is passed into
1147/// the function. Simply print it out
1148///
Dale Johannesen89268bc2008-02-19 21:38:47 +00001149void AssemblyWriter::printArgument(const Argument *Arg,
1150 ParameterAttributes Attrs) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001151 // Output type...
Chris Lattner7bfee412001-10-29 16:05:51 +00001152 printType(Arg->getType());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001153
Duncan Sandsad0ea2d2007-11-27 13:23:08 +00001154 // Output parameter attributes list
Reid Spencera472f662007-04-11 02:44:20 +00001155 if (Attrs != ParamAttr::None)
Chris Lattner8a923e72008-03-12 17:45:29 +00001156 Out << ' ' << ParamAttr::getAsString(Attrs);
Reid Spencer8c4914c2006-12-31 05:24:50 +00001157
Chris Lattner2f7c9632001-06-06 20:29:01 +00001158 // Output name, if available...
1159 if (Arg->hasName())
Reid Spencer788e3172007-01-26 08:02:52 +00001160 Out << ' ' << getLLVMName(Arg->getName(), LocalPrefix);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001161}
1162
Misha Brukmanc566ca362004-03-02 00:22:19 +00001163/// printBasicBlock - This member is called for each basic block in a method.
1164///
Chris Lattner7bfee412001-10-29 16:05:51 +00001165void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Nick Lewycky4d43d3c2008-04-25 16:53:59 +00001166 if (BB->hasName()) { // Print out the label if it exists...
1167 Out << "\n" << getLLVMName(BB->getName(), LabelPrefix) << ':';
1168 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Chris Lattner67bec132008-04-21 04:20:33 +00001169 Out << "\n; <label>:";
Chris Lattner5e043322007-01-11 03:54:27 +00001170 int Slot = Machine.getLocalSlot(BB);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001171 if (Slot != -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001172 Out << Slot;
Chris Lattner757ee0b2004-06-09 19:41:19 +00001173 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001174 Out << "<badref>";
Chris Lattner58185f22002-10-02 19:38:55 +00001175 }
Chris Lattner2447ef52003-11-20 00:09:43 +00001176
1177 if (BB->getParent() == 0)
Misha Brukmana6619a92004-06-21 21:53:56 +00001178 Out << "\t\t; Error: Block without parent!";
Chris Lattnerff834c02008-04-22 02:45:44 +00001179 else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
1180 // Output predecessors for the block...
1181 Out << "\t\t;";
1182 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
1183
1184 if (PI == PE) {
1185 Out << " No predecessors!";
1186 } else {
1187 Out << " preds =";
1188 writeOperand(*PI, false);
1189 for (++PI; PI != PE; ++PI) {
1190 Out << ',';
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001191 writeOperand(*PI, false);
Chris Lattner00211f12003-11-16 22:59:57 +00001192 }
Chris Lattner58185f22002-10-02 19:38:55 +00001193 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001194 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001195
Chris Lattnerff834c02008-04-22 02:45:44 +00001196 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001197
Misha Brukmana6619a92004-06-21 21:53:56 +00001198 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001199
Chris Lattnerfee714f2001-09-07 16:36:04 +00001200 // Output all of the instructions in the basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +00001201 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1202 printInstruction(*I);
Chris Lattner96cdd272004-03-08 18:51:45 +00001203
Misha Brukmana6619a92004-06-21 21:53:56 +00001204 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001205}
1206
Chris Lattner862e3382001-10-13 06:42:36 +00001207
Misha Brukmanc566ca362004-03-02 00:22:19 +00001208/// printInfoComment - Print a little comment after the instruction indicating
1209/// which slot it occupies.
1210///
Chris Lattner113f4f42002-06-25 16:13:24 +00001211void AssemblyWriter::printInfoComment(const Value &V) {
1212 if (V.getType() != Type::VoidTy) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001213 Out << "\t\t; <";
Misha Brukman21bbdb92004-06-04 21:11:51 +00001214 printType(V.getType()) << '>';
Chris Lattner862e3382001-10-13 06:42:36 +00001215
Chris Lattner113f4f42002-06-25 16:13:24 +00001216 if (!V.hasName()) {
Chris Lattner5e043322007-01-11 03:54:27 +00001217 int SlotNum;
1218 if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1219 SlotNum = Machine.getGlobalSlot(GV);
1220 else
1221 SlotNum = Machine.getLocalSlot(&V);
Chris Lattner757ee0b2004-06-09 19:41:19 +00001222 if (SlotNum == -1)
Misha Brukmana6619a92004-06-21 21:53:56 +00001223 Out << ":<badref>";
Reid Spencer8beac692004-06-09 15:26:53 +00001224 else
Misha Brukmana6619a92004-06-21 21:53:56 +00001225 Out << ':' << SlotNum; // Print out the def slot taken.
Chris Lattner862e3382001-10-13 06:42:36 +00001226 }
Chris Lattnerb6c21db2005-02-01 01:24:01 +00001227 Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
Chris Lattner862e3382001-10-13 06:42:36 +00001228 }
1229}
1230
Reid Spencere7141c82006-08-28 01:02:49 +00001231// This member is called for each Instruction in a function..
Chris Lattner113f4f42002-06-25 16:13:24 +00001232void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001233 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001234
Misha Brukmana6619a92004-06-21 21:53:56 +00001235 Out << "\t";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001236
1237 // Print out name if it exists...
Chris Lattner113f4f42002-06-25 16:13:24 +00001238 if (I.hasName())
Reid Spencer788e3172007-01-26 08:02:52 +00001239 Out << getLLVMName(I.getName(), LocalPrefix) << " = ";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001240
Chris Lattner06038452005-05-06 05:51:46 +00001241 // If this is a volatile load or store, print out the volatile marker.
Chris Lattner504f9242003-09-08 17:45:59 +00001242 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
Chris Lattner06038452005-05-06 05:51:46 +00001243 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001244 Out << "volatile ";
Chris Lattner06038452005-05-06 05:51:46 +00001245 } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1246 // If this is a call, check if it's a tail call.
1247 Out << "tail ";
1248 }
Chris Lattner504f9242003-09-08 17:45:59 +00001249
Chris Lattner2f7c9632001-06-06 20:29:01 +00001250 // Print out the opcode...
Misha Brukmana6619a92004-06-21 21:53:56 +00001251 Out << I.getOpcodeName();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001252
Reid Spencer45e52392006-12-03 06:27:29 +00001253 // Print out the compare instruction predicates
1254 if (const FCmpInst *FCI = dyn_cast<FCmpInst>(&I)) {
Reid Spencer812a1be2006-12-04 05:19:18 +00001255 Out << " " << getPredicateText(FCI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001256 } else if (const ICmpInst *ICI = dyn_cast<ICmpInst>(&I)) {
Reid Spencer812a1be2006-12-04 05:19:18 +00001257 Out << " " << getPredicateText(ICI->getPredicate());
Reid Spencer45e52392006-12-03 06:27:29 +00001258 }
1259
Chris Lattner2f7c9632001-06-06 20:29:01 +00001260 // Print out the type of the operands...
Chris Lattner113f4f42002-06-25 16:13:24 +00001261 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner2f7c9632001-06-06 20:29:01 +00001262
1263 // Special case conditional branches to swizzle the condition out to the front
Chris Lattner113f4f42002-06-25 16:13:24 +00001264 if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1265 writeOperand(I.getOperand(2), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001266 Out << ',';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001267 writeOperand(Operand, true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001268 Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001269 writeOperand(I.getOperand(1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001270
Chris Lattner8d48df22002-04-13 18:34:38 +00001271 } else if (isa<SwitchInst>(I)) {
Chris Lattner2f7c9632001-06-06 20:29:01 +00001272 // Special case switch statement to get formatting nice and correct...
Misha Brukmana6619a92004-06-21 21:53:56 +00001273 writeOperand(Operand , true); Out << ',';
1274 writeOperand(I.getOperand(1), true); Out << " [";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001275
Chris Lattner113f4f42002-06-25 16:13:24 +00001276 for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001277 Out << "\n\t\t";
1278 writeOperand(I.getOperand(op ), true); Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001279 writeOperand(I.getOperand(op+1), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001280 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001281 Out << "\n\t]";
Chris Lattnerda558102001-10-02 03:41:24 +00001282 } else if (isa<PHINode>(I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001283 Out << ' ';
Chris Lattner113f4f42002-06-25 16:13:24 +00001284 printType(I.getType());
Misha Brukmana6619a92004-06-21 21:53:56 +00001285 Out << ' ';
Chris Lattner2f7c9632001-06-06 20:29:01 +00001286
Chris Lattner113f4f42002-06-25 16:13:24 +00001287 for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001288 if (op) Out << ", ";
Misha Brukmanb1c93172005-04-21 23:48:37 +00001289 Out << '[';
Misha Brukmana6619a92004-06-21 21:53:56 +00001290 writeOperand(I.getOperand(op ), false); Out << ',';
1291 writeOperand(I.getOperand(op+1), false); Out << " ]";
Chris Lattner931ef3b2001-06-11 15:04:20 +00001292 }
Devang Patel2f2ff152008-02-23 00:47:00 +00001293 } else if (const GetResultInst *GRI = dyn_cast<GetResultInst>(&I)) {
Devang Pateld9955512008-02-23 01:04:26 +00001294 writeOperand(I.getOperand(0), true);
Devang Patel2f2ff152008-02-23 00:47:00 +00001295 Out << ", " << GRI->getIndex();
Devang Patel59643e52008-02-23 00:35:18 +00001296 } else if (isa<ReturnInst>(I) && !Operand) {
1297 Out << " void";
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001298 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1299 // Print the calling convention being used.
1300 switch (CI->getCallingConv()) {
1301 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001302 case CallingConv::Fast: Out << " fastcc"; break;
1303 case CallingConv::Cold: Out << " coldcc"; break;
Chris Lattnerf5270372007-11-18 18:32:16 +00001304 case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break;
1305 case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001306 default: Out << " cc" << CI->getCallingConv(); break;
1307 }
1308
Reid Spencer1517de32007-04-09 06:10:42 +00001309 const PointerType *PTy = cast<PointerType>(Operand->getType());
1310 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1311 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001312 const PAListPtr &PAL = CI->getParamAttrs();
Chris Lattner2f2d9472001-11-06 21:28:12 +00001313
Chris Lattner463d6a52003-08-05 15:34:45 +00001314 // If possible, print out the short form of the call instruction. We can
Chris Lattner6915f8f2002-04-07 22:49:37 +00001315 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner463d6a52003-08-05 15:34:45 +00001316 // and if the return type is not a pointer to a function.
Chris Lattner2f2d9472001-11-06 21:28:12 +00001317 //
Chris Lattner463d6a52003-08-05 15:34:45 +00001318 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001319 (!isa<PointerType>(RetTy) ||
Chris Lattnerd9a36a62002-07-25 20:58:51 +00001320 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001321 Out << ' '; printType(RetTy);
Chris Lattner2f2d9472001-11-06 21:28:12 +00001322 writeOperand(Operand, false);
1323 } else {
1324 writeOperand(Operand, true);
1325 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001326 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001327 for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1328 if (op > 1)
1329 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001330 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op));
Chris Lattner2f7c9632001-06-06 20:29:01 +00001331 }
Misha Brukmana6619a92004-06-21 21:53:56 +00001332 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001333 if (PAL.getParamAttrs(0) != ParamAttr::None)
1334 Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0));
Chris Lattner113f4f42002-06-25 16:13:24 +00001335 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Reid Spencer1517de32007-04-09 06:10:42 +00001336 const PointerType *PTy = cast<PointerType>(Operand->getType());
1337 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1338 const Type *RetTy = FTy->getReturnType();
Chris Lattner8a923e72008-03-12 17:45:29 +00001339 const PAListPtr &PAL = II->getParamAttrs();
Chris Lattner463d6a52003-08-05 15:34:45 +00001340
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001341 // Print the calling convention being used.
1342 switch (II->getCallingConv()) {
1343 case CallingConv::C: break; // default
Chris Lattner29d20852006-05-19 21:58:52 +00001344 case CallingConv::Fast: Out << " fastcc"; break;
1345 case CallingConv::Cold: Out << " coldcc"; break;
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +00001346 case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break;
1347 case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
Chris Lattnerf7b6d312005-05-06 20:26:43 +00001348 default: Out << " cc" << II->getCallingConv(); break;
1349 }
1350
Chris Lattner463d6a52003-08-05 15:34:45 +00001351 // If possible, print out the short form of the invoke instruction. We can
1352 // only do this if the first argument is a pointer to a nonvararg function,
1353 // and if the return type is not a pointer to a function.
1354 //
1355 if (!FTy->isVarArg() &&
Misha Brukmanb1c93172005-04-21 23:48:37 +00001356 (!isa<PointerType>(RetTy) ||
Chris Lattner463d6a52003-08-05 15:34:45 +00001357 !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001358 Out << ' '; printType(RetTy);
Chris Lattner463d6a52003-08-05 15:34:45 +00001359 writeOperand(Operand, false);
1360 } else {
1361 writeOperand(Operand, true);
1362 }
1363
Misha Brukmana6619a92004-06-21 21:53:56 +00001364 Out << '(';
Reid Spencer8c4914c2006-12-31 05:24:50 +00001365 for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1366 if (op > 3)
1367 Out << ',';
Chris Lattner8a923e72008-03-12 17:45:29 +00001368 writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op-2));
Chris Lattner862e3382001-10-13 06:42:36 +00001369 }
1370
Reid Spencer136a91c2007-01-05 17:06:19 +00001371 Out << " )";
Chris Lattner8a923e72008-03-12 17:45:29 +00001372 if (PAL.getParamAttrs(0) != ParamAttr::None)
1373 Out << " " << ParamAttr::getAsString(PAL.getParamAttrs(0));
Reid Spencer136a91c2007-01-05 17:06:19 +00001374 Out << "\n\t\t\tto";
Chris Lattner862e3382001-10-13 06:42:36 +00001375 writeOperand(II->getNormalDest(), true);
Misha Brukmana6619a92004-06-21 21:53:56 +00001376 Out << " unwind";
Chris Lattnerfae8ab32004-02-08 21:44:31 +00001377 writeOperand(II->getUnwindDest(), true);
Chris Lattner862e3382001-10-13 06:42:36 +00001378
Chris Lattner113f4f42002-06-25 16:13:24 +00001379 } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001380 Out << ' ';
Chris Lattner8d48df22002-04-13 18:34:38 +00001381 printType(AI->getType()->getElementType());
1382 if (AI->isArrayAllocation()) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001383 Out << ',';
Chris Lattner8d48df22002-04-13 18:34:38 +00001384 writeOperand(AI->getArraySize(), true);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001385 }
Nate Begeman848622f2005-11-05 09:21:28 +00001386 if (AI->getAlignment()) {
Chris Lattner7aeee3a2005-11-05 21:20:34 +00001387 Out << ", align " << AI->getAlignment();
Nate Begeman848622f2005-11-05 09:21:28 +00001388 }
Chris Lattner862e3382001-10-13 06:42:36 +00001389 } else if (isa<CastInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001390 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001391 Out << " to ";
Chris Lattner113f4f42002-06-25 16:13:24 +00001392 printType(I.getType());
Chris Lattner5b337482003-10-18 05:57:43 +00001393 } else if (isa<VAArgInst>(I)) {
Chris Lattnerc96e96b2003-11-17 01:17:04 +00001394 if (Operand) writeOperand(Operand, true); // Work with broken code
Misha Brukmana6619a92004-06-21 21:53:56 +00001395 Out << ", ";
Chris Lattnerf70da102003-05-08 02:44:12 +00001396 printType(I.getType());
Chris Lattner2f7c9632001-06-06 20:29:01 +00001397 } else if (Operand) { // Print the normal way...
1398
Misha Brukmanb1c93172005-04-21 23:48:37 +00001399 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner2f7c9632001-06-06 20:29:01 +00001400 // omit the type from all but the first operand. If the instruction has
1401 // different type operands (for example br), then they are all printed.
1402 bool PrintAllTypes = false;
1403 const Type *TheType = Operand->getType();
Chris Lattner2f7c9632001-06-06 20:29:01 +00001404
Reid Spencer0cdd04f2007-02-02 13:54:55 +00001405 // Select, Store and ShuffleVector always print all types.
Devang Patelce556d92008-03-04 22:05:14 +00001406 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
1407 || isa<ReturnInst>(I)) {
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001408 PrintAllTypes = true;
1409 } else {
1410 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1411 Operand = I.getOperand(i);
1412 if (Operand->getType() != TheType) {
1413 PrintAllTypes = true; // We have differing types! Print them all!
1414 break;
1415 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001416 }
1417 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001418
Chris Lattner7bfee412001-10-29 16:05:51 +00001419 if (!PrintAllTypes) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001420 Out << ' ';
Chris Lattnerdeccfaf2003-04-16 20:20:02 +00001421 printType(TheType);
Chris Lattner7bfee412001-10-29 16:05:51 +00001422 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001423
Chris Lattner113f4f42002-06-25 16:13:24 +00001424 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Misha Brukmana6619a92004-06-21 21:53:56 +00001425 if (i) Out << ',';
Chris Lattner113f4f42002-06-25 16:13:24 +00001426 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001427 }
1428 }
Christopher Lamb84485702007-04-22 19:24:39 +00001429
1430 // Print post operand alignment for load/store
1431 if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1432 Out << ", align " << cast<LoadInst>(I).getAlignment();
1433 } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1434 Out << ", align " << cast<StoreInst>(I).getAlignment();
1435 }
Chris Lattner2f7c9632001-06-06 20:29:01 +00001436
Chris Lattner862e3382001-10-13 06:42:36 +00001437 printInfoComment(I);
Misha Brukmana6619a92004-06-21 21:53:56 +00001438 Out << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +00001439}
1440
1441
1442//===----------------------------------------------------------------------===//
1443// External Interface declarations
1444//===----------------------------------------------------------------------===//
1445
Chris Lattner8339f7d2003-10-30 23:41:03 +00001446void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001447 SlotMachine SlotTable(this);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001448 AssemblyWriter W(o, SlotTable, this, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001449 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001450}
1451
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001452void GlobalVariable::print(std::ostream &o) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001453 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001454 AssemblyWriter W(o, SlotTable, getParent(), 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001455 W.write(this);
Chris Lattneradfe0d12001-09-10 20:08:19 +00001456}
1457
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001458void GlobalAlias::print(std::ostream &o) const {
1459 SlotMachine SlotTable(getParent());
1460 AssemblyWriter W(o, SlotTable, getParent(), 0);
1461 W.write(this);
1462}
1463
Chris Lattner8339f7d2003-10-30 23:41:03 +00001464void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001465 SlotMachine SlotTable(getParent());
Chris Lattner8339f7d2003-10-30 23:41:03 +00001466 AssemblyWriter W(o, SlotTable, getParent(), AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001467
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001468 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001469}
1470
Chris Lattnereef2fe72006-01-24 04:13:11 +00001471void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001472 WriteAsOperand(o, this, true, 0);
Chris Lattnereef2fe72006-01-24 04:13:11 +00001473}
1474
Chris Lattner8339f7d2003-10-30 23:41:03 +00001475void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001476 SlotMachine SlotTable(getParent());
Misha Brukmanb1c93172005-04-21 23:48:37 +00001477 AssemblyWriter W(o, SlotTable,
Chris Lattner8339f7d2003-10-30 23:41:03 +00001478 getParent() ? getParent()->getParent() : 0, AAW);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001479 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001480}
1481
Chris Lattner8339f7d2003-10-30 23:41:03 +00001482void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001483 const Function *F = getParent() ? getParent()->getParent() : 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001484 SlotMachine SlotTable(F);
Chris Lattner8339f7d2003-10-30 23:41:03 +00001485 AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001486
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001487 W.write(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +00001488}
Chris Lattner7db79582001-11-07 04:21:57 +00001489
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001490void Constant::print(std::ostream &o) const {
1491 if (this == 0) { o << "<null> constant value\n"; return; }
Chris Lattner7d734802002-09-10 15:53:49 +00001492
Misha Brukman21bbdb92004-06-04 21:11:51 +00001493 o << ' ' << getType()->getDescription() << ' ';
Evan Cheng5b19a802006-03-01 22:17:00 +00001494
1495 std::map<const Type *, std::string> TypeTable;
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001496 WriteConstantInt(o, this, TypeTable, 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001497}
1498
Misha Brukmanb1c93172005-04-21 23:48:37 +00001499void Type::print(std::ostream &o) const {
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001500 if (this == 0)
1501 o << "<null Type>";
1502 else
1503 o << getDescription();
1504}
1505
Chris Lattner2e9fa6d2002-04-09 19:48:49 +00001506void Argument::print(std::ostream &o) const {
Chris Lattner78e2e8b2006-12-06 06:24:27 +00001507 WriteAsOperand(o, this, true, getParent() ? getParent()->getParent() : 0);
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001508}
1509
Reid Spencer52641832004-05-25 18:14:38 +00001510// Value::dump - allow easy printing of Values from the debugger.
1511// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001512void Value::dump() const { print(*cerr.stream()); cerr << '\n'; }
Reid Spencer52641832004-05-25 18:14:38 +00001513
1514// Type::dump - allow easy printing of Values from the debugger.
1515// Located here because so much of the needed functionality is here.
Bill Wendling22e978a2006-12-07 20:04:42 +00001516void Type::dump() const { print(*cerr.stream()); cerr << '\n'; }
Chris Lattnerc0b4c7b2002-04-08 22:03:40 +00001517
1518//===----------------------------------------------------------------------===//
Chris Lattnerfc9f1c92006-12-06 06:40:49 +00001519// SlotMachine Implementation
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001520//===----------------------------------------------------------------------===//
1521
1522#if 0
Bill Wendlingf3baad32006-12-07 01:30:32 +00001523#define SC_DEBUG(X) cerr << X
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001524#else
1525#define SC_DEBUG(X)
1526#endif
1527
1528// Module level constructor. Causes the contents of the Module (sans functions)
1529// to be added to the slot table.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001530SlotMachine::SlotMachine(const Module *M)
Reid Spencer56010e42004-05-26 21:56:09 +00001531 : TheModule(M) ///< Saved for lazy initialization.
1532 , TheFunction(0)
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001533 , FunctionProcessed(false)
Reid Spencer50816782007-03-19 18:32:53 +00001534 , mMap(), mNext(0), fMap(), fNext(0)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001535{
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001536}
1537
1538// Function level constructor. Causes the contents of the Module and the one
1539// function provided to be added to the slot table.
Chris Lattner23e829a2006-12-06 05:12:21 +00001540SlotMachine::SlotMachine(const Function *F)
1541 : TheModule(F ? F->getParent() : 0) ///< Saved for lazy initialization
Reid Spencer56010e42004-05-26 21:56:09 +00001542 , TheFunction(F) ///< Saved for lazy initialization
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001543 , FunctionProcessed(false)
Reid Spencer50816782007-03-19 18:32:53 +00001544 , mMap(), mNext(0), fMap(), fNext(0)
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001545{
Reid Spencer56010e42004-05-26 21:56:09 +00001546}
1547
Chris Lattner5e043322007-01-11 03:54:27 +00001548inline void SlotMachine::initialize() {
Chris Lattner23e829a2006-12-06 05:12:21 +00001549 if (TheModule) {
Misha Brukmanb1c93172005-04-21 23:48:37 +00001550 processModule();
Reid Spencer56010e42004-05-26 21:56:09 +00001551 TheModule = 0; ///< Prevent re-processing next time we're called.
1552 }
Chris Lattner193de902006-12-06 05:27:40 +00001553 if (TheFunction && !FunctionProcessed)
Misha Brukmanb1c93172005-04-21 23:48:37 +00001554 processFunction();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001555}
1556
1557// Iterate through all the global variables, functions, and global
Misha Brukmanb1c93172005-04-21 23:48:37 +00001558// variable initializers and create slots for them.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001559void SlotMachine::processModule() {
1560 SC_DEBUG("begin processModule!\n");
1561
Chris Lattner0dda8612006-12-06 06:15:43 +00001562 // Add all of the unnamed global variables to the value table.
Chris Lattner54932b02006-12-06 04:41:52 +00001563 for (Module::const_global_iterator I = TheModule->global_begin(),
1564 E = TheModule->global_end(); I != E; ++I)
Chris Lattner0dda8612006-12-06 06:15:43 +00001565 if (!I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001566 CreateModuleSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001567
Chris Lattner0dda8612006-12-06 06:15:43 +00001568 // Add all the unnamed functions to the table.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001569 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1570 I != E; ++I)
Chris Lattner0dda8612006-12-06 06:15:43 +00001571 if (!I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001572 CreateModuleSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001573
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001574 SC_DEBUG("end processModule!\n");
1575}
1576
1577
Reid Spencer56010e42004-05-26 21:56:09 +00001578// Process the arguments, basic blocks, and instructions of a function.
1579void SlotMachine::processFunction() {
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001580 SC_DEBUG("begin processFunction!\n");
Reid Spencer50816782007-03-19 18:32:53 +00001581 fNext = 0;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001582
Chris Lattner0dda8612006-12-06 06:15:43 +00001583 // Add all the function arguments with no names.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001584 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
Chris Lattner531f9e92005-03-15 04:54:21 +00001585 AE = TheFunction->arg_end(); AI != AE; ++AI)
Chris Lattner0dda8612006-12-06 06:15:43 +00001586 if (!AI->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001587 CreateFunctionSlot(AI);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001588
1589 SC_DEBUG("Inserting Instructions:\n");
1590
Chris Lattner0dda8612006-12-06 06:15:43 +00001591 // Add all of the basic blocks and instructions with no names.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001592 for (Function::const_iterator BB = TheFunction->begin(),
Reid Spencer56010e42004-05-26 21:56:09 +00001593 E = TheFunction->end(); BB != E; ++BB) {
Chris Lattner0dda8612006-12-06 06:15:43 +00001594 if (!BB->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001595 CreateFunctionSlot(BB);
Chris Lattner0dda8612006-12-06 06:15:43 +00001596 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1597 if (I->getType() != Type::VoidTy && !I->hasName())
Chris Lattnerea862a32007-01-09 07:55:49 +00001598 CreateFunctionSlot(I);
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001599 }
1600
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001601 FunctionProcessed = true;
1602
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001603 SC_DEBUG("end processFunction!\n");
1604}
1605
Chris Lattner193de902006-12-06 05:27:40 +00001606/// Clean up after incorporating a function. This is the only way to get out of
Chris Lattner5e043322007-01-11 03:54:27 +00001607/// the function incorporation state that affects get*Slot/Create*Slot. Function
Chris Lattner89e774e2007-01-09 07:46:21 +00001608/// incorporation state is indicated by TheFunction != 0.
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001609void SlotMachine::purgeFunction() {
1610 SC_DEBUG("begin purgeFunction!\n");
1611 fMap.clear(); // Simply discard the function level map
Reid Spencer56010e42004-05-26 21:56:09 +00001612 TheFunction = 0;
Reid Spencerb0ac8c42004-08-16 07:46:33 +00001613 FunctionProcessed = false;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001614 SC_DEBUG("end purgeFunction!\n");
1615}
1616
Chris Lattner5e043322007-01-11 03:54:27 +00001617/// getGlobalSlot - Get the slot number of a global value.
1618int SlotMachine::getGlobalSlot(const GlobalValue *V) {
1619 // Check for uninitialized state and do lazy initialization.
1620 initialize();
1621
1622 // Find the type plane in the module map
Reid Spencer50816782007-03-19 18:32:53 +00001623 ValueMap::const_iterator MI = mMap.find(V);
Chris Lattner5e043322007-01-11 03:54:27 +00001624 if (MI == mMap.end()) return -1;
Reid Spencer50816782007-03-19 18:32:53 +00001625
1626 return MI->second;
Chris Lattner5e043322007-01-11 03:54:27 +00001627}
Reid Spencer56010e42004-05-26 21:56:09 +00001628
Chris Lattner5e043322007-01-11 03:54:27 +00001629
1630/// getLocalSlot - Get the slot number for a value that is local to a function.
1631int SlotMachine::getLocalSlot(const Value *V) {
1632 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
1633
1634 // Check for uninitialized state and do lazy initialization.
1635 initialize();
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001636
Reid Spencer50816782007-03-19 18:32:53 +00001637 ValueMap::const_iterator FI = fMap.find(V);
Chris Lattner5e043322007-01-11 03:54:27 +00001638 if (FI == fMap.end()) return -1;
1639
Reid Spencer50816782007-03-19 18:32:53 +00001640 return FI->second;
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001641}
1642
Reid Spencer58d30f22004-07-04 11:50:43 +00001643
Chris Lattnerea862a32007-01-09 07:55:49 +00001644/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
1645void SlotMachine::CreateModuleSlot(const GlobalValue *V) {
Chris Lattner04398e82007-01-09 08:04:59 +00001646 assert(V && "Can't insert a null Value into SlotMachine!");
Reid Spencer50816782007-03-19 18:32:53 +00001647 assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
1648 assert(!V->hasName() && "Doesn't need a slot!");
Chris Lattner04398e82007-01-09 08:04:59 +00001649
Reid Spencer50816782007-03-19 18:32:53 +00001650 unsigned DestSlot = mNext++;
1651 mMap[V] = DestSlot;
Chris Lattner04398e82007-01-09 08:04:59 +00001652
Reid Spencer50816782007-03-19 18:32:53 +00001653 SC_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner04398e82007-01-09 08:04:59 +00001654 DestSlot << " [");
Anton Korobeynikova97b6942007-04-25 14:27:10 +00001655 // G = Global, F = Function, A = Alias, o = other
1656 SC_DEBUG((isa<GlobalVariable>(V) ? 'G' :
1657 (isa<Function> ? 'F' :
1658 (isa<GlobalAlias> ? 'A' : 'o'))) << "]\n");
Reid Spencer16f2f7f2004-05-26 07:18:52 +00001659}
1660
1661
Chris Lattnerea862a32007-01-09 07:55:49 +00001662/// CreateSlot - Create a new slot for the specified value if it has no name.
1663void SlotMachine::CreateFunctionSlot(const Value *V) {
1664 const Type *VTy = V->getType();
1665 assert(VTy != Type::VoidTy && !V->hasName() && "Doesn't need a slot!");
Chris Lattner04398e82007-01-09 08:04:59 +00001666
Reid Spencer50816782007-03-19 18:32:53 +00001667 unsigned DestSlot = fNext++;
1668 fMap[V] = DestSlot;
Chris Lattner04398e82007-01-09 08:04:59 +00001669
Chris Lattnerf8090cb2006-12-06 05:55:41 +00001670 // G = Global, F = Function, o = other
Chris Lattner04398e82007-01-09 08:04:59 +00001671 SC_DEBUG(" Inserting value [" << VTy << "] = " << V << " slot=" <<
1672 DestSlot << " [o]\n");
1673}