blob: 994dcb3024f64245e805165ad38e07757c8b283f [file] [log] [blame]
Chris Lattnerfd57cec2007-04-22 06:24:45 +00001//===-- ValueEnumerator.cpp - Number values and types for bitcode writer --===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerfd57cec2007-04-22 06:24:45 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the ValueEnumerator class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "ValueEnumerator.h"
Chris Lattnerff7fc5d2007-05-06 00:35:24 +000015#include "llvm/Constants.h"
Chris Lattner50954f52007-05-03 22:46:43 +000016#include "llvm/DerivedTypes.h"
Chris Lattnerfd57cec2007-04-22 06:24:45 +000017#include "llvm/Module.h"
18#include "llvm/TypeSymbolTable.h"
19#include "llvm/ValueSymbolTable.h"
Duncan Sandsdc024672007-11-27 13:23:08 +000020#include "llvm/Instructions.h"
Chris Lattner12f535b2007-05-04 05:05:48 +000021#include <algorithm>
Chris Lattnerfd57cec2007-04-22 06:24:45 +000022using namespace llvm;
23
Dan Gohmane4977cf2008-05-23 01:55:30 +000024static bool isSingleValueType(const std::pair<const llvm::Type*,
25 unsigned int> &P) {
26 return P.first->isSingleValueType();
Chris Lattner12f535b2007-05-04 05:05:48 +000027}
28
Chris Lattner6da91d32007-05-04 05:21:47 +000029static bool isIntegerValue(const std::pair<const Value*, unsigned> &V) {
30 return isa<IntegerType>(V.first->getType());
31}
32
Chris Lattner12f535b2007-05-04 05:05:48 +000033static bool CompareByFrequency(const std::pair<const llvm::Type*,
34 unsigned int> &P1,
35 const std::pair<const llvm::Type*,
36 unsigned int> &P2) {
37 return P1.second > P2.second;
38}
39
Chris Lattnerfd57cec2007-04-22 06:24:45 +000040/// ValueEnumerator - Enumerate module-level information.
41ValueEnumerator::ValueEnumerator(const Module *M) {
Devang Patele8e02132009-09-18 19:26:43 +000042 InstructionCount = 0;
43
Chris Lattnerfd57cec2007-04-22 06:24:45 +000044 // Enumerate the global variables.
45 for (Module::const_global_iterator I = M->global_begin(),
46 E = M->global_end(); I != E; ++I)
47 EnumerateValue(I);
48
49 // Enumerate the functions.
Duncan Sandsdc024672007-11-27 13:23:08 +000050 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
Chris Lattnerfd57cec2007-04-22 06:24:45 +000051 EnumerateValue(I);
Devang Patel05988662008-09-25 21:00:45 +000052 EnumerateAttributes(cast<Function>(I)->getAttributes());
Duncan Sandsdc024672007-11-27 13:23:08 +000053 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +000054
Chris Lattner07d98b42007-04-26 02:46:40 +000055 // Enumerate the aliases.
56 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
57 I != E; ++I)
58 EnumerateValue(I);
Daniel Dunbara279bc32009-09-20 02:20:51 +000059
Chris Lattner6da91d32007-05-04 05:21:47 +000060 // Remember what is the cutoff between globalvalue's and other constants.
61 unsigned FirstConstant = Values.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +000062
Chris Lattnerfd57cec2007-04-22 06:24:45 +000063 // Enumerate the global variable initializers.
64 for (Module::const_global_iterator I = M->global_begin(),
65 E = M->global_end(); I != E; ++I)
66 if (I->hasInitializer())
67 EnumerateValue(I->getInitializer());
68
Chris Lattner07d98b42007-04-26 02:46:40 +000069 // Enumerate the aliasees.
70 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
71 I != E; ++I)
72 EnumerateValue(I->getAliasee());
Daniel Dunbara279bc32009-09-20 02:20:51 +000073
Chris Lattnerfd57cec2007-04-22 06:24:45 +000074 // Enumerate types used by the type symbol table.
75 EnumerateTypeSymbolTable(M->getTypeSymbolTable());
76
77 // Insert constants that are named at module level into the slot pool so that
78 // the module symbol table can refer to them...
79 EnumerateValueSymbolTable(M->getValueSymbolTable());
Daniel Dunbara279bc32009-09-20 02:20:51 +000080
Chris Lattnercc7b0112009-12-31 00:51:46 +000081 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
82
Chris Lattner8d35c792007-04-26 03:50:57 +000083 // Enumerate types used by function bodies and argument lists.
Chris Lattnerfd57cec2007-04-22 06:24:45 +000084 for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
Daniel Dunbara279bc32009-09-20 02:20:51 +000085
Chris Lattner8d35c792007-04-26 03:50:57 +000086 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
87 I != E; ++I)
88 EnumerateType(I->getType());
Devang Patele8e02132009-09-18 19:26:43 +000089
Chris Lattnerfd57cec2007-04-22 06:24:45 +000090 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
91 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;++I){
Daniel Dunbara279bc32009-09-20 02:20:51 +000092 for (User::const_op_iterator OI = I->op_begin(), E = I->op_end();
Chris Lattnerfd57cec2007-04-22 06:24:45 +000093 OI != E; ++OI)
Chris Lattner33f1d5b2007-05-06 08:35:19 +000094 EnumerateOperandType(*OI);
Chris Lattnerfd57cec2007-04-22 06:24:45 +000095 EnumerateType(I->getType());
Duncan Sandsdc024672007-11-27 13:23:08 +000096 if (const CallInst *CI = dyn_cast<CallInst>(I))
Devang Patel05988662008-09-25 21:00:45 +000097 EnumerateAttributes(CI->getAttributes());
Duncan Sandsdc024672007-11-27 13:23:08 +000098 else if (const InvokeInst *II = dyn_cast<InvokeInst>(I))
Devang Patel05988662008-09-25 21:00:45 +000099 EnumerateAttributes(II->getAttributes());
Devang Patele8e02132009-09-18 19:26:43 +0000100
Daniel Dunbara279bc32009-09-20 02:20:51 +0000101 // Enumerate metadata attached with this instruction.
Devang Patelf61b2372009-10-22 18:55:16 +0000102 MDs.clear();
Chris Lattner3990b122009-12-28 23:41:32 +0000103 I->getAllMetadata(MDs);
104 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
105 EnumerateMetadata(MDs[i].second);
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000106 }
107 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000108
Chris Lattner6da91d32007-05-04 05:21:47 +0000109 // Optimize constant ordering.
110 OptimizeConstants(FirstConstant, Values.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000111
Chris Lattner12f535b2007-05-04 05:05:48 +0000112 // Sort the type table by frequency so that most commonly used types are early
113 // in the table (have low bit-width).
114 std::stable_sort(Types.begin(), Types.end(), CompareByFrequency);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000115
Dan Gohmane4977cf2008-05-23 01:55:30 +0000116 // Partition the Type ID's so that the single-value types occur before the
Chris Lattner12f535b2007-05-04 05:05:48 +0000117 // aggregate types. This allows the aggregate types to be dropped from the
118 // type table after parsing the global variable initializers.
Dan Gohmane4977cf2008-05-23 01:55:30 +0000119 std::partition(Types.begin(), Types.end(), isSingleValueType);
Chris Lattner12f535b2007-05-04 05:05:48 +0000120
121 // Now that we rearranged the type table, rebuild TypeMap.
122 for (unsigned i = 0, e = Types.size(); i != e; ++i)
123 TypeMap[Types[i].first] = i+1;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000124}
125
Devang Patele8e02132009-09-18 19:26:43 +0000126unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
127 InstructionMapType::const_iterator I = InstructionMap.find(Inst);
128 assert (I != InstructionMap.end() && "Instruction is not mapped!");
129 return I->second;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000130}
Devang Patele8e02132009-09-18 19:26:43 +0000131
132void ValueEnumerator::setInstructionID(const Instruction *I) {
133 InstructionMap[I] = InstructionCount++;
134}
135
Devang Pateld5ac4042009-08-04 06:00:18 +0000136unsigned ValueEnumerator::getValueID(const Value *V) const {
137 if (isa<MetadataBase>(V)) {
138 ValueMapType::const_iterator I = MDValueMap.find(V);
139 assert(I != MDValueMap.end() && "Value not in slotcalculator!");
140 return I->second-1;
141 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000142
Devang Pateld5ac4042009-08-04 06:00:18 +0000143 ValueMapType::const_iterator I = ValueMap.find(V);
144 assert(I != ValueMap.end() && "Value not in slotcalculator!");
145 return I->second-1;
146}
Daniel Dunbara279bc32009-09-20 02:20:51 +0000147
Chris Lattner6da91d32007-05-04 05:21:47 +0000148// Optimize constant ordering.
Dan Gohman844731a2008-05-13 00:00:25 +0000149namespace {
150 struct CstSortPredicate {
151 ValueEnumerator &VE;
152 explicit CstSortPredicate(ValueEnumerator &ve) : VE(ve) {}
153 bool operator()(const std::pair<const Value*, unsigned> &LHS,
154 const std::pair<const Value*, unsigned> &RHS) {
155 // Sort by plane.
156 if (LHS.first->getType() != RHS.first->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +0000157 return VE.getTypeID(LHS.first->getType()) <
Dan Gohman844731a2008-05-13 00:00:25 +0000158 VE.getTypeID(RHS.first->getType());
159 // Then by frequency.
160 return LHS.second > RHS.second;
161 }
162 };
163}
Chris Lattner6da91d32007-05-04 05:21:47 +0000164
165/// OptimizeConstants - Reorder constant pool for denser encoding.
166void ValueEnumerator::OptimizeConstants(unsigned CstStart, unsigned CstEnd) {
167 if (CstStart == CstEnd || CstStart+1 == CstEnd) return;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000168
Chris Lattner6da91d32007-05-04 05:21:47 +0000169 CstSortPredicate P(*this);
170 std::stable_sort(Values.begin()+CstStart, Values.begin()+CstEnd, P);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000171
Chris Lattner6da91d32007-05-04 05:21:47 +0000172 // Ensure that integer constants are at the start of the constant pool. This
173 // is important so that GEP structure indices come before gep constant exprs.
174 std::partition(Values.begin()+CstStart, Values.begin()+CstEnd,
175 isIntegerValue);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000176
Chris Lattner6da91d32007-05-04 05:21:47 +0000177 // Rebuild the modified portion of ValueMap.
178 for (; CstStart != CstEnd; ++CstStart)
179 ValueMap[Values[CstStart].first] = CstStart+1;
180}
181
182
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000183/// EnumerateTypeSymbolTable - Insert all of the types in the specified symbol
184/// table.
185void ValueEnumerator::EnumerateTypeSymbolTable(const TypeSymbolTable &TST) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000186 for (TypeSymbolTable::const_iterator TI = TST.begin(), TE = TST.end();
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000187 TI != TE; ++TI)
188 EnumerateType(TI->second);
189}
190
191/// EnumerateValueSymbolTable - Insert all of the values in the specified symbol
192/// table into the values table.
193void ValueEnumerator::EnumerateValueSymbolTable(const ValueSymbolTable &VST) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000194 for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end();
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000195 VI != VE; ++VI)
196 EnumerateValue(VI->getValue());
197}
198
Devang Pateld5ac4042009-08-04 06:00:18 +0000199void ValueEnumerator::EnumerateMetadata(const MetadataBase *MD) {
200 // Check to see if it's already in!
201 unsigned &MDValueID = MDValueMap[MD];
202 if (MDValueID) {
203 // Increment use count.
204 MDValues[MDValueID-1].second++;
205 return;
206 }
207
208 // Enumerate the type of this value.
209 EnumerateType(MD->getType());
210
211 if (const MDNode *N = dyn_cast<MDNode>(MD)) {
212 MDValues.push_back(std::make_pair(MD, 1U));
213 MDValueMap[MD] = MDValues.size();
214 MDValueID = MDValues.size();
Devang Patel028fa772009-10-21 21:25:09 +0000215 for (unsigned i = 0, e = N->getNumElements(); i != e; ++i) {
216 if (Value *V = N->getElement(i))
217 EnumerateValue(V);
Devang Pateld5ac4042009-08-04 06:00:18 +0000218 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000219 EnumerateType(Type::getVoidTy(MD->getContext()));
Devang Pateld5ac4042009-08-04 06:00:18 +0000220 }
221 return;
Chris Lattner837e04a2009-10-28 05:24:40 +0000222 }
223
224 if (const NamedMDNode *N = dyn_cast<NamedMDNode>(MD)) {
Chris Lattnera3275242009-12-28 07:57:01 +0000225 for (unsigned i = 0, e = N->getNumElements(); i != e; ++i)
226 EnumerateValue(N->getElement(i));
Devang Pateld5ac4042009-08-04 06:00:18 +0000227 MDValues.push_back(std::make_pair(MD, 1U));
228 MDValueMap[MD] = Values.size();
229 return;
230 }
231
232 // Add the value.
Chris Lattnercc7b0112009-12-31 00:51:46 +0000233 assert(isa<MDString>(MD) && "Unknown metadata kind");
Devang Pateld5ac4042009-08-04 06:00:18 +0000234 MDValues.push_back(std::make_pair(MD, 1U));
235 MDValueID = MDValues.size();
236}
237
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000238void ValueEnumerator::EnumerateValue(const Value *V) {
Chris Lattnercc7b0112009-12-31 00:51:46 +0000239 assert(!V->getType()->isVoidTy() && "Can't insert void values!");
Devang Pateld5ac4042009-08-04 06:00:18 +0000240 if (const MetadataBase *MB = dyn_cast<MetadataBase>(V))
241 return EnumerateMetadata(MB);
242
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000243 // Check to see if it's already in!
244 unsigned &ValueID = ValueMap[V];
245 if (ValueID) {
246 // Increment use count.
247 Values[ValueID-1].second++;
248 return;
249 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000250
Chris Lattner7a303d12007-05-06 01:00:28 +0000251 // Enumerate the type of this value.
252 EnumerateType(V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000253
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000254 if (const Constant *C = dyn_cast<Constant>(V)) {
255 if (isa<GlobalValue>(C)) {
256 // Initializers for globals are handled explicitly elsewhere.
Chris Lattnerff7fc5d2007-05-06 00:35:24 +0000257 } else if (isa<ConstantArray>(C) && cast<ConstantArray>(C)->isString()) {
258 // Do not enumerate the initializers for an array of simple characters.
259 // The initializers just polute the value table, and we emit the strings
260 // specially.
Chris Lattner7a303d12007-05-06 01:00:28 +0000261 } else if (C->getNumOperands()) {
262 // If a constant has operands, enumerate them. This makes sure that if a
263 // constant has uses (for example an array of const ints), that they are
264 // inserted also.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000265
Chris Lattner7a303d12007-05-06 01:00:28 +0000266 // We prefer to enumerate them with values before we enumerate the user
267 // itself. This makes it more likely that we can avoid forward references
268 // in the reader. We know that there can be no cycles in the constants
269 // graph that don't go through a global variable.
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000270 for (User::const_op_iterator I = C->op_begin(), E = C->op_end();
271 I != E; ++I)
Chris Lattnercdfc9402009-11-01 01:27:45 +0000272 if (!isa<BasicBlock>(*I)) // Don't enumerate BB operand to BlockAddress.
273 EnumerateValue(*I);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattner7a303d12007-05-06 01:00:28 +0000275 // Finally, add the value. Doing this could make the ValueID reference be
276 // dangling, don't reuse it.
277 Values.push_back(std::make_pair(V, 1U));
278 ValueMap[V] = Values.size();
279 return;
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000280 }
281 }
Devang Patel104cf9e2009-07-23 01:07:34 +0000282
Chris Lattner7a303d12007-05-06 01:00:28 +0000283 // Add the value.
284 Values.push_back(std::make_pair(V, 1U));
285 ValueID = Values.size();
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000286}
287
288
289void ValueEnumerator::EnumerateType(const Type *Ty) {
290 unsigned &TypeID = TypeMap[Ty];
Daniel Dunbara279bc32009-09-20 02:20:51 +0000291
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000292 if (TypeID) {
293 // If we've already seen this type, just increase its occurrence count.
294 Types[TypeID-1].second++;
295 return;
296 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000297
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000298 // First time we saw this type, add it.
299 Types.push_back(std::make_pair(Ty, 1U));
300 TypeID = Types.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000301
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000302 // Enumerate subtypes.
303 for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
304 I != E; ++I)
305 EnumerateType(*I);
306}
307
Chris Lattner33f1d5b2007-05-06 08:35:19 +0000308// Enumerate the types for the specified value. If the value is a constant,
309// walk through it, enumerating the types of the constant.
310void ValueEnumerator::EnumerateOperandType(const Value *V) {
311 EnumerateType(V->getType());
312 if (const Constant *C = dyn_cast<Constant>(V)) {
313 // If this constant is already enumerated, ignore it, we know its type must
314 // be enumerated.
315 if (ValueMap.count(V)) return;
316
317 // This constant may have operands, make sure to enumerate the types in
318 // them.
Chris Lattner837e04a2009-10-28 05:24:40 +0000319 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
320 const User *Op = C->getOperand(i);
321
322 // Don't enumerate basic blocks here, this happens as operands to
323 // blockaddress.
324 if (isa<BasicBlock>(Op)) continue;
325
326 EnumerateOperandType(cast<Constant>(Op));
327 }
Nick Lewyckycb337992009-05-10 20:57:05 +0000328
329 if (const MDNode *N = dyn_cast<MDNode>(V)) {
Chris Lattner837e04a2009-10-28 05:24:40 +0000330 for (unsigned i = 0, e = N->getNumElements(); i != e; ++i)
331 if (Value *Elem = N->getElement(i))
Devang Patele54abc92009-07-22 17:43:22 +0000332 EnumerateOperandType(Elem);
Nick Lewyckycb337992009-05-10 20:57:05 +0000333 }
Devang Patel104cf9e2009-07-23 01:07:34 +0000334 } else if (isa<MDString>(V) || isa<MDNode>(V))
Devang Patele54abc92009-07-22 17:43:22 +0000335 EnumerateValue(V);
Chris Lattner33f1d5b2007-05-06 08:35:19 +0000336}
337
Devang Patel05988662008-09-25 21:00:45 +0000338void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) {
Chris Lattner58d74912008-03-12 17:45:29 +0000339 if (PAL.isEmpty()) return; // null is always 0.
Chris Lattner50954f52007-05-03 22:46:43 +0000340 // Do a lookup.
Devang Patel05988662008-09-25 21:00:45 +0000341 unsigned &Entry = AttributeMap[PAL.getRawPointer()];
Chris Lattner50954f52007-05-03 22:46:43 +0000342 if (Entry == 0) {
343 // Never saw this before, add it.
Devang Patel05988662008-09-25 21:00:45 +0000344 Attributes.push_back(PAL);
345 Entry = Attributes.size();
Chris Lattner50954f52007-05-03 22:46:43 +0000346 }
347}
348
349
Chris Lattner8d35c792007-04-26 03:50:57 +0000350void ValueEnumerator::incorporateFunction(const Function &F) {
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000351 NumModuleValues = Values.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000352
Chris Lattner8d35c792007-04-26 03:50:57 +0000353 // Adding function arguments to the value table.
354 for(Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end();
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000355 I != E; ++I)
Chris Lattner8d35c792007-04-26 03:50:57 +0000356 EnumerateValue(I);
357
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000358 FirstFuncConstantID = Values.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000359
Chris Lattner8d35c792007-04-26 03:50:57 +0000360 // Add all function-level constants to the value table.
361 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
362 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I)
Daniel Dunbara279bc32009-09-20 02:20:51 +0000363 for (User::const_op_iterator OI = I->op_begin(), E = I->op_end();
Chris Lattner8d35c792007-04-26 03:50:57 +0000364 OI != E; ++OI) {
365 if ((isa<Constant>(*OI) && !isa<GlobalValue>(*OI)) ||
366 isa<InlineAsm>(*OI))
367 EnumerateValue(*OI);
368 }
Chris Lattnerc59c0af2007-04-26 04:42:16 +0000369 BasicBlocks.push_back(BB);
Chris Lattnere825ed52007-05-03 22:18:21 +0000370 ValueMap[BB] = BasicBlocks.size();
Chris Lattner8d35c792007-04-26 03:50:57 +0000371 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000372
Chris Lattner6da91d32007-05-04 05:21:47 +0000373 // Optimize the constant layout.
374 OptimizeConstants(FirstFuncConstantID, Values.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000375
Duncan Sandsdc024672007-11-27 13:23:08 +0000376 // Add the function's parameter attributes so they are available for use in
377 // the function's instruction.
Devang Patel05988662008-09-25 21:00:45 +0000378 EnumerateAttributes(F.getAttributes());
Duncan Sandsdc024672007-11-27 13:23:08 +0000379
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000380 FirstInstID = Values.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000381
Chris Lattner8d35c792007-04-26 03:50:57 +0000382 // Add all of the instructions.
383 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000384 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000385 if (I->getType() != Type::getVoidTy(F.getContext()))
Chris Lattner8d35c792007-04-26 03:50:57 +0000386 EnumerateValue(I);
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000387 }
388 }
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000389}
390
Chris Lattner8d35c792007-04-26 03:50:57 +0000391void ValueEnumerator::purgeFunction() {
392 /// Remove purged values from the ValueMap.
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000393 for (unsigned i = NumModuleValues, e = Values.size(); i != e; ++i)
Chris Lattner8d35c792007-04-26 03:50:57 +0000394 ValueMap.erase(Values[i].first);
Chris Lattnerc59c0af2007-04-26 04:42:16 +0000395 for (unsigned i = 0, e = BasicBlocks.size(); i != e; ++i)
396 ValueMap.erase(BasicBlocks[i]);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000397
Chris Lattnerb9d0c2a2007-04-26 05:53:54 +0000398 Values.resize(NumModuleValues);
Chris Lattnerc59c0af2007-04-26 04:42:16 +0000399 BasicBlocks.clear();
Chris Lattnerfd57cec2007-04-22 06:24:45 +0000400}
Chris Lattner837e04a2009-10-28 05:24:40 +0000401
402static void IncorporateFunctionInfoGlobalBBIDs(const Function *F,
403 DenseMap<const BasicBlock*, unsigned> &IDMap) {
404 unsigned Counter = 0;
405 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
406 IDMap[BB] = ++Counter;
407}
408
409/// getGlobalBasicBlockID - This returns the function-specific ID for the
410/// specified basic block. This is relatively expensive information, so it
411/// should only be used by rare constructs such as address-of-label.
412unsigned ValueEnumerator::getGlobalBasicBlockID(const BasicBlock *BB) const {
413 unsigned &Idx = GlobalBasicBlockIDs[BB];
414 if (Idx != 0)
Chris Lattnercdfc9402009-11-01 01:27:45 +0000415 return Idx-1;
Chris Lattner837e04a2009-10-28 05:24:40 +0000416
417 IncorporateFunctionInfoGlobalBBIDs(BB->getParent(), GlobalBasicBlockIDs);
418 return getGlobalBasicBlockID(BB);
419}
420