blob: 7b18a1dfd5aab0e63d613a8c375abca86fb1c8c7 [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//
Chris Lattner68e3dbc2004-01-20 00:57:32 +000010// This file implements a useful analysis step to figure out what numbered slots
11// values in a program will land in (keeping track of per plane information).
Chris Lattner00950542001-06-06 20:29:01 +000012//
Chris Lattner68e3dbc2004-01-20 00:57:32 +000013// This is used when writing a file to disk, either in bytecode or assembly.
Chris Lattner00950542001-06-06 20:29:01 +000014//
15//===----------------------------------------------------------------------===//
16
Chris Lattnerf2d577b2004-01-20 19:50:34 +000017#include "llvm/Analysis/SlotCalculator.h"
Chris Lattnerdcea6302004-01-14 23:34:39 +000018#include "llvm/Constants.h"
Chris Lattner00950542001-06-06 20:29:01 +000019#include "llvm/DerivedTypes.h"
Chris Lattnerdcea6302004-01-14 23:34:39 +000020#include "llvm/iOther.h"
21#include "llvm/Module.h"
Chris Lattner9a297902001-09-07 16:31:52 +000022#include "llvm/SymbolTable.h"
Chris Lattnerf2d577b2004-01-20 19:50:34 +000023#include "llvm/Analysis/ConstantsScanner.h"
Alkis Evlogimenos088eb452003-10-31 03:02:34 +000024#include "Support/PostOrderIterator.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000025#include "Support/STLExtras.h"
Chris Lattner9a297902001-09-07 16:31:52 +000026#include <algorithm>
Chris Lattner31f84992003-11-21 20:23:48 +000027using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000028
Chris Lattner9a297902001-09-07 16:31:52 +000029#if 0
Chris Lattner3413d152003-03-19 20:57:22 +000030#define SC_DEBUG(X) std::cerr << X
Chris Lattner9a297902001-09-07 16:31:52 +000031#else
32#define SC_DEBUG(X)
33#endif
Chris Lattner00950542001-06-06 20:29:01 +000034
Chris Lattner8ce75012004-01-14 02:49:34 +000035SlotCalculator::SlotCalculator(const Module *M, bool buildBytecodeInfo) {
36 BuildBytecodeInfo = buildBytecodeInfo;
Chris Lattner614cdcd2004-01-18 21:07:07 +000037 ModuleContainsAllFunctionConstants = false;
Chris Lattner00950542001-06-06 20:29:01 +000038 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 //
Alkis Evlogimenos5d1bdcd2003-10-29 03:12:12 +000043 SC_DEBUG("Inserting primitive types:\n");
Chris Lattner00950542001-06-06 20:29:01 +000044 for (unsigned i = 0; i < Type::FirstDerivedTyID; ++i) {
45 assert(Type::getPrimitiveType((Type::PrimitiveID)i));
Alkis Evlogimenos60596382003-10-17 02:02:40 +000046 insertValue(Type::getPrimitiveType((Type::PrimitiveID)i), true);
Chris Lattner00950542001-06-06 20:29:01 +000047 }
48
49 if (M == 0) return; // Empty table...
Chris Lattner9a297902001-09-07 16:31:52 +000050 processModule();
Chris Lattner00950542001-06-06 20:29:01 +000051}
52
Chris Lattner8ce75012004-01-14 02:49:34 +000053SlotCalculator::SlotCalculator(const Function *M, bool buildBytecodeInfo) {
54 BuildBytecodeInfo = buildBytecodeInfo;
Chris Lattner614cdcd2004-01-18 21:07:07 +000055 ModuleContainsAllFunctionConstants = false;
Chris Lattner00950542001-06-06 20:29:01 +000056 TheModule = M ? M->getParent() : 0;
57
58 // Preload table... Make sure that all of the primitive types are in the table
59 // and that their Primitive ID is equal to their slot #
60 //
Alkis Evlogimenos5d1bdcd2003-10-29 03:12:12 +000061 SC_DEBUG("Inserting primitive types:\n");
Chris Lattner00950542001-06-06 20:29:01 +000062 for (unsigned i = 0; i < Type::FirstDerivedTyID; ++i) {
63 assert(Type::getPrimitiveType((Type::PrimitiveID)i));
Alkis Evlogimenos60596382003-10-17 02:02:40 +000064 insertValue(Type::getPrimitiveType((Type::PrimitiveID)i), true);
Chris Lattner00950542001-06-06 20:29:01 +000065 }
66
67 if (TheModule == 0) return; // Empty table...
68
Chris Lattner9a297902001-09-07 16:31:52 +000069 processModule(); // Process module level stuff
Chris Lattner68e3dbc2004-01-20 00:57:32 +000070 incorporateFunction(M); // Start out in incorporated state
Chris Lattner00950542001-06-06 20:29:01 +000071}
72
Chris Lattner614cdcd2004-01-18 21:07:07 +000073unsigned SlotCalculator::getGlobalSlot(const Value *V) const {
74 assert(!CompactionTable.empty() &&
75 "This method can only be used when compaction is enabled!");
76 if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(V))
77 V = CPR->getValue();
78 std::map<const Value*, unsigned>::const_iterator I = NodeMap.find(V);
Chris Lattner68e3dbc2004-01-20 00:57:32 +000079 assert(I != NodeMap.end() && "Didn't find global slot entry!");
Chris Lattner614cdcd2004-01-18 21:07:07 +000080 return I->second;
81}
82
Chris Lattner68e3dbc2004-01-20 00:57:32 +000083SlotCalculator::TypePlane &SlotCalculator::getPlane(unsigned Plane) {
84 unsigned PIdx = Plane;
85 if (CompactionTable.empty()) { // No compaction table active?
86 // fall out
87 } else if (!CompactionTable[Plane].empty()) { // Compaction table active.
88 assert(Plane < CompactionTable.size());
89 return CompactionTable[Plane];
90 } else {
91 // Final case: compaction table active, but this plane is not
92 // compactified. If the type plane is compactified, unmap back to the
93 // global type plane corresponding to "Plane".
94 if (!CompactionTable[Type::TypeTyID].empty()) {
95 const Type *Ty = cast<Type>(CompactionTable[Type::TypeTyID][Plane]);
96 std::map<const Value*, unsigned>::iterator It = NodeMap.find(Ty);
97 assert(It != NodeMap.end() && "Type not in global constant map?");
98 PIdx = It->second;
99 }
100 }
101
102 // Okay we are just returning an entry out of the main Table. Make sure the
103 // plane exists and return it.
104 if (PIdx >= Table.size())
105 Table.resize(PIdx+1);
106 return Table[PIdx];
107}
Chris Lattner614cdcd2004-01-18 21:07:07 +0000108
Chris Lattner9a297902001-09-07 16:31:52 +0000109
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000110// processModule - Process all of the module level function declarations and
Chris Lattner9a297902001-09-07 16:31:52 +0000111// types that are available.
112//
113void SlotCalculator::processModule() {
114 SC_DEBUG("begin processModule!\n");
Chris Lattner70cc3392001-09-10 07:58:01 +0000115
Chris Lattner3413d152003-03-19 20:57:22 +0000116 // Add all of the global variables to the value table...
Chris Lattnerf1fef652001-10-13 06:35:09 +0000117 //
118 for (Module::const_giterator I = TheModule->gbegin(), E = TheModule->gend();
Chris Lattner479b54b2002-10-14 00:48:57 +0000119 I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000120 getOrCreateSlot(I);
Chris Lattner70cc3392001-09-10 07:58:01 +0000121
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000122 // Scavenge the types out of the functions, then add the functions themselves
123 // to the value table...
Chris Lattner9a297902001-09-07 16:31:52 +0000124 //
Chris Lattner3413d152003-03-19 20:57:22 +0000125 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
126 I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000127 getOrCreateSlot(I);
Chris Lattner9a297902001-09-07 16:31:52 +0000128
Chris Lattner3413d152003-03-19 20:57:22 +0000129 // Add all of the module level constants used as initializers
130 //
131 for (Module::const_giterator I = TheModule->gbegin(), E = TheModule->gend();
132 I != E; ++I)
133 if (I->hasInitializer())
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000134 getOrCreateSlot(I->getInitializer());
Chris Lattner3413d152003-03-19 20:57:22 +0000135
Chris Lattnerdcea6302004-01-14 23:34:39 +0000136 // Now that all global constants have been added, rearrange constant planes
137 // that contain constant strings so that the strings occur at the start of the
138 // plane, not somewhere in the middle.
139 //
140 if (BuildBytecodeInfo) {
141 TypePlane &Types = Table[Type::TypeTyID];
142 for (unsigned plane = 0, e = Table.size(); plane != e; ++plane) {
143 if (const ArrayType *AT = dyn_cast<ArrayType>(Types[plane]))
144 if (AT->getElementType() == Type::SByteTy ||
145 AT->getElementType() == Type::UByteTy) {
146 TypePlane &Plane = Table[plane];
147 unsigned FirstNonStringID = 0;
148 for (unsigned i = 0, e = Plane.size(); i != e; ++i)
149 if (cast<ConstantArray>(Plane[i])->isString()) {
150 // Check to see if we have to shuffle this string around. If not,
151 // don't do anything.
152 if (i != FirstNonStringID) {
153 // Swap the plane entries....
154 std::swap(Plane[i], Plane[FirstNonStringID]);
155
156 // Keep the NodeMap up to date.
157 NodeMap[Plane[i]] = i;
158 NodeMap[Plane[FirstNonStringID]] = FirstNonStringID;
159 }
160 ++FirstNonStringID;
161 }
162 }
163 }
164 }
165
Chris Lattnera14b0d42004-01-10 23:46:13 +0000166 // If we are emitting a bytecode file, scan all of the functions for their
167 // constants, which allows us to emit more compact modules. This is optional,
168 // and is just used to compactify the constants used by different functions
169 // together.
Chris Lattner614cdcd2004-01-18 21:07:07 +0000170 //
171 // This functionality is completely optional for the bytecode writer, but
172 // tends to produce smaller bytecode files. This should not be used in the
173 // future by clients that want to, for example, build and emit functions on
174 // the fly. For now, however, it is unconditionally enabled when building
175 // bytecode information.
176 //
Chris Lattner8ce75012004-01-14 02:49:34 +0000177 if (BuildBytecodeInfo) {
Chris Lattner614cdcd2004-01-18 21:07:07 +0000178 ModuleContainsAllFunctionConstants = true;
179
Chris Lattnera14b0d42004-01-10 23:46:13 +0000180 SC_DEBUG("Inserting function constants:\n");
181 for (Module::const_iterator F = TheModule->begin(), E = TheModule->end();
Chris Lattner614cdcd2004-01-18 21:07:07 +0000182 F != E; ++F) {
183 for (const_inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I){
184 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op)
185 if (isa<Constant>(I->getOperand(op)))
186 getOrCreateSlot(I->getOperand(op));
187 getOrCreateSlot(I->getType());
188 if (const VANextInst *VAN = dyn_cast<VANextInst>(*I))
189 getOrCreateSlot(VAN->getArgType());
190 }
191 processSymbolTableConstants(&F->getSymbolTable());
192 }
Chris Lattnera14b0d42004-01-10 23:46:13 +0000193 }
Chris Lattnera14b0d42004-01-10 23:46:13 +0000194
Chris Lattner70cc3392001-09-10 07:58:01 +0000195 // Insert constants that are named at module level into the slot pool so that
196 // the module symbol table can refer to them...
197 //
Chris Lattner8ce75012004-01-14 02:49:34 +0000198 if (BuildBytecodeInfo) {
Chris Lattner9a297902001-09-07 16:31:52 +0000199 SC_DEBUG("Inserting SymbolTable values:\n");
Chris Lattner6e6026b2002-11-20 18:36:02 +0000200 processSymbolTable(&TheModule->getSymbolTable());
Chris Lattner9a297902001-09-07 16:31:52 +0000201 }
202
Chris Lattnera14b0d42004-01-10 23:46:13 +0000203 // Now that we have collected together all of the information relevant to the
204 // module, compactify the type table if it is particularly big and outputting
205 // a bytecode file. The basic problem we run into is that some programs have
206 // a large number of types, which causes the type field to overflow its size,
207 // which causes instructions to explode in size (particularly call
208 // instructions). To avoid this behavior, we "sort" the type table so that
209 // all non-value types are pushed to the end of the type table, giving nice
210 // low numbers to the types that can be used by instructions, thus reducing
211 // the amount of explodage we suffer.
Chris Lattner8ce75012004-01-14 02:49:34 +0000212 if (BuildBytecodeInfo && Table[Type::TypeTyID].size() >= 64) {
Chris Lattnera14b0d42004-01-10 23:46:13 +0000213 // Scan through the type table moving value types to the start of the table.
Chris Lattner93802972004-01-11 23:29:26 +0000214 TypePlane *Types = &Table[Type::TypeTyID];
Chris Lattnera14b0d42004-01-10 23:46:13 +0000215 unsigned FirstNonValueTypeID = 0;
Chris Lattner93802972004-01-11 23:29:26 +0000216 for (unsigned i = 0, e = Types->size(); i != e; ++i)
217 if (cast<Type>((*Types)[i])->isFirstClassType() ||
218 cast<Type>((*Types)[i])->isPrimitiveType()) {
Chris Lattnera14b0d42004-01-10 23:46:13 +0000219 // Check to see if we have to shuffle this type around. If not, don't
220 // do anything.
221 if (i != FirstNonValueTypeID) {
Chris Lattner93802972004-01-11 23:29:26 +0000222 assert(i != Type::TypeTyID && FirstNonValueTypeID != Type::TypeTyID &&
223 "Cannot move around the type plane!");
224
Chris Lattnera14b0d42004-01-10 23:46:13 +0000225 // Swap the type ID's.
Chris Lattner93802972004-01-11 23:29:26 +0000226 std::swap((*Types)[i], (*Types)[FirstNonValueTypeID]);
Chris Lattnera14b0d42004-01-10 23:46:13 +0000227
228 // Keep the NodeMap up to date.
Chris Lattner93802972004-01-11 23:29:26 +0000229 NodeMap[(*Types)[i]] = i;
230 NodeMap[(*Types)[FirstNonValueTypeID]] = FirstNonValueTypeID;
Chris Lattnera14b0d42004-01-10 23:46:13 +0000231
232 // When we move a type, make sure to move its value plane as needed.
Chris Lattner93802972004-01-11 23:29:26 +0000233 if (Table.size() > FirstNonValueTypeID) {
234 if (Table.size() <= i) Table.resize(i+1);
235 std::swap(Table[i], Table[FirstNonValueTypeID]);
236 Types = &Table[Type::TypeTyID];
237 }
Chris Lattnera14b0d42004-01-10 23:46:13 +0000238 }
239 ++FirstNonValueTypeID;
240 }
241 }
242
Chris Lattner9a297902001-09-07 16:31:52 +0000243 SC_DEBUG("end processModule!\n");
244}
245
246// processSymbolTable - Insert all of the values in the specified symbol table
247// into the values table...
248//
249void SlotCalculator::processSymbolTable(const SymbolTable *ST) {
250 for (SymbolTable::const_iterator I = ST->begin(), E = ST->end(); I != E; ++I)
251 for (SymbolTable::type_const_iterator TI = I->second.begin(),
252 TE = I->second.end(); TI != TE; ++TI)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000253 getOrCreateSlot(TI->second);
Chris Lattner9a297902001-09-07 16:31:52 +0000254}
255
256void SlotCalculator::processSymbolTableConstants(const SymbolTable *ST) {
257 for (SymbolTable::const_iterator I = ST->begin(), E = ST->end(); I != E; ++I)
258 for (SymbolTable::type_const_iterator TI = I->second.begin(),
259 TE = I->second.end(); TI != TE; ++TI)
Chris Lattnerd5c59d52004-01-15 20:24:09 +0000260 if (isa<Constant>(TI->second) || isa<Type>(TI->second))
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000261 getOrCreateSlot(TI->second);
Chris Lattner9a297902001-09-07 16:31:52 +0000262}
263
264
Chris Lattnerce439b52003-10-20 19:10:06 +0000265void SlotCalculator::incorporateFunction(const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000266 assert(ModuleLevel.size() == 0 && "Module already incorporated!");
267
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000268 SC_DEBUG("begin processFunction!\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000269
Chris Lattner614cdcd2004-01-18 21:07:07 +0000270 // If we emitted all of the function constants, build a compaction table.
271 if (BuildBytecodeInfo && ModuleContainsAllFunctionConstants)
272 buildCompactionTable(F);
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000273
274 // Update the ModuleLevel entries to be accurate.
275 ModuleLevel.resize(getNumPlanes());
276 for (unsigned i = 0, e = getNumPlanes(); i != e; ++i)
277 ModuleLevel[i] = getPlane(i).size();
Chris Lattner9a297902001-09-07 16:31:52 +0000278
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000279 // Iterate over function arguments, adding them to the value table...
Chris Lattnerce439b52003-10-20 19:10:06 +0000280 for(Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000281 getOrCreateSlot(I);
Chris Lattner9a297902001-09-07 16:31:52 +0000282
Chris Lattner614cdcd2004-01-18 21:07:07 +0000283 if (BuildBytecodeInfo && // Assembly writer does not need this!
284 !ModuleContainsAllFunctionConstants) {
285 // Iterate over all of the instructions in the function, looking for
286 // constant values that are referenced. Add these to the value pools
287 // before any nonconstant values. This will be turned into the constant
288 // pool for the bytecode writer.
289 //
290
291 // Emit all of the constants that are being used by the instructions in
292 // the function...
Chris Lattnerce439b52003-10-20 19:10:06 +0000293 for_each(constant_begin(F), constant_end(F),
Chris Lattner614cdcd2004-01-18 21:07:07 +0000294 bind_obj(this, &SlotCalculator::getOrCreateSlot));
295
Chris Lattner9a297902001-09-07 16:31:52 +0000296 // If there is a symbol table, it is possible that the user has names for
297 // constants that are not being used. In this case, we will have problems
298 // if we don't emit the constants now, because otherwise we will get
Chris Lattnera14b0d42004-01-10 23:46:13 +0000299 // symbol table references to constants not in the output. Scan for these
Chris Lattner9a297902001-09-07 16:31:52 +0000300 // constants now.
301 //
Chris Lattnerce439b52003-10-20 19:10:06 +0000302 processSymbolTableConstants(&F->getSymbolTable());
Chris Lattner00950542001-06-06 20:29:01 +0000303 }
304
Chris Lattner9a297902001-09-07 16:31:52 +0000305 SC_DEBUG("Inserting Instructions:\n");
306
307 // Add all of the instructions to the type planes...
Chris Lattnerd5c59d52004-01-15 20:24:09 +0000308 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
309 getOrCreateSlot(BB);
Chris Lattner389dbfb2003-10-21 17:39:59 +0000310 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
311 getOrCreateSlot(I);
Chris Lattner2765c412003-10-21 17:40:54 +0000312 if (const VANextInst *VAN = dyn_cast<VANextInst>(I))
313 getOrCreateSlot(VAN->getArgType());
Chris Lattner389dbfb2003-10-21 17:39:59 +0000314 }
Chris Lattner9a297902001-09-07 16:31:52 +0000315 }
316
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000317 // If we are building a compaction table, prune out planes that do not benefit
318 // from being compactified.
319 if (!CompactionTable.empty())
320 pruneCompactionTable();
321
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000322 SC_DEBUG("end processFunction!\n");
Chris Lattner00950542001-06-06 20:29:01 +0000323}
324
Chris Lattnerb5794002002-04-07 22:49:37 +0000325void SlotCalculator::purgeFunction() {
Chris Lattner00950542001-06-06 20:29:01 +0000326 assert(ModuleLevel.size() != 0 && "Module not incorporated!");
327 unsigned NumModuleTypes = ModuleLevel.size();
328
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000329 SC_DEBUG("begin purgeFunction!\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000330
Chris Lattner614cdcd2004-01-18 21:07:07 +0000331 // First, free the compaction map if used.
332 CompactionNodeMap.clear();
333
334 // Next, remove values from existing type planes
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000335 for (unsigned i = 0; i != NumModuleTypes; ++i) {
336 // Size of plane before function came
337 unsigned ModuleLev = getModuleLevel(i);
338 assert(int(ModuleLev) >= 0 && "BAD!");
339
340 TypePlane &Plane = getPlane(i);
341
342 assert(ModuleLev <= Plane.size() && "module levels higher than elements?");
343 while (Plane.size() != ModuleLev) {
344 assert(!isa<GlobalValue>(Plane.back()) &&
345 "Functions cannot define globals!");
346 NodeMap.erase(Plane.back()); // Erase from nodemap
347 Plane.pop_back(); // Shrink plane
Chris Lattner00950542001-06-06 20:29:01 +0000348 }
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000349 }
Chris Lattner00950542001-06-06 20:29:01 +0000350
351 // We don't need this state anymore, free it up.
352 ModuleLevel.clear();
353
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000354 // Finally, remove any type planes defined by the function...
Chris Lattner614cdcd2004-01-18 21:07:07 +0000355 if (!CompactionTable.empty()) {
356 CompactionTable.clear();
357 } else {
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000358 while (Table.size() > NumModuleTypes) {
Chris Lattner614cdcd2004-01-18 21:07:07 +0000359 TypePlane &Plane = Table.back();
360 SC_DEBUG("Removing Plane " << (Table.size()-1) << " of size "
361 << Plane.size() << "\n");
362 while (Plane.size()) {
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000363 assert(!isa<GlobalValue>(Plane.back()) &&
364 "Functions cannot define globals!");
365 NodeMap.erase(Plane.back()); // Erase from nodemap
366 Plane.pop_back(); // Shrink plane
Chris Lattner614cdcd2004-01-18 21:07:07 +0000367 }
368
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000369 Table.pop_back(); // Nuke the plane, we don't like it.
Chris Lattner00950542001-06-06 20:29:01 +0000370 }
Chris Lattner00950542001-06-06 20:29:01 +0000371 }
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000372
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000373 SC_DEBUG("end purgeFunction!\n");
Chris Lattner00950542001-06-06 20:29:01 +0000374}
375
Chris Lattner614cdcd2004-01-18 21:07:07 +0000376static inline bool hasNullValue(unsigned TyID) {
377 return TyID != Type::LabelTyID && TyID != Type::TypeTyID &&
378 TyID != Type::VoidTyID;
379}
380
381/// getOrCreateCompactionTableSlot - This method is used to build up the initial
382/// approximation of the compaction table.
383unsigned SlotCalculator::getOrCreateCompactionTableSlot(const Value *V) {
Chris Lattner71151ae2004-02-09 00:15:41 +0000384 if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(V))
385 V = CPR->getValue();
Chris Lattner614cdcd2004-01-18 21:07:07 +0000386 std::map<const Value*, unsigned>::iterator I =
387 CompactionNodeMap.lower_bound(V);
388 if (I != CompactionNodeMap.end() && I->first == V)
389 return I->second; // Already exists?
390
391 // Make sure the type is in the table.
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000392 unsigned Ty;
393 if (!CompactionTable[Type::TypeTyID].empty())
394 Ty = getOrCreateCompactionTableSlot(V->getType());
395 else // If the type plane was decompactified, use the global plane ID
396 Ty = getSlot(V->getType());
Chris Lattner614cdcd2004-01-18 21:07:07 +0000397 if (CompactionTable.size() <= Ty)
398 CompactionTable.resize(Ty+1);
399
400 assert(!isa<Type>(V) || ModuleLevel.empty());
401
402 TypePlane &TyPlane = CompactionTable[Ty];
403
404 // Make sure to insert the null entry if the thing we are inserting is not a
405 // null constant.
406 if (TyPlane.empty() && hasNullValue(V->getType()->getPrimitiveID())) {
407 Value *ZeroInitializer = Constant::getNullValue(V->getType());
408 if (V != ZeroInitializer) {
409 TyPlane.push_back(ZeroInitializer);
410 CompactionNodeMap[ZeroInitializer] = 0;
411 }
412 }
413
414 unsigned SlotNo = TyPlane.size();
415 TyPlane.push_back(V);
416 CompactionNodeMap.insert(std::make_pair(V, SlotNo));
417 return SlotNo;
418}
419
420
421/// buildCompactionTable - Since all of the function constants and types are
422/// stored in the module-level constant table, we don't need to emit a function
423/// constant table. Also due to this, the indices for various constants and
424/// types might be very large in large programs. In order to avoid blowing up
425/// the size of instructions in the bytecode encoding, we build a compaction
426/// table, which defines a mapping from function-local identifiers to global
427/// identifiers.
428void SlotCalculator::buildCompactionTable(const Function *F) {
429 assert(CompactionNodeMap.empty() && "Compaction table already built!");
430 // First step, insert the primitive types.
431 CompactionTable.resize(Type::TypeTyID+1);
432 for (unsigned i = 0; i != Type::FirstDerivedTyID; ++i) {
433 const Type *PrimTy = Type::getPrimitiveType((Type::PrimitiveID)i);
434 CompactionTable[Type::TypeTyID].push_back(PrimTy);
435 CompactionNodeMap[PrimTy] = i;
436 }
437
438 // Next, include any types used by function arguments.
439 for (Function::const_aiterator I = F->abegin(), E = F->aend(); I != E; ++I)
440 getOrCreateCompactionTableSlot(I->getType());
441
442 // Next, find all of the types and values that are referred to by the
443 // instructions in the program.
444 for (const_inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) {
445 getOrCreateCompactionTableSlot(I->getType());
446 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op)
447 if (isa<Constant>(I->getOperand(op)) ||
448 isa<GlobalValue>(I->getOperand(op)))
449 getOrCreateCompactionTableSlot(I->getOperand(op));
450 if (const VANextInst *VAN = dyn_cast<VANextInst>(*I))
451 getOrCreateCompactionTableSlot(VAN->getArgType());
452 }
453
454 const SymbolTable &ST = F->getSymbolTable();
455 for (SymbolTable::const_iterator I = ST.begin(), E = ST.end(); I != E; ++I)
456 for (SymbolTable::type_const_iterator TI = I->second.begin(),
457 TE = I->second.end(); TI != TE; ++TI)
458 if (isa<Constant>(TI->second) || isa<Type>(TI->second) ||
459 isa<GlobalValue>(TI->second))
460 getOrCreateCompactionTableSlot(TI->second);
461
462 // Now that we have all of the values in the table, and know what types are
463 // referenced, make sure that there is at least the zero initializer in any
464 // used type plane. Since the type was used, we will be emitting instructions
465 // to the plane even if there are no constants in it.
466 CompactionTable.resize(CompactionTable[Type::TypeTyID].size());
467 for (unsigned i = 0, e = CompactionTable.size(); i != e; ++i)
468 if (CompactionTable[i].empty() && i != Type::VoidTyID &&
469 i != Type::LabelTyID) {
470 const Type *Ty = cast<Type>(CompactionTable[Type::TypeTyID][i]);
471 getOrCreateCompactionTableSlot(Constant::getNullValue(Ty));
472 }
473
474 // Okay, now at this point, we have a legal compaction table. Since we want
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000475 // to emit the smallest possible binaries, do not compactify the type plane if
476 // it will not save us anything. Because we have not yet incorporated the
477 // function body itself yet, we don't know whether or not it's a good idea to
478 // compactify other planes. We will defer this decision until later.
479 TypePlane &GlobalTypes = Table[Type::TypeTyID];
480
481 // All of the values types will be scrunched to the start of the types plane
482 // of the global table. Figure out just how many there are.
483 assert(!GlobalTypes.empty() && "No global types???");
484 unsigned NumFCTypes = GlobalTypes.size()-1;
485 while (!cast<Type>(GlobalTypes[NumFCTypes])->isFirstClassType())
486 --NumFCTypes;
Chris Lattner614cdcd2004-01-18 21:07:07 +0000487
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000488 // If there are fewer that 64 types, no instructions will be exploded due to
489 // the size of the type operands. Thus there is no need to compactify types.
490 // Also, if the compaction table contains most of the entries in the global
491 // table, there really is no reason to compactify either.
492 if (NumFCTypes < 64) {
493 // Decompactifying types is tricky, because we have to move type planes all
494 // over the place. At least we don't need to worry about updating the
495 // CompactionNodeMap for non-types though.
496 std::vector<TypePlane> TmpCompactionTable;
497 std::swap(CompactionTable, TmpCompactionTable);
498 TypePlane Types;
499 std::swap(Types, TmpCompactionTable[Type::TypeTyID]);
500
501 // Move each plane back over to the uncompactified plane
502 while (!Types.empty()) {
503 const Type *Ty = cast<Type>(Types.back());
504 Types.pop_back();
505 CompactionNodeMap.erase(Ty); // Decompactify type!
Chris Lattner614cdcd2004-01-18 21:07:07 +0000506
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000507 if (Ty != Type::TypeTy) {
508 // Find the global slot number for this type.
509 int TySlot = getSlot(Ty);
510 assert(TySlot != -1 && "Type doesn't exist in global table?");
511
512 // Now we know where to put the compaction table plane.
513 if (CompactionTable.size() <= unsigned(TySlot))
514 CompactionTable.resize(TySlot+1);
515 // Move the plane back into the compaction table.
516 std::swap(CompactionTable[TySlot], TmpCompactionTable[Types.size()]);
Chris Lattner614cdcd2004-01-18 21:07:07 +0000517
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000518 // And remove the empty plane we just moved in.
519 TmpCompactionTable.pop_back();
520 }
521 }
522 }
Chris Lattner614cdcd2004-01-18 21:07:07 +0000523}
524
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000525
526/// pruneCompactionTable - Once the entire function being processed has been
527/// incorporated into the current compaction table, look over the compaction
528/// table and check to see if there are any values whose compaction will not
529/// save us any space in the bytecode file. If compactifying these values
530/// serves no purpose, then we might as well not even emit the compactification
531/// information to the bytecode file, saving a bit more space.
532///
533/// Note that the type plane has already been compactified if possible.
534///
535void SlotCalculator::pruneCompactionTable() {
536 TypePlane &TyPlane = CompactionTable[Type::TypeTyID];
537 for (unsigned ctp = 0, e = CompactionTable.size(); ctp != e; ++ctp)
538 if (ctp != Type::TypeTyID && !CompactionTable[ctp].empty()) {
539 TypePlane &CPlane = CompactionTable[ctp];
540 unsigned GlobalSlot = ctp;
541 if (!TyPlane.empty())
542 GlobalSlot = getGlobalSlot(TyPlane[ctp]);
543
544 if (GlobalSlot >= Table.size())
545 Table.resize(GlobalSlot+1);
546 TypePlane &GPlane = Table[GlobalSlot];
547
548 unsigned ModLevel = getModuleLevel(ctp);
549 unsigned NumFunctionObjs = CPlane.size()-ModLevel;
550
551 // If the maximum index required if all entries in this plane were merged
552 // into the global plane is less than 64, go ahead and eliminate the
553 // plane.
554 bool PrunePlane = GPlane.size() + NumFunctionObjs < 64;
555
556 // If there are no function-local values defined, and the maximum
557 // referenced global entry is less than 64, we don't need to compactify.
558 if (!PrunePlane && NumFunctionObjs == 0) {
559 unsigned MaxIdx = 0;
560 for (unsigned i = 0; i != ModLevel; ++i) {
561 unsigned Idx = NodeMap[CPlane[i]];
562 if (Idx > MaxIdx) MaxIdx = Idx;
563 }
564 PrunePlane = MaxIdx < 64;
565 }
566
567 // Ok, finally, if we decided to prune this plane out of the compaction
568 // table, do so now.
569 if (PrunePlane) {
570 TypePlane OldPlane;
571 std::swap(OldPlane, CPlane);
572
573 // Loop over the function local objects, relocating them to the global
574 // table plane.
575 for (unsigned i = ModLevel, e = OldPlane.size(); i != e; ++i) {
576 const Value *V = OldPlane[i];
577 CompactionNodeMap.erase(V);
578 assert(NodeMap.count(V) == 0 && "Value already in table??");
579 getOrCreateSlot(V);
580 }
581
582 // For compactified global values, just remove them from the compaction
583 // node map.
584 for (unsigned i = 0; i != ModLevel; ++i)
585 CompactionNodeMap.erase(OldPlane[i]);
586
587 // Update the new modulelevel for this plane.
588 assert(ctp < ModuleLevel.size() && "Cannot set modulelevel!");
589 ModuleLevel[ctp] = GPlane.size()-NumFunctionObjs;
590 assert((int)ModuleLevel[ctp] >= 0 && "Bad computation!");
591 }
592 }
593}
594
595
Chris Lattner8c202cd2004-01-15 18:47:15 +0000596int SlotCalculator::getSlot(const Value *V) const {
Chris Lattner614cdcd2004-01-18 21:07:07 +0000597 // If there is a CompactionTable active...
598 if (!CompactionNodeMap.empty()) {
599 std::map<const Value*, unsigned>::const_iterator I =
600 CompactionNodeMap.find(V);
601 if (I != CompactionNodeMap.end())
602 return (int)I->second;
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000603 // Otherwise, if it's not in the compaction table, it must be in a
604 // non-compactified plane.
Chris Lattner614cdcd2004-01-18 21:07:07 +0000605 }
606
Chris Lattner8c202cd2004-01-15 18:47:15 +0000607 std::map<const Value*, unsigned>::const_iterator I = NodeMap.find(V);
608 if (I != NodeMap.end())
609 return (int)I->second;
610
611 // Do not number ConstantPointerRef's at all. They are an abomination.
612 if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(V))
613 return getSlot(CPR->getValue());
614
615 return -1;
Chris Lattner00950542001-06-06 20:29:01 +0000616}
617
Chris Lattner9a297902001-09-07 16:31:52 +0000618
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000619int SlotCalculator::getOrCreateSlot(const Value *V) {
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000620 if (V->getType() == Type::VoidTy) return -1;
621
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000622 int SlotNo = getSlot(V); // Check to see if it's already in!
Chris Lattner9a297902001-09-07 16:31:52 +0000623 if (SlotNo != -1) return SlotNo;
Chris Lattner3413d152003-03-19 20:57:22 +0000624
Chris Lattner8c202cd2004-01-15 18:47:15 +0000625 // Do not number ConstantPointerRef's at all. They are an abomination.
626 if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(V))
627 return getOrCreateSlot(CPR->getValue());
628
Chris Lattner614cdcd2004-01-18 21:07:07 +0000629 if (!isa<GlobalValue>(V)) // Initializers for globals are handled explicitly
Chris Lattner3413d152003-03-19 20:57:22 +0000630 if (const Constant *C = dyn_cast<Constant>(V)) {
Chris Lattner614cdcd2004-01-18 21:07:07 +0000631 assert(CompactionNodeMap.empty() &&
632 "All needed constants should be in the compaction map already!");
633
Chris Lattnerdcea6302004-01-14 23:34:39 +0000634 // If we are emitting a bytecode file, do not index the characters that
635 // make up constant strings. We emit constant strings as special
636 // entities that don't require their individual characters to be emitted.
637 if (!BuildBytecodeInfo || !isa<ConstantArray>(C) ||
638 !cast<ConstantArray>(C)->isString()) {
639 // This makes sure that if a constant has uses (for example an array of
640 // const ints), that they are inserted also.
641 //
642 for (User::const_op_iterator I = C->op_begin(), E = C->op_end();
643 I != E; ++I)
644 getOrCreateSlot(*I);
645 } else {
646 assert(ModuleLevel.empty() &&
647 "How can a constant string be directly accessed in a function?");
648 // Otherwise, if we are emitting a bytecode file and this IS a string,
649 // remember it.
650 if (!C->isNullValue())
651 ConstantStrings.push_back(cast<ConstantArray>(C));
652 }
Chris Lattner3413d152003-03-19 20:57:22 +0000653 }
654
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000655 return insertValue(V);
Chris Lattner9a297902001-09-07 16:31:52 +0000656}
657
658
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000659int SlotCalculator::insertValue(const Value *D, bool dontIgnore) {
Chris Lattner9a297902001-09-07 16:31:52 +0000660 assert(D && "Can't insert a null value!");
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000661 assert(getSlot(D) == -1 && "Value is already in the table!");
Chris Lattner00950542001-06-06 20:29:01 +0000662
Chris Lattner614cdcd2004-01-18 21:07:07 +0000663 // If we are building a compaction map, and if this plane is being compacted,
664 // insert the value into the compaction map, not into the global map.
665 if (!CompactionNodeMap.empty()) {
666 if (D->getType() == Type::VoidTy) return -1; // Do not insert void values
667 assert(!isa<Type>(D) && !isa<Constant>(D) && !isa<GlobalValue>(D) &&
668 "Types, constants, and globals should be in global SymTab!");
669
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000670 int Plane = getSlot(D->getType());
671 assert(Plane != -1 && CompactionTable.size() > (unsigned)Plane &&
672 "Didn't find value type!");
673 if (!CompactionTable[Plane].empty())
674 return getOrCreateCompactionTableSlot(D);
Chris Lattner614cdcd2004-01-18 21:07:07 +0000675 }
676
Chris Lattner00950542001-06-06 20:29:01 +0000677 // If this node does not contribute to a plane, or if the node has a
Chris Lattner9a297902001-09-07 16:31:52 +0000678 // name and we don't want names, then ignore the silly node... Note that types
679 // do need slot numbers so that we can keep track of where other values land.
Chris Lattner00950542001-06-06 20:29:01 +0000680 //
Chris Lattner9b50c152001-07-26 16:28:37 +0000681 if (!dontIgnore) // Don't ignore nonignorables!
682 if (D->getType() == Type::VoidTy || // Ignore void type nodes
Chris Lattner8ce75012004-01-14 02:49:34 +0000683 (!BuildBytecodeInfo && // Ignore named and constants
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000684 (D->hasName() || isa<Constant>(D)) && !isa<Type>(D))) {
Chris Lattner3413d152003-03-19 20:57:22 +0000685 SC_DEBUG("ignored value " << *D << "\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000686 return -1; // We do need types unconditionally though
687 }
Chris Lattner00950542001-06-06 20:29:01 +0000688
Chris Lattner9a297902001-09-07 16:31:52 +0000689 // If it's a type, make sure that all subtypes of the type are included...
Chris Lattner949a3622003-07-23 15:30:06 +0000690 if (const Type *TheTy = dyn_cast<Type>(D)) {
Chris Lattnerf1fef652001-10-13 06:35:09 +0000691
692 // Insert the current type before any subtypes. This is important because
693 // recursive types elements are inserted in a bottom up order. Changing
694 // this here can break things. For example:
695 //
696 // global { \2 * } { { \2 }* null }
697 //
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000698 int ResultSlot = doInsertValue(TheTy);
699 SC_DEBUG(" Inserted type: " << TheTy->getDescription() << " slot=" <<
700 ResultSlot << "\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000701
Alkis Evlogimenos088eb452003-10-31 03:02:34 +0000702 // Loop over any contained types in the definition... in post
703 // order.
Chris Lattner9a297902001-09-07 16:31:52 +0000704 //
Alkis Evlogimenos088eb452003-10-31 03:02:34 +0000705 for (po_iterator<const Type*> I = po_begin(TheTy), E = po_end(TheTy);
Alkis Evlogimenos74fa84f2003-10-30 21:04:44 +0000706 I != E; ++I) {
Chris Lattner9a297902001-09-07 16:31:52 +0000707 if (*I != TheTy) {
Alkis Evlogimenos74fa84f2003-10-30 21:04:44 +0000708 const Type *SubTy = *I;
Alkis Evlogimenos088eb452003-10-31 03:02:34 +0000709 // If we haven't seen this sub type before, add it to our type table!
710 if (getSlot(SubTy) == -1) {
711 SC_DEBUG(" Inserting subtype: " << SubTy->getDescription() << "\n");
712 int Slot = doInsertValue(SubTy);
713 SC_DEBUG(" Inserted subtype: " << SubTy->getDescription() <<
714 " slot=" << Slot << "\n");
715 }
Alkis Evlogimenos74fa84f2003-10-30 21:04:44 +0000716 }
717 }
Chris Lattnerf1fef652001-10-13 06:35:09 +0000718 return ResultSlot;
Chris Lattner9a297902001-09-07 16:31:52 +0000719 }
720
721 // Okay, everything is happy, actually insert the silly value now...
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000722 return doInsertValue(D);
Chris Lattner9a297902001-09-07 16:31:52 +0000723}
724
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000725// doInsertValue - This is a small helper function to be called only
726// be insertValue.
Chris Lattner9a297902001-09-07 16:31:52 +0000727//
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000728int SlotCalculator::doInsertValue(const Value *D) {
Chris Lattner00950542001-06-06 20:29:01 +0000729 const Type *Typ = D->getType();
Chris Lattner9b50c152001-07-26 16:28:37 +0000730 unsigned Ty;
731
732 // Used for debugging DefSlot=-1 assertion...
733 //if (Typ == Type::TypeTy)
Chris Lattnercfe26c92001-10-01 18:26:53 +0000734 // cerr << "Inserting type '" << cast<Type>(D)->getDescription() << "'!\n";
Chris Lattner9b50c152001-07-26 16:28:37 +0000735
Chris Lattner00950542001-06-06 20:29:01 +0000736 if (Typ->isDerivedType()) {
Chris Lattner68e3dbc2004-01-20 00:57:32 +0000737 int ValSlot;
738 if (CompactionTable.empty())
739 ValSlot = getSlot(Typ);
740 else
741 ValSlot = getGlobalSlot(Typ);
Chris Lattner3413d152003-03-19 20:57:22 +0000742 if (ValSlot == -1) { // Have we already entered this type?
Chris Lattner9a297902001-09-07 16:31:52 +0000743 // Nope, this is the first we have seen the type, process it.
Alkis Evlogimenos60596382003-10-17 02:02:40 +0000744 ValSlot = insertValue(Typ, true);
Chris Lattner3413d152003-03-19 20:57:22 +0000745 assert(ValSlot != -1 && "ProcessType returned -1 for a type?");
Chris Lattner00950542001-06-06 20:29:01 +0000746 }
Chris Lattner3413d152003-03-19 20:57:22 +0000747 Ty = (unsigned)ValSlot;
Chris Lattner9b50c152001-07-26 16:28:37 +0000748 } else {
749 Ty = Typ->getPrimitiveID();
Chris Lattner00950542001-06-06 20:29:01 +0000750 }
751
752 if (Table.size() <= Ty) // Make sure we have the type plane allocated...
753 Table.resize(Ty+1, TypePlane());
Chris Lattner3413d152003-03-19 20:57:22 +0000754
755 // If this is the first value to get inserted into the type plane, make sure
756 // to insert the implicit null value...
Chris Lattner80b97342004-01-17 23:25:43 +0000757 if (Table[Ty].empty() && BuildBytecodeInfo && hasNullValue(Ty)) {
Chris Lattner3413d152003-03-19 20:57:22 +0000758 Value *ZeroInitializer = Constant::getNullValue(Typ);
759
760 // If we are pushing zeroinit, it will be handled below.
761 if (D != ZeroInitializer) {
762 Table[Ty].push_back(ZeroInitializer);
763 NodeMap[ZeroInitializer] = 0;
764 }
765 }
766
Chris Lattner9a297902001-09-07 16:31:52 +0000767 // Insert node into table and NodeMap...
768 unsigned DestSlot = NodeMap[D] = Table[Ty].size();
Chris Lattner00950542001-06-06 20:29:01 +0000769 Table[Ty].push_back(D);
Chris Lattner9a297902001-09-07 16:31:52 +0000770
Chris Lattnerf1fef652001-10-13 06:35:09 +0000771 SC_DEBUG(" Inserting value [" << Ty << "] = " << D << " slot=" <<
772 DestSlot << " [");
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000773 // G = Global, C = Constant, T = Type, F = Function, o = other
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000774 SC_DEBUG((isa<GlobalVariable>(D) ? "G" : (isa<Constant>(D) ? "C" :
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000775 (isa<Type>(D) ? "T" : (isa<Function>(D) ? "F" : "o")))));
Chris Lattnerf1fef652001-10-13 06:35:09 +0000776 SC_DEBUG("]\n");
Chris Lattner9a297902001-09-07 16:31:52 +0000777 return (int)DestSlot;
Chris Lattner00950542001-06-06 20:29:01 +0000778}