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