Type.h doesn't need to #include LLVMContext.h
[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/LLVMContext.h"
18 #include "llvm/Metadata.h"
19 #include "llvm/Module.h"
20 #include "llvm/TypeSymbolTable.h"
21 #include "llvm/ValueSymbolTable.h"
22 #include "llvm/Instructions.h"
23 #include <algorithm>
24 using namespace llvm;
25
26 static bool isSingleValueType(const std::pair<const llvm::Type*,
27                               unsigned int> &P) {
28   return P.first->isSingleValueType();
29 }
30
31 static bool isIntegerValue(const std::pair<const Value*, unsigned> &V) {
32   return isa<IntegerType>(V.first->getType());
33 }
34
35 static bool CompareByFrequency(const std::pair<const llvm::Type*,
36                                unsigned int> &P1,
37                                const std::pair<const llvm::Type*,
38                                unsigned int> &P2) {
39   return P1.second > P2.second;
40 }
41
42 /// ValueEnumerator - Enumerate module-level information.
43 ValueEnumerator::ValueEnumerator(const Module *M) {
44   InstructionCount = 0;
45
46   // Enumerate the global variables.
47   for (Module::const_global_iterator I = M->global_begin(),
48          E = M->global_end(); I != E; ++I)
49     EnumerateValue(I);
50
51   // Enumerate the functions.
52   for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
53     EnumerateValue(I);
54     EnumerateAttributes(cast<Function>(I)->getAttributes());
55   }
56
57   // Enumerate the aliases.
58   for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
59        I != E; ++I)
60     EnumerateValue(I);
61
62   // Remember what is the cutoff between globalvalue's and other constants.
63   unsigned FirstConstant = Values.size();
64
65   // Enumerate the global variable initializers.
66   for (Module::const_global_iterator I = M->global_begin(),
67          E = M->global_end(); I != E; ++I)
68     if (I->hasInitializer())
69       EnumerateValue(I->getInitializer());
70
71   // Enumerate the aliasees.
72   for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
73        I != E; ++I)
74     EnumerateValue(I->getAliasee());
75
76   // Enumerate types used by the type symbol table.
77   EnumerateTypeSymbolTable(M->getTypeSymbolTable());
78
79   // Insert constants that are named at module level into the slot pool so that
80   // the module symbol table can refer to them...
81   EnumerateValueSymbolTable(M->getValueSymbolTable());
82
83   // Enumerate types used by function bodies and argument lists.
84   for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
85
86     for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
87          I != E; ++I)
88       EnumerateType(I->getType());
89
90     MetadataContext &TheMetadata = F->getContext().getMetadata();
91     typedef SmallVector<std::pair<unsigned, TrackingVH<MDNode> >, 2> MDMapTy;
92     MDMapTy MDs;
93     for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
94       for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;++I){
95         for (User::const_op_iterator OI = I->op_begin(), E = I->op_end();
96              OI != E; ++OI)
97           EnumerateOperandType(*OI);
98         EnumerateType(I->getType());
99         if (const CallInst *CI = dyn_cast<CallInst>(I))
100           EnumerateAttributes(CI->getAttributes());
101         else if (const InvokeInst *II = dyn_cast<InvokeInst>(I))
102           EnumerateAttributes(II->getAttributes());
103
104         // Enumerate metadata attached with this instruction.
105         MDs.clear();
106         TheMetadata.getMDs(I, MDs);
107         for (MDMapTy::const_iterator MI = MDs.begin(), ME = MDs.end(); MI != ME;
108              ++MI)
109           EnumerateMetadata(MI->second);
110       }
111   }
112
113   // Optimize constant ordering.
114   OptimizeConstants(FirstConstant, Values.size());
115
116   // Sort the type table by frequency so that most commonly used types are early
117   // in the table (have low bit-width).
118   std::stable_sort(Types.begin(), Types.end(), CompareByFrequency);
119
120   // Partition the Type ID's so that the single-value types occur before the
121   // aggregate types.  This allows the aggregate types to be dropped from the
122   // type table after parsing the global variable initializers.
123   std::partition(Types.begin(), Types.end(), isSingleValueType);
124
125   // Now that we rearranged the type table, rebuild TypeMap.
126   for (unsigned i = 0, e = Types.size(); i != e; ++i)
127     TypeMap[Types[i].first] = i+1;
128 }
129
130 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
131   InstructionMapType::const_iterator I = InstructionMap.find(Inst);
132   assert (I != InstructionMap.end() && "Instruction is not mapped!");
133     return I->second;
134 }
135
136 void ValueEnumerator::setInstructionID(const Instruction *I) {
137   InstructionMap[I] = InstructionCount++;
138 }
139
140 unsigned ValueEnumerator::getValueID(const Value *V) const {
141   if (isa<MetadataBase>(V)) {
142     ValueMapType::const_iterator I = MDValueMap.find(V);
143     assert(I != MDValueMap.end() && "Value not in slotcalculator!");
144     return I->second-1;
145   }
146
147   ValueMapType::const_iterator I = ValueMap.find(V);
148   assert(I != ValueMap.end() && "Value not in slotcalculator!");
149   return I->second-1;
150 }
151
152 // Optimize constant ordering.
153 namespace {
154   struct CstSortPredicate {
155     ValueEnumerator &VE;
156     explicit CstSortPredicate(ValueEnumerator &ve) : VE(ve) {}
157     bool operator()(const std::pair<const Value*, unsigned> &LHS,
158                     const std::pair<const Value*, unsigned> &RHS) {
159       // Sort by plane.
160       if (LHS.first->getType() != RHS.first->getType())
161         return VE.getTypeID(LHS.first->getType()) <
162                VE.getTypeID(RHS.first->getType());
163       // Then by frequency.
164       return LHS.second > RHS.second;
165     }
166   };
167 }
168
169 /// OptimizeConstants - Reorder constant pool for denser encoding.
170 void ValueEnumerator::OptimizeConstants(unsigned CstStart, unsigned CstEnd) {
171   if (CstStart == CstEnd || CstStart+1 == CstEnd) return;
172
173   CstSortPredicate P(*this);
174   std::stable_sort(Values.begin()+CstStart, Values.begin()+CstEnd, P);
175
176   // Ensure that integer constants are at the start of the constant pool.  This
177   // is important so that GEP structure indices come before gep constant exprs.
178   std::partition(Values.begin()+CstStart, Values.begin()+CstEnd,
179                  isIntegerValue);
180
181   // Rebuild the modified portion of ValueMap.
182   for (; CstStart != CstEnd; ++CstStart)
183     ValueMap[Values[CstStart].first] = CstStart+1;
184 }
185
186
187 /// EnumerateTypeSymbolTable - Insert all of the types in the specified symbol
188 /// table.
189 void ValueEnumerator::EnumerateTypeSymbolTable(const TypeSymbolTable &TST) {
190   for (TypeSymbolTable::const_iterator TI = TST.begin(), TE = TST.end();
191        TI != TE; ++TI)
192     EnumerateType(TI->second);
193 }
194
195 /// EnumerateValueSymbolTable - Insert all of the values in the specified symbol
196 /// table into the values table.
197 void ValueEnumerator::EnumerateValueSymbolTable(const ValueSymbolTable &VST) {
198   for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end();
199        VI != VE; ++VI)
200     EnumerateValue(VI->getValue());
201 }
202
203 void ValueEnumerator::EnumerateMetadata(const MetadataBase *MD) {
204   // Check to see if it's already in!
205   unsigned &MDValueID = MDValueMap[MD];
206   if (MDValueID) {
207     // Increment use count.
208     MDValues[MDValueID-1].second++;
209     return;
210   }
211
212   // Enumerate the type of this value.
213   EnumerateType(MD->getType());
214
215   if (const MDNode *N = dyn_cast<MDNode>(MD)) {
216     MDValues.push_back(std::make_pair(MD, 1U));
217     MDValueMap[MD] = MDValues.size();
218     MDValueID = MDValues.size();
219     for (unsigned i = 0, e = N->getNumElements(); i != e; ++i) {    
220       if (Value *V = N->getElement(i))
221         EnumerateValue(V);
222       else
223         EnumerateType(Type::getVoidTy(MD->getContext()));
224     }
225     return;
226   } else if (const NamedMDNode *N = dyn_cast<NamedMDNode>(MD)) {
227     for(NamedMDNode::const_elem_iterator I = N->elem_begin(),
228           E = N->elem_end(); I != E; ++I) {
229       MetadataBase *M = *I;
230       EnumerateValue(M);
231     }
232     MDValues.push_back(std::make_pair(MD, 1U));
233     MDValueMap[MD] = Values.size();
234     return;
235   }
236
237   // Add the value.
238   MDValues.push_back(std::make_pair(MD, 1U));
239   MDValueID = MDValues.size();
240 }
241
242 void ValueEnumerator::EnumerateValue(const Value *V) {
243   assert(V->getType() != Type::getVoidTy(V->getContext()) &&
244          "Can't insert void values!");
245   if (const MetadataBase *MB = dyn_cast<MetadataBase>(V))
246     return EnumerateMetadata(MB);
247
248   // Check to see if it's already in!
249   unsigned &ValueID = ValueMap[V];
250   if (ValueID) {
251     // Increment use count.
252     Values[ValueID-1].second++;
253     return;
254   }
255
256   // Enumerate the type of this value.
257   EnumerateType(V->getType());
258
259   if (const Constant *C = dyn_cast<Constant>(V)) {
260     if (isa<GlobalValue>(C)) {
261       // Initializers for globals are handled explicitly elsewhere.
262     } else if (isa<ConstantArray>(C) && cast<ConstantArray>(C)->isString()) {
263       // Do not enumerate the initializers for an array of simple characters.
264       // The initializers just polute the value table, and we emit the strings
265       // specially.
266     } else if (C->getNumOperands()) {
267       // If a constant has operands, enumerate them.  This makes sure that if a
268       // constant has uses (for example an array of const ints), that they are
269       // inserted also.
270
271       // We prefer to enumerate them with values before we enumerate the user
272       // itself.  This makes it more likely that we can avoid forward references
273       // in the reader.  We know that there can be no cycles in the constants
274       // graph that don't go through a global variable.
275       for (User::const_op_iterator I = C->op_begin(), E = C->op_end();
276            I != E; ++I)
277         EnumerateValue(*I);
278
279       // Finally, add the value.  Doing this could make the ValueID reference be
280       // dangling, don't reuse it.
281       Values.push_back(std::make_pair(V, 1U));
282       ValueMap[V] = Values.size();
283       return;
284     }
285   }
286
287   // Add the value.
288   Values.push_back(std::make_pair(V, 1U));
289   ValueID = Values.size();
290 }
291
292
293 void ValueEnumerator::EnumerateType(const Type *Ty) {
294   unsigned &TypeID = TypeMap[Ty];
295
296   if (TypeID) {
297     // If we've already seen this type, just increase its occurrence count.
298     Types[TypeID-1].second++;
299     return;
300   }
301
302   // First time we saw this type, add it.
303   Types.push_back(std::make_pair(Ty, 1U));
304   TypeID = Types.size();
305
306   // Enumerate subtypes.
307   for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
308        I != E; ++I)
309     EnumerateType(*I);
310 }
311
312 // Enumerate the types for the specified value.  If the value is a constant,
313 // walk through it, enumerating the types of the constant.
314 void ValueEnumerator::EnumerateOperandType(const Value *V) {
315   EnumerateType(V->getType());
316   if (const Constant *C = dyn_cast<Constant>(V)) {
317     // If this constant is already enumerated, ignore it, we know its type must
318     // be enumerated.
319     if (ValueMap.count(V)) return;
320
321     // This constant may have operands, make sure to enumerate the types in
322     // them.
323     for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
324       EnumerateOperandType(C->getOperand(i));
325
326     if (const MDNode *N = dyn_cast<MDNode>(V)) {
327       for (unsigned i = 0, e = N->getNumElements(); i != e; ++i) {
328         Value *Elem = N->getElement(i);
329         if (Elem)
330           EnumerateOperandType(Elem);
331       }
332     }
333   } else if (isa<MDString>(V) || isa<MDNode>(V))
334     EnumerateValue(V);
335 }
336
337 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) {
338   if (PAL.isEmpty()) return;  // null is always 0.
339   // Do a lookup.
340   unsigned &Entry = AttributeMap[PAL.getRawPointer()];
341   if (Entry == 0) {
342     // Never saw this before, add it.
343     Attributes.push_back(PAL);
344     Entry = Attributes.size();
345   }
346 }
347
348
349 void ValueEnumerator::incorporateFunction(const Function &F) {
350   NumModuleValues = Values.size();
351
352   // Adding function arguments to the value table.
353   for(Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end();
354       I != E; ++I)
355     EnumerateValue(I);
356
357   FirstFuncConstantID = Values.size();
358
359   // Add all function-level constants to the value table.
360   for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
361     for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I)
362       for (User::const_op_iterator OI = I->op_begin(), E = I->op_end();
363            OI != E; ++OI) {
364         if ((isa<Constant>(*OI) && !isa<GlobalValue>(*OI)) ||
365             isa<InlineAsm>(*OI))
366           EnumerateValue(*OI);
367       }
368     BasicBlocks.push_back(BB);
369     ValueMap[BB] = BasicBlocks.size();
370   }
371
372   // Optimize the constant layout.
373   OptimizeConstants(FirstFuncConstantID, Values.size());
374
375   // Add the function's parameter attributes so they are available for use in
376   // the function's instruction.
377   EnumerateAttributes(F.getAttributes());
378
379   FirstInstID = Values.size();
380
381   // Add all of the instructions.
382   for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
383     for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E; ++I) {
384       if (I->getType() != Type::getVoidTy(F.getContext()))
385         EnumerateValue(I);
386     }
387   }
388 }
389
390 void ValueEnumerator::purgeFunction() {
391   /// Remove purged values from the ValueMap.
392   for (unsigned i = NumModuleValues, e = Values.size(); i != e; ++i)
393     ValueMap.erase(Values[i].first);
394   for (unsigned i = 0, e = BasicBlocks.size(); i != e; ++i)
395     ValueMap.erase(BasicBlocks[i]);
396
397   Values.resize(NumModuleValues);
398   BasicBlocks.clear();
399 }