blob: f527b1838f352fef6a10c708abd4836e8f2acf12 [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- SlotCalculator.cpp - Calculate what slots values land in ----------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
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 Lattner00950542001-06-06 20:29:01 +00009//
10// This file implements a useful analysis step to figure out what numbered
11// slots values in a program will land in (keeping track of per plane
12// information as required.
13//
14// This is used primarily for when writing a file to disk, either in bytecode
15// or source format.
16//
17//===----------------------------------------------------------------------===//
18
Chris Lattnerb5794002002-04-07 22:49:37 +000019#include "llvm/SlotCalculator.h"
Chris Lattner9a297902001-09-07 16:31:52 +000020#include "llvm/Analysis/ConstantsScanner.h"
Chris Lattner00950542001-06-06 20:29:01 +000021#include "llvm/Module.h"
Chris Lattner00950542001-06-06 20:29:01 +000022#include "llvm/iOther.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000023#include "llvm/Constant.h"
Chris Lattner00950542001-06-06 20:29:01 +000024#include "llvm/DerivedTypes.h"
Chris Lattner9a297902001-09-07 16:31:52 +000025#include "llvm/SymbolTable.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000026#include "Support/DepthFirstIterator.h"
27#include "Support/STLExtras.h"
Chris Lattner9a297902001-09-07 16:31:52 +000028#include <algorithm>
29
30#if 0
Chris Lattner3413d152003-03-19 20:57:22 +000031#define SC_DEBUG(X) std::cerr << X
Chris Lattner9a297902001-09-07 16:31:52 +000032#else
33#define SC_DEBUG(X)
34#endif
Chris Lattner00950542001-06-06 20:29:01 +000035
36SlotCalculator::SlotCalculator(const Module *M, bool IgnoreNamed) {
37 IgnoreNamedNodes = IgnoreNamed;
38 TheModule = M;
39
40 // Preload table... Make sure that all of the primitive types are in the table
41 // and that their Primitive ID is equal to their slot #
42 //
43 for (unsigned i = 0; i < Type::FirstDerivedTyID; ++i) {
44 assert(Type::getPrimitiveType((Type::PrimitiveID)i));
Alkis Evlogimenos60596382003-10-17 02:02:40 +000045 insertValue(Type::getPrimitiveType((Type::PrimitiveID)i), true);
Chris Lattner00950542001-06-06 20:29:01 +000046 }
47
48 if (M == 0) return; // Empty table...
Chris Lattner9a297902001-09-07 16:31:52 +000049 processModule();
Chris Lattner00950542001-06-06 20:29:01 +000050}
51
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000052SlotCalculator::SlotCalculator(const Function *M, bool IgnoreNamed) {
Chris Lattner00950542001-06-06 20:29:01 +000053 IgnoreNamedNodes = IgnoreNamed;
54 TheModule = M ? M->getParent() : 0;
55
56 // Preload table... Make sure that all of the primitive types are in the table
57 // and that their Primitive ID is equal to their slot #
58 //
59 for (unsigned i = 0; i < Type::FirstDerivedTyID; ++i) {
60 assert(Type::getPrimitiveType((Type::PrimitiveID)i));
Alkis Evlogimenos60596382003-10-17 02:02:40 +000061 insertValue(Type::getPrimitiveType((Type::PrimitiveID)i), true);
Chris Lattner00950542001-06-06 20:29:01 +000062 }
63
64 if (TheModule == 0) return; // Empty table...
65
Chris Lattner9a297902001-09-07 16:31:52 +000066 processModule(); // Process module level stuff
Chris Lattnerb5794002002-04-07 22:49:37 +000067 incorporateFunction(M); // Start out in incorporated state
Chris Lattner00950542001-06-06 20:29:01 +000068}
69
Chris Lattner9a297902001-09-07 16:31:52 +000070
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000071// processModule - Process all of the module level function declarations and
Chris Lattner9a297902001-09-07 16:31:52 +000072// types that are available.
73//
74void SlotCalculator::processModule() {
75 SC_DEBUG("begin processModule!\n");
Chris Lattner70cc3392001-09-10 07:58:01 +000076
Chris Lattner3413d152003-03-19 20:57:22 +000077 // Add all of the global variables to the value table...
Chris Lattnerf1fef652001-10-13 06:35:09 +000078 //
79 for (Module::const_giterator I = TheModule->gbegin(), E = TheModule->gend();
Chris Lattner479b54b2002-10-14 00:48:57 +000080 I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +000081 getOrCreateSlot(I);
Chris Lattner70cc3392001-09-10 07:58:01 +000082
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000083 // Scavenge the types out of the functions, then add the functions themselves
84 // to the value table...
Chris Lattner9a297902001-09-07 16:31:52 +000085 //
Chris Lattner3413d152003-03-19 20:57:22 +000086 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
87 I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +000088 getOrCreateSlot(I);
Chris Lattner9a297902001-09-07 16:31:52 +000089
Chris Lattner3413d152003-03-19 20:57:22 +000090 // Add all of the module level constants used as initializers
91 //
92 for (Module::const_giterator I = TheModule->gbegin(), E = TheModule->gend();
93 I != E; ++I)
94 if (I->hasInitializer())
Alkis Evlogimenos60596382003-10-17 02:02:40 +000095 getOrCreateSlot(I->getInitializer());
Chris Lattner3413d152003-03-19 20:57:22 +000096
Chris Lattner70cc3392001-09-10 07:58:01 +000097 // Insert constants that are named at module level into the slot pool so that
98 // the module symbol table can refer to them...
99 //
Chris Lattner6e6026b2002-11-20 18:36:02 +0000100 if (!IgnoreNamedNodes) {
Chris Lattner9a297902001-09-07 16:31:52 +0000101 SC_DEBUG("Inserting SymbolTable values:\n");
Chris Lattner6e6026b2002-11-20 18:36:02 +0000102 processSymbolTable(&TheModule->getSymbolTable());
Chris Lattner9a297902001-09-07 16:31:52 +0000103 }
104
105 SC_DEBUG("end processModule!\n");
106}
107
108// processSymbolTable - Insert all of the values in the specified symbol table
109// into the values table...
110//
111void SlotCalculator::processSymbolTable(const SymbolTable *ST) {
112 for (SymbolTable::const_iterator I = ST->begin(), E = ST->end(); I != E; ++I)
113 for (SymbolTable::type_const_iterator TI = I->second.begin(),
114 TE = I->second.end(); TI != TE; ++TI)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000115 getOrCreateSlot(TI->second);
Chris Lattner9a297902001-09-07 16:31:52 +0000116}
117
118void SlotCalculator::processSymbolTableConstants(const SymbolTable *ST) {
119 for (SymbolTable::const_iterator I = ST->begin(), E = ST->end(); I != E; ++I)
120 for (SymbolTable::type_const_iterator TI = I->second.begin(),
121 TE = I->second.end(); TI != TE; ++TI)
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000122 if (isa<Constant>(TI->second))
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000123 getOrCreateSlot(TI->second);
Chris Lattner9a297902001-09-07 16:31:52 +0000124}
125
126
Chris Lattnerce439b52003-10-20 19:10:06 +0000127void SlotCalculator::incorporateFunction(const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000128 assert(ModuleLevel.size() == 0 && "Module already incorporated!");
129
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000130 SC_DEBUG("begin processFunction!\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000131
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000132 // Save the Table state before we process the function...
Chris Lattner9a297902001-09-07 16:31:52 +0000133 for (unsigned i = 0; i < Table.size(); ++i)
Chris Lattner00950542001-06-06 20:29:01 +0000134 ModuleLevel.push_back(Table[i].size());
Chris Lattner9a297902001-09-07 16:31:52 +0000135
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000136 SC_DEBUG("Inserting function arguments\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000137
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000138 // Iterate over function arguments, adding them to the value table...
Chris Lattnerce439b52003-10-20 19:10:06 +0000139 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000140 getOrCreateSlot(I);
Chris Lattner9a297902001-09-07 16:31:52 +0000141
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000142 // Iterate over all of the instructions in the function, looking for constant
Chris Lattner9a297902001-09-07 16:31:52 +0000143 // values that are referenced. Add these to the value pools before any
144 // nonconstant values. This will be turned into the constant pool for the
145 // bytecode writer.
146 //
147 if (!IgnoreNamedNodes) { // Assembly writer does not need this!
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000148 SC_DEBUG("Inserting function constants:\n";
Chris Lattnerce439b52003-10-20 19:10:06 +0000149 for (constant_iterator I = constant_begin(F), E = constant_end(F);
Chris Lattner9a297902001-09-07 16:31:52 +0000150 I != E; ++I) {
Chris Lattner3413d152003-03-19 20:57:22 +0000151 std::cerr << " " << *I->getType() << " " << *I << "\n";
Chris Lattner9a297902001-09-07 16:31:52 +0000152 });
153
154 // Emit all of the constants that are being used by the instructions in the
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000155 // function...
Chris Lattnerce439b52003-10-20 19:10:06 +0000156 for_each(constant_begin(F), constant_end(F),
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000157 bind_obj(this, &SlotCalculator::getOrCreateSlot));
Chris Lattner9a297902001-09-07 16:31:52 +0000158
159 // If there is a symbol table, it is possible that the user has names for
160 // constants that are not being used. In this case, we will have problems
161 // if we don't emit the constants now, because otherwise we will get
162 // symboltable references to constants not in the output. Scan for these
163 // constants now.
164 //
Chris Lattnerce439b52003-10-20 19:10:06 +0000165 processSymbolTableConstants(&F->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +0000166 }
167
Chris Lattner9a297902001-09-07 16:31:52 +0000168 SC_DEBUG("Inserting Labels:\n");
169
170 // Iterate over basic blocks, adding them to the value table...
Chris Lattnerce439b52003-10-20 19:10:06 +0000171 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000172 getOrCreateSlot(I);
Chris Lattner9a297902001-09-07 16:31:52 +0000173
174 SC_DEBUG("Inserting Instructions:\n");
175
176 // Add all of the instructions to the type planes...
Chris Lattnerce439b52003-10-20 19:10:06 +0000177 for_each(inst_begin(F), inst_end(F),
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000178 bind_obj(this, &SlotCalculator::getOrCreateSlot));
Chris Lattner9a297902001-09-07 16:31:52 +0000179
Chris Lattner6e6026b2002-11-20 18:36:02 +0000180 if (!IgnoreNamedNodes) {
Chris Lattner9a297902001-09-07 16:31:52 +0000181 SC_DEBUG("Inserting SymbolTable values:\n");
Chris Lattnerce439b52003-10-20 19:10:06 +0000182 processSymbolTable(&F->getSymbolTable());
Chris Lattner9a297902001-09-07 16:31:52 +0000183 }
184
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000185 SC_DEBUG("end processFunction!\n");
Chris Lattner00950542001-06-06 20:29:01 +0000186}
187
Chris Lattnerb5794002002-04-07 22:49:37 +0000188void SlotCalculator::purgeFunction() {
Chris Lattner00950542001-06-06 20:29:01 +0000189 assert(ModuleLevel.size() != 0 && "Module not incorporated!");
190 unsigned NumModuleTypes = ModuleLevel.size();
191
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000192 SC_DEBUG("begin purgeFunction!\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000193
Chris Lattner00950542001-06-06 20:29:01 +0000194 // First, remove values from existing type planes
195 for (unsigned i = 0; i < NumModuleTypes; ++i) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000196 unsigned ModuleSize = ModuleLevel[i]; // Size of plane before function came
Chris Lattner9a297902001-09-07 16:31:52 +0000197 TypePlane &CurPlane = Table[i];
Chris Lattner479b54b2002-10-14 00:48:57 +0000198 //SC_DEBUG("Processing Plane " <<i<< " of size " << CurPlane.size() <<"\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000199
200 while (CurPlane.size() != ModuleSize) {
Chris Lattnerf1fef652001-10-13 06:35:09 +0000201 //SC_DEBUG(" Removing [" << i << "] Value=" << CurPlane.back() << "\n");
Chris Lattner697954c2002-01-20 22:54:45 +0000202 std::map<const Value *, unsigned>::iterator NI =
203 NodeMap.find(CurPlane.back());
Chris Lattner9a297902001-09-07 16:31:52 +0000204 assert(NI != NodeMap.end() && "Node not in nodemap?");
205 NodeMap.erase(NI); // Erase from nodemap
206 CurPlane.pop_back(); // Shrink plane
Chris Lattner00950542001-06-06 20:29:01 +0000207 }
208 }
209
210 // We don't need this state anymore, free it up.
211 ModuleLevel.clear();
212
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000213 // Next, remove any type planes defined by the function...
Chris Lattner00950542001-06-06 20:29:01 +0000214 while (NumModuleTypes != Table.size()) {
215 TypePlane &Plane = Table.back();
Chris Lattner9a297902001-09-07 16:31:52 +0000216 SC_DEBUG("Removing Plane " << (Table.size()-1) << " of size "
Chris Lattner479b54b2002-10-14 00:48:57 +0000217 << Plane.size() << "\n");
Chris Lattner00950542001-06-06 20:29:01 +0000218 while (Plane.size()) {
219 NodeMap.erase(NodeMap.find(Plane.back())); // Erase from nodemap
220 Plane.pop_back(); // Shrink plane
221 }
222
223 Table.pop_back(); // Nuke the plane, we don't like it.
224 }
Chris Lattner00950542001-06-06 20:29:01 +0000225
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000226 SC_DEBUG("end purgeFunction!\n");
Chris Lattner00950542001-06-06 20:29:01 +0000227}
228
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000229int SlotCalculator::getSlot(const Value *D) const {
Chris Lattner697954c2002-01-20 22:54:45 +0000230 std::map<const Value*, unsigned>::const_iterator I = NodeMap.find(D);
Chris Lattner00950542001-06-06 20:29:01 +0000231 if (I == NodeMap.end()) return -1;
232
233 return (int)I->second;
234}
235
Chris Lattner9a297902001-09-07 16:31:52 +0000236
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000237int SlotCalculator::getOrCreateSlot(const Value *V) {
238 int SlotNo = getSlot(V); // Check to see if it's already in!
Chris Lattner9a297902001-09-07 16:31:52 +0000239 if (SlotNo != -1) return SlotNo;
Chris Lattner3413d152003-03-19 20:57:22 +0000240
241 if (!isa<GlobalValue>(V))
242 if (const Constant *C = dyn_cast<Constant>(V)) {
243 // This makes sure that if a constant has uses (for example an array of
244 // const ints), that they are inserted also.
245 //
246 for (User::const_op_iterator I = C->op_begin(), E = C->op_end();
247 I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000248 getOrCreateSlot(*I);
Chris Lattner3413d152003-03-19 20:57:22 +0000249 }
250
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000251 return insertValue(V);
Chris Lattner9a297902001-09-07 16:31:52 +0000252}
253
254
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000255int SlotCalculator::insertValue(const Value *D, bool dontIgnore) {
Chris Lattner9a297902001-09-07 16:31:52 +0000256 assert(D && "Can't insert a null value!");
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000257 assert(getSlot(D) == -1 && "Value is already in the table!");
Chris Lattner00950542001-06-06 20:29:01 +0000258
259 // If this node does not contribute to a plane, or if the node has a
Chris Lattner9a297902001-09-07 16:31:52 +0000260 // name and we don't want names, then ignore the silly node... Note that types
261 // do need slot numbers so that we can keep track of where other values land.
Chris Lattner00950542001-06-06 20:29:01 +0000262 //
Chris Lattner9b50c152001-07-26 16:28:37 +0000263 if (!dontIgnore) // Don't ignore nonignorables!
264 if (D->getType() == Type::VoidTy || // Ignore void type nodes
Chris Lattner9a297902001-09-07 16:31:52 +0000265 (IgnoreNamedNodes && // Ignore named and constants
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000266 (D->hasName() || isa<Constant>(D)) && !isa<Type>(D))) {
Chris Lattner3413d152003-03-19 20:57:22 +0000267 SC_DEBUG("ignored value " << *D << "\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000268 return -1; // We do need types unconditionally though
269 }
Chris Lattner00950542001-06-06 20:29:01 +0000270
Chris Lattner9a297902001-09-07 16:31:52 +0000271 // If it's a type, make sure that all subtypes of the type are included...
Chris Lattner949a3622003-07-23 15:30:06 +0000272 if (const Type *TheTy = dyn_cast<Type>(D)) {
Chris Lattnerf1fef652001-10-13 06:35:09 +0000273
274 // Insert the current type before any subtypes. This is important because
275 // recursive types elements are inserted in a bottom up order. Changing
276 // this here can break things. For example:
277 //
278 // global { \2 * } { { \2 }* null }
279 //
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000280 int ResultSlot = doInsertValue(TheTy);
281 SC_DEBUG(" Inserted type: " << TheTy->getDescription() << " slot=" <<
282 ResultSlot << "\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000283
Chris Lattnercb18d182003-10-13 15:21:58 +0000284 // Loop over any contained types in the definition... in depth first order.
Chris Lattner9a297902001-09-07 16:31:52 +0000285 //
Chris Lattnercb18d182003-10-13 15:21:58 +0000286 for (df_iterator<const Type*> I = df_begin(TheTy), E = df_end(TheTy);
287 I != E; ++I)
Chris Lattner9a297902001-09-07 16:31:52 +0000288 if (*I != TheTy) {
289 // If we haven't seen this sub type before, add it to our type table!
290 const Type *SubTy = *I;
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000291 if (getSlot(SubTy) == -1) {
Chris Lattner479b54b2002-10-14 00:48:57 +0000292 SC_DEBUG(" Inserting subtype: " << SubTy->getDescription() << "\n");
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000293 int Slot = doInsertValue(SubTy);
Chris Lattnerf1fef652001-10-13 06:35:09 +0000294 SC_DEBUG(" Inserted subtype: " << SubTy->getDescription() <<
Chris Lattner479b54b2002-10-14 00:48:57 +0000295 " slot=" << Slot << "\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000296 }
297 }
Chris Lattnerf1fef652001-10-13 06:35:09 +0000298 return ResultSlot;
Chris Lattner9a297902001-09-07 16:31:52 +0000299 }
300
301 // Okay, everything is happy, actually insert the silly value now...
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000302 return doInsertValue(D);
Chris Lattner9a297902001-09-07 16:31:52 +0000303}
304
305
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000306// doInsertValue - This is a small helper function to be called only
307// be insertValue.
Chris Lattner9a297902001-09-07 16:31:52 +0000308//
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000309int SlotCalculator::doInsertValue(const Value *D) {
Chris Lattner00950542001-06-06 20:29:01 +0000310 const Type *Typ = D->getType();
Chris Lattner9b50c152001-07-26 16:28:37 +0000311 unsigned Ty;
312
313 // Used for debugging DefSlot=-1 assertion...
314 //if (Typ == Type::TypeTy)
Chris Lattnercfe26c92001-10-01 18:26:53 +0000315 // cerr << "Inserting type '" << cast<Type>(D)->getDescription() << "'!\n";
Chris Lattner9b50c152001-07-26 16:28:37 +0000316
Chris Lattner00950542001-06-06 20:29:01 +0000317 if (Typ->isDerivedType()) {
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000318 int ValSlot = getSlot(Typ);
Chris Lattner3413d152003-03-19 20:57:22 +0000319 if (ValSlot == -1) { // Have we already entered this type?
Chris Lattner9a297902001-09-07 16:31:52 +0000320 // Nope, this is the first we have seen the type, process it.
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000321 ValSlot = insertValue(Typ, true);
Chris Lattner3413d152003-03-19 20:57:22 +0000322 assert(ValSlot != -1 && "ProcessType returned -1 for a type?");
Chris Lattner00950542001-06-06 20:29:01 +0000323 }
Chris Lattner3413d152003-03-19 20:57:22 +0000324 Ty = (unsigned)ValSlot;
Chris Lattner9b50c152001-07-26 16:28:37 +0000325 } else {
326 Ty = Typ->getPrimitiveID();
Chris Lattner00950542001-06-06 20:29:01 +0000327 }
328
329 if (Table.size() <= Ty) // Make sure we have the type plane allocated...
330 Table.resize(Ty+1, TypePlane());
Chris Lattner3413d152003-03-19 20:57:22 +0000331
332 // If this is the first value to get inserted into the type plane, make sure
333 // to insert the implicit null value...
334 if (Table[Ty].empty() && Ty >= Type::FirstDerivedTyID && !IgnoreNamedNodes) {
335 Value *ZeroInitializer = Constant::getNullValue(Typ);
336
337 // If we are pushing zeroinit, it will be handled below.
338 if (D != ZeroInitializer) {
339 Table[Ty].push_back(ZeroInitializer);
340 NodeMap[ZeroInitializer] = 0;
341 }
342 }
343
Chris Lattner9a297902001-09-07 16:31:52 +0000344 // Insert node into table and NodeMap...
345 unsigned DestSlot = NodeMap[D] = Table[Ty].size();
Chris Lattner00950542001-06-06 20:29:01 +0000346 Table[Ty].push_back(D);
Chris Lattner9a297902001-09-07 16:31:52 +0000347
Chris Lattnerf1fef652001-10-13 06:35:09 +0000348 SC_DEBUG(" Inserting value [" << Ty << "] = " << D << " slot=" <<
349 DestSlot << " [");
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000350 // G = Global, C = Constant, T = Type, F = Function, o = other
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000351 SC_DEBUG((isa<GlobalVariable>(D) ? "G" : (isa<Constant>(D) ? "C" :
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000352 (isa<Type>(D) ? "T" : (isa<Function>(D) ? "F" : "o")))));
Chris Lattnerf1fef652001-10-13 06:35:09 +0000353 SC_DEBUG("]\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000354 return (int)DestSlot;
Chris Lattner00950542001-06-06 20:29:01 +0000355}