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