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