Chris Lattner | f7e7948 | 2002-04-07 22:31:46 +0000 | [diff] [blame] | 1 | //===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
| 10 | // This library implements the functionality defined in llvm/Assembly/Writer.h |
| 11 | // |
Chris Lattner | 189088e | 2002-04-12 18:21:53 +0000 | [diff] [blame] | 12 | // Note that these routines must be extremely tolerant of various errors in the |
Chris Lattner | f70da10 | 2003-05-08 02:44:12 +0000 | [diff] [blame] | 13 | // LLVM code, because it can be used for debugging transformations. |
Chris Lattner | 189088e | 2002-04-12 18:21:53 +0000 | [diff] [blame] | 14 | // |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 17 | #include "llvm/Assembly/Writer.h" |
Chris Lattner | 7f8845a | 2002-07-23 18:07:49 +0000 | [diff] [blame] | 18 | #include "llvm/Assembly/PrintModulePass.h" |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 19 | #include "llvm/Assembly/AsmAnnotationWriter.h" |
Chris Lattner | f7b6d31 | 2005-05-06 20:26:43 +0000 | [diff] [blame] | 20 | #include "llvm/CallingConv.h" |
Chris Lattner | c70b3f6 | 2004-01-20 19:50:34 +0000 | [diff] [blame] | 21 | #include "llvm/Constants.h" |
Chris Lattner | 913d18f | 2002-04-29 18:46:50 +0000 | [diff] [blame] | 22 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 8bbcda2 | 2006-01-25 18:57:27 +0000 | [diff] [blame] | 23 | #include "llvm/InlineAsm.h" |
Vikram S. Adve | b952b54 | 2002-07-14 23:14:45 +0000 | [diff] [blame] | 24 | #include "llvm/Instruction.h" |
Misha Brukman | 2d3fa9e | 2004-07-29 16:53:53 +0000 | [diff] [blame] | 25 | #include "llvm/Instructions.h" |
Chris Lattner | c70b3f6 | 2004-01-20 19:50:34 +0000 | [diff] [blame] | 26 | #include "llvm/Module.h" |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 27 | #include "llvm/ValueSymbolTable.h" |
Reid Spencer | 32af9e8 | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 28 | #include "llvm/TypeSymbolTable.h" |
Chris Lattner | a204d41 | 2008-08-17 17:25:25 +0000 | [diff] [blame^] | 29 | #include "llvm/ADT/DenseMap.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/StringExtras.h" |
| 31 | #include "llvm/ADT/STLExtras.h" |
Bill Wendling | dfc9189 | 2006-11-28 02:09:03 +0000 | [diff] [blame] | 32 | #include "llvm/Support/CFG.h" |
Jim Laskey | b74c666 | 2005-08-17 19:34:49 +0000 | [diff] [blame] | 33 | #include "llvm/Support/MathExtras.h" |
Bill Wendling | dfc9189 | 2006-11-28 02:09:03 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Streams.h" |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 35 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 36 | #include <algorithm> |
Reid Spencer | bdf03b4 | 2007-05-22 19:27:35 +0000 | [diff] [blame] | 37 | #include <cctype> |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 38 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 39 | |
Chris Lattner | 60a7dd1 | 2004-07-15 02:51:31 +0000 | [diff] [blame] | 40 | namespace llvm { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 41 | |
Reid Spencer | 294715b | 2005-05-15 16:13:11 +0000 | [diff] [blame] | 42 | // Make virtual table appear in this compilation unit. |
| 43 | AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {} |
| 44 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 45 | /// This class provides computation of slot numbers for LLVM Assembly writing. |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 46 | /// |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 47 | class SlotMachine { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 48 | public: |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 49 | /// ValueMap - A mapping of Values to slot numbers |
Chris Lattner | a204d41 | 2008-08-17 17:25:25 +0000 | [diff] [blame^] | 50 | typedef DenseMap<const Value*, unsigned> ValueMap; |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 51 | |
| 52 | private: |
| 53 | /// TheModule - The module for which we are holding slot numbers |
| 54 | const Module* TheModule; |
| 55 | |
| 56 | /// TheFunction - The function for which we are holding slot numbers |
| 57 | const Function* TheFunction; |
| 58 | bool FunctionProcessed; |
| 59 | |
| 60 | /// mMap - The TypePlanes map for the module level data |
| 61 | ValueMap mMap; |
| 62 | unsigned mNext; |
| 63 | |
| 64 | /// fMap - The TypePlanes map for the function level data |
| 65 | ValueMap fMap; |
| 66 | unsigned fNext; |
| 67 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 68 | public: |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 69 | /// Construct from a module |
Dan Gohman | 242223a | 2008-01-29 11:36:12 +0000 | [diff] [blame] | 70 | explicit SlotMachine(const Module *M); |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 71 | /// Construct from a function, starting out in incorp state. |
Dan Gohman | 242223a | 2008-01-29 11:36:12 +0000 | [diff] [blame] | 72 | explicit SlotMachine(const Function *F); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 73 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 74 | /// Return the slot number of the specified value in it's type |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 75 | /// plane. If something is not in the SlotMachine, return -1. |
| 76 | int getLocalSlot(const Value *V); |
| 77 | int getGlobalSlot(const GlobalValue *V); |
Reid Spencer | 8beac69 | 2004-06-09 15:26:53 +0000 | [diff] [blame] | 78 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 79 | /// If you'd like to deal with a function instead of just a module, use |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 80 | /// this method to get its data into the SlotMachine. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 81 | void incorporateFunction(const Function *F) { |
| 82 | TheFunction = F; |
Reid Spencer | b0ac8c4 | 2004-08-16 07:46:33 +0000 | [diff] [blame] | 83 | FunctionProcessed = false; |
| 84 | } |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 85 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 86 | /// After calling incorporateFunction, use this method to remove the |
| 87 | /// most recently incorporated function from the SlotMachine. This |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 88 | /// will reset the state of the machine back to just the module contents. |
| 89 | void purgeFunction(); |
| 90 | |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 91 | // Implementation Details |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 92 | private: |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 93 | /// This function does the actual initialization. |
| 94 | inline void initialize(); |
| 95 | |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 96 | /// 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 Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 101 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 102 | /// 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 Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 106 | /// Add all of the functions arguments, basic blocks, and instructions |
| 107 | void processFunction(); |
| 108 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 109 | SlotMachine(const SlotMachine &); // DO NOT IMPLEMENT |
| 110 | void operator=(const SlotMachine &); // DO NOT IMPLEMENT |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 111 | }; |
| 112 | |
Chris Lattner | 60a7dd1 | 2004-07-15 02:51:31 +0000 | [diff] [blame] | 113 | } // end namespace llvm |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 114 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 115 | char PrintModulePass::ID = 0; |
Chris Lattner | c2d3d31 | 2006-08-27 22:42:52 +0000 | [diff] [blame] | 116 | static RegisterPass<PrintModulePass> |
Chris Lattner | e7134c5 | 2006-08-21 17:20:01 +0000 | [diff] [blame] | 117 | X("printm", "Print module to stderr"); |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 118 | char PrintFunctionPass::ID = 0; |
Chris Lattner | c2d3d31 | 2006-08-27 22:42:52 +0000 | [diff] [blame] | 119 | static RegisterPass<PrintFunctionPass> |
Chris Lattner | e7134c5 | 2006-08-21 17:20:01 +0000 | [diff] [blame] | 120 | Y("print","Print function to stderr"); |
Chris Lattner | 7f8845a | 2002-07-23 18:07:49 +0000 | [diff] [blame] | 121 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 122 | static void WriteAsOperandInternal(std::ostream &Out, const Value *V, |
Chris Lattner | a9f0a11 | 2006-12-06 05:50:41 +0000 | [diff] [blame] | 123 | std::map<const Type *, std::string> &TypeTable, |
Reid Spencer | 58d30f2 | 2004-07-04 11:50:43 +0000 | [diff] [blame] | 124 | SlotMachine *Machine); |
| 125 | |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 126 | static const Module *getModuleFromVal(const Value *V) { |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 127 | if (const Argument *MA = dyn_cast<Argument>(V)) |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 128 | return MA->getParent() ? MA->getParent()->getParent() : 0; |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 129 | else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 130 | return BB->getParent() ? BB->getParent()->getParent() : 0; |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 131 | else if (const Instruction *I = dyn_cast<Instruction>(V)) { |
Chris Lattner | 57698e2 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 132 | const Function *M = I->getParent() ? I->getParent()->getParent() : 0; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 133 | return M ? M->getParent() : 0; |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 134 | } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 135 | return GV->getParent(); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 136 | return 0; |
| 137 | } |
| 138 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 139 | static SlotMachine *createSlotMachine(const Value *V) { |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 140 | if (const Argument *FA = dyn_cast<Argument>(V)) { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 141 | return new SlotMachine(FA->getParent()); |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 142 | } else if (const Instruction *I = dyn_cast<Instruction>(V)) { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 143 | return new SlotMachine(I->getParent()->getParent()); |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 144 | } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 145 | return new SlotMachine(BB->getParent()); |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 146 | } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){ |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 147 | return new SlotMachine(GV->getParent()); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 148 | } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)){ |
| 149 | return new SlotMachine(GA->getParent()); |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 150 | } else if (const Function *Func = dyn_cast<Function>(V)) { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 151 | return new SlotMachine(Func); |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 152 | } |
| 153 | return 0; |
| 154 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 155 | |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 156 | /// NameNeedsQuotes - Return true if the specified llvm name should be wrapped |
| 157 | /// with ""'s. |
Reid Spencer | bdf03b4 | 2007-05-22 19:27:35 +0000 | [diff] [blame] | 158 | static std::string QuoteNameIfNeeded(const std::string &Name) { |
| 159 | std::string result; |
| 160 | bool needsQuotes = Name[0] >= '0' && Name[0] <= '9'; |
| 161 | // Scan the name to see if it needs quotes and to replace funky chars with |
| 162 | // their octal equivalent. |
Chris Lattner | 1c34304 | 2003-08-22 05:40:38 +0000 | [diff] [blame] | 163 | for (unsigned i = 0, e = Name.size(); i != e; ++i) { |
| 164 | char C = Name[i]; |
| 165 | assert(C != '"' && "Illegal character in LLVM value name!"); |
Reid Spencer | bdf03b4 | 2007-05-22 19:27:35 +0000 | [diff] [blame] | 166 | if (isalnum(C) || C == '-' || C == '.' || C == '_') |
| 167 | result += C; |
| 168 | else if (C == '\\') { |
| 169 | needsQuotes = true; |
| 170 | result += "\\\\"; |
| 171 | } else if (isprint(C)) { |
| 172 | needsQuotes = true; |
| 173 | result += C; |
| 174 | } else { |
| 175 | needsQuotes = true; |
| 176 | result += "\\"; |
| 177 | char hex1 = (C >> 4) & 0x0F; |
| 178 | if (hex1 < 10) |
| 179 | result += hex1 + '0'; |
| 180 | else |
| 181 | result += hex1 - 10 + 'A'; |
| 182 | char hex2 = C & 0x0F; |
| 183 | if (hex2 < 10) |
| 184 | result += hex2 + '0'; |
| 185 | else |
| 186 | result += hex2 - 10 + 'A'; |
| 187 | } |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 188 | } |
Reid Spencer | bdf03b4 | 2007-05-22 19:27:35 +0000 | [diff] [blame] | 189 | if (needsQuotes) { |
| 190 | result.insert(0,"\""); |
| 191 | result += '"'; |
| 192 | } |
| 193 | return result; |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | enum PrefixType { |
| 197 | GlobalPrefix, |
| 198 | LabelPrefix, |
| 199 | LocalPrefix |
| 200 | }; |
| 201 | |
| 202 | /// getLLVMName - Turn the specified string into an 'LLVM name', which is either |
| 203 | /// prefixed with % (if the string only contains simple characters) or is |
| 204 | /// surrounded with ""'s (if it has special chars in it). |
| 205 | static std::string getLLVMName(const std::string &Name, PrefixType Prefix) { |
| 206 | assert(!Name.empty() && "Cannot get empty name!"); |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 207 | switch (Prefix) { |
| 208 | default: assert(0 && "Bad prefix!"); |
Reid Spencer | bdf03b4 | 2007-05-22 19:27:35 +0000 | [diff] [blame] | 209 | case GlobalPrefix: return '@' + QuoteNameIfNeeded(Name); |
| 210 | case LabelPrefix: return QuoteNameIfNeeded(Name); |
| 211 | case LocalPrefix: return '%' + QuoteNameIfNeeded(Name); |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 212 | } |
Chris Lattner | 1c34304 | 2003-08-22 05:40:38 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 215 | /// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either |
| 216 | /// prefixed with % (if the string only contains simple characters) or is |
| 217 | /// surrounded with ""'s (if it has special chars in it). Print it out. |
| 218 | static void PrintLLVMName(std::ostream &OS, const ValueName *Name, |
| 219 | PrefixType Prefix) { |
| 220 | assert(Name && "Cannot get empty name!"); |
| 221 | switch (Prefix) { |
| 222 | default: assert(0 && "Bad prefix!"); |
| 223 | case GlobalPrefix: OS << '@'; break; |
| 224 | case LabelPrefix: break; |
| 225 | case LocalPrefix: OS << '%'; break; |
| 226 | } |
| 227 | |
| 228 | // Scan the name to see if it needs quotes first. |
| 229 | const char *NameStr = Name->getKeyData(); |
| 230 | unsigned NameLen = Name->getKeyLength(); |
| 231 | |
| 232 | bool NeedsQuotes = NameStr[0] >= '0' && NameStr[0] <= '9'; |
| 233 | if (!NeedsQuotes) { |
| 234 | for (unsigned i = 0; i != NameLen; ++i) { |
| 235 | char C = NameStr[i]; |
| 236 | if (!isalnum(C) && C != '-' && C != '.' && C != '_') { |
| 237 | NeedsQuotes = true; |
| 238 | break; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | // If we didn't need any quotes, just write out the name in one blast. |
| 244 | if (!NeedsQuotes) { |
| 245 | OS.write(NameStr, NameLen); |
| 246 | return; |
| 247 | } |
| 248 | |
| 249 | // Okay, we need quotes. Output the quotes and escape any scary characters as |
| 250 | // needed. |
| 251 | OS << '"'; |
| 252 | for (unsigned i = 0; i != NameLen; ++i) { |
| 253 | char C = NameStr[i]; |
| 254 | assert(C != '"' && "Illegal character in LLVM value name!"); |
| 255 | if (C == '\\') { |
| 256 | OS << "\\\\"; |
| 257 | } else if (isprint(C)) { |
| 258 | OS << C; |
| 259 | } else { |
| 260 | OS << "\\"; |
| 261 | char hex1 = (C >> 4) & 0x0F; |
| 262 | if (hex1 < 10) |
| 263 | OS << (hex1 + '0'); |
| 264 | else |
| 265 | OS << (hex1 - 10 + 'A'); |
| 266 | char hex2 = C & 0x0F; |
| 267 | if (hex2 < 10) |
| 268 | OS << (hex2 + '0'); |
| 269 | else |
| 270 | OS << (hex2 - 10 + 'A'); |
| 271 | } |
| 272 | } |
| 273 | OS << '"'; |
| 274 | } |
| 275 | |
| 276 | static void PrintLLVMName(std::ostream &OS, const Value *V) { |
| 277 | PrintLLVMName(OS, V->getValueName(), |
| 278 | isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix); |
| 279 | } |
| 280 | |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 281 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 282 | /// fillTypeNameTable - If the module has a symbol table, take all global types |
| 283 | /// and stuff their names into the TypeNames map. |
| 284 | /// |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 285 | static void fillTypeNameTable(const Module *M, |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 286 | std::map<const Type *, std::string> &TypeNames) { |
Chris Lattner | 98cf1f5 | 2002-11-20 18:36:02 +0000 | [diff] [blame] | 287 | if (!M) return; |
Reid Spencer | 32af9e8 | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 288 | const TypeSymbolTable &ST = M->getTypeSymbolTable(); |
| 289 | TypeSymbolTable::const_iterator TI = ST.begin(); |
| 290 | for (; TI != ST.end(); ++TI) { |
Reid Spencer | e7e9671 | 2004-05-25 08:53:40 +0000 | [diff] [blame] | 291 | // As a heuristic, don't insert pointer to primitive types, because |
| 292 | // they are used too often to have a single useful name. |
| 293 | // |
| 294 | const Type *Ty = cast<Type>(TI->second); |
| 295 | if (!isa<PointerType>(Ty) || |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 296 | !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() || |
Chris Lattner | 03c4953 | 2007-01-15 02:27:26 +0000 | [diff] [blame] | 297 | !cast<PointerType>(Ty)->getElementType()->isInteger() || |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 298 | isa<OpaqueType>(cast<PointerType>(Ty)->getElementType())) |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 299 | TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first, LocalPrefix))); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 300 | } |
| 301 | } |
| 302 | |
| 303 | |
| 304 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 305 | static void calcTypeName(const Type *Ty, |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 306 | std::vector<const Type *> &TypeStack, |
| 307 | std::map<const Type *, std::string> &TypeNames, |
| 308 | std::string & Result){ |
Chris Lattner | 03c4953 | 2007-01-15 02:27:26 +0000 | [diff] [blame] | 309 | if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) { |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 310 | Result += Ty->getDescription(); // Base case |
| 311 | return; |
| 312 | } |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 313 | |
| 314 | // Check to see if the type is named. |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 315 | std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty); |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 316 | if (I != TypeNames.end()) { |
| 317 | Result += I->second; |
| 318 | return; |
| 319 | } |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 320 | |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 321 | if (isa<OpaqueType>(Ty)) { |
| 322 | Result += "opaque"; |
| 323 | return; |
| 324 | } |
Chris Lattner | f14ead9 | 2003-10-30 00:22:33 +0000 | [diff] [blame] | 325 | |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 326 | // Check to see if the Type is already on the stack... |
| 327 | unsigned Slot = 0, CurSize = TypeStack.size(); |
| 328 | while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type |
| 329 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 330 | // This is another base case for the recursion. In this case, we know |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 331 | // that we have looped back to a type that we have previously visited. |
| 332 | // Generate the appropriate upreference to handle this. |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 333 | if (Slot < CurSize) { |
| 334 | Result += "\\" + utostr(CurSize-Slot); // Here's the upreference |
| 335 | return; |
| 336 | } |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 337 | |
| 338 | TypeStack.push_back(Ty); // Recursive case: Add us to the stack.. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 339 | |
Chris Lattner | 6b72759 | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 340 | switch (Ty->getTypeID()) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 341 | case Type::IntegerTyID: { |
| 342 | unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth(); |
Reid Spencer | c872159 | 2007-01-12 07:25:20 +0000 | [diff] [blame] | 343 | Result += "i" + utostr(BitWidth); |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 344 | break; |
| 345 | } |
Chris Lattner | 91db582 | 2002-03-29 03:44:36 +0000 | [diff] [blame] | 346 | case Type::FunctionTyID: { |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 347 | const FunctionType *FTy = cast<FunctionType>(Ty); |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 348 | calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result); |
| 349 | Result += " ("; |
Chris Lattner | fa829be | 2004-02-09 04:14:01 +0000 | [diff] [blame] | 350 | for (FunctionType::param_iterator I = FTy->param_begin(), |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 351 | E = FTy->param_end(); I != E; ++I) { |
Chris Lattner | fa829be | 2004-02-09 04:14:01 +0000 | [diff] [blame] | 352 | if (I != FTy->param_begin()) |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 353 | Result += ", "; |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 354 | calcTypeName(*I, TypeStack, TypeNames, Result); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 355 | } |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 356 | if (FTy->isVarArg()) { |
Chris Lattner | fa829be | 2004-02-09 04:14:01 +0000 | [diff] [blame] | 357 | if (FTy->getNumParams()) Result += ", "; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 358 | Result += "..."; |
| 359 | } |
| 360 | Result += ")"; |
| 361 | break; |
| 362 | } |
| 363 | case Type::StructTyID: { |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 364 | const StructType *STy = cast<StructType>(Ty); |
Andrew Lenharth | dcb3c97 | 2006-12-08 18:06:16 +0000 | [diff] [blame] | 365 | if (STy->isPacked()) |
| 366 | Result += '<'; |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 367 | Result += "{ "; |
Chris Lattner | ac6db75 | 2004-02-09 04:37:31 +0000 | [diff] [blame] | 368 | for (StructType::element_iterator I = STy->element_begin(), |
| 369 | E = STy->element_end(); I != E; ++I) { |
| 370 | if (I != STy->element_begin()) |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 371 | Result += ", "; |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 372 | calcTypeName(*I, TypeStack, TypeNames, Result); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 373 | } |
| 374 | Result += " }"; |
Andrew Lenharth | dcb3c97 | 2006-12-08 18:06:16 +0000 | [diff] [blame] | 375 | if (STy->isPacked()) |
| 376 | Result += '>'; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 377 | break; |
| 378 | } |
Christopher Lamb | 54dd24c | 2007-12-11 08:59:05 +0000 | [diff] [blame] | 379 | case Type::PointerTyID: { |
| 380 | const PointerType *PTy = cast<PointerType>(Ty); |
| 381 | calcTypeName(PTy->getElementType(), |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 382 | TypeStack, TypeNames, Result); |
Christopher Lamb | 54dd24c | 2007-12-11 08:59:05 +0000 | [diff] [blame] | 383 | if (unsigned AddressSpace = PTy->getAddressSpace()) |
| 384 | Result += " addrspace(" + utostr(AddressSpace) + ")"; |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 385 | Result += "*"; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 386 | break; |
Christopher Lamb | 54dd24c | 2007-12-11 08:59:05 +0000 | [diff] [blame] | 387 | } |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 388 | case Type::ArrayTyID: { |
Chris Lattner | f26a8ee | 2003-07-23 15:30:06 +0000 | [diff] [blame] | 389 | const ArrayType *ATy = cast<ArrayType>(Ty); |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 390 | Result += "[" + utostr(ATy->getNumElements()) + " x "; |
| 391 | calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result); |
| 392 | Result += "]"; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 393 | break; |
| 394 | } |
Reid Spencer | d84d35b | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 395 | case Type::VectorTyID: { |
| 396 | const VectorType *PTy = cast<VectorType>(Ty); |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 397 | Result += "<" + utostr(PTy->getNumElements()) + " x "; |
| 398 | calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result); |
| 399 | Result += ">"; |
| 400 | break; |
| 401 | } |
Chris Lattner | 15285ab | 2003-05-14 17:50:47 +0000 | [diff] [blame] | 402 | case Type::OpaqueTyID: |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 403 | Result += "opaque"; |
Chris Lattner | 15285ab | 2003-05-14 17:50:47 +0000 | [diff] [blame] | 404 | break; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 405 | default: |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 406 | Result += "<unrecognized-type>"; |
Chris Lattner | fc9f1c9 | 2006-12-06 06:40:49 +0000 | [diff] [blame] | 407 | break; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | TypeStack.pop_back(); // Remove self from stack... |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | |
Misha Brukman | b22d09c | 2004-03-01 19:48:13 +0000 | [diff] [blame] | 414 | /// printTypeInt - The internal guts of printing out a type that has a |
| 415 | /// potentially named portion. |
| 416 | /// |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 417 | static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty, |
| 418 | std::map<const Type *, std::string> &TypeNames) { |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 419 | // Primitive types always print out their description, regardless of whether |
| 420 | // they have been named or not. |
| 421 | // |
Chris Lattner | 03c4953 | 2007-01-15 02:27:26 +0000 | [diff] [blame] | 422 | if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) |
Chris Lattner | 92d6053 | 2003-10-30 00:12:51 +0000 | [diff] [blame] | 423 | return Out << Ty->getDescription(); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 424 | |
| 425 | // Check to see if the type is named. |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 426 | std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 427 | if (I != TypeNames.end()) return Out << I->second; |
| 428 | |
| 429 | // Otherwise we have a type that has not been named but is a derived type. |
| 430 | // Carefully recurse the type hierarchy to print out any contained symbolic |
| 431 | // names. |
| 432 | // |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 433 | std::vector<const Type *> TypeStack; |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 434 | std::string TypeName; |
| 435 | calcTypeName(Ty, TypeStack, TypeNames, TypeName); |
Chris Lattner | 7f74a56 | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 436 | TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use |
John Criswell | cd116ba | 2004-06-01 14:54:08 +0000 | [diff] [blame] | 437 | return (Out << TypeName); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 438 | } |
| 439 | |
Chris Lattner | 34b9518 | 2001-10-31 04:33:19 +0000 | [diff] [blame] | 440 | |
Misha Brukman | b22d09c | 2004-03-01 19:48:13 +0000 | [diff] [blame] | 441 | /// WriteTypeSymbolic - This attempts to write the specified type as a symbolic |
| 442 | /// type, iff there is an entry in the modules symbol table for the specified |
| 443 | /// type or one of it's component types. This is slower than a simple x << Type |
| 444 | /// |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 445 | std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty, |
| 446 | const Module *M) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 447 | Out << ' '; |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 448 | |
Chris Lattner | fc9f1c9 | 2006-12-06 06:40:49 +0000 | [diff] [blame] | 449 | // If they want us to print out a type, but there is no context, we can't |
| 450 | // print it symbolically. |
| 451 | if (!M) |
Chris Lattner | 72f866e | 2001-10-29 16:40:32 +0000 | [diff] [blame] | 452 | return Out << Ty->getDescription(); |
Chris Lattner | fc9f1c9 | 2006-12-06 06:40:49 +0000 | [diff] [blame] | 453 | |
| 454 | std::map<const Type *, std::string> TypeNames; |
| 455 | fillTypeNameTable(M, TypeNames); |
| 456 | return printTypeInt(Out, Ty, TypeNames); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 457 | } |
| 458 | |
Chris Lattner | 6ed87bd | 2006-01-23 23:03:36 +0000 | [diff] [blame] | 459 | // PrintEscapedString - Print each character of the specified string, escaping |
| 460 | // it if it is not printable or if it is an escape char. |
| 461 | static void PrintEscapedString(const std::string &Str, std::ostream &Out) { |
| 462 | for (unsigned i = 0, e = Str.size(); i != e; ++i) { |
| 463 | unsigned char C = Str[i]; |
| 464 | if (isprint(C) && C != '"' && C != '\\') { |
| 465 | Out << C; |
| 466 | } else { |
| 467 | Out << '\\' |
| 468 | << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A')) |
| 469 | << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A')); |
| 470 | } |
| 471 | } |
| 472 | } |
| 473 | |
Chris Lattner | fc9f1c9 | 2006-12-06 06:40:49 +0000 | [diff] [blame] | 474 | static const char *getPredicateText(unsigned predicate) { |
Reid Spencer | 812a1be | 2006-12-04 05:19:18 +0000 | [diff] [blame] | 475 | const char * pred = "unknown"; |
| 476 | switch (predicate) { |
| 477 | case FCmpInst::FCMP_FALSE: pred = "false"; break; |
| 478 | case FCmpInst::FCMP_OEQ: pred = "oeq"; break; |
| 479 | case FCmpInst::FCMP_OGT: pred = "ogt"; break; |
| 480 | case FCmpInst::FCMP_OGE: pred = "oge"; break; |
| 481 | case FCmpInst::FCMP_OLT: pred = "olt"; break; |
| 482 | case FCmpInst::FCMP_OLE: pred = "ole"; break; |
| 483 | case FCmpInst::FCMP_ONE: pred = "one"; break; |
| 484 | case FCmpInst::FCMP_ORD: pred = "ord"; break; |
| 485 | case FCmpInst::FCMP_UNO: pred = "uno"; break; |
| 486 | case FCmpInst::FCMP_UEQ: pred = "ueq"; break; |
| 487 | case FCmpInst::FCMP_UGT: pred = "ugt"; break; |
| 488 | case FCmpInst::FCMP_UGE: pred = "uge"; break; |
| 489 | case FCmpInst::FCMP_ULT: pred = "ult"; break; |
| 490 | case FCmpInst::FCMP_ULE: pred = "ule"; break; |
| 491 | case FCmpInst::FCMP_UNE: pred = "une"; break; |
| 492 | case FCmpInst::FCMP_TRUE: pred = "true"; break; |
| 493 | case ICmpInst::ICMP_EQ: pred = "eq"; break; |
| 494 | case ICmpInst::ICMP_NE: pred = "ne"; break; |
| 495 | case ICmpInst::ICMP_SGT: pred = "sgt"; break; |
| 496 | case ICmpInst::ICMP_SGE: pred = "sge"; break; |
| 497 | case ICmpInst::ICMP_SLT: pred = "slt"; break; |
| 498 | case ICmpInst::ICMP_SLE: pred = "sle"; break; |
| 499 | case ICmpInst::ICMP_UGT: pred = "ugt"; break; |
| 500 | case ICmpInst::ICMP_UGE: pred = "uge"; break; |
| 501 | case ICmpInst::ICMP_ULT: pred = "ult"; break; |
| 502 | case ICmpInst::ICMP_ULE: pred = "ule"; break; |
| 503 | } |
| 504 | return pred; |
| 505 | } |
| 506 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 507 | static void WriteConstantInt(std::ostream &Out, const Constant *CV, |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 508 | std::map<const Type *, std::string> &TypeTable, |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 509 | SlotMachine *Machine) { |
Jim Laskey | 6be3d8e | 2006-02-27 10:33:53 +0000 | [diff] [blame] | 510 | const int IndentSize = 4; |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 511 | // FIXME: WHY IS INDENT STATIC?? |
Jim Laskey | 6be3d8e | 2006-02-27 10:33:53 +0000 | [diff] [blame] | 512 | static std::string Indent = "\n"; |
Zhou Sheng | 75b871f | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 513 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 514 | if (CI->getType() == Type::Int1Ty) { |
Reid Spencer | cddc9df | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 515 | Out << (CI->getZExtValue() ? "true" : "false"); |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 516 | return; |
| 517 | } |
| 518 | Out << CI->getValue(); |
| 519 | return; |
| 520 | } |
| 521 | |
| 522 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 523 | if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble || |
| 524 | &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) { |
| 525 | // We would like to output the FP constant value in exponential notation, |
| 526 | // but we cannot do this if doing so will lose precision. Check here to |
| 527 | // make sure that we only output it in exponential format if we can parse |
| 528 | // the value back and get the same value. |
| 529 | // |
| 530 | bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble; |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 531 | double Val = isDouble ? CFP->getValueAPF().convertToDouble() : |
| 532 | CFP->getValueAPF().convertToFloat(); |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 533 | std::string StrVal = ftostr(CFP->getValueAPF()); |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 534 | |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 535 | // Check to make sure that the stringized number is not some string like |
| 536 | // "Inf" or NaN, that atof will accept, but the lexer will not. Check |
| 537 | // that the string matches the "[-+]?[0-9]" regex. |
| 538 | // |
| 539 | if ((StrVal[0] >= '0' && StrVal[0] <= '9') || |
| 540 | ((StrVal[0] == '-' || StrVal[0] == '+') && |
| 541 | (StrVal[1] >= '0' && StrVal[1] <= '9'))) { |
| 542 | // Reparse stringized version! |
| 543 | if (atof(StrVal.c_str()) == Val) { |
| 544 | Out << StrVal; |
| 545 | return; |
| 546 | } |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 547 | } |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 548 | // Otherwise we could not reparse it to exactly the same value, so we must |
| 549 | // output the string in hexadecimal format! |
| 550 | assert(sizeof(double) == sizeof(uint64_t) && |
| 551 | "assuming that double is 64 bits!"); |
| 552 | Out << "0x" << utohexstr(DoubleToBits(Val)); |
| 553 | } else { |
| 554 | // Some form of long double. These appear as a magic letter identifying |
| 555 | // the type, then a fixed number of hex digits. |
| 556 | Out << "0x"; |
| 557 | if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended) |
| 558 | Out << 'K'; |
| 559 | else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad) |
| 560 | Out << 'L'; |
Dale Johannesen | 007aa37 | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 561 | else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble) |
| 562 | Out << 'M'; |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 563 | else |
| 564 | assert(0 && "Unsupported floating point type"); |
Dale Johannesen | 34aa41c | 2007-09-26 23:20:33 +0000 | [diff] [blame] | 565 | // api needed to prevent premature destruction |
| 566 | APInt api = CFP->getValueAPF().convertToAPInt(); |
| 567 | const uint64_t* p = api.getRawData(); |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 568 | uint64_t word = *p; |
| 569 | int shiftcount=60; |
Dale Johannesen | 007aa37 | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 570 | int width = api.getBitWidth(); |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 571 | for (int j=0; j<width; j+=4, shiftcount-=4) { |
| 572 | unsigned int nibble = (word>>shiftcount) & 15; |
| 573 | if (nibble < 10) |
| 574 | Out << (unsigned char)(nibble + '0'); |
| 575 | else |
| 576 | Out << (unsigned char)(nibble - 10 + 'A'); |
Dale Johannesen | 4675c4e | 2008-04-16 17:31:41 +0000 | [diff] [blame] | 577 | if (shiftcount == 0 && j+4 < width) { |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 578 | word = *(++p); |
Dale Johannesen | 007aa37 | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 579 | shiftcount = 64; |
Dale Johannesen | 028084e | 2007-09-12 03:30:33 +0000 | [diff] [blame] | 580 | if (width-j-4 < 64) |
| 581 | shiftcount = width-j-4; |
| 582 | } |
| 583 | } |
| 584 | } |
Chris Lattner | 76b2ff4 | 2004-02-15 05:55:15 +0000 | [diff] [blame] | 585 | } else if (isa<ConstantAggregateZero>(CV)) { |
| 586 | Out << "zeroinitializer"; |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 587 | } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { |
| 588 | // As a special case, print the array as a string if it is an array of |
Dan Gohman | e9bc2ba | 2008-05-12 16:34:30 +0000 | [diff] [blame] | 589 | // i8 with ConstantInt values. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 590 | // |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 591 | const Type *ETy = CA->getType()->getElementType(); |
Chris Lattner | 6ed87bd | 2006-01-23 23:03:36 +0000 | [diff] [blame] | 592 | if (CA->isString()) { |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 593 | Out << "c\""; |
Chris Lattner | 6ed87bd | 2006-01-23 23:03:36 +0000 | [diff] [blame] | 594 | PrintEscapedString(CA->getAsString(), Out); |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 595 | Out << "\""; |
| 596 | |
| 597 | } else { // Cannot output in string format... |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 598 | Out << '['; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 599 | if (CA->getNumOperands()) { |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 600 | Out << ' '; |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 601 | printTypeInt(Out, ETy, TypeTable); |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 602 | WriteAsOperandInternal(Out, CA->getOperand(0), |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 603 | TypeTable, Machine); |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 604 | for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) { |
| 605 | Out << ", "; |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 606 | printTypeInt(Out, ETy, TypeTable); |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 607 | WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine); |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 608 | } |
| 609 | } |
| 610 | Out << " ]"; |
| 611 | } |
| 612 | } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) { |
Andrew Lenharth | 0d124b8 | 2007-01-08 18:21:30 +0000 | [diff] [blame] | 613 | if (CS->getType()->isPacked()) |
| 614 | Out << '<'; |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 615 | Out << '{'; |
Jim Laskey | 3bb7874 | 2006-02-25 12:27:03 +0000 | [diff] [blame] | 616 | unsigned N = CS->getNumOperands(); |
| 617 | if (N) { |
Jim Laskey | 6be3d8e | 2006-02-27 10:33:53 +0000 | [diff] [blame] | 618 | if (N > 2) { |
| 619 | Indent += std::string(IndentSize, ' '); |
| 620 | Out << Indent; |
| 621 | } else { |
| 622 | Out << ' '; |
| 623 | } |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 624 | printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable); |
| 625 | |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 626 | WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine); |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 627 | |
Jim Laskey | 3bb7874 | 2006-02-25 12:27:03 +0000 | [diff] [blame] | 628 | for (unsigned i = 1; i < N; i++) { |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 629 | Out << ", "; |
Jim Laskey | 6be3d8e | 2006-02-27 10:33:53 +0000 | [diff] [blame] | 630 | if (N > 2) Out << Indent; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 631 | printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable); |
| 632 | |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 633 | WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine); |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 634 | } |
Jim Laskey | 6be3d8e | 2006-02-27 10:33:53 +0000 | [diff] [blame] | 635 | if (N > 2) Indent.resize(Indent.size() - IndentSize); |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 636 | } |
Jim Laskey | 3bb7874 | 2006-02-25 12:27:03 +0000 | [diff] [blame] | 637 | |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 638 | Out << " }"; |
Andrew Lenharth | 0d124b8 | 2007-01-08 18:21:30 +0000 | [diff] [blame] | 639 | if (CS->getType()->isPacked()) |
| 640 | Out << '>'; |
Reid Spencer | d84d35b | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 641 | } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) { |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 642 | const Type *ETy = CP->getType()->getElementType(); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 643 | assert(CP->getNumOperands() > 0 && |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 644 | "Number of operands for a PackedConst must be > 0"); |
| 645 | Out << '<'; |
| 646 | Out << ' '; |
| 647 | printTypeInt(Out, ETy, TypeTable); |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 648 | WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine); |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 649 | for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) { |
| 650 | Out << ", "; |
| 651 | printTypeInt(Out, ETy, TypeTable); |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 652 | WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine); |
Brian Gaeke | 0220904 | 2004-08-20 06:00:58 +0000 | [diff] [blame] | 653 | } |
| 654 | Out << " >"; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 655 | } else if (isa<ConstantPointerNull>(CV)) { |
| 656 | Out << "null"; |
| 657 | |
Chris Lattner | 5e0b9f2 | 2004-10-16 18:08:06 +0000 | [diff] [blame] | 658 | } else if (isa<UndefValue>(CV)) { |
| 659 | Out << "undef"; |
| 660 | |
Chris Lattner | 3cd8c56 | 2002-07-30 18:54:25 +0000 | [diff] [blame] | 661 | } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) { |
Reid Spencer | 812a1be | 2006-12-04 05:19:18 +0000 | [diff] [blame] | 662 | Out << CE->getOpcodeName(); |
| 663 | if (CE->isCompare()) |
| 664 | Out << " " << getPredicateText(CE->getPredicate()); |
| 665 | Out << " ("; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 666 | |
Vikram S. Adve | b952b54 | 2002-07-14 23:14:45 +0000 | [diff] [blame] | 667 | for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) { |
| 668 | printTypeInt(Out, (*OI)->getType(), TypeTable); |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 669 | WriteAsOperandInternal(Out, *OI, TypeTable, Machine); |
Vikram S. Adve | b952b54 | 2002-07-14 23:14:45 +0000 | [diff] [blame] | 670 | if (OI+1 != CE->op_end()) |
Chris Lattner | 3cd8c56 | 2002-07-30 18:54:25 +0000 | [diff] [blame] | 671 | Out << ", "; |
Vikram S. Adve | b952b54 | 2002-07-14 23:14:45 +0000 | [diff] [blame] | 672 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 673 | |
Dan Gohman | a76f0f7 | 2008-05-31 19:12:39 +0000 | [diff] [blame] | 674 | if (CE->hasIndices()) { |
| 675 | const SmallVector<unsigned, 4> &Indices = CE->getIndices(); |
| 676 | for (unsigned i = 0, e = Indices.size(); i != e; ++i) |
| 677 | Out << ", " << Indices[i]; |
| 678 | } |
| 679 | |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 680 | if (CE->isCast()) { |
Chris Lattner | 83b396b | 2002-08-15 19:37:43 +0000 | [diff] [blame] | 681 | Out << " to "; |
| 682 | printTypeInt(Out, CE->getType(), TypeTable); |
| 683 | } |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 684 | |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 685 | Out << ')'; |
Chris Lattner | 83b396b | 2002-08-15 19:37:43 +0000 | [diff] [blame] | 686 | |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 687 | } else { |
Vikram S. Adve | b952b54 | 2002-07-14 23:14:45 +0000 | [diff] [blame] | 688 | Out << "<placeholder or erroneous Constant>"; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 689 | } |
| 690 | } |
| 691 | |
| 692 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 693 | /// WriteAsOperand - Write the name of the specified value out to the specified |
| 694 | /// ostream. This can be useful when you just want to print int %reg126, not |
| 695 | /// the whole instruction that generated it. |
| 696 | /// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 697 | static void WriteAsOperandInternal(std::ostream &Out, const Value *V, |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 698 | std::map<const Type*, std::string> &TypeTable, |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 699 | SlotMachine *Machine) { |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 700 | Out << ' '; |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 701 | if (V->hasName()) { |
| 702 | PrintLLVMName(Out, V); |
| 703 | return; |
| 704 | } |
| 705 | |
| 706 | const Constant *CV = dyn_cast<Constant>(V); |
| 707 | if (CV && !isa<GlobalValue>(CV)) { |
| 708 | WriteConstantInt(Out, CV, TypeTable, Machine); |
| 709 | } else if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { |
| 710 | Out << "asm "; |
| 711 | if (IA->hasSideEffects()) |
| 712 | Out << "sideeffect "; |
| 713 | Out << '"'; |
| 714 | PrintEscapedString(IA->getAsmString(), Out); |
| 715 | Out << "\", \""; |
| 716 | PrintEscapedString(IA->getConstraintString(), Out); |
| 717 | Out << '"'; |
| 718 | } else { |
| 719 | char Prefix = '%'; |
| 720 | int Slot; |
| 721 | if (Machine) { |
| 722 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
| 723 | Slot = Machine->getGlobalSlot(GV); |
| 724 | Prefix = '@'; |
| 725 | } else { |
| 726 | Slot = Machine->getLocalSlot(V); |
| 727 | } |
Chris Lattner | a2d810d | 2006-01-25 22:26:05 +0000 | [diff] [blame] | 728 | } else { |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 729 | Machine = createSlotMachine(V); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 730 | if (Machine) { |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 731 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 732 | Slot = Machine->getGlobalSlot(GV); |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 733 | Prefix = '@'; |
| 734 | } else { |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 735 | Slot = Machine->getLocalSlot(V); |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 736 | } |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 737 | } else { |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 738 | Slot = -1; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 739 | } |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 740 | delete Machine; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 741 | } |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 742 | if (Slot != -1) |
| 743 | Out << Prefix << Slot; |
| 744 | else |
| 745 | Out << "<badref>"; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 746 | } |
| 747 | } |
| 748 | |
Misha Brukman | b22d09c | 2004-03-01 19:48:13 +0000 | [diff] [blame] | 749 | /// WriteAsOperand - Write the name of the specified value out to the specified |
| 750 | /// ostream. This can be useful when you just want to print int %reg126, not |
| 751 | /// the whole instruction that generated it. |
| 752 | /// |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 753 | std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V, |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 754 | bool PrintType, const Module *Context) { |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 755 | std::map<const Type *, std::string> TypeNames; |
Chris Lattner | 5a9f63e | 2002-07-10 16:48:17 +0000 | [diff] [blame] | 756 | if (Context == 0) Context = getModuleFromVal(V); |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 757 | |
Chris Lattner | 98cf1f5 | 2002-11-20 18:36:02 +0000 | [diff] [blame] | 758 | if (Context) |
Chris Lattner | 5a9f63e | 2002-07-10 16:48:17 +0000 | [diff] [blame] | 759 | fillTypeNameTable(Context, TypeNames); |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 760 | |
| 761 | if (PrintType) |
| 762 | printTypeInt(Out, V->getType(), TypeNames); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 763 | |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 764 | WriteAsOperandInternal(Out, V, TypeNames, 0); |
Chris Lattner | 5e5abe3 | 2001-07-20 19:15:21 +0000 | [diff] [blame] | 765 | return Out; |
| 766 | } |
| 767 | |
Reid Spencer | 58d30f2 | 2004-07-04 11:50:43 +0000 | [diff] [blame] | 768 | |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 769 | namespace llvm { |
Chris Lattner | 2e9fee4 | 2001-07-12 23:35:26 +0000 | [diff] [blame] | 770 | |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 771 | class AssemblyWriter { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 772 | std::ostream &Out; |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 773 | SlotMachine &Machine; |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 774 | const Module *TheModule; |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 775 | std::map<const Type *, std::string> TypeNames; |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 776 | AssemblyAnnotationWriter *AnnotationWriter; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 777 | public: |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 778 | inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M, |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 779 | AssemblyAnnotationWriter *AAW) |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 780 | : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) { |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 781 | |
| 782 | // If the module has a symbol table, take all global types and stuff their |
| 783 | // names into the TypeNames map. |
| 784 | // |
Chris Lattner | b86620e | 2001-10-29 16:37:48 +0000 | [diff] [blame] | 785 | fillTypeNameTable(M, TypeNames); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 786 | } |
| 787 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 788 | inline void write(const Module *M) { printModule(M); } |
| 789 | inline void write(const GlobalVariable *G) { printGlobal(G); } |
| 790 | inline void write(const GlobalAlias *G) { printAlias(G); } |
| 791 | inline void write(const Function *F) { printFunction(F); } |
| 792 | inline void write(const BasicBlock *BB) { printBasicBlock(BB); } |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 793 | inline void write(const Instruction *I) { printInstruction(*I); } |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 794 | inline void write(const Type *Ty) { printType(Ty); } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 795 | |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 796 | void writeOperand(const Value *Op, bool PrintType); |
Dale Johannesen | 89268bc | 2008-02-19 21:38:47 +0000 | [diff] [blame] | 797 | void writeParamOperand(const Value *Operand, ParameterAttributes Attrs); |
Chris Lattner | 1e19468 | 2002-04-18 18:53:13 +0000 | [diff] [blame] | 798 | |
Misha Brukman | 4685e26 | 2004-04-28 15:31:21 +0000 | [diff] [blame] | 799 | const Module* getModule() { return TheModule; } |
| 800 | |
Misha Brukman | d92f54a | 2004-11-15 19:30:05 +0000 | [diff] [blame] | 801 | private: |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 802 | void printModule(const Module *M); |
Reid Spencer | 32af9e8 | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 803 | void printTypeSymbolTable(const TypeSymbolTable &ST); |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 804 | void printGlobal(const GlobalVariable *GV); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 805 | void printAlias(const GlobalAlias *GV); |
Chris Lattner | 57698e2 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 806 | void printFunction(const Function *F); |
Dale Johannesen | 89268bc | 2008-02-19 21:38:47 +0000 | [diff] [blame] | 807 | void printArgument(const Argument *FA, ParameterAttributes Attrs); |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 808 | void printBasicBlock(const BasicBlock *BB); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 809 | void printInstruction(const Instruction &I); |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 810 | |
| 811 | // printType - Go to extreme measures to attempt to print out a short, |
| 812 | // symbolic version of a type name. |
| 813 | // |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 814 | std::ostream &printType(const Type *Ty) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 815 | return printTypeInt(Out, Ty, TypeNames); |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | // printTypeAtLeastOneLevel - Print out one level of the possibly complex type |
| 819 | // without considering any symbolic types that we may have equal to it. |
| 820 | // |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 821 | std::ostream &printTypeAtLeastOneLevel(const Type *Ty); |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 822 | |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 823 | // printInfoComment - Print a little comment after the instruction indicating |
| 824 | // which slot it occupies. |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 825 | void printInfoComment(const Value &V); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 826 | }; |
Reid Spencer | f43ac62 | 2004-05-27 22:04:46 +0000 | [diff] [blame] | 827 | } // end of llvm namespace |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 828 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 829 | /// printTypeAtLeastOneLevel - Print out one level of the possibly complex type |
| 830 | /// without considering any symbolic types that we may have equal to it. |
| 831 | /// |
Chris Lattner | ab7d1ab | 2003-05-08 02:08:14 +0000 | [diff] [blame] | 832 | std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 833 | if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) |
| 834 | Out << "i" << utostr(ITy->getBitWidth()); |
| 835 | else if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) { |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 836 | printType(FTy->getReturnType()); |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 837 | Out << " ("; |
Chris Lattner | fa829be | 2004-02-09 04:14:01 +0000 | [diff] [blame] | 838 | for (FunctionType::param_iterator I = FTy->param_begin(), |
| 839 | E = FTy->param_end(); I != E; ++I) { |
| 840 | if (I != FTy->param_begin()) |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 841 | Out << ", "; |
Chris Lattner | d84bb63 | 2002-04-16 21:36:08 +0000 | [diff] [blame] | 842 | printType(*I); |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 843 | } |
| 844 | if (FTy->isVarArg()) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 845 | if (FTy->getNumParams()) Out << ", "; |
| 846 | Out << "..."; |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 847 | } |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 848 | Out << ')'; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 849 | } else if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
Andrew Lenharth | dcb3c97 | 2006-12-08 18:06:16 +0000 | [diff] [blame] | 850 | if (STy->isPacked()) |
| 851 | Out << '<'; |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 852 | Out << "{ "; |
Chris Lattner | ac6db75 | 2004-02-09 04:37:31 +0000 | [diff] [blame] | 853 | for (StructType::element_iterator I = STy->element_begin(), |
| 854 | E = STy->element_end(); I != E; ++I) { |
| 855 | if (I != STy->element_begin()) |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 856 | Out << ", "; |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 857 | printType(*I); |
| 858 | } |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 859 | Out << " }"; |
Andrew Lenharth | dcb3c97 | 2006-12-08 18:06:16 +0000 | [diff] [blame] | 860 | if (STy->isPacked()) |
| 861 | Out << '>'; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 862 | } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) { |
Christopher Lamb | ac7d631 | 2007-12-18 03:49:35 +0000 | [diff] [blame] | 863 | printType(PTy->getElementType()); |
| 864 | if (unsigned AddressSpace = PTy->getAddressSpace()) |
| 865 | Out << " addrspace(" << AddressSpace << ")"; |
| 866 | Out << '*'; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 867 | } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 868 | Out << '[' << ATy->getNumElements() << " x "; |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 869 | printType(ATy->getElementType()) << ']'; |
Reid Spencer | d84d35b | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 870 | } else if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) { |
Reid Spencer | e203d35 | 2004-08-20 15:37:30 +0000 | [diff] [blame] | 871 | Out << '<' << PTy->getNumElements() << " x "; |
| 872 | printType(PTy->getElementType()) << '>'; |
| 873 | } |
Reid Spencer | de46e48 | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 874 | else if (isa<OpaqueType>(Ty)) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 875 | Out << "opaque"; |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 876 | } else { |
Vikram S. Adve | b952b54 | 2002-07-14 23:14:45 +0000 | [diff] [blame] | 877 | if (!Ty->isPrimitiveType()) |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 878 | Out << "<unknown derived type>"; |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 879 | printType(Ty); |
| 880 | } |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 881 | return Out; |
Chris Lattner | d816b53 | 2002-04-13 20:53:41 +0000 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 885 | void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) { |
| 886 | if (Operand == 0) { |
Chris Lattner | 08f7d0c | 2005-02-24 16:58:29 +0000 | [diff] [blame] | 887 | Out << "<null operand!>"; |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 888 | } else { |
| 889 | if (PrintType) { Out << ' '; printType(Operand->getType()); } |
| 890 | WriteAsOperandInternal(Out, Operand, TypeNames, &Machine); |
Chris Lattner | 08f7d0c | 2005-02-24 16:58:29 +0000 | [diff] [blame] | 891 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 892 | } |
| 893 | |
Dale Johannesen | 89268bc | 2008-02-19 21:38:47 +0000 | [diff] [blame] | 894 | void AssemblyWriter::writeParamOperand(const Value *Operand, |
| 895 | ParameterAttributes Attrs) { |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 896 | if (Operand == 0) { |
| 897 | Out << "<null operand!>"; |
| 898 | } else { |
| 899 | Out << ' '; |
| 900 | // Print the type |
| 901 | printType(Operand->getType()); |
| 902 | // Print parameter attributes list |
| 903 | if (Attrs != ParamAttr::None) |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 904 | Out << ' ' << ParamAttr::getAsString(Attrs); |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 905 | // Print the operand |
| 906 | WriteAsOperandInternal(Out, Operand, TypeNames, &Machine); |
| 907 | } |
| 908 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 909 | |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 910 | void AssemblyWriter::printModule(const Module *M) { |
Chris Lattner | 4d8689e | 2005-03-02 23:12:40 +0000 | [diff] [blame] | 911 | if (!M->getModuleIdentifier().empty() && |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 912 | // Don't print the ID if it will start a new line (which would |
Chris Lattner | 4d8689e | 2005-03-02 23:12:40 +0000 | [diff] [blame] | 913 | // require a comment char before it). |
| 914 | M->getModuleIdentifier().find('\n') == std::string::npos) |
| 915 | Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n"; |
| 916 | |
Owen Anderson | e223754 | 2006-10-18 02:21:12 +0000 | [diff] [blame] | 917 | if (!M->getDataLayout().empty()) |
Chris Lattner | 0489716 | 2006-10-22 06:06:56 +0000 | [diff] [blame] | 918 | Out << "target datalayout = \"" << M->getDataLayout() << "\"\n"; |
Reid Spencer | 48f98c8 | 2004-07-25 21:44:54 +0000 | [diff] [blame] | 919 | if (!M->getTargetTriple().empty()) |
Reid Spencer | ffec7df | 2004-07-25 21:29:43 +0000 | [diff] [blame] | 920 | Out << "target triple = \"" << M->getTargetTriple() << "\"\n"; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 921 | |
Chris Lattner | eef2fe7 | 2006-01-24 04:13:11 +0000 | [diff] [blame] | 922 | if (!M->getModuleInlineAsm().empty()) { |
Chris Lattner | efaf35d | 2006-01-24 00:45:30 +0000 | [diff] [blame] | 923 | // Split the string into lines, to make it easier to read the .ll file. |
Chris Lattner | eef2fe7 | 2006-01-24 04:13:11 +0000 | [diff] [blame] | 924 | std::string Asm = M->getModuleInlineAsm(); |
Chris Lattner | efaf35d | 2006-01-24 00:45:30 +0000 | [diff] [blame] | 925 | size_t CurPos = 0; |
| 926 | size_t NewLine = Asm.find_first_of('\n', CurPos); |
| 927 | while (NewLine != std::string::npos) { |
| 928 | // We found a newline, print the portion of the asm string from the |
| 929 | // last newline up to this newline. |
| 930 | Out << "module asm \""; |
| 931 | PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine), |
| 932 | Out); |
| 933 | Out << "\"\n"; |
| 934 | CurPos = NewLine+1; |
| 935 | NewLine = Asm.find_first_of('\n', CurPos); |
| 936 | } |
Chris Lattner | 3acaf5c | 2006-01-24 00:40:17 +0000 | [diff] [blame] | 937 | Out << "module asm \""; |
Chris Lattner | efaf35d | 2006-01-24 00:45:30 +0000 | [diff] [blame] | 938 | PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out); |
Chris Lattner | 6ed87bd | 2006-01-23 23:03:36 +0000 | [diff] [blame] | 939 | Out << "\"\n"; |
| 940 | } |
| 941 | |
Chris Lattner | 2cdd49d | 2004-09-14 05:06:58 +0000 | [diff] [blame] | 942 | // Loop over the dependent libraries and emit them. |
Chris Lattner | 730cfe4 | 2004-09-14 04:51:44 +0000 | [diff] [blame] | 943 | Module::lib_iterator LI = M->lib_begin(); |
| 944 | Module::lib_iterator LE = M->lib_end(); |
Reid Spencer | 48f98c8 | 2004-07-25 21:44:54 +0000 | [diff] [blame] | 945 | if (LI != LE) { |
Chris Lattner | 730cfe4 | 2004-09-14 04:51:44 +0000 | [diff] [blame] | 946 | Out << "deplibs = [ "; |
| 947 | while (LI != LE) { |
Chris Lattner | 2cdd49d | 2004-09-14 05:06:58 +0000 | [diff] [blame] | 948 | Out << '"' << *LI << '"'; |
Reid Spencer | ffec7df | 2004-07-25 21:29:43 +0000 | [diff] [blame] | 949 | ++LI; |
Chris Lattner | 730cfe4 | 2004-09-14 04:51:44 +0000 | [diff] [blame] | 950 | if (LI != LE) |
| 951 | Out << ", "; |
Reid Spencer | ffec7df | 2004-07-25 21:29:43 +0000 | [diff] [blame] | 952 | } |
| 953 | Out << " ]\n"; |
Reid Spencer | cc5ff64 | 2004-07-25 18:08:18 +0000 | [diff] [blame] | 954 | } |
Reid Spencer | b9e0877 | 2004-09-13 23:44:23 +0000 | [diff] [blame] | 955 | |
Chris Lattner | 2cdd49d | 2004-09-14 05:06:58 +0000 | [diff] [blame] | 956 | // Loop over the symbol table, emitting all named constants. |
Reid Spencer | 32af9e8 | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 957 | printTypeSymbolTable(M->getTypeSymbolTable()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 958 | |
Chris Lattner | 54932b0 | 2006-12-06 04:41:52 +0000 | [diff] [blame] | 959 | for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); |
| 960 | I != E; ++I) |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 961 | printGlobal(I); |
Chris Lattner | d274705 | 2007-04-26 02:24:10 +0000 | [diff] [blame] | 962 | |
| 963 | // Output all aliases. |
| 964 | if (!M->alias_empty()) Out << "\n"; |
| 965 | for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end(); |
| 966 | I != E; ++I) |
| 967 | printAlias(I); |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 968 | |
Chris Lattner | 2cdd49d | 2004-09-14 05:06:58 +0000 | [diff] [blame] | 969 | // Output all of the functions. |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 970 | for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) |
| 971 | printFunction(I); |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 972 | } |
| 973 | |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 974 | void AssemblyWriter::printGlobal(const GlobalVariable *GV) { |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 975 | if (GV->hasName()) { |
| 976 | PrintLLVMName(Out, GV); |
| 977 | Out << " = "; |
| 978 | } |
Chris Lattner | 3779864 | 2001-09-18 04:01:05 +0000 | [diff] [blame] | 979 | |
Bill Wendling | d21d90c | 2008-01-15 21:16:32 +0000 | [diff] [blame] | 980 | if (!GV->hasInitializer()) { |
Anton Korobeynikov | d61d39e | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 981 | switch (GV->getLinkage()) { |
| 982 | case GlobalValue::DLLImportLinkage: Out << "dllimport "; break; |
| 983 | case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break; |
| 984 | default: Out << "external "; break; |
Bill Wendling | d21d90c | 2008-01-15 21:16:32 +0000 | [diff] [blame] | 985 | } |
| 986 | } else { |
Chris Lattner | 379a8d2 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 987 | switch (GV->getLinkage()) { |
Anton Korobeynikov | d61d39e | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 988 | case GlobalValue::InternalLinkage: Out << "internal "; break; |
Dale Johannesen | ce4396b | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 989 | case GlobalValue::CommonLinkage: Out << "common "; break; |
Anton Korobeynikov | d61d39e | 2006-09-14 18:23:27 +0000 | [diff] [blame] | 990 | case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break; |
| 991 | case GlobalValue::WeakLinkage: Out << "weak "; break; |
| 992 | case GlobalValue::AppendingLinkage: Out << "appending "; break; |
| 993 | case GlobalValue::DLLImportLinkage: Out << "dllimport "; break; |
| 994 | case GlobalValue::DLLExportLinkage: Out << "dllexport "; break; |
| 995 | case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break; |
| 996 | case GlobalValue::ExternalLinkage: break; |
Misha Brukman | 7045763 | 2004-11-14 21:04:34 +0000 | [diff] [blame] | 997 | case GlobalValue::GhostLinkage: |
Bill Wendling | f3baad3 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 998 | cerr << "GhostLinkage not allowed in AsmWriter!\n"; |
Misha Brukman | 7045763 | 2004-11-14 21:04:34 +0000 | [diff] [blame] | 999 | abort(); |
Chris Lattner | 379a8d2 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 1000 | } |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 1001 | switch (GV->getVisibility()) { |
Chris Lattner | 90d2e42 | 2007-01-15 18:28:18 +0000 | [diff] [blame] | 1002 | default: assert(0 && "Invalid visibility style!"); |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 1003 | case GlobalValue::DefaultVisibility: break; |
| 1004 | case GlobalValue::HiddenVisibility: Out << "hidden "; break; |
Anton Korobeynikov | 39f3cff | 2007-04-29 18:35:00 +0000 | [diff] [blame] | 1005 | case GlobalValue::ProtectedVisibility: Out << "protected "; break; |
Anton Korobeynikov | a0554d9 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 1006 | } |
| 1007 | } |
Lauro Ramos Venancio | 749e466 | 2007-04-12 18:32:50 +0000 | [diff] [blame] | 1008 | |
| 1009 | if (GV->isThreadLocal()) Out << "thread_local "; |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1010 | Out << (GV->isConstant() ? "constant " : "global "); |
Chris Lattner | 2413b16 | 2001-12-04 00:03:30 +0000 | [diff] [blame] | 1011 | printType(GV->getType()->getElementType()); |
Chris Lattner | 3779864 | 2001-09-18 04:01:05 +0000 | [diff] [blame] | 1012 | |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1013 | if (GV->hasInitializer()) |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 1014 | writeOperand(GV->getInitializer(), false); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1015 | |
Christopher Lamb | 54dd24c | 2007-12-11 08:59:05 +0000 | [diff] [blame] | 1016 | if (unsigned AddressSpace = GV->getType()->getAddressSpace()) |
| 1017 | Out << " addrspace(" << AddressSpace << ") "; |
| 1018 | |
Chris Lattner | 4b96c54 | 2005-11-12 00:10:19 +0000 | [diff] [blame] | 1019 | if (GV->hasSection()) |
| 1020 | Out << ", section \"" << GV->getSection() << '"'; |
| 1021 | if (GV->getAlignment()) |
Chris Lattner | f8a974d | 2005-11-06 06:48:53 +0000 | [diff] [blame] | 1022 | Out << ", align " << GV->getAlignment(); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1023 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1024 | printInfoComment(*GV); |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1025 | Out << "\n"; |
Chris Lattner | da97550 | 2001-09-10 07:58:01 +0000 | [diff] [blame] | 1026 | } |
| 1027 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1028 | void AssemblyWriter::printAlias(const GlobalAlias *GA) { |
Dale Johannesen | 83e468a | 2008-06-03 18:14:29 +0000 | [diff] [blame] | 1029 | // Don't crash when dumping partially built GA |
| 1030 | if (!GA->hasName()) |
| 1031 | Out << "<<nameless>> = "; |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1032 | else { |
| 1033 | PrintLLVMName(Out, GA); |
| 1034 | Out << " = "; |
| 1035 | } |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1036 | switch (GA->getVisibility()) { |
| 1037 | default: assert(0 && "Invalid visibility style!"); |
| 1038 | case GlobalValue::DefaultVisibility: break; |
| 1039 | case GlobalValue::HiddenVisibility: Out << "hidden "; break; |
Anton Korobeynikov | 39f3cff | 2007-04-29 18:35:00 +0000 | [diff] [blame] | 1040 | case GlobalValue::ProtectedVisibility: Out << "protected "; break; |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | Out << "alias "; |
| 1044 | |
| 1045 | switch (GA->getLinkage()) { |
| 1046 | case GlobalValue::WeakLinkage: Out << "weak "; break; |
| 1047 | case GlobalValue::InternalLinkage: Out << "internal "; break; |
| 1048 | case GlobalValue::ExternalLinkage: break; |
| 1049 | default: |
| 1050 | assert(0 && "Invalid alias linkage"); |
| 1051 | } |
| 1052 | |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 1053 | const Constant *Aliasee = GA->getAliasee(); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1054 | |
| 1055 | if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) { |
| 1056 | printType(GV->getType()); |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1057 | Out << ' '; |
| 1058 | PrintLLVMName(Out, GV); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1059 | } else if (const Function *F = dyn_cast<Function>(Aliasee)) { |
| 1060 | printType(F->getFunctionType()); |
| 1061 | Out << "* "; |
| 1062 | |
Chris Lattner | 17f7165 | 2008-08-17 07:19:36 +0000 | [diff] [blame] | 1063 | if (F->hasName()) |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1064 | PrintLLVMName(Out, F); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1065 | else |
| 1066 | Out << "@\"\""; |
Anton Korobeynikov | 72d5d42 | 2008-03-22 08:17:17 +0000 | [diff] [blame] | 1067 | } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Aliasee)) { |
| 1068 | printType(GA->getType()); |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1069 | Out << " "; |
| 1070 | PrintLLVMName(Out, GA); |
Anton Korobeynikov | b18f8f8 | 2007-04-28 13:45:00 +0000 | [diff] [blame] | 1071 | } else { |
| 1072 | const ConstantExpr *CE = 0; |
| 1073 | if ((CE = dyn_cast<ConstantExpr>(Aliasee)) && |
| 1074 | (CE->getOpcode() == Instruction::BitCast)) { |
| 1075 | writeOperand(CE, false); |
| 1076 | } else |
| 1077 | assert(0 && "Unsupported aliasee"); |
| 1078 | } |
| 1079 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1080 | printInfoComment(*GA); |
| 1081 | Out << "\n"; |
| 1082 | } |
| 1083 | |
Reid Spencer | 32af9e8 | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 1084 | void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) { |
Reid Spencer | e7e9671 | 2004-05-25 08:53:40 +0000 | [diff] [blame] | 1085 | // Print the types. |
Reid Spencer | 32af9e8 | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 1086 | for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end(); |
| 1087 | TI != TE; ++TI) { |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 1088 | Out << "\t" << getLLVMName(TI->first, LocalPrefix) << " = type "; |
Reid Spencer | e7e9671 | 2004-05-25 08:53:40 +0000 | [diff] [blame] | 1089 | |
| 1090 | // Make sure we print out at least one level of the type structure, so |
| 1091 | // that we do not get %FILE = type %FILE |
| 1092 | // |
| 1093 | printTypeAtLeastOneLevel(TI->second) << "\n"; |
| 1094 | } |
Reid Spencer | 32af9e8 | 2007-01-06 07:24:44 +0000 | [diff] [blame] | 1095 | } |
| 1096 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 1097 | /// printFunction - Print all aspects of a function. |
| 1098 | /// |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1099 | void AssemblyWriter::printFunction(const Function *F) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1100 | // Print out the return type and name... |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1101 | Out << "\n"; |
Chris Lattner | 379a8d2 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 1102 | |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1103 | if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out); |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1104 | |
Reid Spencer | 5301e7c | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 1105 | if (F->isDeclaration()) |
Chris Lattner | 10f03a6 | 2007-08-19 22:15:26 +0000 | [diff] [blame] | 1106 | Out << "declare "; |
| 1107 | else |
Reid Spencer | 7ce2d2a | 2006-12-29 20:29:48 +0000 | [diff] [blame] | 1108 | Out << "define "; |
Chris Lattner | 10f03a6 | 2007-08-19 22:15:26 +0000 | [diff] [blame] | 1109 | |
| 1110 | switch (F->getLinkage()) { |
| 1111 | case GlobalValue::InternalLinkage: Out << "internal "; break; |
| 1112 | case GlobalValue::LinkOnceLinkage: Out << "linkonce "; break; |
| 1113 | case GlobalValue::WeakLinkage: Out << "weak "; break; |
Dale Johannesen | ce4396b | 2008-05-14 20:12:51 +0000 | [diff] [blame] | 1114 | case GlobalValue::CommonLinkage: Out << "common "; break; |
Chris Lattner | 10f03a6 | 2007-08-19 22:15:26 +0000 | [diff] [blame] | 1115 | case GlobalValue::AppendingLinkage: Out << "appending "; break; |
| 1116 | case GlobalValue::DLLImportLinkage: Out << "dllimport "; break; |
| 1117 | case GlobalValue::DLLExportLinkage: Out << "dllexport "; break; |
| 1118 | case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break; |
| 1119 | case GlobalValue::ExternalLinkage: break; |
| 1120 | case GlobalValue::GhostLinkage: |
| 1121 | cerr << "GhostLinkage not allowed in AsmWriter!\n"; |
| 1122 | abort(); |
| 1123 | } |
| 1124 | switch (F->getVisibility()) { |
| 1125 | default: assert(0 && "Invalid visibility style!"); |
| 1126 | case GlobalValue::DefaultVisibility: break; |
| 1127 | case GlobalValue::HiddenVisibility: Out << "hidden "; break; |
| 1128 | case GlobalValue::ProtectedVisibility: Out << "protected "; break; |
Reid Spencer | 7ce2d2a | 2006-12-29 20:29:48 +0000 | [diff] [blame] | 1129 | } |
Chris Lattner | 379a8d2 | 2003-04-16 20:28:45 +0000 | [diff] [blame] | 1130 | |
Chris Lattner | f7b6d31 | 2005-05-06 20:26:43 +0000 | [diff] [blame] | 1131 | // Print the calling convention. |
| 1132 | switch (F->getCallingConv()) { |
| 1133 | case CallingConv::C: break; // default |
Anton Korobeynikov | 3c5b3df | 2006-09-20 22:03:51 +0000 | [diff] [blame] | 1134 | case CallingConv::Fast: Out << "fastcc "; break; |
| 1135 | case CallingConv::Cold: Out << "coldcc "; break; |
| 1136 | case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break; |
| 1137 | case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break; |
Dale Johannesen | 332dd53 | 2008-08-13 18:40:23 +0000 | [diff] [blame] | 1138 | case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break; |
Chris Lattner | f7b6d31 | 2005-05-06 20:26:43 +0000 | [diff] [blame] | 1139 | default: Out << "cc" << F->getCallingConv() << " "; break; |
| 1140 | } |
| 1141 | |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 1142 | const FunctionType *FT = F->getFunctionType(); |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1143 | const PAListPtr &Attrs = F->getParamAttrs(); |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 1144 | printType(F->getReturnType()) << ' '; |
Chris Lattner | edceac3 | 2008-08-17 07:24:08 +0000 | [diff] [blame] | 1145 | if (F->hasName()) |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1146 | PrintLLVMName(Out, F); |
Chris Lattner | 5b33748 | 2003-10-18 05:57:43 +0000 | [diff] [blame] | 1147 | else |
Reid Spencer | 788e317 | 2007-01-26 08:02:52 +0000 | [diff] [blame] | 1148 | Out << "@\"\""; |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1149 | Out << '('; |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1150 | Machine.incorporateFunction(F); |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 1151 | |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 1152 | // Loop over the arguments, printing them... |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 1153 | |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 1154 | unsigned Idx = 1; |
Chris Lattner | 82738fe | 2007-04-18 00:57:22 +0000 | [diff] [blame] | 1155 | if (!F->isDeclaration()) { |
| 1156 | // If this isn't a declaration, print the argument names as well. |
| 1157 | for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); |
| 1158 | I != E; ++I) { |
| 1159 | // Insert commas as we go... the first arg doesn't get a comma |
| 1160 | if (I != F->arg_begin()) Out << ", "; |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1161 | printArgument(I, Attrs.getParamAttrs(Idx)); |
Chris Lattner | 82738fe | 2007-04-18 00:57:22 +0000 | [diff] [blame] | 1162 | Idx++; |
| 1163 | } |
| 1164 | } else { |
| 1165 | // Otherwise, print the types from the function type. |
| 1166 | for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { |
| 1167 | // Insert commas as we go... the first arg doesn't get a comma |
| 1168 | if (i) Out << ", "; |
| 1169 | |
| 1170 | // Output type... |
| 1171 | printType(FT->getParamType(i)); |
| 1172 | |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1173 | ParameterAttributes ArgAttrs = Attrs.getParamAttrs(i+1); |
Chris Lattner | 82738fe | 2007-04-18 00:57:22 +0000 | [diff] [blame] | 1174 | if (ArgAttrs != ParamAttr::None) |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1175 | Out << ' ' << ParamAttr::getAsString(ArgAttrs); |
Chris Lattner | 82738fe | 2007-04-18 00:57:22 +0000 | [diff] [blame] | 1176 | } |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 1177 | } |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 1178 | |
| 1179 | // Finish printing arguments... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1180 | if (FT->isVarArg()) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1181 | if (FT->getNumParams()) Out << ", "; |
| 1182 | Out << "..."; // Output varargs portion of signature! |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 1183 | } |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1184 | Out << ')'; |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1185 | ParameterAttributes RetAttrs = Attrs.getParamAttrs(0); |
| 1186 | if (RetAttrs != ParamAttr::None) |
| 1187 | Out << ' ' << ParamAttr::getAsString(Attrs.getParamAttrs(0)); |
Chris Lattner | 4b96c54 | 2005-11-12 00:10:19 +0000 | [diff] [blame] | 1188 | if (F->hasSection()) |
| 1189 | Out << " section \"" << F->getSection() << '"'; |
Chris Lattner | f8a974d | 2005-11-06 06:48:53 +0000 | [diff] [blame] | 1190 | if (F->getAlignment()) |
| 1191 | Out << " align " << F->getAlignment(); |
Gordon Henriksen | 71183b6 | 2007-12-10 03:18:06 +0000 | [diff] [blame] | 1192 | if (F->hasCollector()) |
| 1193 | Out << " gc \"" << F->getCollector() << '"'; |
Chris Lattner | 4b96c54 | 2005-11-12 00:10:19 +0000 | [diff] [blame] | 1194 | |
Reid Spencer | 5301e7c | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 1195 | if (F->isDeclaration()) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1196 | Out << "\n"; |
Chris Lattner | b2f02e5 | 2002-05-06 03:00:40 +0000 | [diff] [blame] | 1197 | } else { |
Chris Lattner | d5fbc8f | 2008-04-21 06:12:55 +0000 | [diff] [blame] | 1198 | Out << " {"; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1199 | |
Chris Lattner | 6915f8f | 2002-04-07 22:49:37 +0000 | [diff] [blame] | 1200 | // Output all of its basic blocks... for the function |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1201 | for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I) |
| 1202 | printBasicBlock(I); |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 1203 | |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1204 | Out << "}\n"; |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 1205 | } |
| 1206 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1207 | Machine.purgeFunction(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 1210 | /// printArgument - This member is called for every argument that is passed into |
| 1211 | /// the function. Simply print it out |
| 1212 | /// |
Dale Johannesen | 89268bc | 2008-02-19 21:38:47 +0000 | [diff] [blame] | 1213 | void AssemblyWriter::printArgument(const Argument *Arg, |
| 1214 | ParameterAttributes Attrs) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1215 | // Output type... |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 1216 | printType(Arg->getType()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1217 | |
Duncan Sands | ad0ea2d | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 1218 | // Output parameter attributes list |
Reid Spencer | a472f66 | 2007-04-11 02:44:20 +0000 | [diff] [blame] | 1219 | if (Attrs != ParamAttr::None) |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1220 | Out << ' ' << ParamAttr::getAsString(Attrs); |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 1221 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1222 | // Output name, if available... |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1223 | if (Arg->hasName()) { |
| 1224 | Out << ' '; |
| 1225 | PrintLLVMName(Out, Arg); |
| 1226 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1227 | } |
| 1228 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 1229 | /// printBasicBlock - This member is called for each basic block in a method. |
| 1230 | /// |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 1231 | void AssemblyWriter::printBasicBlock(const BasicBlock *BB) { |
Nick Lewycky | 4d43d3c | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 1232 | if (BB->hasName()) { // Print out the label if it exists... |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1233 | Out << "\n"; |
| 1234 | PrintLLVMName(Out, BB->getValueName(), LabelPrefix); |
| 1235 | Out << ':'; |
Nick Lewycky | 4d43d3c | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 1236 | } else if (!BB->use_empty()) { // Don't print block # of no uses... |
Chris Lattner | 67bec13 | 2008-04-21 04:20:33 +0000 | [diff] [blame] | 1237 | Out << "\n; <label>:"; |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 1238 | int Slot = Machine.getLocalSlot(BB); |
Chris Lattner | 757ee0b | 2004-06-09 19:41:19 +0000 | [diff] [blame] | 1239 | if (Slot != -1) |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1240 | Out << Slot; |
Chris Lattner | 757ee0b | 2004-06-09 19:41:19 +0000 | [diff] [blame] | 1241 | else |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1242 | Out << "<badref>"; |
Chris Lattner | 58185f2 | 2002-10-02 19:38:55 +0000 | [diff] [blame] | 1243 | } |
Chris Lattner | 2447ef5 | 2003-11-20 00:09:43 +0000 | [diff] [blame] | 1244 | |
| 1245 | if (BB->getParent() == 0) |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1246 | Out << "\t\t; Error: Block without parent!"; |
Chris Lattner | ff834c0 | 2008-04-22 02:45:44 +0000 | [diff] [blame] | 1247 | else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block? |
| 1248 | // Output predecessors for the block... |
| 1249 | Out << "\t\t;"; |
| 1250 | pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB); |
| 1251 | |
| 1252 | if (PI == PE) { |
| 1253 | Out << " No predecessors!"; |
| 1254 | } else { |
| 1255 | Out << " preds ="; |
| 1256 | writeOperand(*PI, false); |
| 1257 | for (++PI; PI != PE; ++PI) { |
| 1258 | Out << ','; |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 1259 | writeOperand(*PI, false); |
Chris Lattner | 00211f1 | 2003-11-16 22:59:57 +0000 | [diff] [blame] | 1260 | } |
Chris Lattner | 58185f2 | 2002-10-02 19:38:55 +0000 | [diff] [blame] | 1261 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1262 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1263 | |
Chris Lattner | ff834c0 | 2008-04-22 02:45:44 +0000 | [diff] [blame] | 1264 | Out << "\n"; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1265 | |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1266 | if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out); |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1267 | |
Chris Lattner | fee714f | 2001-09-07 16:36:04 +0000 | [diff] [blame] | 1268 | // Output all of the instructions in the basic block... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1269 | for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 1270 | printInstruction(*I); |
Chris Lattner | 96cdd27 | 2004-03-08 18:51:45 +0000 | [diff] [blame] | 1271 | |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1272 | if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1273 | } |
| 1274 | |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1275 | |
Misha Brukman | c566ca36 | 2004-03-02 00:22:19 +0000 | [diff] [blame] | 1276 | /// printInfoComment - Print a little comment after the instruction indicating |
| 1277 | /// which slot it occupies. |
| 1278 | /// |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1279 | void AssemblyWriter::printInfoComment(const Value &V) { |
| 1280 | if (V.getType() != Type::VoidTy) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1281 | Out << "\t\t; <"; |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 1282 | printType(V.getType()) << '>'; |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1283 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1284 | if (!V.hasName()) { |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 1285 | int SlotNum; |
| 1286 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V)) |
| 1287 | SlotNum = Machine.getGlobalSlot(GV); |
| 1288 | else |
| 1289 | SlotNum = Machine.getLocalSlot(&V); |
Chris Lattner | 757ee0b | 2004-06-09 19:41:19 +0000 | [diff] [blame] | 1290 | if (SlotNum == -1) |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1291 | Out << ":<badref>"; |
Reid Spencer | 8beac69 | 2004-06-09 15:26:53 +0000 | [diff] [blame] | 1292 | else |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1293 | Out << ':' << SlotNum; // Print out the def slot taken. |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1294 | } |
Chris Lattner | b6c21db | 2005-02-01 01:24:01 +0000 | [diff] [blame] | 1295 | Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1296 | } |
| 1297 | } |
| 1298 | |
Reid Spencer | e7141c8 | 2006-08-28 01:02:49 +0000 | [diff] [blame] | 1299 | // This member is called for each Instruction in a function.. |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1300 | void AssemblyWriter::printInstruction(const Instruction &I) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1301 | if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out); |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1302 | |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1303 | Out << "\t"; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1304 | |
| 1305 | // Print out name if it exists... |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1306 | if (I.hasName()) { |
| 1307 | PrintLLVMName(Out, &I); |
| 1308 | Out << " = "; |
| 1309 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1310 | |
Chris Lattner | 0603845 | 2005-05-06 05:51:46 +0000 | [diff] [blame] | 1311 | // If this is a volatile load or store, print out the volatile marker. |
Chris Lattner | 504f924 | 2003-09-08 17:45:59 +0000 | [diff] [blame] | 1312 | if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) || |
Chris Lattner | 0603845 | 2005-05-06 05:51:46 +0000 | [diff] [blame] | 1313 | (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1314 | Out << "volatile "; |
Chris Lattner | 0603845 | 2005-05-06 05:51:46 +0000 | [diff] [blame] | 1315 | } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) { |
| 1316 | // If this is a call, check if it's a tail call. |
| 1317 | Out << "tail "; |
| 1318 | } |
Chris Lattner | 504f924 | 2003-09-08 17:45:59 +0000 | [diff] [blame] | 1319 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1320 | // Print out the opcode... |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1321 | Out << I.getOpcodeName(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1322 | |
Reid Spencer | 45e5239 | 2006-12-03 06:27:29 +0000 | [diff] [blame] | 1323 | // Print out the compare instruction predicates |
Nate Begeman | d219570 | 2008-05-12 19:01:56 +0000 | [diff] [blame] | 1324 | if (const CmpInst *CI = dyn_cast<CmpInst>(&I)) |
| 1325 | Out << " " << getPredicateText(CI->getPredicate()); |
Reid Spencer | 45e5239 | 2006-12-03 06:27:29 +0000 | [diff] [blame] | 1326 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1327 | // Print out the type of the operands... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1328 | const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1329 | |
| 1330 | // Special case conditional branches to swizzle the condition out to the front |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1331 | if (isa<BranchInst>(I) && I.getNumOperands() > 1) { |
| 1332 | writeOperand(I.getOperand(2), true); |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1333 | Out << ','; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1334 | writeOperand(Operand, true); |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1335 | Out << ','; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1336 | writeOperand(I.getOperand(1), true); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1337 | |
Chris Lattner | 8d48df2 | 2002-04-13 18:34:38 +0000 | [diff] [blame] | 1338 | } else if (isa<SwitchInst>(I)) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1339 | // Special case switch statement to get formatting nice and correct... |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1340 | writeOperand(Operand , true); Out << ','; |
| 1341 | writeOperand(I.getOperand(1), true); Out << " ["; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1342 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1343 | for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1344 | Out << "\n\t\t"; |
| 1345 | writeOperand(I.getOperand(op ), true); Out << ','; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1346 | writeOperand(I.getOperand(op+1), true); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1347 | } |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1348 | Out << "\n\t]"; |
Chris Lattner | da55810 | 2001-10-02 03:41:24 +0000 | [diff] [blame] | 1349 | } else if (isa<PHINode>(I)) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1350 | Out << ' '; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1351 | printType(I.getType()); |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1352 | Out << ' '; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1353 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1354 | for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1355 | if (op) Out << ", "; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1356 | Out << '['; |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1357 | writeOperand(I.getOperand(op ), false); Out << ','; |
| 1358 | writeOperand(I.getOperand(op+1), false); Out << " ]"; |
Chris Lattner | 931ef3b | 2001-06-11 15:04:20 +0000 | [diff] [blame] | 1359 | } |
Dan Gohman | a76f0f7 | 2008-05-31 19:12:39 +0000 | [diff] [blame] | 1360 | } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) { |
| 1361 | writeOperand(I.getOperand(0), true); |
| 1362 | for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i) |
| 1363 | Out << ", " << *i; |
| 1364 | } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) { |
| 1365 | writeOperand(I.getOperand(0), true); Out << ','; |
| 1366 | writeOperand(I.getOperand(1), true); |
| 1367 | for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i) |
| 1368 | Out << ", " << *i; |
Devang Patel | 59643e5 | 2008-02-23 00:35:18 +0000 | [diff] [blame] | 1369 | } else if (isa<ReturnInst>(I) && !Operand) { |
| 1370 | Out << " void"; |
Chris Lattner | f7b6d31 | 2005-05-06 20:26:43 +0000 | [diff] [blame] | 1371 | } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) { |
| 1372 | // Print the calling convention being used. |
| 1373 | switch (CI->getCallingConv()) { |
| 1374 | case CallingConv::C: break; // default |
Chris Lattner | 29d2085 | 2006-05-19 21:58:52 +0000 | [diff] [blame] | 1375 | case CallingConv::Fast: Out << " fastcc"; break; |
| 1376 | case CallingConv::Cold: Out << " coldcc"; break; |
Chris Lattner | f527037 | 2007-11-18 18:32:16 +0000 | [diff] [blame] | 1377 | case CallingConv::X86_StdCall: Out << " x86_stdcallcc"; break; |
| 1378 | case CallingConv::X86_FastCall: Out << " x86_fastcallcc"; break; |
Dale Johannesen | 332dd53 | 2008-08-13 18:40:23 +0000 | [diff] [blame] | 1379 | case CallingConv::X86_SSECall: Out << " x86_ssecallcc"; break; |
Chris Lattner | f7b6d31 | 2005-05-06 20:26:43 +0000 | [diff] [blame] | 1380 | default: Out << " cc" << CI->getCallingConv(); break; |
| 1381 | } |
| 1382 | |
Reid Spencer | 1517de3 | 2007-04-09 06:10:42 +0000 | [diff] [blame] | 1383 | const PointerType *PTy = cast<PointerType>(Operand->getType()); |
| 1384 | const FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); |
| 1385 | const Type *RetTy = FTy->getReturnType(); |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1386 | const PAListPtr &PAL = CI->getParamAttrs(); |
Chris Lattner | 2f2d947 | 2001-11-06 21:28:12 +0000 | [diff] [blame] | 1387 | |
Chris Lattner | 463d6a5 | 2003-08-05 15:34:45 +0000 | [diff] [blame] | 1388 | // If possible, print out the short form of the call instruction. We can |
Chris Lattner | 6915f8f | 2002-04-07 22:49:37 +0000 | [diff] [blame] | 1389 | // only do this if the first argument is a pointer to a nonvararg function, |
Chris Lattner | 463d6a5 | 2003-08-05 15:34:45 +0000 | [diff] [blame] | 1390 | // and if the return type is not a pointer to a function. |
Chris Lattner | 2f2d947 | 2001-11-06 21:28:12 +0000 | [diff] [blame] | 1391 | // |
Chris Lattner | 463d6a5 | 2003-08-05 15:34:45 +0000 | [diff] [blame] | 1392 | if (!FTy->isVarArg() && |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1393 | (!isa<PointerType>(RetTy) || |
Chris Lattner | d9a36a6 | 2002-07-25 20:58:51 +0000 | [diff] [blame] | 1394 | !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1395 | Out << ' '; printType(RetTy); |
Chris Lattner | 2f2d947 | 2001-11-06 21:28:12 +0000 | [diff] [blame] | 1396 | writeOperand(Operand, false); |
| 1397 | } else { |
| 1398 | writeOperand(Operand, true); |
| 1399 | } |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1400 | Out << '('; |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 1401 | for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) { |
| 1402 | if (op > 1) |
| 1403 | Out << ','; |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1404 | writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op)); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1405 | } |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1406 | Out << " )"; |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1407 | if (PAL.getParamAttrs(0) != ParamAttr::None) |
| 1408 | Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0)); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1409 | } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) { |
Reid Spencer | 1517de3 | 2007-04-09 06:10:42 +0000 | [diff] [blame] | 1410 | const PointerType *PTy = cast<PointerType>(Operand->getType()); |
| 1411 | const FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); |
| 1412 | const Type *RetTy = FTy->getReturnType(); |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1413 | const PAListPtr &PAL = II->getParamAttrs(); |
Chris Lattner | 463d6a5 | 2003-08-05 15:34:45 +0000 | [diff] [blame] | 1414 | |
Chris Lattner | f7b6d31 | 2005-05-06 20:26:43 +0000 | [diff] [blame] | 1415 | // Print the calling convention being used. |
| 1416 | switch (II->getCallingConv()) { |
| 1417 | case CallingConv::C: break; // default |
Chris Lattner | 29d2085 | 2006-05-19 21:58:52 +0000 | [diff] [blame] | 1418 | case CallingConv::Fast: Out << " fastcc"; break; |
| 1419 | case CallingConv::Cold: Out << " coldcc"; break; |
Anton Korobeynikov | 3c5b3df | 2006-09-20 22:03:51 +0000 | [diff] [blame] | 1420 | case CallingConv::X86_StdCall: Out << "x86_stdcallcc "; break; |
| 1421 | case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break; |
Dale Johannesen | 332dd53 | 2008-08-13 18:40:23 +0000 | [diff] [blame] | 1422 | case CallingConv::X86_SSECall: Out << "x86_ssecallcc "; break; |
Chris Lattner | f7b6d31 | 2005-05-06 20:26:43 +0000 | [diff] [blame] | 1423 | default: Out << " cc" << II->getCallingConv(); break; |
| 1424 | } |
| 1425 | |
Chris Lattner | 463d6a5 | 2003-08-05 15:34:45 +0000 | [diff] [blame] | 1426 | // If possible, print out the short form of the invoke instruction. We can |
| 1427 | // only do this if the first argument is a pointer to a nonvararg function, |
| 1428 | // and if the return type is not a pointer to a function. |
| 1429 | // |
| 1430 | if (!FTy->isVarArg() && |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1431 | (!isa<PointerType>(RetTy) || |
Chris Lattner | 463d6a5 | 2003-08-05 15:34:45 +0000 | [diff] [blame] | 1432 | !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1433 | Out << ' '; printType(RetTy); |
Chris Lattner | 463d6a5 | 2003-08-05 15:34:45 +0000 | [diff] [blame] | 1434 | writeOperand(Operand, false); |
| 1435 | } else { |
| 1436 | writeOperand(Operand, true); |
| 1437 | } |
| 1438 | |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1439 | Out << '('; |
Reid Spencer | 8c4914c | 2006-12-31 05:24:50 +0000 | [diff] [blame] | 1440 | for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) { |
| 1441 | if (op > 3) |
| 1442 | Out << ','; |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1443 | writeParamOperand(I.getOperand(op), PAL.getParamAttrs(op-2)); |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1444 | } |
| 1445 | |
Reid Spencer | 136a91c | 2007-01-05 17:06:19 +0000 | [diff] [blame] | 1446 | Out << " )"; |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 1447 | if (PAL.getParamAttrs(0) != ParamAttr::None) |
Dan Gohman | 1a70bcc | 2008-08-05 15:51:44 +0000 | [diff] [blame] | 1448 | Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0)); |
Reid Spencer | 136a91c | 2007-01-05 17:06:19 +0000 | [diff] [blame] | 1449 | Out << "\n\t\t\tto"; |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1450 | writeOperand(II->getNormalDest(), true); |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1451 | Out << " unwind"; |
Chris Lattner | fae8ab3 | 2004-02-08 21:44:31 +0000 | [diff] [blame] | 1452 | writeOperand(II->getUnwindDest(), true); |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1453 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1454 | } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1455 | Out << ' '; |
Chris Lattner | 8d48df2 | 2002-04-13 18:34:38 +0000 | [diff] [blame] | 1456 | printType(AI->getType()->getElementType()); |
| 1457 | if (AI->isArrayAllocation()) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1458 | Out << ','; |
Chris Lattner | 8d48df2 | 2002-04-13 18:34:38 +0000 | [diff] [blame] | 1459 | writeOperand(AI->getArraySize(), true); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1460 | } |
Nate Begeman | 848622f | 2005-11-05 09:21:28 +0000 | [diff] [blame] | 1461 | if (AI->getAlignment()) { |
Chris Lattner | 7aeee3a | 2005-11-05 21:20:34 +0000 | [diff] [blame] | 1462 | Out << ", align " << AI->getAlignment(); |
Nate Begeman | 848622f | 2005-11-05 09:21:28 +0000 | [diff] [blame] | 1463 | } |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1464 | } else if (isa<CastInst>(I)) { |
Chris Lattner | c96e96b | 2003-11-17 01:17:04 +0000 | [diff] [blame] | 1465 | if (Operand) writeOperand(Operand, true); // Work with broken code |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1466 | Out << " to "; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1467 | printType(I.getType()); |
Chris Lattner | 5b33748 | 2003-10-18 05:57:43 +0000 | [diff] [blame] | 1468 | } else if (isa<VAArgInst>(I)) { |
Chris Lattner | c96e96b | 2003-11-17 01:17:04 +0000 | [diff] [blame] | 1469 | if (Operand) writeOperand(Operand, true); // Work with broken code |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1470 | Out << ", "; |
Chris Lattner | f70da10 | 2003-05-08 02:44:12 +0000 | [diff] [blame] | 1471 | printType(I.getType()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1472 | } else if (Operand) { // Print the normal way... |
| 1473 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1474 | // PrintAllTypes - Instructions who have operands of all the same type |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1475 | // omit the type from all but the first operand. If the instruction has |
| 1476 | // different type operands (for example br), then they are all printed. |
| 1477 | bool PrintAllTypes = false; |
| 1478 | const Type *TheType = Operand->getType(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1479 | |
Reid Spencer | 0cdd04f | 2007-02-02 13:54:55 +0000 | [diff] [blame] | 1480 | // Select, Store and ShuffleVector always print all types. |
Devang Patel | ce556d9 | 2008-03-04 22:05:14 +0000 | [diff] [blame] | 1481 | if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I) |
| 1482 | || isa<ReturnInst>(I)) { |
Chris Lattner | deccfaf | 2003-04-16 20:20:02 +0000 | [diff] [blame] | 1483 | PrintAllTypes = true; |
| 1484 | } else { |
| 1485 | for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) { |
| 1486 | Operand = I.getOperand(i); |
| 1487 | if (Operand->getType() != TheType) { |
| 1488 | PrintAllTypes = true; // We have differing types! Print them all! |
| 1489 | break; |
| 1490 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1491 | } |
| 1492 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1493 | |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 1494 | if (!PrintAllTypes) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1495 | Out << ' '; |
Chris Lattner | deccfaf | 2003-04-16 20:20:02 +0000 | [diff] [blame] | 1496 | printType(TheType); |
Chris Lattner | 7bfee41 | 2001-10-29 16:05:51 +0000 | [diff] [blame] | 1497 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1498 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1499 | for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) { |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1500 | if (i) Out << ','; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 1501 | writeOperand(I.getOperand(i), PrintAllTypes); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1502 | } |
| 1503 | } |
Christopher Lamb | 8448570 | 2007-04-22 19:24:39 +0000 | [diff] [blame] | 1504 | |
| 1505 | // Print post operand alignment for load/store |
| 1506 | if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) { |
| 1507 | Out << ", align " << cast<LoadInst>(I).getAlignment(); |
| 1508 | } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) { |
| 1509 | Out << ", align " << cast<StoreInst>(I).getAlignment(); |
| 1510 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1511 | |
Chris Lattner | 862e338 | 2001-10-13 06:42:36 +0000 | [diff] [blame] | 1512 | printInfoComment(I); |
Misha Brukman | a6619a9 | 2004-06-21 21:53:56 +0000 | [diff] [blame] | 1513 | Out << "\n"; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1514 | } |
| 1515 | |
| 1516 | |
| 1517 | //===----------------------------------------------------------------------===// |
| 1518 | // External Interface declarations |
| 1519 | //===----------------------------------------------------------------------===// |
| 1520 | |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1521 | void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1522 | SlotMachine SlotTable(this); |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1523 | AssemblyWriter W(o, SlotTable, this, AAW); |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1524 | W.write(this); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1525 | } |
| 1526 | |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1527 | void GlobalVariable::print(std::ostream &o) const { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1528 | SlotMachine SlotTable(getParent()); |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1529 | AssemblyWriter W(o, SlotTable, getParent(), 0); |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1530 | W.write(this); |
Chris Lattner | adfe0d1 | 2001-09-10 20:08:19 +0000 | [diff] [blame] | 1531 | } |
| 1532 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1533 | void GlobalAlias::print(std::ostream &o) const { |
| 1534 | SlotMachine SlotTable(getParent()); |
| 1535 | AssemblyWriter W(o, SlotTable, getParent(), 0); |
| 1536 | W.write(this); |
| 1537 | } |
| 1538 | |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1539 | void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1540 | SlotMachine SlotTable(getParent()); |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1541 | AssemblyWriter W(o, SlotTable, getParent(), AAW); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1542 | |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1543 | W.write(this); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1544 | } |
| 1545 | |
Chris Lattner | eef2fe7 | 2006-01-24 04:13:11 +0000 | [diff] [blame] | 1546 | void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const { |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 1547 | WriteAsOperand(o, this, true, 0); |
Chris Lattner | eef2fe7 | 2006-01-24 04:13:11 +0000 | [diff] [blame] | 1548 | } |
| 1549 | |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1550 | void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1551 | SlotMachine SlotTable(getParent()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1552 | AssemblyWriter W(o, SlotTable, |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1553 | getParent() ? getParent()->getParent() : 0, AAW); |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1554 | W.write(this); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1555 | } |
| 1556 | |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1557 | void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const { |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1558 | const Function *F = getParent() ? getParent()->getParent() : 0; |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1559 | SlotMachine SlotTable(F); |
Chris Lattner | 8339f7d | 2003-10-30 23:41:03 +0000 | [diff] [blame] | 1560 | AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1561 | |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1562 | W.write(this); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1563 | } |
Chris Lattner | 7db7958 | 2001-11-07 04:21:57 +0000 | [diff] [blame] | 1564 | |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1565 | void Constant::print(std::ostream &o) const { |
| 1566 | if (this == 0) { o << "<null> constant value\n"; return; } |
Chris Lattner | 7d73480 | 2002-09-10 15:53:49 +0000 | [diff] [blame] | 1567 | |
Misha Brukman | 21bbdb9 | 2004-06-04 21:11:51 +0000 | [diff] [blame] | 1568 | o << ' ' << getType()->getDescription() << ' '; |
Evan Cheng | 5b19a80 | 2006-03-01 22:17:00 +0000 | [diff] [blame] | 1569 | |
| 1570 | std::map<const Type *, std::string> TypeTable; |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 1571 | WriteConstantInt(o, this, TypeTable, 0); |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1572 | } |
| 1573 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1574 | void Type::print(std::ostream &o) const { |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1575 | if (this == 0) |
| 1576 | o << "<null Type>"; |
| 1577 | else |
| 1578 | o << getDescription(); |
| 1579 | } |
| 1580 | |
Chris Lattner | 2e9fa6d | 2002-04-09 19:48:49 +0000 | [diff] [blame] | 1581 | void Argument::print(std::ostream &o) const { |
Chris Lattner | 78e2e8b | 2006-12-06 06:24:27 +0000 | [diff] [blame] | 1582 | WriteAsOperand(o, this, true, getParent() ? getParent()->getParent() : 0); |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1583 | } |
| 1584 | |
Reid Spencer | 5264183 | 2004-05-25 18:14:38 +0000 | [diff] [blame] | 1585 | // Value::dump - allow easy printing of Values from the debugger. |
| 1586 | // Located here because so much of the needed functionality is here. |
Bill Wendling | 22e978a | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 1587 | void Value::dump() const { print(*cerr.stream()); cerr << '\n'; } |
Reid Spencer | 5264183 | 2004-05-25 18:14:38 +0000 | [diff] [blame] | 1588 | |
| 1589 | // Type::dump - allow easy printing of Values from the debugger. |
| 1590 | // Located here because so much of the needed functionality is here. |
Bill Wendling | 22e978a | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 1591 | void Type::dump() const { print(*cerr.stream()); cerr << '\n'; } |
Chris Lattner | c0b4c7b | 2002-04-08 22:03:40 +0000 | [diff] [blame] | 1592 | |
| 1593 | //===----------------------------------------------------------------------===// |
Chris Lattner | fc9f1c9 | 2006-12-06 06:40:49 +0000 | [diff] [blame] | 1594 | // SlotMachine Implementation |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1595 | //===----------------------------------------------------------------------===// |
| 1596 | |
| 1597 | #if 0 |
Bill Wendling | f3baad3 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 1598 | #define SC_DEBUG(X) cerr << X |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1599 | #else |
| 1600 | #define SC_DEBUG(X) |
| 1601 | #endif |
| 1602 | |
| 1603 | // Module level constructor. Causes the contents of the Module (sans functions) |
| 1604 | // to be added to the slot table. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1605 | SlotMachine::SlotMachine(const Module *M) |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1606 | : TheModule(M) ///< Saved for lazy initialization. |
| 1607 | , TheFunction(0) |
Reid Spencer | b0ac8c4 | 2004-08-16 07:46:33 +0000 | [diff] [blame] | 1608 | , FunctionProcessed(false) |
Chris Lattner | a204d41 | 2008-08-17 17:25:25 +0000 | [diff] [blame^] | 1609 | , mNext(0), fNext(0) |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1610 | { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | // Function level constructor. Causes the contents of the Module and the one |
| 1614 | // function provided to be added to the slot table. |
Chris Lattner | 23e829a | 2006-12-06 05:12:21 +0000 | [diff] [blame] | 1615 | SlotMachine::SlotMachine(const Function *F) |
| 1616 | : TheModule(F ? F->getParent() : 0) ///< Saved for lazy initialization |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1617 | , TheFunction(F) ///< Saved for lazy initialization |
Reid Spencer | b0ac8c4 | 2004-08-16 07:46:33 +0000 | [diff] [blame] | 1618 | , FunctionProcessed(false) |
Chris Lattner | a204d41 | 2008-08-17 17:25:25 +0000 | [diff] [blame^] | 1619 | , mNext(0), fNext(0) |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1620 | { |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1621 | } |
| 1622 | |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 1623 | inline void SlotMachine::initialize() { |
Chris Lattner | 23e829a | 2006-12-06 05:12:21 +0000 | [diff] [blame] | 1624 | if (TheModule) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1625 | processModule(); |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1626 | TheModule = 0; ///< Prevent re-processing next time we're called. |
| 1627 | } |
Chris Lattner | 193de90 | 2006-12-06 05:27:40 +0000 | [diff] [blame] | 1628 | if (TheFunction && !FunctionProcessed) |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1629 | processFunction(); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1630 | } |
| 1631 | |
| 1632 | // Iterate through all the global variables, functions, and global |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1633 | // variable initializers and create slots for them. |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1634 | void SlotMachine::processModule() { |
| 1635 | SC_DEBUG("begin processModule!\n"); |
| 1636 | |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1637 | // Add all of the unnamed global variables to the value table. |
Chris Lattner | 54932b0 | 2006-12-06 04:41:52 +0000 | [diff] [blame] | 1638 | for (Module::const_global_iterator I = TheModule->global_begin(), |
| 1639 | E = TheModule->global_end(); I != E; ++I) |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1640 | if (!I->hasName()) |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 1641 | CreateModuleSlot(I); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1642 | |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1643 | // Add all the unnamed functions to the table. |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1644 | for (Module::const_iterator I = TheModule->begin(), E = TheModule->end(); |
| 1645 | I != E; ++I) |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1646 | if (!I->hasName()) |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 1647 | CreateModuleSlot(I); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1648 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1649 | SC_DEBUG("end processModule!\n"); |
| 1650 | } |
| 1651 | |
| 1652 | |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1653 | // Process the arguments, basic blocks, and instructions of a function. |
| 1654 | void SlotMachine::processFunction() { |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1655 | SC_DEBUG("begin processFunction!\n"); |
Reid Spencer | 5081678 | 2007-03-19 18:32:53 +0000 | [diff] [blame] | 1656 | fNext = 0; |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1657 | |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1658 | // Add all the function arguments with no names. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1659 | for(Function::const_arg_iterator AI = TheFunction->arg_begin(), |
Chris Lattner | 531f9e9 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 1660 | AE = TheFunction->arg_end(); AI != AE; ++AI) |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1661 | if (!AI->hasName()) |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 1662 | CreateFunctionSlot(AI); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1663 | |
| 1664 | SC_DEBUG("Inserting Instructions:\n"); |
| 1665 | |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1666 | // Add all of the basic blocks and instructions with no names. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1667 | for (Function::const_iterator BB = TheFunction->begin(), |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1668 | E = TheFunction->end(); BB != E; ++BB) { |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1669 | if (!BB->hasName()) |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 1670 | CreateFunctionSlot(BB); |
Chris Lattner | 0dda861 | 2006-12-06 06:15:43 +0000 | [diff] [blame] | 1671 | for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 1672 | if (I->getType() != Type::VoidTy && !I->hasName()) |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 1673 | CreateFunctionSlot(I); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1674 | } |
| 1675 | |
Reid Spencer | b0ac8c4 | 2004-08-16 07:46:33 +0000 | [diff] [blame] | 1676 | FunctionProcessed = true; |
| 1677 | |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1678 | SC_DEBUG("end processFunction!\n"); |
| 1679 | } |
| 1680 | |
Chris Lattner | 193de90 | 2006-12-06 05:27:40 +0000 | [diff] [blame] | 1681 | /// Clean up after incorporating a function. This is the only way to get out of |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 1682 | /// the function incorporation state that affects get*Slot/Create*Slot. Function |
Chris Lattner | 89e774e | 2007-01-09 07:46:21 +0000 | [diff] [blame] | 1683 | /// incorporation state is indicated by TheFunction != 0. |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1684 | void SlotMachine::purgeFunction() { |
| 1685 | SC_DEBUG("begin purgeFunction!\n"); |
| 1686 | fMap.clear(); // Simply discard the function level map |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1687 | TheFunction = 0; |
Reid Spencer | b0ac8c4 | 2004-08-16 07:46:33 +0000 | [diff] [blame] | 1688 | FunctionProcessed = false; |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1689 | SC_DEBUG("end purgeFunction!\n"); |
| 1690 | } |
| 1691 | |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 1692 | /// getGlobalSlot - Get the slot number of a global value. |
| 1693 | int SlotMachine::getGlobalSlot(const GlobalValue *V) { |
| 1694 | // Check for uninitialized state and do lazy initialization. |
| 1695 | initialize(); |
| 1696 | |
| 1697 | // Find the type plane in the module map |
Chris Lattner | a204d41 | 2008-08-17 17:25:25 +0000 | [diff] [blame^] | 1698 | ValueMap::iterator MI = mMap.find(V); |
| 1699 | return MI == mMap.end() ? -1 : MI->second; |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 1700 | } |
Reid Spencer | 56010e4 | 2004-05-26 21:56:09 +0000 | [diff] [blame] | 1701 | |
Chris Lattner | 5e04332 | 2007-01-11 03:54:27 +0000 | [diff] [blame] | 1702 | |
| 1703 | /// getLocalSlot - Get the slot number for a value that is local to a function. |
| 1704 | int SlotMachine::getLocalSlot(const Value *V) { |
| 1705 | assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!"); |
| 1706 | |
| 1707 | // Check for uninitialized state and do lazy initialization. |
| 1708 | initialize(); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1709 | |
Chris Lattner | a204d41 | 2008-08-17 17:25:25 +0000 | [diff] [blame^] | 1710 | ValueMap::iterator FI = fMap.find(V); |
| 1711 | return FI == fMap.end() ? -1 : FI->second; |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1712 | } |
| 1713 | |
Reid Spencer | 58d30f2 | 2004-07-04 11:50:43 +0000 | [diff] [blame] | 1714 | |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 1715 | /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table. |
| 1716 | void SlotMachine::CreateModuleSlot(const GlobalValue *V) { |
Chris Lattner | 04398e8 | 2007-01-09 08:04:59 +0000 | [diff] [blame] | 1717 | assert(V && "Can't insert a null Value into SlotMachine!"); |
Reid Spencer | 5081678 | 2007-03-19 18:32:53 +0000 | [diff] [blame] | 1718 | assert(V->getType() != Type::VoidTy && "Doesn't need a slot!"); |
| 1719 | assert(!V->hasName() && "Doesn't need a slot!"); |
Chris Lattner | 04398e8 | 2007-01-09 08:04:59 +0000 | [diff] [blame] | 1720 | |
Reid Spencer | 5081678 | 2007-03-19 18:32:53 +0000 | [diff] [blame] | 1721 | unsigned DestSlot = mNext++; |
| 1722 | mMap[V] = DestSlot; |
Chris Lattner | 04398e8 | 2007-01-09 08:04:59 +0000 | [diff] [blame] | 1723 | |
Reid Spencer | 5081678 | 2007-03-19 18:32:53 +0000 | [diff] [blame] | 1724 | SC_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" << |
Chris Lattner | 04398e8 | 2007-01-09 08:04:59 +0000 | [diff] [blame] | 1725 | DestSlot << " ["); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 1726 | // G = Global, F = Function, A = Alias, o = other |
| 1727 | SC_DEBUG((isa<GlobalVariable>(V) ? 'G' : |
Chris Lattner | 393b7cd | 2008-08-17 04:17:45 +0000 | [diff] [blame] | 1728 | (isa<Function>(V) ? 'F' : |
| 1729 | (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n"); |
Reid Spencer | 16f2f7f | 2004-05-26 07:18:52 +0000 | [diff] [blame] | 1730 | } |
| 1731 | |
| 1732 | |
Chris Lattner | ea862a3 | 2007-01-09 07:55:49 +0000 | [diff] [blame] | 1733 | /// CreateSlot - Create a new slot for the specified value if it has no name. |
| 1734 | void SlotMachine::CreateFunctionSlot(const Value *V) { |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1735 | assert(V->getType() != Type::VoidTy && !V->hasName() && |
| 1736 | "Doesn't need a slot!"); |
Chris Lattner | 04398e8 | 2007-01-09 08:04:59 +0000 | [diff] [blame] | 1737 | |
Reid Spencer | 5081678 | 2007-03-19 18:32:53 +0000 | [diff] [blame] | 1738 | unsigned DestSlot = fNext++; |
| 1739 | fMap[V] = DestSlot; |
Chris Lattner | 04398e8 | 2007-01-09 08:04:59 +0000 | [diff] [blame] | 1740 | |
Chris Lattner | f8090cb | 2006-12-06 05:55:41 +0000 | [diff] [blame] | 1741 | // G = Global, F = Function, o = other |
Chris Lattner | 033935d | 2008-08-17 04:40:13 +0000 | [diff] [blame] | 1742 | SC_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" << |
Chris Lattner | 04398e8 | 2007-01-09 08:04:59 +0000 | [diff] [blame] | 1743 | DestSlot << " [o]\n"); |
| 1744 | } |