Bugfixes for dealing with partially compactified functions
[oota-llvm.git] / lib / Bytecode / Reader / Reader.cpp
1 //===- Reader.cpp - Code to read bytecode files ---------------------------===//
2 // 
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 //===----------------------------------------------------------------------===//
9 //
10 // This library implements the functionality defined in llvm/Bytecode/Reader.h
11 //
12 // Note that this library should be as fast as possible, reentrant, and 
13 // threadsafe!!
14 //
15 // TODO: Allow passing in an option to ignore the symbol table
16 //
17 //===----------------------------------------------------------------------===//
18
19 #include "ReaderInternals.h"
20 #include "llvm/Bytecode/Reader.h"
21 #include "llvm/Bytecode/Format.h"
22 #include "llvm/Module.h"
23 #include "Support/StringExtras.h"
24 using namespace llvm;
25
26 unsigned BytecodeParser::getTypeSlot(const Type *Ty) {
27   if (Ty->isPrimitiveType())
28     return Ty->getPrimitiveID();
29
30   // Scan the compaction table for the type if needed.
31   if (CompactionTable.size() > Type::TypeTyID) {
32     std::vector<Value*> &Plane = CompactionTable[Type::TypeTyID];
33     if (!Plane.empty()) {
34       std::vector<Value*>::iterator I = find(Plane.begin(), Plane.end(),
35                                              const_cast<Type*>(Ty));
36       if (I == Plane.end())
37         throw std::string("Couldn't find type specified in compaction table!");
38       return Type::FirstDerivedTyID + (&*I - &Plane[0]);
39     }
40   }
41
42   // Check the function level types first...
43   TypeValuesListTy::iterator I = find(FunctionTypeValues.begin(),
44                                       FunctionTypeValues.end(), Ty);
45   if (I != FunctionTypeValues.end())
46     return Type::FirstDerivedTyID + ModuleTypeValues.size() +
47              (&*I - &FunctionTypeValues[0]);
48
49   I = find(ModuleTypeValues.begin(), ModuleTypeValues.end(), Ty);
50   if (I == ModuleTypeValues.end())
51     throw std::string("Didn't find type in ModuleTypeValues.");
52   return Type::FirstDerivedTyID + (&*I - &ModuleTypeValues[0]);
53 }
54
55 const Type *BytecodeParser::getType(unsigned ID) {
56   //cerr << "Looking up Type ID: " << ID << "\n";
57
58   if (ID < Type::FirstDerivedTyID)
59     if (const Type *T = Type::getPrimitiveType((Type::PrimitiveID)ID))
60       return T;   // Asked for a primitive type...
61
62   // Otherwise, derived types need offset...
63   ID -= Type::FirstDerivedTyID;
64
65   if (CompactionTable.size() > Type::TypeTyID &&
66       !CompactionTable[Type::TypeTyID].empty()) {
67     if (ID >= CompactionTable[Type::TypeTyID].size())
68       throw std::string("Type ID out of range for compaction table!");
69     return cast<Type>(CompactionTable[Type::TypeTyID][ID]);
70   }
71
72   // Is it a module-level type?
73   if (ID < ModuleTypeValues.size())
74     return ModuleTypeValues[ID].get();
75
76   // Nope, is it a function-level type?
77   ID -= ModuleTypeValues.size();
78   if (ID < FunctionTypeValues.size())
79     return FunctionTypeValues[ID].get();
80
81   throw std::string("Illegal type reference!");
82 }
83
84 static inline bool hasImplicitNull(unsigned TyID, bool EncodesPrimitiveZeros) {
85   if (!EncodesPrimitiveZeros)
86     return TyID != Type::LabelTyID && TyID != Type::TypeTyID &&
87            TyID != Type::VoidTyID;
88   return TyID >= Type::FirstDerivedTyID;
89 }
90
91 unsigned BytecodeParser::insertValue(Value *Val, unsigned type,
92                                      ValueTable &ValueTab) {
93   assert((!isa<Constant>(Val) || !cast<Constant>(Val)->isNullValue()) ||
94           !hasImplicitNull(type, hasExplicitPrimitiveZeros) &&
95          "Cannot read null values from bytecode!");
96   assert(type != Type::TypeTyID && "Types should never be insertValue'd!");
97
98   if (ValueTab.size() <= type)
99     ValueTab.resize(type+1);
100
101   if (!ValueTab[type]) ValueTab[type] = new ValueList();
102
103   //cerr << "insertValue Values[" << type << "][" << ValueTab[type].size() 
104   //   << "] = " << Val << "\n";
105   ValueTab[type]->push_back(Val);
106
107   bool HasOffset = hasImplicitNull(type, hasExplicitPrimitiveZeros);
108   return ValueTab[type]->size()-1 + HasOffset;
109 }
110
111 Value *BytecodeParser::getValue(unsigned type, unsigned oNum, bool Create) {
112   assert(type != Type::TypeTyID && "getValue() cannot get types!");
113   assert(type != Type::LabelTyID && "getValue() cannot get blocks!");
114   unsigned Num = oNum;
115
116   // If there is a compaction table active, it defines the low-level numbers.
117   // If not, the module values define the low-level numbers.
118   if (CompactionTable.size() > type && !CompactionTable[type].empty()) {
119     if (Num < CompactionTable[type].size())
120       return CompactionTable[type][Num];
121     Num -= CompactionTable[type].size();
122   } else {
123     // If the type plane was compactified, figure out the global type ID.
124     unsigned GlobalTyID = type;
125     if (CompactionTable.size() > Type::TypeTyID &&
126         !CompactionTable[Type::TypeTyID].empty() &&
127         type >= Type::FirstDerivedTyID) {
128       std::vector<Value*> &TypePlane = CompactionTable[Type::TypeTyID];
129       const Type *Ty = cast<Type>(TypePlane[type-Type::FirstDerivedTyID]);
130       TypeValuesListTy::iterator I =
131         find(ModuleTypeValues.begin(), ModuleTypeValues.end(), Ty);
132       assert(I != ModuleTypeValues.end());
133       GlobalTyID = Type::FirstDerivedTyID + (&*I - &ModuleTypeValues[0]);
134     }
135
136     if (hasImplicitNull(GlobalTyID, hasExplicitPrimitiveZeros)) {
137       if (Num == 0)
138         return Constant::getNullValue(getType(type));
139       --Num;
140     }
141
142     if (GlobalTyID < ModuleValues.size() && ModuleValues[GlobalTyID]) {
143       if (Num < ModuleValues[GlobalTyID]->size())
144         return ModuleValues[GlobalTyID]->getOperand(Num);
145       Num -= ModuleValues[GlobalTyID]->size();
146     }
147   }
148
149   if (Values.size() > type && Values[type] && Num < Values[type]->size())
150     return Values[type]->getOperand(Num);
151
152   if (!Create) return 0;  // Do not create a placeholder?
153
154   std::pair<unsigned,unsigned> KeyValue(type, oNum);
155   std::map<std::pair<unsigned,unsigned>, Value*>::iterator I = 
156     ForwardReferences.lower_bound(KeyValue);
157   if (I != ForwardReferences.end() && I->first == KeyValue)
158     return I->second;   // We have already created this placeholder
159
160   Value *Val = new Argument(getType(type));
161   ForwardReferences.insert(I, std::make_pair(KeyValue, Val));
162   return Val;
163 }
164
165 /// getBasicBlock - Get a particular numbered basic block, which might be a
166 /// forward reference.  This works together with ParseBasicBlock to handle these
167 /// forward references in a clean manner.
168 ///
169 BasicBlock *BytecodeParser::getBasicBlock(unsigned ID) {
170   // Make sure there is room in the table...
171   if (ParsedBasicBlocks.size() <= ID) ParsedBasicBlocks.resize(ID+1);
172
173   // First check to see if this is a backwards reference, i.e., ParseBasicBlock
174   // has already created this block, or if the forward reference has already
175   // been created.
176   if (ParsedBasicBlocks[ID])
177     return ParsedBasicBlocks[ID];
178
179   // Otherwise, the basic block has not yet been created.  Do so and add it to
180   // the ParsedBasicBlocks list.
181   return ParsedBasicBlocks[ID] = new BasicBlock();
182 }
183
184 /// getConstantValue - Just like getValue, except that it returns a null pointer
185 /// only on error.  It always returns a constant (meaning that if the value is
186 /// defined, but is not a constant, that is an error).  If the specified
187 /// constant hasn't been parsed yet, a placeholder is defined and used.  Later,
188 /// after the real value is parsed, the placeholder is eliminated.
189 ///
190 Constant *BytecodeParser::getConstantValue(unsigned TypeSlot, unsigned Slot) {
191   if (Value *V = getValue(TypeSlot, Slot, false))
192     if (Constant *C = dyn_cast<Constant>(V))
193       return C;   // If we already have the value parsed, just return it
194     else if (GlobalValue *GV = dyn_cast<GlobalValue>(V))
195       // ConstantPointerRef's are an abomination, but at least they don't have
196       // to infest bytecode files.
197       return ConstantPointerRef::get(GV);
198     else
199       throw std::string("Reference of a value is expected to be a constant!");
200
201   const Type *Ty = getType(TypeSlot);
202   std::pair<const Type*, unsigned> Key(Ty, Slot);
203   ConstantRefsType::iterator I = ConstantFwdRefs.lower_bound(Key);
204
205   if (I != ConstantFwdRefs.end() && I->first == Key) {
206     BCR_TRACE(5, "Previous forward ref found!\n");
207     return I->second;
208   } else {
209     // Create a placeholder for the constant reference and
210     // keep track of the fact that we have a forward ref to recycle it
211     BCR_TRACE(5, "Creating new forward ref to a constant!\n");
212     Constant *C = new ConstPHolder(Ty, Slot);
213     
214     // Keep track of the fact that we have a forward ref to recycle it
215     ConstantFwdRefs.insert(I, std::make_pair(Key, C));
216     return C;
217   }
218 }
219
220 /// ParseBasicBlock - In LLVM 1.0 bytecode files, we used to output one
221 /// basicblock at a time.  This method reads in one of the basicblock packets.
222 BasicBlock *BytecodeParser::ParseBasicBlock(const unsigned char *&Buf,
223                                             const unsigned char *EndBuf,
224                                             unsigned BlockNo) {
225   BasicBlock *BB;
226   if (ParsedBasicBlocks.size() == BlockNo)
227     ParsedBasicBlocks.push_back(BB = new BasicBlock());
228   else if (ParsedBasicBlocks[BlockNo] == 0)
229     BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
230   else
231     BB = ParsedBasicBlocks[BlockNo];
232
233   std::vector<unsigned> Args;
234   while (Buf < EndBuf)
235     ParseInstruction(Buf, EndBuf, Args, BB);
236
237   return BB;
238 }
239
240
241 /// ParseInstructionList - Parse all of the BasicBlock's & Instruction's in the
242 /// body of a function.  In post 1.0 bytecode files, we no longer emit basic
243 /// block individually, in order to avoid per-basic-block overhead.
244 unsigned BytecodeParser::ParseInstructionList(Function *F,
245                                               const unsigned char *&Buf,
246                                               const unsigned char *EndBuf) {
247   unsigned BlockNo = 0;
248   std::vector<unsigned> Args;
249
250   while (Buf < EndBuf) {
251     BasicBlock *BB;
252     if (ParsedBasicBlocks.size() == BlockNo)
253       ParsedBasicBlocks.push_back(BB = new BasicBlock());
254     else if (ParsedBasicBlocks[BlockNo] == 0)
255       BB = ParsedBasicBlocks[BlockNo] = new BasicBlock();
256     else
257       BB = ParsedBasicBlocks[BlockNo];
258     ++BlockNo;
259     F->getBasicBlockList().push_back(BB);
260
261     // Read instructions into this basic block until we get to a terminator
262     while (Buf < EndBuf && !BB->getTerminator())
263       ParseInstruction(Buf, EndBuf, Args, BB);
264
265     if (!BB->getTerminator())
266       throw std::string("Non-terminated basic block found!");
267   }
268
269   return BlockNo;
270 }
271
272 void BytecodeParser::ParseSymbolTable(const unsigned char *&Buf,
273                                       const unsigned char *EndBuf,
274                                       SymbolTable *ST,
275                                       Function *CurrentFunction) {
276   // Allow efficient basic block lookup by number.
277   std::vector<BasicBlock*> BBMap;
278   if (CurrentFunction)
279     for (Function::iterator I = CurrentFunction->begin(),
280            E = CurrentFunction->end(); I != E; ++I)
281       BBMap.push_back(I);
282
283   while (Buf < EndBuf) {
284     // Symtab block header: [num entries][type id number]
285     unsigned NumEntries = read_vbr_uint(Buf, EndBuf);
286     unsigned Typ = read_vbr_uint(Buf, EndBuf);
287     const Type *Ty = getType(Typ);
288     BCR_TRACE(3, "Plane Type: '" << *Ty << "' with " << NumEntries <<
289                  " entries\n");
290
291     for (unsigned i = 0; i != NumEntries; ++i) {
292       // Symtab entry: [def slot #][name]
293       unsigned slot = read_vbr_uint(Buf, EndBuf);
294       std::string Name = read_str(Buf, EndBuf);
295
296       Value *V = 0;
297       if (Typ == Type::TypeTyID)
298         V = (Value*)getType(slot);
299       else if (Typ == Type::LabelTyID) {
300         if (slot < BBMap.size())
301           V = BBMap[slot];
302       } else {
303         V = getValue(Typ, slot, false); // Find mapping...
304       }
305       if (V == 0)
306         throw std::string("Failed value look-up.");
307       BCR_TRACE(4, "Map: '" << Name << "' to #" << slot << ":" << *V;
308                 if (!isa<Instruction>(V)) std::cerr << "\n");
309
310       V->setName(Name, ST);
311     }
312   }
313
314   if (Buf > EndBuf) throw std::string("Tried to read past end of buffer.");
315 }
316
317 void BytecodeParser::ResolveReferencesToConstant(Constant *NewV, unsigned Slot){
318   ConstantRefsType::iterator I =
319     ConstantFwdRefs.find(std::make_pair(NewV->getType(), Slot));
320   if (I == ConstantFwdRefs.end()) return;   // Never forward referenced?
321
322   BCR_TRACE(3, "Mutating forward refs!\n");
323   Value *PH = I->second;   // Get the placeholder...
324   PH->replaceAllUsesWith(NewV);
325   delete PH;                               // Delete the old placeholder
326   ConstantFwdRefs.erase(I);                // Remove the map entry for it
327 }
328
329 void BytecodeParser::ParseFunction(const unsigned char *&Buf,
330                                    const unsigned char *EndBuf) {
331   if (FunctionSignatureList.empty())
332     throw std::string("FunctionSignatureList empty!");
333
334   Function *F = FunctionSignatureList.back();
335   FunctionSignatureList.pop_back();
336
337   // Save the information for future reading of the function
338   LazyFunctionLoadMap[F] = LazyFunctionInfo(Buf, EndBuf);
339   // Pretend we've `parsed' this function
340   Buf = EndBuf;
341 }
342
343 void BytecodeParser::materializeFunction(Function* F) {
344   // Find {start, end} pointers and slot in the map. If not there, we're done.
345   std::map<Function*, LazyFunctionInfo>::iterator Fi =
346     LazyFunctionLoadMap.find(F);
347   if (Fi == LazyFunctionLoadMap.end()) return;
348
349   const unsigned char *Buf = Fi->second.Buf;
350   const unsigned char *EndBuf = Fi->second.EndBuf;
351   LazyFunctionLoadMap.erase(Fi);
352
353   GlobalValue::LinkageTypes Linkage = GlobalValue::ExternalLinkage;
354
355   unsigned LinkageType = read_vbr_uint(Buf, EndBuf);
356   if ((!hasExtendedLinkageSpecs && LinkageType > 3) ||
357       ( hasExtendedLinkageSpecs && LinkageType > 4))
358     throw std::string("Invalid linkage type for Function.");
359   switch (LinkageType) {
360   case 0: Linkage = GlobalValue::ExternalLinkage; break;
361   case 1: Linkage = GlobalValue::WeakLinkage; break;
362   case 2: Linkage = GlobalValue::AppendingLinkage; break;
363   case 3: Linkage = GlobalValue::InternalLinkage; break;
364   case 4: Linkage = GlobalValue::LinkOnceLinkage; break;
365   }
366
367   F->setLinkage(Linkage);
368
369   // Keep track of how many basic blocks we have read in...
370   unsigned BlockNum = 0;
371   bool InsertedArguments = false;
372
373   while (Buf < EndBuf) {
374     unsigned Type, Size;
375     const unsigned char *OldBuf = Buf;
376     readBlock(Buf, EndBuf, Type, Size);
377
378     switch (Type) {
379     case BytecodeFormat::ConstantPool:
380       if (!InsertedArguments) {
381         // Insert arguments into the value table before we parse the first basic
382         // block in the function, but after we potentially read in the
383         // compaction table.
384         const FunctionType::ParamTypes &Params =
385           F->getFunctionType()->getParamTypes();
386         Function::aiterator AI = F->abegin();
387         for (FunctionType::ParamTypes::const_iterator It = Params.begin();
388              It != Params.end(); ++It, ++AI)
389           insertValue(AI, getTypeSlot(AI->getType()), Values);
390         InsertedArguments = true;
391       }
392
393       BCR_TRACE(2, "BLOCK BytecodeFormat::ConstantPool: {\n");
394       ParseConstantPool(Buf, Buf+Size, Values, FunctionTypeValues);
395       break;
396
397     case BytecodeFormat::CompactionTable:
398       BCR_TRACE(2, "BLOCK BytecodeFormat::CompactionTable: {\n");
399       ParseCompactionTable(Buf, Buf+Size);
400       break;
401
402     case BytecodeFormat::BasicBlock: {
403       if (!InsertedArguments) {
404         // Insert arguments into the value table before we parse the first basic
405         // block in the function, but after we potentially read in the
406         // compaction table.
407         const FunctionType::ParamTypes &Params =
408           F->getFunctionType()->getParamTypes();
409         Function::aiterator AI = F->abegin();
410         for (FunctionType::ParamTypes::const_iterator It = Params.begin();
411              It != Params.end(); ++It, ++AI)
412           insertValue(AI, getTypeSlot(AI->getType()), Values);
413         InsertedArguments = true;
414       }
415
416       BCR_TRACE(2, "BLOCK BytecodeFormat::BasicBlock: {\n");
417       BasicBlock *BB = ParseBasicBlock(Buf, Buf+Size, BlockNum++);
418       F->getBasicBlockList().push_back(BB);
419       break;
420     }
421
422     case BytecodeFormat::InstructionList: {
423       // Insert arguments into the value table before we parse the instruction
424       // list for the function, but after we potentially read in the compaction
425       // table.
426       if (!InsertedArguments) {
427         const FunctionType::ParamTypes &Params =
428           F->getFunctionType()->getParamTypes();
429         Function::aiterator AI = F->abegin();
430         for (FunctionType::ParamTypes::const_iterator It = Params.begin();
431              It != Params.end(); ++It, ++AI)
432           insertValue(AI, getTypeSlot(AI->getType()), Values);
433         InsertedArguments = true;
434       }
435
436       BCR_TRACE(2, "BLOCK BytecodeFormat::InstructionList: {\n");
437       if (BlockNum) throw std::string("Already parsed basic blocks!");
438       BlockNum = ParseInstructionList(F, Buf, Buf+Size);
439       break;
440     }
441
442     case BytecodeFormat::SymbolTable:
443       BCR_TRACE(2, "BLOCK BytecodeFormat::SymbolTable: {\n");
444       ParseSymbolTable(Buf, Buf+Size, &F->getSymbolTable(), F);
445       break;
446
447     default:
448       BCR_TRACE(2, "BLOCK <unknown>:ignored! {\n");
449       Buf += Size;
450       if (OldBuf > Buf) 
451         throw std::string("Wrapped around reading bytecode.");
452       break;
453     }
454     BCR_TRACE(2, "} end block\n");
455
456     // Malformed bc file if read past end of block.
457     align32(Buf, EndBuf);
458   }
459
460   // Make sure there were no references to non-existant basic blocks.
461   if (BlockNum != ParsedBasicBlocks.size())
462     throw std::string("Illegal basic block operand reference");
463   ParsedBasicBlocks.clear();
464
465   // Resolve forward references.  Replace any uses of a forward reference value
466   // with the real value.
467
468   // replaceAllUsesWith is very inefficient for instructions which have a LARGE
469   // number of operands.  PHI nodes often have forward references, and can also
470   // often have a very large number of operands.
471   //
472   // FIXME: REEVALUATE.  replaceAllUsesWith is _much_ faster now, and this code
473   // should be simplified back to using it!
474   //
475   std::map<Value*, Value*> ForwardRefMapping;
476   for (std::map<std::pair<unsigned,unsigned>, Value*>::iterator 
477          I = ForwardReferences.begin(), E = ForwardReferences.end();
478        I != E; ++I)
479     ForwardRefMapping[I->second] = getValue(I->first.first, I->first.second,
480                                             false);
481
482   for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
483     for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
484       for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
485         if (Argument *A = dyn_cast<Argument>(I->getOperand(i))) {
486           std::map<Value*, Value*>::iterator It = ForwardRefMapping.find(A);
487           if (It != ForwardRefMapping.end()) I->setOperand(i, It->second);
488         }
489
490   while (!ForwardReferences.empty()) {
491     std::map<std::pair<unsigned,unsigned>, Value*>::iterator I =
492       ForwardReferences.begin();
493     Value *PlaceHolder = I->second;
494     ForwardReferences.erase(I);
495
496     // Now that all the uses are gone, delete the placeholder...
497     // If we couldn't find a def (error case), then leak a little
498     // memory, because otherwise we can't remove all uses!
499     delete PlaceHolder;
500   }
501
502   // Clear out function-level types...
503   FunctionTypeValues.clear();
504   CompactionTable.clear();
505   freeTable(Values);
506 }
507
508 void BytecodeParser::ParseCompactionTable(const unsigned char *&Buf,
509                                           const unsigned char *End) {
510
511   while (Buf != End) {
512     unsigned NumEntries;
513     unsigned Ty;
514
515     NumEntries = read_vbr_uint(Buf, End);
516     switch (NumEntries & 3) {
517     case 0:
518     case 1:
519     case 2:
520       Ty = NumEntries >> 2;
521       NumEntries &= 3;
522       break;
523     case 3:
524       NumEntries >>= 2;
525       Ty = read_vbr_uint(Buf, End);
526       break;
527     }
528
529     if (Ty >= CompactionTable.size())
530       CompactionTable.resize(Ty+1);
531
532     if (!CompactionTable[Ty].empty())
533       throw std::string("Compaction table plane contains multiple entries!");
534     
535     if (Ty == Type::TypeTyID) {
536       for (unsigned i = 0; i != NumEntries; ++i) {
537         const Type *Typ = getGlobalTableType(read_vbr_uint(Buf, End));
538         CompactionTable[Type::TypeTyID].push_back(const_cast<Type*>(Typ));
539       }
540
541       CompactionTable.resize(NumEntries+Type::FirstDerivedTyID);
542     } else {
543       const Type *Typ = getType(Ty);
544       // Push the implicit zero
545       CompactionTable[Ty].push_back(Constant::getNullValue(Typ));
546       for (unsigned i = 0; i != NumEntries; ++i) {
547         Value *V = getGlobalTableValue(Typ, read_vbr_uint(Buf, End));
548         CompactionTable[Ty].push_back(V);
549       }
550     }
551   }
552
553 }
554
555
556
557 void BytecodeParser::ParseModuleGlobalInfo(const unsigned char *&Buf,
558                                            const unsigned char *End) {
559   if (!FunctionSignatureList.empty())
560     throw std::string("Two ModuleGlobalInfo packets found!");
561
562   // Read global variables...
563   unsigned VarType = read_vbr_uint(Buf, End);
564   while (VarType != Type::VoidTyID) { // List is terminated by Void
565     unsigned SlotNo;
566     GlobalValue::LinkageTypes Linkage;
567
568     unsigned LinkageID;
569     if (hasExtendedLinkageSpecs) {
570       // VarType Fields: bit0 = isConstant, bit1 = hasInitializer,
571       // bit2,3,4 = Linkage, bit4+ = slot#
572       SlotNo = VarType >> 5;
573       LinkageID = (VarType >> 2) & 7;
574     } else {
575       // VarType Fields: bit0 = isConstant, bit1 = hasInitializer,
576       // bit2,3 = Linkage, bit4+ = slot#
577       SlotNo = VarType >> 4;
578       LinkageID = (VarType >> 2) & 3;
579     }
580     switch (LinkageID) {
581     default: assert(0 && "Unknown linkage type!");
582     case 0: Linkage = GlobalValue::ExternalLinkage;  break;
583     case 1: Linkage = GlobalValue::WeakLinkage;      break;
584     case 2: Linkage = GlobalValue::AppendingLinkage; break;
585     case 3: Linkage = GlobalValue::InternalLinkage;  break;
586     case 4: Linkage = GlobalValue::LinkOnceLinkage;  break;
587     }
588
589     const Type *Ty = getType(SlotNo);
590     if (!isa<PointerType>(Ty))
591       throw std::string("Global not pointer type!  Ty = " + 
592                         Ty->getDescription());
593
594     const Type *ElTy = cast<PointerType>(Ty)->getElementType();
595
596     // Create the global variable...
597     GlobalVariable *GV = new GlobalVariable(ElTy, VarType & 1, Linkage,
598                                             0, "", TheModule);
599     BCR_TRACE(2, "Global Variable of type: " << *Ty << "\n");
600     insertValue(GV, SlotNo, ModuleValues);
601
602     if (VarType & 2)   // Does it have an initializer?
603       GlobalInits.push_back(std::make_pair(GV, read_vbr_uint(Buf, End)));
604     VarType = read_vbr_uint(Buf, End);
605   }
606
607   // Read the function objects for all of the functions that are coming
608   unsigned FnSignature = read_vbr_uint(Buf, End);
609   while (FnSignature != Type::VoidTyID) { // List is terminated by Void
610     const Type *Ty = getType(FnSignature);
611     if (!isa<PointerType>(Ty) ||
612         !isa<FunctionType>(cast<PointerType>(Ty)->getElementType()))
613       throw std::string("Function not ptr to func type!  Ty = " +
614                         Ty->getDescription());
615
616     // We create functions by passing the underlying FunctionType to create...
617     Ty = cast<PointerType>(Ty)->getElementType();
618
619     // When the ModuleGlobalInfo section is read, we load the type of each
620     // function and the 'ModuleValues' slot that it lands in.  We then load a
621     // placeholder into its slot to reserve it.  When the function is loaded,
622     // this placeholder is replaced.
623
624     // Insert the placeholder...
625     Function *Func = new Function(cast<FunctionType>(Ty),
626                                   GlobalValue::InternalLinkage, "", TheModule);
627     insertValue(Func, FnSignature, ModuleValues);
628
629     // Keep track of this information in a list that is emptied as functions are
630     // loaded...
631     //
632     FunctionSignatureList.push_back(Func);
633
634     FnSignature = read_vbr_uint(Buf, End);
635     BCR_TRACE(2, "Function of type: " << Ty << "\n");
636   }
637
638   if (hasInconsistentModuleGlobalInfo)
639     align32(Buf, End);
640
641   // Now that the function signature list is set up, reverse it so that we can 
642   // remove elements efficiently from the back of the vector.
643   std::reverse(FunctionSignatureList.begin(), FunctionSignatureList.end());
644
645   // This is for future proofing... in the future extra fields may be added that
646   // we don't understand, so we transparently ignore them.
647   //
648   Buf = End;
649 }
650
651 void BytecodeParser::ParseVersionInfo(const unsigned char *&Buf,
652                                       const unsigned char *EndBuf) {
653   unsigned Version = read_vbr_uint(Buf, EndBuf);
654
655   // Unpack version number: low four bits are for flags, top bits = version
656   Module::Endianness  Endianness;
657   Module::PointerSize PointerSize;
658   Endianness  = (Version & 1) ? Module::BigEndian : Module::LittleEndian;
659   PointerSize = (Version & 2) ? Module::Pointer64 : Module::Pointer32;
660
661   bool hasNoEndianness = Version & 4;
662   bool hasNoPointerSize = Version & 8;
663   
664   RevisionNum = Version >> 4;
665
666   // Default values for the current bytecode version
667   hasExtendedLinkageSpecs = true;
668   hasOldStyleVarargs = false;
669   hasVarArgCallPadding = false;
670   hasInconsistentModuleGlobalInfo = false;
671   hasExplicitPrimitiveZeros = false;
672
673   switch (RevisionNum) {
674   case 2:               // LLVM pre-1.0 release: will be deleted on the next rev
675     // Version #2 only supported 4 linkage types.  It didn't support weak
676     // linkage.
677     hasExtendedLinkageSpecs = false;
678     hasOldStyleVarargs = true;
679     hasVarArgCallPadding = true;
680     // FALL THROUGH
681   case 0:               //  LLVM 1.0, 1.1 release version
682     // Compared to rev #2, we added support for weak linkage, a more dense
683     // encoding, and better varargs support.
684
685     // Base LLVM 1.0 bytecode format.
686     hasInconsistentModuleGlobalInfo = true;
687     hasExplicitPrimitiveZeros = true;
688     // FALL THROUGH
689   case 1:               // LLVM 1.2 release version
690     // LLVM 1.2 added explicit support for emitting strings efficiently.
691
692     // Also, it fixed the problem where the size of the ModuleGlobalInfo block
693     // included the size for the alignment at the end, where the rest of the
694     // blocks did not.
695     break;
696
697   default:
698     throw std::string("Unknown bytecode version number!");
699   }
700
701   if (hasNoEndianness) Endianness  = Module::AnyEndianness;
702   if (hasNoPointerSize) PointerSize = Module::AnyPointerSize;
703
704   TheModule->setEndianness(Endianness);
705   TheModule->setPointerSize(PointerSize);
706   BCR_TRACE(1, "Bytecode Rev = " << (unsigned)RevisionNum << "\n");
707   BCR_TRACE(1, "Endianness/PointerSize = " << Endianness << ","
708                << PointerSize << "\n");
709 }
710
711 void BytecodeParser::ParseModule(const unsigned char *Buf,
712                                  const unsigned char *EndBuf) {
713   unsigned Type, Size;
714   readBlock(Buf, EndBuf, Type, Size);
715   if (Type != BytecodeFormat::Module || Buf+Size != EndBuf)
716     throw std::string("Expected Module packet! B: "+
717         utostr((unsigned)(intptr_t)Buf) + ", S: "+utostr(Size)+
718         " E: "+utostr((unsigned)(intptr_t)EndBuf)); // Hrm, not a class?
719
720   BCR_TRACE(0, "BLOCK BytecodeFormat::Module: {\n");
721   FunctionSignatureList.clear();                 // Just in case...
722
723   // Read into instance variables...
724   ParseVersionInfo(Buf, EndBuf);
725   align32(Buf, EndBuf);
726
727   while (Buf < EndBuf) {
728     const unsigned char *OldBuf = Buf;
729     readBlock(Buf, EndBuf, Type, Size);
730     switch (Type) {
731     case BytecodeFormat::GlobalTypePlane:
732       BCR_TRACE(1, "BLOCK BytecodeFormat::GlobalTypePlane: {\n");
733       ParseGlobalTypes(Buf, Buf+Size);
734       break;
735
736     case BytecodeFormat::ModuleGlobalInfo:
737       BCR_TRACE(1, "BLOCK BytecodeFormat::ModuleGlobalInfo: {\n");
738       ParseModuleGlobalInfo(Buf, Buf+Size);
739       break;
740
741     case BytecodeFormat::ConstantPool:
742       BCR_TRACE(1, "BLOCK BytecodeFormat::ConstantPool: {\n");
743       ParseConstantPool(Buf, Buf+Size, ModuleValues, ModuleTypeValues);
744       break;
745
746     case BytecodeFormat::Function: {
747       BCR_TRACE(1, "BLOCK BytecodeFormat::Function: {\n");
748       ParseFunction(Buf, Buf+Size);
749       break;
750     }
751
752     case BytecodeFormat::SymbolTable:
753       BCR_TRACE(1, "BLOCK BytecodeFormat::SymbolTable: {\n");
754       ParseSymbolTable(Buf, Buf+Size, &TheModule->getSymbolTable(), 0);
755       break;
756     default:
757       Buf += Size;
758       if (OldBuf > Buf) throw std::string("Expected Module Block!");
759       break;
760     }
761     BCR_TRACE(1, "} end block\n");
762     align32(Buf, EndBuf);
763   }
764
765   // After the module constant pool has been read, we can safely initialize
766   // global variables...
767   while (!GlobalInits.empty()) {
768     GlobalVariable *GV = GlobalInits.back().first;
769     unsigned Slot = GlobalInits.back().second;
770     GlobalInits.pop_back();
771
772     // Look up the initializer value...
773     // FIXME: Preserve this type ID!
774     unsigned TypeSlot = getTypeSlot(GV->getType()->getElementType());
775     if (Constant *CV = getConstantValue(TypeSlot, Slot)) {
776       if (GV->hasInitializer()) 
777         throw std::string("Global *already* has an initializer?!");
778       GV->setInitializer(CV);
779     } else
780       throw std::string("Cannot find initializer value.");
781   }
782
783   if (!FunctionSignatureList.empty())
784     throw std::string("Function expected, but bytecode stream ended!");
785
786   BCR_TRACE(0, "} end block\n\n");
787 }
788
789 void BytecodeParser::ParseBytecode(const unsigned char *Buf, unsigned Length,
790                                    const std::string &ModuleID) {
791
792   unsigned char *EndBuf = (unsigned char*)(Buf + Length);
793
794   // Read and check signature...
795   unsigned Sig = read(Buf, EndBuf);
796   if (Sig != ('l' | ('l' << 8) | ('v' << 16) | ('m' << 24)))
797     throw std::string("Invalid bytecode signature!");
798
799   TheModule = new Module(ModuleID);
800   try { 
801     usesOldStyleVarargs = false;
802     ParseModule(Buf, EndBuf);
803   } catch (std::string &Error) {
804     freeState();       // Must destroy handles before deleting module!
805     delete TheModule;
806     TheModule = 0;
807     throw;
808   }
809 }