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