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