Enumerate function-local metadata (and its types and operands) only during function...
[oota-llvm.git] / lib / Bitcode / Writer / ValueEnumerator.cpp
1 //===-- ValueEnumerator.cpp - Number values and types for bitcode writer --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the ValueEnumerator class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ValueEnumerator.h"
15 #include "llvm/Constants.h"
16 #include "llvm/DerivedTypes.h"
17 #include "llvm/Module.h"
18 #include "llvm/TypeSymbolTable.h"
19 #include "llvm/ValueSymbolTable.h"
20 #include "llvm/Instructions.h"
21 #include <algorithm>
22 using namespace llvm;
23
24 static bool isSingleValueType(const std::pair<const llvm::Type*,
25                               unsigned int> &P) {
26   return P.first->isSingleValueType();
27 }
28
29 static bool isIntegerValue(const std::pair<const Value*, unsigned> &V) {
30   return isa<IntegerType>(V.first->getType());
31 }
32
33 static 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
40 /// ValueEnumerator - Enumerate module-level information.
41 ValueEnumerator::ValueEnumerator(const Module *M) {
42   InstructionCount = 0;
43
44   // 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.
50   for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
51     EnumerateValue(I);
52     EnumerateAttributes(cast<Function>(I)->getAttributes());
53   }
54
55   // Enumerate the aliases.
56   for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
57        I != E; ++I)
58     EnumerateValue(I);
59
60   // Remember what is the cutoff between globalvalue's and other constants.
61   unsigned FirstConstant = Values.size();
62
63   // 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
69   // 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());
73
74   // Enumerate types used by the type symbol table.
75   EnumerateTypeSymbolTable(M->getTypeSymbolTable());
76
77   // Insert constants and metadata  that are named at module level into the slot 
78   // pool so that the module symbol table can refer to them...
79   EnumerateValueSymbolTable(M->getValueSymbolTable());
80   EnumerateMDSymbolTable(M->getMDSymbolTable());
81
82   SmallVector<std::pair<unsigned, MDNode*>, 8> MDs;
83
84   // Enumerate types used by function bodies and argument lists.
85   for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
86
87     for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
88          I != E; ++I)
89       EnumerateType(I->getType());
90
91     for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
92       for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;++I){
93         for (User::const_op_iterator OI = I->op_begin(), E = I->op_end();
94              OI != E; ++OI)
95           EnumerateOperandType(*OI, true);
96         EnumerateType(I->getType());
97         if (const CallInst *CI = dyn_cast<CallInst>(I))
98           EnumerateAttributes(CI->getAttributes());
99         else if (const InvokeInst *II = dyn_cast<InvokeInst>(I))
100           EnumerateAttributes(II->getAttributes());
101
102         // Enumerate metadata attached with this instruction.
103         MDs.clear();
104         I->getAllMetadata(MDs);
105         for (unsigned i = 0, e = MDs.size(); i != e; ++i)
106           EnumerateMetadata(MDs[i].second, true);
107       }
108   }
109
110   // Optimize constant ordering.
111   OptimizeConstants(FirstConstant, Values.size());
112
113   // Sort the type table by frequency so that most commonly used types are early
114   // in the table (have low bit-width).
115   std::stable_sort(Types.begin(), Types.end(), CompareByFrequency);
116
117   // Partition the Type ID's so that the single-value types occur before the
118   // aggregate types.  This allows the aggregate types to be dropped from the
119   // type table after parsing the global variable initializers.
120   std::partition(Types.begin(), Types.end(), isSingleValueType);
121
122   // Now that we rearranged the type table, rebuild TypeMap.
123   for (unsigned i = 0, e = Types.size(); i != e; ++i)
124     TypeMap[Types[i].first] = i+1;
125 }
126
127 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
128   InstructionMapType::const_iterator I = InstructionMap.find(Inst);
129   assert (I != InstructionMap.end() && "Instruction is not mapped!");
130     return I->second;
131 }
132
133 void ValueEnumerator::setInstructionID(const Instruction *I) {
134   InstructionMap[I] = InstructionCount++;
135 }
136
137 unsigned ValueEnumerator::getValueID(const Value *V) const {
138   if (isa<MetadataBase>(V)) {
139     ValueMapType::const_iterator I = MDValueMap.find(V);
140     assert(I != MDValueMap.end() && "Value not in slotcalculator!");
141     return I->second-1;
142   }
143
144   ValueMapType::const_iterator I = ValueMap.find(V);
145   assert(I != ValueMap.end() && "Value not in slotcalculator!");
146   return I->second-1;
147 }
148
149 // Optimize constant ordering.
150 namespace {
151   struct CstSortPredicate {
152     ValueEnumerator &VE;
153     explicit CstSortPredicate(ValueEnumerator &ve) : VE(ve) {}
154     bool operator()(const std::pair<const Value*, unsigned> &LHS,
155                     const std::pair<const Value*, unsigned> &RHS) {
156       // Sort by plane.
157       if (LHS.first->getType() != RHS.first->getType())
158         return VE.getTypeID(LHS.first->getType()) <
159                VE.getTypeID(RHS.first->getType());
160       // Then by frequency.
161       return LHS.second > RHS.second;
162     }
163   };
164 }
165
166 /// OptimizeConstants - Reorder constant pool for denser encoding.
167 void ValueEnumerator::OptimizeConstants(unsigned CstStart, unsigned CstEnd) {
168   if (CstStart == CstEnd || CstStart+1 == CstEnd) return;
169
170   CstSortPredicate P(*this);
171   std::stable_sort(Values.begin()+CstStart, Values.begin()+CstEnd, P);
172
173   // Ensure that integer constants are at the start of the constant pool.  This
174   // is important so that GEP structure indices come before gep constant exprs.
175   std::partition(Values.begin()+CstStart, Values.begin()+CstEnd,
176                  isIntegerValue);
177
178   // Rebuild the modified portion of ValueMap.
179   for (; CstStart != CstEnd; ++CstStart)
180     ValueMap[Values[CstStart].first] = CstStart+1;
181 }
182
183
184 /// EnumerateTypeSymbolTable - Insert all of the types in the specified symbol
185 /// table.
186 void ValueEnumerator::EnumerateTypeSymbolTable(const TypeSymbolTable &TST) {
187   for (TypeSymbolTable::const_iterator TI = TST.begin(), TE = TST.end();
188        TI != TE; ++TI)
189     EnumerateType(TI->second);
190 }
191
192 /// EnumerateValueSymbolTable - Insert all of the values in the specified symbol
193 /// table into the values table.
194 void ValueEnumerator::EnumerateValueSymbolTable(const ValueSymbolTable &VST) {
195   for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end();
196        VI != VE; ++VI)
197     EnumerateValue(VI->getValue());
198 }
199
200 /// EnumerateMDSymbolTable - Insert all of the values in the specified metadata
201 /// table.
202 void ValueEnumerator::EnumerateMDSymbolTable(const MDSymbolTable &MST) {
203   for (MDSymbolTable::const_iterator MI = MST.begin(), ME = MST.end();
204        MI != ME; ++MI)
205     EnumerateValue(MI->getValue());
206 }
207
208 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
209   // Check to see if it's already in!
210   unsigned &MDValueID = MDValueMap[MD];
211   if (MDValueID) {
212     // Increment use count.
213     MDValues[MDValueID-1].second++;
214     return;
215   }
216
217   // Enumerate the type of this value.
218   EnumerateType(MD->getType());
219
220   for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
221     if (MDNode *E = MD->getOperand(i))
222       EnumerateValue(E);
223   MDValues.push_back(std::make_pair(MD, 1U));
224   MDValueMap[MD] = Values.size();
225 }
226
227 void ValueEnumerator::EnumerateMetadata(const MetadataBase *MD, bool isGlobal) {
228   // Check to see if it's already in!
229   unsigned &MDValueID = MDValueMap[MD];
230   if (MDValueID) {
231     // Increment use count.
232     MDValues[MDValueID-1].second++;
233     return;
234   }
235
236   // Enumerate the type of this value.
237   EnumerateType(MD->getType());
238
239   if (const MDNode *N = dyn_cast<MDNode>(MD)) {
240     if ((isGlobal && !N->isFunctionLocal()) ||
241         (!isGlobal && N->isFunctionLocal())) {
242       MDValues.push_back(std::make_pair(MD, 1U));
243       MDValueMap[MD] = MDValues.size();
244       MDValueID = MDValues.size();
245       for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {    
246         if (Value *V = N->getOperand(i))
247           EnumerateValue(V);
248         else
249           EnumerateType(Type::getVoidTy(MD->getContext()));
250       }
251       return;
252     }
253     return;
254   }
255   
256   // Add the value.
257   assert(isa<MDString>(MD) && "Unknown metadata kind");
258   MDValues.push_back(std::make_pair(MD, 1U));
259   MDValueID = MDValues.size();
260 }
261
262 void ValueEnumerator::EnumerateValue(const Value *V, bool isGlobal) {
263   assert(!V->getType()->isVoidTy() && "Can't insert void values!");
264   if (const MetadataBase *MB = dyn_cast<MetadataBase>(V))
265     return EnumerateMetadata(MB, isGlobal);
266   else if (const NamedMDNode *NMD = dyn_cast<NamedMDNode>(V))
267     return EnumerateNamedMDNode(NMD);
268
269   // Check to see if it's already in!
270   unsigned &ValueID = ValueMap[V];
271   if (ValueID) {
272     // Increment use count.
273     Values[ValueID-1].second++;
274     return;
275   }
276
277   // Enumerate the type of this value.
278   EnumerateType(V->getType());
279
280   if (const Constant *C = dyn_cast<Constant>(V)) {
281     if (isa<GlobalValue>(C)) {
282       // Initializers for globals are handled explicitly elsewhere.
283     } else if (isa<ConstantArray>(C) && cast<ConstantArray>(C)->isString()) {
284       // Do not enumerate the initializers for an array of simple characters.
285       // The initializers just polute the value table, and we emit the strings
286       // specially.
287     } else if (C->getNumOperands()) {
288       // If a constant has operands, enumerate them.  This makes sure that if a
289       // constant has uses (for example an array of const ints), that they are
290       // inserted also.
291
292       // We prefer to enumerate them with values before we enumerate the user
293       // itself.  This makes it more likely that we can avoid forward references
294       // in the reader.  We know that there can be no cycles in the constants
295       // graph that don't go through a global variable.
296       for (User::const_op_iterator I = C->op_begin(), E = C->op_end();
297            I != E; ++I)
298         if (!isa<BasicBlock>(*I)) // Don't enumerate BB operand to BlockAddress.
299           EnumerateValue(*I, isGlobal);
300
301       // Finally, add the value.  Doing this could make the ValueID reference be
302       // dangling, don't reuse it.
303       Values.push_back(std::make_pair(V, 1U));
304       ValueMap[V] = Values.size();
305       return;
306     }
307   }
308
309   // Add the value.
310   Values.push_back(std::make_pair(V, 1U));
311   ValueID = Values.size();
312 }
313
314
315 void ValueEnumerator::EnumerateType(const Type *Ty) {
316   unsigned &TypeID = TypeMap[Ty];
317
318   if (TypeID) {
319     // If we've already seen this type, just increase its occurrence count.
320     Types[TypeID-1].second++;
321     return;
322   }
323
324   // First time we saw this type, add it.
325   Types.push_back(std::make_pair(Ty, 1U));
326   TypeID = Types.size();
327
328   // Enumerate subtypes.
329   for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
330        I != E; ++I)
331     EnumerateType(*I);
332 }
333
334 // Enumerate the types for the specified value.  If the value is a constant,
335 // walk through it, enumerating the types of the constant.
336 void ValueEnumerator::EnumerateOperandType(const Value *V, bool isGlobal) {
337   EnumerateType(V->getType());
338   
339   // During function-incorporation, only enumerate metadata operands.
340   if (!isGlobal)
341     if (const MetadataBase *MB = dyn_cast<MetadataBase>(V))
342       return EnumerateMetadata(MB, isGlobal);
343
344   if (const Constant *C = dyn_cast<Constant>(V)) {
345     // If this constant is already enumerated, ignore it, we know its type must
346     // be enumerated.
347     if (ValueMap.count(V)) return;
348
349     // This constant may have operands, make sure to enumerate the types in
350     // them.
351     for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
352       const User *Op = C->getOperand(i);
353       
354       // Don't enumerate basic blocks here, this happens as operands to
355       // blockaddress.
356       if (isa<BasicBlock>(Op)) continue;
357       
358       EnumerateOperandType(cast<Constant>(Op), isGlobal);
359     }
360
361     if (const MDNode *N = dyn_cast<MDNode>(V)) {
362       for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
363         if (Value *Elem = N->getOperand(i))
364           EnumerateOperandType(Elem, isGlobal);
365     }
366   } else if (isa<MDString>(V) || isa<MDNode>(V))
367     EnumerateValue(V);
368 }
369
370 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) {
371   if (PAL.isEmpty()) return;  // null is always 0.
372   // Do a lookup.
373   unsigned &Entry = AttributeMap[PAL.getRawPointer()];
374   if (Entry == 0) {
375     // Never saw this before, add it.
376     Attributes.push_back(PAL);
377     Entry = Attributes.size();
378   }
379 }
380
381
382 void ValueEnumerator::incorporateFunction(const Function &F) {
383   NumModuleValues = Values.size();
384
385   // Adding function arguments to the value table.
386   for(Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end();
387       I != E; ++I)
388     EnumerateValue(I);
389
390   FirstFuncConstantID = Values.size();
391
392   // Add all function-level constants to the value table.
393   for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
394     for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I)
395       for (User::const_op_iterator OI = I->op_begin(), E = I->op_end();
396            OI != E; ++OI) {
397         if ((isa<Constant>(*OI) && !isa<GlobalValue>(*OI)) ||
398             isa<InlineAsm>(*OI))
399           EnumerateValue(*OI);
400       }
401     BasicBlocks.push_back(BB);
402     ValueMap[BB] = BasicBlocks.size();
403   }
404
405   // Optimize the constant layout.
406   OptimizeConstants(FirstFuncConstantID, Values.size());
407
408   // Add the function's parameter attributes so they are available for use in
409   // the function's instruction.
410   EnumerateAttributes(F.getAttributes());
411
412   FirstInstID = Values.size();
413
414   // Add all of the instructions.
415   for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
416     for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
417       for (User::const_op_iterator OI = I->op_begin(), E = I->op_end();
418            OI != E; ++OI) {
419         EnumerateOperandType(*OI, false);
420       }
421       if (!I->getType()->isVoidTy())
422         EnumerateValue(I);
423     }
424   }
425 }
426
427 void ValueEnumerator::purgeFunction() {
428   /// Remove purged values from the ValueMap.
429   for (unsigned i = NumModuleValues, e = Values.size(); i != e; ++i)
430     ValueMap.erase(Values[i].first);
431   for (unsigned i = 0, e = BasicBlocks.size(); i != e; ++i)
432     ValueMap.erase(BasicBlocks[i]);
433
434   Values.resize(NumModuleValues);
435   BasicBlocks.clear();
436 }
437
438 static void IncorporateFunctionInfoGlobalBBIDs(const Function *F,
439                                  DenseMap<const BasicBlock*, unsigned> &IDMap) {
440   unsigned Counter = 0;
441   for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
442     IDMap[BB] = ++Counter;
443 }
444
445 /// getGlobalBasicBlockID - This returns the function-specific ID for the
446 /// specified basic block.  This is relatively expensive information, so it
447 /// should only be used by rare constructs such as address-of-label.
448 unsigned ValueEnumerator::getGlobalBasicBlockID(const BasicBlock *BB) const {
449   unsigned &Idx = GlobalBasicBlockIDs[BB];
450   if (Idx != 0)
451     return Idx-1;
452
453   IncorporateFunctionInfoGlobalBBIDs(BB->getParent(), GlobalBasicBlockIDs);
454   return getGlobalBasicBlockID(BB);
455 }
456