Regenerate.
[oota-llvm.git] / tools / llvm-upgrade / UpgradeParser.y.cvs
1 //===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
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 file implements the bison parser for LLVM assembly languages files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 %{
15 #include "UpgradeInternals.h"
16 #include "llvm/CallingConv.h"
17 #include "llvm/InlineAsm.h"
18 #include "llvm/Instructions.h"
19 #include "llvm/Module.h"
20 #include "llvm/ValueSymbolTable.h"
21 #include "llvm/Support/GetElementPtrTypeIterator.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/Support/MathExtras.h"
24 #include <algorithm>
25 #include <iostream>
26 #include <map>
27 #include <list>
28 #include <utility>
29
30 // DEBUG_UPREFS - Define this symbol if you want to enable debugging output
31 // relating to upreferences in the input stream.
32 //
33 //#define DEBUG_UPREFS 1
34 #ifdef DEBUG_UPREFS
35 #define UR_OUT(X) std::cerr << X
36 #else
37 #define UR_OUT(X)
38 #endif
39
40 #define YYERROR_VERBOSE 1
41 #define YYINCLUDED_STDLIB_H
42 #define YYDEBUG 1
43
44 int yylex();
45 int yyparse();
46
47 int yyerror(const char*);
48 static void warning(const std::string& WarningMsg);
49
50 namespace llvm {
51
52 std::istream* LexInput;
53 static std::string CurFilename;
54
55 // This bool controls whether attributes are ever added to function declarations
56 // definitions and calls.
57 static bool AddAttributes = false;
58
59 static Module *ParserResult;
60 static bool ObsoleteVarArgs;
61 static bool NewVarArgs;
62 static BasicBlock *CurBB;
63 static GlobalVariable *CurGV;
64
65 // This contains info used when building the body of a function.  It is
66 // destroyed when the function is completed.
67 //
68 typedef std::vector<Value *> ValueList;           // Numbered defs
69
70 typedef std::pair<std::string,TypeInfo> RenameMapKey;
71 typedef std::map<RenameMapKey,std::string> RenameMapType;
72
73 static void 
74 ResolveDefinitions(std::map<const Type *,ValueList> &LateResolvers,
75                    std::map<const Type *,ValueList> *FutureLateResolvers = 0);
76
77 static struct PerModuleInfo {
78   Module *CurrentModule;
79   std::map<const Type *, ValueList> Values; // Module level numbered definitions
80   std::map<const Type *,ValueList> LateResolveValues;
81   std::vector<PATypeHolder> Types;
82   std::vector<Signedness> TypeSigns;
83   std::map<std::string,Signedness> NamedTypeSigns;
84   std::map<std::string,Signedness> NamedValueSigns;
85   std::map<ValID, PATypeHolder> LateResolveTypes;
86   static Module::Endianness Endian;
87   static Module::PointerSize PointerSize;
88   RenameMapType RenameMap;
89
90   /// PlaceHolderInfo - When temporary placeholder objects are created, remember
91   /// how they were referenced and on which line of the input they came from so
92   /// that we can resolve them later and print error messages as appropriate.
93   std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
94
95   // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
96   // references to global values.  Global values may be referenced before they
97   // are defined, and if so, the temporary object that they represent is held
98   // here.  This is used for forward references of GlobalValues.
99   //
100   typedef std::map<std::pair<const PointerType *, ValID>, GlobalValue*> 
101     GlobalRefsType;
102   GlobalRefsType GlobalRefs;
103
104   void ModuleDone() {
105     // If we could not resolve some functions at function compilation time
106     // (calls to functions before they are defined), resolve them now...  Types
107     // are resolved when the constant pool has been completely parsed.
108     //
109     ResolveDefinitions(LateResolveValues);
110
111     // Check to make sure that all global value forward references have been
112     // resolved!
113     //
114     if (!GlobalRefs.empty()) {
115       std::string UndefinedReferences = "Unresolved global references exist:\n";
116
117       for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
118            I != E; ++I) {
119         UndefinedReferences += "  " + I->first.first->getDescription() + " " +
120                                I->first.second.getName() + "\n";
121       }
122       error(UndefinedReferences);
123       return;
124     }
125
126     if (CurrentModule->getDataLayout().empty()) {
127       std::string dataLayout;
128       if (Endian != Module::AnyEndianness)
129         dataLayout.append(Endian == Module::BigEndian ? "E" : "e");
130       if (PointerSize != Module::AnyPointerSize) {
131         if (!dataLayout.empty())
132           dataLayout += "-";
133         dataLayout.append(PointerSize == Module::Pointer64 ? 
134                           "p:64:64" : "p:32:32");
135       }
136       CurrentModule->setDataLayout(dataLayout);
137     }
138
139     Values.clear();         // Clear out function local definitions
140     Types.clear();
141     TypeSigns.clear();
142     NamedTypeSigns.clear();
143     NamedValueSigns.clear();
144     CurrentModule = 0;
145   }
146
147   // GetForwardRefForGlobal - Check to see if there is a forward reference
148   // for this global.  If so, remove it from the GlobalRefs map and return it.
149   // If not, just return null.
150   GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
151     // Check to see if there is a forward reference to this global variable...
152     // if there is, eliminate it and patch the reference to use the new def'n.
153     GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
154     GlobalValue *Ret = 0;
155     if (I != GlobalRefs.end()) {
156       Ret = I->second;
157       GlobalRefs.erase(I);
158     }
159     return Ret;
160   }
161   void setEndianness(Module::Endianness E) { Endian = E; }
162   void setPointerSize(Module::PointerSize sz) { PointerSize = sz; }
163 } CurModule;
164
165 Module::Endianness  PerModuleInfo::Endian = Module::AnyEndianness;
166 Module::PointerSize PerModuleInfo::PointerSize = Module::AnyPointerSize;
167
168 static struct PerFunctionInfo {
169   Function *CurrentFunction;     // Pointer to current function being created
170
171   std::map<const Type*, ValueList> Values; // Keep track of #'d definitions
172   std::map<const Type*, ValueList> LateResolveValues;
173   bool isDeclare;                   // Is this function a forward declararation?
174   GlobalValue::LinkageTypes Linkage;// Linkage for forward declaration.
175
176   /// BBForwardRefs - When we see forward references to basic blocks, keep
177   /// track of them here.
178   std::map<BasicBlock*, std::pair<ValID, int> > BBForwardRefs;
179   std::vector<BasicBlock*> NumberedBlocks;
180   RenameMapType RenameMap;
181   unsigned NextBBNum;
182
183   inline PerFunctionInfo() {
184     CurrentFunction = 0;
185     isDeclare = false;
186     Linkage = GlobalValue::ExternalLinkage;    
187   }
188
189   inline void FunctionStart(Function *M) {
190     CurrentFunction = M;
191     NextBBNum = 0;
192   }
193
194   void FunctionDone() {
195     NumberedBlocks.clear();
196
197     // Any forward referenced blocks left?
198     if (!BBForwardRefs.empty()) {
199       error("Undefined reference to label " + 
200             BBForwardRefs.begin()->first->getName());
201       return;
202     }
203
204     // Resolve all forward references now.
205     ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
206
207     Values.clear();         // Clear out function local definitions
208     RenameMap.clear();
209     CurrentFunction = 0;
210     isDeclare = false;
211     Linkage = GlobalValue::ExternalLinkage;
212   }
213 } CurFun;  // Info for the current function...
214
215 static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
216
217 /// This function is just a utility to make a Key value for the rename map.
218 /// The Key is a combination of the name, type, Signedness of the original 
219 /// value (global/function). This just constructs the key and ensures that
220 /// named Signedness values are resolved to the actual Signedness.
221 /// @brief Make a key for the RenameMaps
222 static RenameMapKey makeRenameMapKey(const std::string &Name, const Type* Ty, 
223                                      const Signedness &Sign) {
224   TypeInfo TI; 
225   TI.T = Ty; 
226   if (Sign.isNamed())
227     // Don't allow Named Signedness nodes because they won't match. The actual
228     // Signedness must be looked up in the NamedTypeSigns map.
229     TI.S.copy(CurModule.NamedTypeSigns[Sign.getName()]);
230   else
231     TI.S.copy(Sign);
232   return std::make_pair(Name, TI);
233 }
234
235
236 //===----------------------------------------------------------------------===//
237 //               Code to handle definitions of all the types
238 //===----------------------------------------------------------------------===//
239
240 static int InsertValue(Value *V,
241                   std::map<const Type*,ValueList> &ValueTab = CurFun.Values) {
242   if (V->hasName()) return -1;           // Is this a numbered definition?
243
244   // Yes, insert the value into the value table...
245   ValueList &List = ValueTab[V->getType()];
246   List.push_back(V);
247   return List.size()-1;
248 }
249
250 static const Type *getType(const ValID &D, bool DoNotImprovise = false) {
251   switch (D.Type) {
252   case ValID::NumberVal:               // Is it a numbered definition?
253     // Module constants occupy the lowest numbered slots...
254     if ((unsigned)D.Num < CurModule.Types.size()) {
255       return CurModule.Types[(unsigned)D.Num];
256     }
257     break;
258   case ValID::NameVal:                 // Is it a named definition?
259     if (const Type *N = CurModule.CurrentModule->getTypeByName(D.Name)) {
260       return N;
261     }
262     break;
263   default:
264     error("Internal parser error: Invalid symbol type reference");
265     return 0;
266   }
267
268   // If we reached here, we referenced either a symbol that we don't know about
269   // or an id number that hasn't been read yet.  We may be referencing something
270   // forward, so just create an entry to be resolved later and get to it...
271   //
272   if (DoNotImprovise) return 0;  // Do we just want a null to be returned?
273
274   if (inFunctionScope()) {
275     if (D.Type == ValID::NameVal) {
276       error("Reference to an undefined type: '" + D.getName() + "'");
277       return 0;
278     } else {
279       error("Reference to an undefined type: #" + itostr(D.Num));
280       return 0;
281     }
282   }
283
284   std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
285   if (I != CurModule.LateResolveTypes.end())
286     return I->second;
287
288   Type *Typ = OpaqueType::get();
289   CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
290   return Typ;
291 }
292
293 /// This is like the getType method except that instead of looking up the type
294 /// for a given ID, it looks up that type's sign.
295 /// @brief Get the signedness of a referenced type
296 static Signedness getTypeSign(const ValID &D) {
297   switch (D.Type) {
298   case ValID::NumberVal:               // Is it a numbered definition?
299     // Module constants occupy the lowest numbered slots...
300     if ((unsigned)D.Num < CurModule.TypeSigns.size()) {
301       return CurModule.TypeSigns[(unsigned)D.Num];
302     }
303     break;
304   case ValID::NameVal: {               // Is it a named definition?
305     std::map<std::string,Signedness>::const_iterator I = 
306       CurModule.NamedTypeSigns.find(D.Name);
307     if (I != CurModule.NamedTypeSigns.end())
308       return I->second;
309     // Perhaps its a named forward .. just cache the name
310     Signedness S;
311     S.makeNamed(D.Name);
312     return S;
313   }
314   default: 
315     break;
316   }
317   // If we don't find it, its signless
318   Signedness S;
319   S.makeSignless();
320   return S;
321 }
322
323 /// This function is analagous to getElementType in LLVM. It provides the same
324 /// function except that it looks up the Signedness instead of the type. This is
325 /// used when processing GEP instructions that need to extract the type of an
326 /// indexed struct/array/ptr member. 
327 /// @brief Look up an element's sign.
328 static Signedness getElementSign(const ValueInfo& VI, 
329                                  const std::vector<Value*> &Indices) {
330   const Type *Ptr = VI.V->getType();
331   assert(isa<PointerType>(Ptr) && "Need pointer type");
332
333   unsigned CurIdx = 0;
334   Signedness S(VI.S);
335   while (const CompositeType *CT = dyn_cast<CompositeType>(Ptr)) {
336     if (CurIdx == Indices.size())
337       break;
338
339     Value *Index = Indices[CurIdx++];
340     assert(!isa<PointerType>(CT) || CurIdx == 1 && "Invalid type");
341     Ptr = CT->getTypeAtIndex(Index);
342     if (const Type* Ty = Ptr->getForwardedType())
343       Ptr = Ty;
344     assert(S.isComposite() && "Bad Signedness type");
345     if (isa<StructType>(CT)) {
346       S = S.get(cast<ConstantInt>(Index)->getZExtValue());
347     } else {
348       S = S.get(0UL);
349     }
350     if (S.isNamed())
351       S = CurModule.NamedTypeSigns[S.getName()];
352   }
353   Signedness Result;
354   Result.makeComposite(S);
355   return Result;
356 }
357
358 /// This function just translates a ConstantInfo into a ValueInfo and calls
359 /// getElementSign(ValueInfo,...). Its just a convenience.
360 /// @brief ConstantInfo version of getElementSign.
361 static Signedness getElementSign(const ConstInfo& CI, 
362                                  const std::vector<Constant*> &Indices) {
363   ValueInfo VI;
364   VI.V = CI.C;
365   VI.S.copy(CI.S);
366   std::vector<Value*> Idx;
367   for (unsigned i = 0; i < Indices.size(); ++i)
368     Idx.push_back(Indices[i]);
369   Signedness result = getElementSign(VI, Idx);
370   VI.destroy();
371   return result;
372 }
373
374 /// This function determines if two function types differ only in their use of
375 /// the sret parameter attribute in the first argument. If they are identical 
376 /// in all other respects, it returns true. Otherwise, it returns false.
377 static bool FuncTysDifferOnlyBySRet(const FunctionType *F1, 
378                                     const FunctionType *F2) {
379   if (F1->getReturnType() != F2->getReturnType() ||
380       F1->getNumParams() != F2->getNumParams() ||
381       F1->getParamAttrs(0) != F2->getParamAttrs(0))
382     return false;
383   unsigned SRetMask = ~unsigned(FunctionType::StructRetAttribute);
384   for (unsigned i = 0; i < F1->getNumParams(); ++i) {
385     if (F1->getParamType(i) != F2->getParamType(i) ||
386         unsigned(F1->getParamAttrs(i+1)) & SRetMask !=
387         unsigned(F2->getParamAttrs(i+1)) & SRetMask)
388       return false;
389   }
390   return true;
391 }
392
393 /// This function determines if the type of V and Ty differ only by the SRet
394 /// parameter attribute. This is a more generalized case of
395 /// FuncTysDIfferOnlyBySRet since it doesn't require FunctionType arguments.
396 static bool TypesDifferOnlyBySRet(Value *V, const Type* Ty) {
397   if (V->getType() == Ty)
398     return true;
399   const PointerType *PF1 = dyn_cast<PointerType>(Ty);
400   const PointerType *PF2 = dyn_cast<PointerType>(V->getType());
401   if (PF1 && PF2) {
402     const FunctionType* FT1 = dyn_cast<FunctionType>(PF1->getElementType());
403     const FunctionType* FT2 = dyn_cast<FunctionType>(PF2->getElementType());
404     if (FT1 && FT2)
405       return FuncTysDifferOnlyBySRet(FT1, FT2);
406   }
407   return false;
408 }
409
410 // The upgrade of csretcc to sret param attribute may have caused a function 
411 // to not be found because the param attribute changed the type of the called 
412 // function. This helper function, used in getExistingValue, detects that
413 // situation and bitcasts the function to the correct type.
414 static Value* handleSRetFuncTypeMerge(Value *V, const Type* Ty) {
415   // Handle degenerate cases
416   if (!V)
417     return 0;
418   if (V->getType() == Ty)
419     return V;
420
421   const PointerType *PF1 = dyn_cast<PointerType>(Ty);
422   const PointerType *PF2 = dyn_cast<PointerType>(V->getType());
423   if (PF1 && PF2) {
424     const FunctionType *FT1 = dyn_cast<FunctionType>(PF1->getElementType());
425     const FunctionType *FT2 = dyn_cast<FunctionType>(PF2->getElementType());
426     if (FT1 && FT2 && FuncTysDifferOnlyBySRet(FT1, FT2))
427       if (FT2->paramHasAttr(1, FunctionType::StructRetAttribute))
428         return V;
429       else if (Constant *C = dyn_cast<Constant>(V))
430         return ConstantExpr::getBitCast(C, PF1);
431       else
432         return new BitCastInst(V, PF1, "upgrd.cast", CurBB);
433       
434   }
435   return 0;
436 }
437
438 // getExistingValue - Look up the value specified by the provided type and
439 // the provided ValID.  If the value exists and has already been defined, return
440 // it.  Otherwise return null.
441 //
442 static Value *getExistingValue(const Type *Ty, const ValID &D) {
443   if (isa<FunctionType>(Ty)) {
444     error("Functions are not values and must be referenced as pointers");
445   }
446
447   switch (D.Type) {
448   case ValID::NumberVal: {                 // Is it a numbered definition?
449     unsigned Num = (unsigned)D.Num;
450
451     // Module constants occupy the lowest numbered slots...
452     std::map<const Type*,ValueList>::iterator VI = CurModule.Values.find(Ty);
453     if (VI != CurModule.Values.end()) {
454       if (Num < VI->second.size())
455         return VI->second[Num];
456       Num -= VI->second.size();
457     }
458
459     // Make sure that our type is within bounds
460     VI = CurFun.Values.find(Ty);
461     if (VI == CurFun.Values.end()) return 0;
462
463     // Check that the number is within bounds...
464     if (VI->second.size() <= Num) return 0;
465
466     return VI->second[Num];
467   }
468
469   case ValID::NameVal: {                // Is it a named definition?
470     // Get the name out of the ID
471     RenameMapKey Key = makeRenameMapKey(D.Name, Ty, D.S);
472     Value *V = 0;
473     if (inFunctionScope()) {
474       // See if the name was renamed
475       RenameMapType::const_iterator I = CurFun.RenameMap.find(Key);
476       std::string LookupName;
477       if (I != CurFun.RenameMap.end())
478         LookupName = I->second;
479       else
480         LookupName = D.Name;
481       ValueSymbolTable &SymTab = CurFun.CurrentFunction->getValueSymbolTable();
482       V = SymTab.lookup(LookupName);
483       if (V && V->getType() != Ty)
484         V = handleSRetFuncTypeMerge(V, Ty);
485       assert((!V || TypesDifferOnlyBySRet(V, Ty)) && "Found wrong type");
486     }
487     if (!V) {
488       RenameMapType::const_iterator I = CurModule.RenameMap.find(Key);
489       std::string LookupName;
490       if (I != CurModule.RenameMap.end())
491         LookupName = I->second;
492       else
493         LookupName = D.Name;
494       V = CurModule.CurrentModule->getValueSymbolTable().lookup(LookupName);
495       if (V && V->getType() != Ty)
496         V = handleSRetFuncTypeMerge(V, Ty);
497       assert((!V || TypesDifferOnlyBySRet(V, Ty)) && "Found wrong type");
498     }
499     if (!V) 
500       return 0;
501
502     D.destroy();  // Free old strdup'd memory...
503     return V;
504   }
505
506   // Check to make sure that "Ty" is an integral type, and that our
507   // value will fit into the specified type...
508   case ValID::ConstSIntVal:    // Is it a constant pool reference??
509     if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
510       error("Signed integral constant '" + itostr(D.ConstPool64) + 
511             "' is invalid for type '" + Ty->getDescription() + "'");
512     }
513     return ConstantInt::get(Ty, D.ConstPool64);
514
515   case ValID::ConstUIntVal:     // Is it an unsigned const pool reference?
516     if (!ConstantInt::isValueValidForType(Ty, D.UConstPool64)) {
517       if (!ConstantInt::isValueValidForType(Ty, D.ConstPool64))
518         error("Integral constant '" + utostr(D.UConstPool64) + 
519               "' is invalid or out of range");
520       else     // This is really a signed reference.  Transmogrify.
521         return ConstantInt::get(Ty, D.ConstPool64);
522     } else
523       return ConstantInt::get(Ty, D.UConstPool64);
524
525   case ValID::ConstFPVal:        // Is it a floating point const pool reference?
526     if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP))
527       error("FP constant invalid for type");
528     return ConstantFP::get(Ty, D.ConstPoolFP);
529
530   case ValID::ConstNullVal:      // Is it a null value?
531     if (!isa<PointerType>(Ty))
532       error("Cannot create a a non pointer null");
533     return ConstantPointerNull::get(cast<PointerType>(Ty));
534
535   case ValID::ConstUndefVal:      // Is it an undef value?
536     return UndefValue::get(Ty);
537
538   case ValID::ConstZeroVal:      // Is it a zero value?
539     return Constant::getNullValue(Ty);
540     
541   case ValID::ConstantVal:       // Fully resolved constant?
542     if (D.ConstantValue->getType() != Ty) 
543       error("Constant expression type different from required type");
544     return D.ConstantValue;
545
546   case ValID::InlineAsmVal: {    // Inline asm expression
547     const PointerType *PTy = dyn_cast<PointerType>(Ty);
548     const FunctionType *FTy =
549       PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
550     if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints))
551       error("Invalid type for asm constraint string");
552     InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
553                                    D.IAD->HasSideEffects);
554     D.destroy();   // Free InlineAsmDescriptor.
555     return IA;
556   }
557   default:
558     assert(0 && "Unhandled case");
559     return 0;
560   }   // End of switch
561
562   assert(0 && "Unhandled case");
563   return 0;
564 }
565
566 // getVal - This function is identical to getExistingValue, except that if a
567 // value is not already defined, it "improvises" by creating a placeholder var
568 // that looks and acts just like the requested variable.  When the value is
569 // defined later, all uses of the placeholder variable are replaced with the
570 // real thing.
571 //
572 static Value *getVal(const Type *Ty, const ValID &ID) {
573   if (Ty == Type::LabelTy)
574     error("Cannot use a basic block here");
575
576   // See if the value has already been defined.
577   Value *V = getExistingValue(Ty, ID);
578   if (V) return V;
579
580   if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty))
581     error("Invalid use of a composite type");
582
583   // If we reached here, we referenced either a symbol that we don't know about
584   // or an id number that hasn't been read yet.  We may be referencing something
585   // forward, so just create an entry to be resolved later and get to it...
586   V = new Argument(Ty);
587
588   // Remember where this forward reference came from.  FIXME, shouldn't we try
589   // to recycle these things??
590   CurModule.PlaceHolderInfo.insert(
591     std::make_pair(V, std::make_pair(ID, Upgradelineno)));
592
593   if (inFunctionScope())
594     InsertValue(V, CurFun.LateResolveValues);
595   else
596     InsertValue(V, CurModule.LateResolveValues);
597   return V;
598 }
599
600 /// @brief This just makes any name given to it unique, up to MAX_UINT times.
601 static std::string makeNameUnique(const std::string& Name) {
602   static unsigned UniqueNameCounter = 1;
603   std::string Result(Name);
604   Result += ".upgrd." + llvm::utostr(UniqueNameCounter++);
605   return Result;
606 }
607
608 /// getBBVal - This is used for two purposes:
609 ///  * If isDefinition is true, a new basic block with the specified ID is being
610 ///    defined.
611 ///  * If isDefinition is true, this is a reference to a basic block, which may
612 ///    or may not be a forward reference.
613 ///
614 static BasicBlock *getBBVal(const ValID &ID, bool isDefinition = false) {
615   assert(inFunctionScope() && "Can't get basic block at global scope");
616
617   std::string Name;
618   BasicBlock *BB = 0;
619   switch (ID.Type) {
620   default: 
621     error("Illegal label reference " + ID.getName());
622     break;
623   case ValID::NumberVal:                // Is it a numbered definition?
624     if (unsigned(ID.Num) >= CurFun.NumberedBlocks.size())
625       CurFun.NumberedBlocks.resize(ID.Num+1);
626     BB = CurFun.NumberedBlocks[ID.Num];
627     break;
628   case ValID::NameVal:                  // Is it a named definition?
629     Name = ID.Name;
630     if (Value *N = CurFun.CurrentFunction->getValueSymbolTable().lookup(Name)) {
631       if (N->getType() != Type::LabelTy) {
632         // Register names didn't use to conflict with basic block names
633         // because of type planes. Now they all have to be unique. So, we just
634         // rename the register and treat this name as if no basic block
635         // had been found.
636         RenameMapKey Key = makeRenameMapKey(ID.Name, N->getType(), ID.S);
637         N->setName(makeNameUnique(N->getName()));
638         CurModule.RenameMap[Key] = N->getName();
639         BB = 0;
640       } else {
641         BB = cast<BasicBlock>(N);
642       }
643     }
644     break;
645   }
646
647   // See if the block has already been defined.
648   if (BB) {
649     // If this is the definition of the block, make sure the existing value was
650     // just a forward reference.  If it was a forward reference, there will be
651     // an entry for it in the PlaceHolderInfo map.
652     if (isDefinition && !CurFun.BBForwardRefs.erase(BB))
653       // The existing value was a definition, not a forward reference.
654       error("Redefinition of label " + ID.getName());
655
656     ID.destroy();                       // Free strdup'd memory.
657     return BB;
658   }
659
660   // Otherwise this block has not been seen before.
661   BB = new BasicBlock("", CurFun.CurrentFunction);
662   if (ID.Type == ValID::NameVal) {
663     BB->setName(ID.Name);
664   } else {
665     CurFun.NumberedBlocks[ID.Num] = BB;
666   }
667
668   // If this is not a definition, keep track of it so we can use it as a forward
669   // reference.
670   if (!isDefinition) {
671     // Remember where this forward reference came from.
672     CurFun.BBForwardRefs[BB] = std::make_pair(ID, Upgradelineno);
673   } else {
674     // The forward declaration could have been inserted anywhere in the
675     // function: insert it into the correct place now.
676     CurFun.CurrentFunction->getBasicBlockList().remove(BB);
677     CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
678   }
679   ID.destroy();
680   return BB;
681 }
682
683
684 //===----------------------------------------------------------------------===//
685 //              Code to handle forward references in instructions
686 //===----------------------------------------------------------------------===//
687 //
688 // This code handles the late binding needed with statements that reference
689 // values not defined yet... for example, a forward branch, or the PHI node for
690 // a loop body.
691 //
692 // This keeps a table (CurFun.LateResolveValues) of all such forward references
693 // and back patchs after we are done.
694 //
695
696 // ResolveDefinitions - If we could not resolve some defs at parsing
697 // time (forward branches, phi functions for loops, etc...) resolve the
698 // defs now...
699 //
700 static void 
701 ResolveDefinitions(std::map<const Type*,ValueList> &LateResolvers,
702                    std::map<const Type*,ValueList> *FutureLateResolvers) {
703
704   // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
705   for (std::map<const Type*,ValueList>::iterator LRI = LateResolvers.begin(),
706          E = LateResolvers.end(); LRI != E; ++LRI) {
707     const Type* Ty = LRI->first;
708     ValueList &List = LRI->second;
709     while (!List.empty()) {
710       Value *V = List.back();
711       List.pop_back();
712
713       std::map<Value*, std::pair<ValID, int> >::iterator PHI =
714         CurModule.PlaceHolderInfo.find(V);
715       assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error");
716
717       ValID &DID = PHI->second.first;
718
719       Value *TheRealValue = getExistingValue(Ty, DID);
720       if (TheRealValue) {
721         V->replaceAllUsesWith(TheRealValue);
722         delete V;
723         CurModule.PlaceHolderInfo.erase(PHI);
724       } else if (FutureLateResolvers) {
725         // Functions have their unresolved items forwarded to the module late
726         // resolver table
727         InsertValue(V, *FutureLateResolvers);
728       } else {
729         if (DID.Type == ValID::NameVal) {
730           error("Reference to an invalid definition: '" + DID.getName() +
731                 "' of type '" + V->getType()->getDescription() + "'",
732                 PHI->second.second);
733             return;
734         } else {
735           error("Reference to an invalid definition: #" +
736                 itostr(DID.Num) + " of type '" + 
737                 V->getType()->getDescription() + "'", PHI->second.second);
738           return;
739         }
740       }
741     }
742   }
743
744   LateResolvers.clear();
745 }
746
747 /// This function is used for type resolution and upref handling. When a type
748 /// becomes concrete, this function is called to adjust the signedness for the
749 /// concrete type.
750 static void ResolveTypeSign(const Type* oldTy, const Signedness &Sign) {
751   std::string TyName = CurModule.CurrentModule->getTypeName(oldTy);
752   if (!TyName.empty())
753     CurModule.NamedTypeSigns[TyName] = Sign;
754 }
755
756 /// ResolveTypeTo - A brand new type was just declared.  This means that (if
757 /// name is not null) things referencing Name can be resolved.  Otherwise, 
758 /// things refering to the number can be resolved.  Do this now.
759 static void ResolveTypeTo(char *Name, const Type *ToTy, const Signedness& Sign){
760   ValID D;
761   if (Name)
762     D = ValID::create(Name);
763   else      
764     D = ValID::create((int)CurModule.Types.size());
765   D.S.copy(Sign);
766
767   CurModule.NamedTypeSigns[Name] = Sign;
768
769   std::map<ValID, PATypeHolder>::iterator I =
770     CurModule.LateResolveTypes.find(D);
771   if (I != CurModule.LateResolveTypes.end()) {
772     const Type *OldTy = I->second.get();
773     ((DerivedType*)OldTy)->refineAbstractTypeTo(ToTy);
774     CurModule.LateResolveTypes.erase(I);
775   }
776 }
777
778 /// This is the implementation portion of TypeHasInteger. It traverses the
779 /// type given, avoiding recursive types, and returns true as soon as it finds
780 /// an integer type. If no integer type is found, it returns false.
781 static bool TypeHasIntegerI(const Type *Ty, std::vector<const Type*> Stack) {
782   // Handle some easy cases
783   if (Ty->isPrimitiveType() || (Ty->getTypeID() == Type::OpaqueTyID))
784     return false;
785   if (Ty->isInteger())
786     return true;
787   if (const SequentialType *STy = dyn_cast<SequentialType>(Ty))
788     return STy->getElementType()->isInteger();
789
790   // Avoid type structure recursion
791   for (std::vector<const Type*>::iterator I = Stack.begin(), E = Stack.end();
792        I != E; ++I)
793     if (Ty == *I)
794       return false;
795
796   // Push us on the type stack
797   Stack.push_back(Ty);
798
799   if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
800     if (TypeHasIntegerI(FTy->getReturnType(), Stack)) 
801       return true;
802     FunctionType::param_iterator I = FTy->param_begin();
803     FunctionType::param_iterator E = FTy->param_end();
804     for (; I != E; ++I)
805       if (TypeHasIntegerI(*I, Stack))
806         return true;
807     return false;
808   } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
809     StructType::element_iterator I = STy->element_begin();
810     StructType::element_iterator E = STy->element_end();
811     for (; I != E; ++I) {
812       if (TypeHasIntegerI(*I, Stack))
813         return true;
814     }
815     return false;
816   }
817   // There shouldn't be anything else, but its definitely not integer
818   assert(0 && "What type is this?");
819   return false;
820 }
821
822 /// This is the interface to TypeHasIntegerI. It just provides the type stack,
823 /// to avoid recursion, and then calls TypeHasIntegerI.
824 static inline bool TypeHasInteger(const Type *Ty) {
825   std::vector<const Type*> TyStack;
826   return TypeHasIntegerI(Ty, TyStack);
827 }
828
829 // setValueName - Set the specified value to the name given.  The name may be
830 // null potentially, in which case this is a noop.  The string passed in is
831 // assumed to be a malloc'd string buffer, and is free'd by this function.
832 //
833 static void setValueName(const ValueInfo &V, char *NameStr) {
834   if (NameStr) {
835     std::string Name(NameStr);      // Copy string
836     free(NameStr);                  // Free old string
837
838     if (V.V->getType() == Type::VoidTy) {
839       error("Can't assign name '" + Name + "' to value with void type");
840       return;
841     }
842
843     assert(inFunctionScope() && "Must be in function scope");
844
845     // Search the function's symbol table for an existing value of this name
846     ValueSymbolTable &ST = CurFun.CurrentFunction->getValueSymbolTable();
847     Value* Existing = ST.lookup(Name);
848     if (Existing) {
849       // An existing value of the same name was found. This might have happened
850       // because of the integer type planes collapsing in LLVM 2.0. 
851       if (Existing->getType() == V.V->getType() &&
852           !TypeHasInteger(Existing->getType())) {
853         // If the type does not contain any integers in them then this can't be
854         // a type plane collapsing issue. It truly is a redefinition and we 
855         // should error out as the assembly is invalid.
856         error("Redefinition of value named '" + Name + "' of type '" +
857               V.V->getType()->getDescription() + "'");
858         return;
859       } 
860       // In LLVM 2.0 we don't allow names to be re-used for any values in a 
861       // function, regardless of Type. Previously re-use of names was okay as 
862       // long as they were distinct types. With type planes collapsing because
863       // of the signedness change and because of PR411, this can no longer be
864       // supported. We must search the entire symbol table for a conflicting
865       // name and make the name unique. No warning is needed as this can't 
866       // cause a problem.
867       std::string NewName = makeNameUnique(Name);
868       // We're changing the name but it will probably be used by other 
869       // instructions as operands later on. Consequently we have to retain
870       // a mapping of the renaming that we're doing.
871       RenameMapKey Key = makeRenameMapKey(Name, V.V->getType(), V.S);
872       CurFun.RenameMap[Key] = NewName;
873       Name = NewName;
874     }
875
876     // Set the name.
877     V.V->setName(Name);
878   }
879 }
880
881 /// ParseGlobalVariable - Handle parsing of a global.  If Initializer is null,
882 /// this is a declaration, otherwise it is a definition.
883 static GlobalVariable *
884 ParseGlobalVariable(char *NameStr,GlobalValue::LinkageTypes Linkage,
885                     bool isConstantGlobal, const Type *Ty,
886                     Constant *Initializer,
887                     const Signedness &Sign) {
888   if (isa<FunctionType>(Ty))
889     error("Cannot declare global vars of function type");
890
891   const PointerType *PTy = PointerType::get(Ty);
892
893   std::string Name;
894   if (NameStr) {
895     Name = NameStr;      // Copy string
896     free(NameStr);       // Free old string
897   }
898
899   // See if this global value was forward referenced.  If so, recycle the
900   // object.
901   ValID ID;
902   if (!Name.empty()) {
903     ID = ValID::create((char*)Name.c_str());
904   } else {
905     ID = ValID::create((int)CurModule.Values[PTy].size());
906   }
907   ID.S.makeComposite(Sign);
908
909   if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
910     // Move the global to the end of the list, from whereever it was
911     // previously inserted.
912     GlobalVariable *GV = cast<GlobalVariable>(FWGV);
913     CurModule.CurrentModule->getGlobalList().remove(GV);
914     CurModule.CurrentModule->getGlobalList().push_back(GV);
915     GV->setInitializer(Initializer);
916     GV->setLinkage(Linkage);
917     GV->setConstant(isConstantGlobal);
918     InsertValue(GV, CurModule.Values);
919     return GV;
920   }
921
922   // If this global has a name, check to see if there is already a definition
923   // of this global in the module and emit warnings if there are conflicts.
924   if (!Name.empty()) {
925     // The global has a name. See if there's an existing one of the same name.
926     if (CurModule.CurrentModule->getNamedGlobal(Name)) {
927       // We found an existing global ov the same name. This isn't allowed 
928       // in LLVM 2.0. Consequently, we must alter the name of the global so it
929       // can at least compile. This can happen because of type planes 
930       // There is alread a global of the same name which means there is a
931       // conflict. Let's see what we can do about it.
932       std::string NewName(makeNameUnique(Name));
933       if (Linkage != GlobalValue::InternalLinkage) {
934         // The linkage of this gval is external so we can't reliably rename 
935         // it because it could potentially create a linking problem.  
936         // However, we can't leave the name conflict in the output either or 
937         // it won't assemble with LLVM 2.0.  So, all we can do is rename 
938         // this one to something unique and emit a warning about the problem.
939         warning("Renaming global variable '" + Name + "' to '" + NewName + 
940                   "' may cause linkage errors");
941       }
942
943       // Put the renaming in the global rename map
944       RenameMapKey Key = makeRenameMapKey(Name, PointerType::get(Ty), ID.S);
945       CurModule.RenameMap[Key] = NewName;
946
947       // Rename it
948       Name = NewName;
949     }
950   }
951
952   // Otherwise there is no existing GV to use, create one now.
953   GlobalVariable *GV =
954     new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
955                        CurModule.CurrentModule);
956   InsertValue(GV, CurModule.Values);
957   // Remember the sign of this global.
958   CurModule.NamedValueSigns[Name] = ID.S;
959   return GV;
960 }
961
962 // setTypeName - Set the specified type to the name given.  The name may be
963 // null potentially, in which case this is a noop.  The string passed in is
964 // assumed to be a malloc'd string buffer, and is freed by this function.
965 //
966 // This function returns true if the type has already been defined, but is
967 // allowed to be redefined in the specified context.  If the name is a new name
968 // for the type plane, it is inserted and false is returned.
969 static bool setTypeName(const PATypeInfo& TI, char *NameStr) {
970   assert(!inFunctionScope() && "Can't give types function-local names");
971   if (NameStr == 0) return false;
972  
973   std::string Name(NameStr);      // Copy string
974   free(NameStr);                  // Free old string
975
976   const Type* Ty = TI.PAT->get();
977
978   // We don't allow assigning names to void type
979   if (Ty == Type::VoidTy) {
980     error("Can't assign name '" + Name + "' to the void type");
981     return false;
982   }
983
984   // Set the type name, checking for conflicts as we do so.
985   bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, Ty);
986
987   // Save the sign information for later use 
988   CurModule.NamedTypeSigns[Name] = TI.S;
989
990   if (AlreadyExists) {   // Inserting a name that is already defined???
991     const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
992     assert(Existing && "Conflict but no matching type?");
993
994     // There is only one case where this is allowed: when we are refining an
995     // opaque type.  In this case, Existing will be an opaque type.
996     if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
997       // We ARE replacing an opaque type!
998       const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(Ty);
999       return true;
1000     }
1001
1002     // Otherwise, this is an attempt to redefine a type. That's okay if
1003     // the redefinition is identical to the original. This will be so if
1004     // Existing and T point to the same Type object. In this one case we
1005     // allow the equivalent redefinition.
1006     if (Existing == Ty) return true;  // Yes, it's equal.
1007
1008     // Any other kind of (non-equivalent) redefinition is an error.
1009     error("Redefinition of type named '" + Name + "' in the '" +
1010           Ty->getDescription() + "' type plane");
1011   }
1012
1013   return false;
1014 }
1015
1016 //===----------------------------------------------------------------------===//
1017 // Code for handling upreferences in type names...
1018 //
1019
1020 // TypeContains - Returns true if Ty directly contains E in it.
1021 //
1022 static bool TypeContains(const Type *Ty, const Type *E) {
1023   return std::find(Ty->subtype_begin(), Ty->subtype_end(),
1024                    E) != Ty->subtype_end();
1025 }
1026
1027 namespace {
1028   struct UpRefRecord {
1029     // NestingLevel - The number of nesting levels that need to be popped before
1030     // this type is resolved.
1031     unsigned NestingLevel;
1032
1033     // LastContainedTy - This is the type at the current binding level for the
1034     // type.  Every time we reduce the nesting level, this gets updated.
1035     const Type *LastContainedTy;
1036
1037     // UpRefTy - This is the actual opaque type that the upreference is
1038     // represented with.
1039     OpaqueType *UpRefTy;
1040
1041     UpRefRecord(unsigned NL, OpaqueType *URTy)
1042       : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) { }
1043   };
1044 }
1045
1046 // UpRefs - A list of the outstanding upreferences that need to be resolved.
1047 static std::vector<UpRefRecord> UpRefs;
1048
1049 /// HandleUpRefs - Every time we finish a new layer of types, this function is
1050 /// called.  It loops through the UpRefs vector, which is a list of the
1051 /// currently active types.  For each type, if the up reference is contained in
1052 /// the newly completed type, we decrement the level count.  When the level
1053 /// count reaches zero, the upreferenced type is the type that is passed in:
1054 /// thus we can complete the cycle.
1055 ///
1056 static PATypeHolder HandleUpRefs(const Type *ty, const Signedness& Sign) {
1057   // If Ty isn't abstract, or if there are no up-references in it, then there is
1058   // nothing to resolve here.
1059   if (!ty->isAbstract() || UpRefs.empty()) return ty;
1060   
1061   PATypeHolder Ty(ty);
1062   UR_OUT("Type '" << Ty->getDescription() <<
1063          "' newly formed.  Resolving upreferences.\n" <<
1064          UpRefs.size() << " upreferences active!\n");
1065
1066   // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1067   // to zero), we resolve them all together before we resolve them to Ty.  At
1068   // the end of the loop, if there is anything to resolve to Ty, it will be in
1069   // this variable.
1070   OpaqueType *TypeToResolve = 0;
1071
1072   unsigned i = 0;
1073   for (; i != UpRefs.size(); ++i) {
1074     UR_OUT("  UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
1075            << UpRefs[i].UpRefTy->getDescription() << ") = "
1076            << (TypeContains(Ty, UpRefs[i].UpRefTy) ? "true" : "false") << "\n");
1077     if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
1078       // Decrement level of upreference
1079       unsigned Level = --UpRefs[i].NestingLevel;
1080       UpRefs[i].LastContainedTy = Ty;
1081       UR_OUT("  Uplevel Ref Level = " << Level << "\n");
1082       if (Level == 0) {                     // Upreference should be resolved!
1083         if (!TypeToResolve) {
1084           TypeToResolve = UpRefs[i].UpRefTy;
1085         } else {
1086           UR_OUT("  * Resolving upreference for "
1087                  << UpRefs[i].UpRefTy->getDescription() << "\n";
1088           std::string OldName = UpRefs[i].UpRefTy->getDescription());
1089           ResolveTypeSign(UpRefs[i].UpRefTy, Sign);
1090           UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1091           UR_OUT("  * Type '" << OldName << "' refined upreference to: "
1092                  << (const void*)Ty << ", " << Ty->getDescription() << "\n");
1093         }
1094         UpRefs.erase(UpRefs.begin()+i);     // Remove from upreference list...
1095         --i;                                // Do not skip the next element...
1096       }
1097     }
1098   }
1099
1100   if (TypeToResolve) {
1101     UR_OUT("  * Resolving upreference for "
1102            << UpRefs[i].UpRefTy->getDescription() << "\n";
1103            std::string OldName = TypeToResolve->getDescription());
1104     ResolveTypeSign(TypeToResolve, Sign);
1105     TypeToResolve->refineAbstractTypeTo(Ty);
1106   }
1107
1108   return Ty;
1109 }
1110
1111 bool Signedness::operator<(const Signedness &that) const {
1112   if (isNamed()) {
1113     if (that.isNamed()) 
1114       return *(this->name) < *(that.name);
1115     else
1116       return CurModule.NamedTypeSigns[*name] < that;
1117   } else if (that.isNamed()) {
1118     return *this < CurModule.NamedTypeSigns[*that.name];
1119   }
1120
1121   if (isComposite() && that.isComposite()) {
1122     if (sv->size() == that.sv->size()) {
1123       SignVector::const_iterator thisI = sv->begin(), thisE = sv->end();
1124       SignVector::const_iterator thatI = that.sv->begin(), 
1125                                  thatE = that.sv->end();
1126       for (; thisI != thisE; ++thisI, ++thatI) {
1127         if (*thisI < *thatI)
1128           return true;
1129         else if (!(*thisI == *thatI))
1130           return false;
1131       }
1132       return false;
1133     }
1134     return sv->size() < that.sv->size();
1135   }  
1136   return kind < that.kind;
1137 }
1138
1139 bool Signedness::operator==(const Signedness &that) const {
1140   if (isNamed())
1141     if (that.isNamed())
1142       return *(this->name) == *(that.name);
1143     else 
1144       return CurModule.NamedTypeSigns[*(this->name)] == that;
1145   else if (that.isNamed())
1146     return *this == CurModule.NamedTypeSigns[*(that.name)];
1147   if (isComposite() && that.isComposite()) {
1148     if (sv->size() == that.sv->size()) {
1149       SignVector::const_iterator thisI = sv->begin(), thisE = sv->end();
1150       SignVector::const_iterator thatI = that.sv->begin(), 
1151                                  thatE = that.sv->end();
1152       for (; thisI != thisE; ++thisI, ++thatI) {
1153         if (!(*thisI == *thatI))
1154           return false;
1155       }
1156       return true;
1157     }
1158     return false;
1159   }
1160   return kind == that.kind;
1161 }
1162
1163 void Signedness::copy(const Signedness &that) {
1164   if (that.isNamed()) {
1165     kind = Named;
1166     name = new std::string(*that.name);
1167   } else if (that.isComposite()) {
1168     kind = Composite;
1169     sv = new SignVector();
1170     *sv = *that.sv;
1171   } else {
1172     kind = that.kind;
1173     sv = 0;
1174   }
1175 }
1176
1177 void Signedness::destroy() {
1178   if (isNamed()) {
1179     delete name;
1180   } else if (isComposite()) {
1181     delete sv;
1182   } 
1183 }
1184
1185 #ifndef NDEBUG
1186 void Signedness::dump() const {
1187   if (isComposite()) {
1188     if (sv->size() == 1) {
1189       (*sv)[0].dump();
1190       std::cerr << "*";
1191     } else {
1192       std::cerr << "{ " ;
1193       for (unsigned i = 0; i < sv->size(); ++i) {
1194         if (i != 0)
1195           std::cerr << ", ";
1196         (*sv)[i].dump();
1197       }
1198       std::cerr << "} " ;
1199     }
1200   } else if (isNamed()) {
1201     std::cerr << *name;
1202   } else if (isSigned()) {
1203     std::cerr << "S";
1204   } else if (isUnsigned()) {
1205     std::cerr << "U";
1206   } else
1207     std::cerr << ".";
1208 }
1209 #endif
1210
1211 static inline Instruction::TermOps 
1212 getTermOp(TermOps op) {
1213   switch (op) {
1214     default           : assert(0 && "Invalid OldTermOp");
1215     case RetOp        : return Instruction::Ret;
1216     case BrOp         : return Instruction::Br;
1217     case SwitchOp     : return Instruction::Switch;
1218     case InvokeOp     : return Instruction::Invoke;
1219     case UnwindOp     : return Instruction::Unwind;
1220     case UnreachableOp: return Instruction::Unreachable;
1221   }
1222 }
1223
1224 static inline Instruction::BinaryOps 
1225 getBinaryOp(BinaryOps op, const Type *Ty, const Signedness& Sign) {
1226   switch (op) {
1227     default     : assert(0 && "Invalid OldBinaryOps");
1228     case SetEQ  : 
1229     case SetNE  : 
1230     case SetLE  :
1231     case SetGE  :
1232     case SetLT  :
1233     case SetGT  : assert(0 && "Should use getCompareOp");
1234     case AddOp  : return Instruction::Add;
1235     case SubOp  : return Instruction::Sub;
1236     case MulOp  : return Instruction::Mul;
1237     case DivOp  : {
1238       // This is an obsolete instruction so we must upgrade it based on the
1239       // types of its operands.
1240       bool isFP = Ty->isFloatingPoint();
1241       if (const VectorType* PTy = dyn_cast<VectorType>(Ty))
1242         // If its a vector type we want to use the element type
1243         isFP = PTy->getElementType()->isFloatingPoint();
1244       if (isFP)
1245         return Instruction::FDiv;
1246       else if (Sign.isSigned())
1247         return Instruction::SDiv;
1248       return Instruction::UDiv;
1249     }
1250     case UDivOp : return Instruction::UDiv;
1251     case SDivOp : return Instruction::SDiv;
1252     case FDivOp : return Instruction::FDiv;
1253     case RemOp  : {
1254       // This is an obsolete instruction so we must upgrade it based on the
1255       // types of its operands.
1256       bool isFP = Ty->isFloatingPoint();
1257       if (const VectorType* PTy = dyn_cast<VectorType>(Ty))
1258         // If its a vector type we want to use the element type
1259         isFP = PTy->getElementType()->isFloatingPoint();
1260       // Select correct opcode
1261       if (isFP)
1262         return Instruction::FRem;
1263       else if (Sign.isSigned())
1264         return Instruction::SRem;
1265       return Instruction::URem;
1266     }
1267     case URemOp : return Instruction::URem;
1268     case SRemOp : return Instruction::SRem;
1269     case FRemOp : return Instruction::FRem;
1270     case LShrOp : return Instruction::LShr;
1271     case AShrOp : return Instruction::AShr;
1272     case ShlOp  : return Instruction::Shl;
1273     case ShrOp  : 
1274       if (Sign.isSigned())
1275         return Instruction::AShr;
1276       return Instruction::LShr;
1277     case AndOp  : return Instruction::And;
1278     case OrOp   : return Instruction::Or;
1279     case XorOp  : return Instruction::Xor;
1280   }
1281 }
1282
1283 static inline Instruction::OtherOps 
1284 getCompareOp(BinaryOps op, unsigned short &predicate, const Type* &Ty,
1285              const Signedness &Sign) {
1286   bool isSigned = Sign.isSigned();
1287   bool isFP = Ty->isFloatingPoint();
1288   switch (op) {
1289     default     : assert(0 && "Invalid OldSetCC");
1290     case SetEQ  : 
1291       if (isFP) {
1292         predicate = FCmpInst::FCMP_OEQ;
1293         return Instruction::FCmp;
1294       } else {
1295         predicate = ICmpInst::ICMP_EQ;
1296         return Instruction::ICmp;
1297       }
1298     case SetNE  : 
1299       if (isFP) {
1300         predicate = FCmpInst::FCMP_UNE;
1301         return Instruction::FCmp;
1302       } else {
1303         predicate = ICmpInst::ICMP_NE;
1304         return Instruction::ICmp;
1305       }
1306     case SetLE  : 
1307       if (isFP) {
1308         predicate = FCmpInst::FCMP_OLE;
1309         return Instruction::FCmp;
1310       } else {
1311         if (isSigned)
1312           predicate = ICmpInst::ICMP_SLE;
1313         else
1314           predicate = ICmpInst::ICMP_ULE;
1315         return Instruction::ICmp;
1316       }
1317     case SetGE  : 
1318       if (isFP) {
1319         predicate = FCmpInst::FCMP_OGE;
1320         return Instruction::FCmp;
1321       } else {
1322         if (isSigned)
1323           predicate = ICmpInst::ICMP_SGE;
1324         else
1325           predicate = ICmpInst::ICMP_UGE;
1326         return Instruction::ICmp;
1327       }
1328     case SetLT  : 
1329       if (isFP) {
1330         predicate = FCmpInst::FCMP_OLT;
1331         return Instruction::FCmp;
1332       } else {
1333         if (isSigned)
1334           predicate = ICmpInst::ICMP_SLT;
1335         else
1336           predicate = ICmpInst::ICMP_ULT;
1337         return Instruction::ICmp;
1338       }
1339     case SetGT  : 
1340       if (isFP) {
1341         predicate = FCmpInst::FCMP_OGT;
1342         return Instruction::FCmp;
1343       } else {
1344         if (isSigned)
1345           predicate = ICmpInst::ICMP_SGT;
1346         else
1347           predicate = ICmpInst::ICMP_UGT;
1348         return Instruction::ICmp;
1349       }
1350   }
1351 }
1352
1353 static inline Instruction::MemoryOps getMemoryOp(MemoryOps op) {
1354   switch (op) {
1355     default              : assert(0 && "Invalid OldMemoryOps");
1356     case MallocOp        : return Instruction::Malloc;
1357     case FreeOp          : return Instruction::Free;
1358     case AllocaOp        : return Instruction::Alloca;
1359     case LoadOp          : return Instruction::Load;
1360     case StoreOp         : return Instruction::Store;
1361     case GetElementPtrOp : return Instruction::GetElementPtr;
1362   }
1363 }
1364
1365 static inline Instruction::OtherOps 
1366 getOtherOp(OtherOps op, const Signedness &Sign) {
1367   switch (op) {
1368     default               : assert(0 && "Invalid OldOtherOps");
1369     case PHIOp            : return Instruction::PHI;
1370     case CallOp           : return Instruction::Call;
1371     case SelectOp         : return Instruction::Select;
1372     case UserOp1          : return Instruction::UserOp1;
1373     case UserOp2          : return Instruction::UserOp2;
1374     case VAArg            : return Instruction::VAArg;
1375     case ExtractElementOp : return Instruction::ExtractElement;
1376     case InsertElementOp  : return Instruction::InsertElement;
1377     case ShuffleVectorOp  : return Instruction::ShuffleVector;
1378     case ICmpOp           : return Instruction::ICmp;
1379     case FCmpOp           : return Instruction::FCmp;
1380   };
1381 }
1382
1383 static inline Value*
1384 getCast(CastOps op, Value *Src, const Signedness &SrcSign, const Type *DstTy, 
1385         const Signedness &DstSign, bool ForceInstruction = false) {
1386   Instruction::CastOps Opcode;
1387   const Type* SrcTy = Src->getType();
1388   if (op == CastOp) {
1389     if (SrcTy->isFloatingPoint() && isa<PointerType>(DstTy)) {
1390       // fp -> ptr cast is no longer supported but we must upgrade this
1391       // by doing a double cast: fp -> int -> ptr
1392       SrcTy = Type::Int64Ty;
1393       Opcode = Instruction::IntToPtr;
1394       if (isa<Constant>(Src)) {
1395         Src = ConstantExpr::getCast(Instruction::FPToUI, 
1396                                      cast<Constant>(Src), SrcTy);
1397       } else {
1398         std::string NewName(makeNameUnique(Src->getName()));
1399         Src = new FPToUIInst(Src, SrcTy, NewName, CurBB);
1400       }
1401     } else if (isa<IntegerType>(DstTy) &&
1402                cast<IntegerType>(DstTy)->getBitWidth() == 1) {
1403       // cast type %x to bool was previously defined as setne type %x, null
1404       // The cast semantic is now to truncate, not compare so we must retain
1405       // the original intent by replacing the cast with a setne
1406       Constant* Null = Constant::getNullValue(SrcTy);
1407       Instruction::OtherOps Opcode = Instruction::ICmp;
1408       unsigned short predicate = ICmpInst::ICMP_NE;
1409       if (SrcTy->isFloatingPoint()) {
1410         Opcode = Instruction::FCmp;
1411         predicate = FCmpInst::FCMP_ONE;
1412       } else if (!SrcTy->isInteger() && !isa<PointerType>(SrcTy)) {
1413         error("Invalid cast to bool");
1414       }
1415       if (isa<Constant>(Src) && !ForceInstruction)
1416         return ConstantExpr::getCompare(predicate, cast<Constant>(Src), Null);
1417       else
1418         return CmpInst::create(Opcode, predicate, Src, Null);
1419     }
1420     // Determine the opcode to use by calling CastInst::getCastOpcode
1421     Opcode = 
1422       CastInst::getCastOpcode(Src, SrcSign.isSigned(), DstTy, 
1423                               DstSign.isSigned());
1424
1425   } else switch (op) {
1426     default: assert(0 && "Invalid cast token");
1427     case TruncOp:    Opcode = Instruction::Trunc; break;
1428     case ZExtOp:     Opcode = Instruction::ZExt; break;
1429     case SExtOp:     Opcode = Instruction::SExt; break;
1430     case FPTruncOp:  Opcode = Instruction::FPTrunc; break;
1431     case FPExtOp:    Opcode = Instruction::FPExt; break;
1432     case FPToUIOp:   Opcode = Instruction::FPToUI; break;
1433     case FPToSIOp:   Opcode = Instruction::FPToSI; break;
1434     case UIToFPOp:   Opcode = Instruction::UIToFP; break;
1435     case SIToFPOp:   Opcode = Instruction::SIToFP; break;
1436     case PtrToIntOp: Opcode = Instruction::PtrToInt; break;
1437     case IntToPtrOp: Opcode = Instruction::IntToPtr; break;
1438     case BitCastOp:  Opcode = Instruction::BitCast; break;
1439   }
1440
1441   if (isa<Constant>(Src) && !ForceInstruction)
1442     return ConstantExpr::getCast(Opcode, cast<Constant>(Src), DstTy);
1443   return CastInst::create(Opcode, Src, DstTy);
1444 }
1445
1446 static Instruction *
1447 upgradeIntrinsicCall(const Type* RetTy, const ValID &ID, 
1448                      std::vector<Value*>& Args) {
1449
1450   std::string Name = ID.Type == ValID::NameVal ? ID.Name : "";
1451   switch (Name[5]) {
1452     case 'i':
1453       if (Name == "llvm.isunordered.f32" || Name == "llvm.isunordered.f64") {
1454         if (Args.size() != 2)
1455           error("Invalid prototype for " + Name);
1456         return new FCmpInst(FCmpInst::FCMP_UNO, Args[0], Args[1]);
1457       }
1458       break;
1459     case 'b':
1460       if (Name.length() == 14 && !memcmp(&Name[5], "bswap.i", 7)) {
1461         const Type* ArgTy = Args[0]->getType();
1462         Name += ".i" + utostr(cast<IntegerType>(ArgTy)->getBitWidth());
1463         Function *F = cast<Function>(
1464           CurModule.CurrentModule->getOrInsertFunction(Name, RetTy, ArgTy, 
1465                                                        (void*)0));
1466         return new CallInst(F, Args[0]);
1467       }
1468       break;
1469     case 'c':
1470       if ((Name.length() <= 14 && !memcmp(&Name[5], "ctpop.i", 7)) ||
1471           (Name.length() <= 13 && !memcmp(&Name[5], "ctlz.i", 6)) ||
1472           (Name.length() <= 13 && !memcmp(&Name[5], "cttz.i", 6))) {
1473         // These intrinsics changed their result type.
1474         const Type* ArgTy = Args[0]->getType();
1475         Function *OldF = CurModule.CurrentModule->getFunction(Name);
1476         if (OldF)
1477           OldF->setName("upgrd.rm." + Name);
1478
1479         Function *NewF = cast<Function>(
1480           CurModule.CurrentModule->getOrInsertFunction(Name, Type::Int32Ty, 
1481                                                        ArgTy, (void*)0));
1482
1483         Instruction *Call = new CallInst(NewF, Args[0], "", CurBB);
1484         return CastInst::createIntegerCast(Call, RetTy, false);
1485       }
1486       break;
1487
1488     case 'v' : {
1489       const Type* PtrTy = PointerType::get(Type::Int8Ty);
1490       std::vector<const Type*> Params;
1491       if (Name == "llvm.va_start" || Name == "llvm.va_end") {
1492         if (Args.size() != 1)
1493           error("Invalid prototype for " + Name + " prototype");
1494         Params.push_back(PtrTy);
1495         const FunctionType *FTy = 
1496           FunctionType::get(Type::VoidTy, Params, false);
1497         const PointerType *PFTy = PointerType::get(FTy);
1498         Value* Func = getVal(PFTy, ID);
1499         Args[0] = new BitCastInst(Args[0], PtrTy, makeNameUnique("va"), CurBB);
1500         return new CallInst(Func, &Args[0], Args.size());
1501       } else if (Name == "llvm.va_copy") {
1502         if (Args.size() != 2)
1503           error("Invalid prototype for " + Name + " prototype");
1504         Params.push_back(PtrTy);
1505         Params.push_back(PtrTy);
1506         const FunctionType *FTy = 
1507           FunctionType::get(Type::VoidTy, Params, false);
1508         const PointerType *PFTy = PointerType::get(FTy);
1509         Value* Func = getVal(PFTy, ID);
1510         std::string InstName0(makeNameUnique("va0"));
1511         std::string InstName1(makeNameUnique("va1"));
1512         Args[0] = new BitCastInst(Args[0], PtrTy, InstName0, CurBB);
1513         Args[1] = new BitCastInst(Args[1], PtrTy, InstName1, CurBB);
1514         return new CallInst(Func, &Args[0], Args.size());
1515       }
1516     }
1517   }
1518   return 0;
1519 }
1520
1521 const Type* upgradeGEPIndices(const Type* PTy, 
1522                        std::vector<ValueInfo> *Indices, 
1523                        std::vector<Value*>    &VIndices, 
1524                        std::vector<Constant*> *CIndices = 0) {
1525   // Traverse the indices with a gep_type_iterator so we can build the list
1526   // of constant and value indices for use later. Also perform upgrades
1527   VIndices.clear();
1528   if (CIndices) CIndices->clear();
1529   for (unsigned i = 0, e = Indices->size(); i != e; ++i)
1530     VIndices.push_back((*Indices)[i].V);
1531   generic_gep_type_iterator<std::vector<Value*>::iterator>
1532     GTI = gep_type_begin(PTy, VIndices.begin(),  VIndices.end()),
1533     GTE = gep_type_end(PTy,  VIndices.begin(),  VIndices.end());
1534   for (unsigned i = 0, e = Indices->size(); i != e && GTI != GTE; ++i, ++GTI) {
1535     Value *Index = VIndices[i];
1536     if (CIndices && !isa<Constant>(Index))
1537       error("Indices to constant getelementptr must be constants");
1538     // LLVM 1.2 and earlier used ubyte struct indices.  Convert any ubyte 
1539     // struct indices to i32 struct indices with ZExt for compatibility.
1540     else if (isa<StructType>(*GTI)) {        // Only change struct indices
1541       if (ConstantInt *CUI = dyn_cast<ConstantInt>(Index))
1542         if (CUI->getType()->getBitWidth() == 8)
1543           Index = 
1544             ConstantExpr::getCast(Instruction::ZExt, CUI, Type::Int32Ty);
1545     } else {
1546       // Make sure that unsigned SequentialType indices are zext'd to 
1547       // 64-bits if they were smaller than that because LLVM 2.0 will sext 
1548       // all indices for SequentialType elements. We must retain the same 
1549       // semantic (zext) for unsigned types.
1550       if (const IntegerType *Ity = dyn_cast<IntegerType>(Index->getType()))
1551         if (Ity->getBitWidth() < 64 && (*Indices)[i].S.isUnsigned()) {
1552           if (CIndices)
1553             Index = ConstantExpr::getCast(Instruction::ZExt, 
1554               cast<Constant>(Index), Type::Int64Ty);
1555           else
1556             Index = CastInst::create(Instruction::ZExt, Index, Type::Int64Ty,
1557               makeNameUnique("gep"), CurBB);
1558           VIndices[i] = Index;
1559         }
1560     }
1561     // Add to the CIndices list, if requested.
1562     if (CIndices)
1563       CIndices->push_back(cast<Constant>(Index));
1564   }
1565
1566   const Type *IdxTy =
1567     GetElementPtrInst::getIndexedType(PTy, &VIndices[0], VIndices.size(), true);
1568     if (!IdxTy)
1569       error("Index list invalid for constant getelementptr");
1570   return IdxTy;
1571 }
1572
1573 unsigned upgradeCallingConv(unsigned CC) {
1574   switch (CC) {
1575     case OldCallingConv::C           : return CallingConv::C;
1576     case OldCallingConv::CSRet       : return CallingConv::C;
1577     case OldCallingConv::Fast        : return CallingConv::Fast;
1578     case OldCallingConv::Cold        : return CallingConv::Cold;
1579     case OldCallingConv::X86_StdCall : return CallingConv::X86_StdCall;
1580     case OldCallingConv::X86_FastCall: return CallingConv::X86_FastCall;
1581     default:
1582       return CC;
1583   }
1584 }
1585
1586 Module* UpgradeAssembly(const std::string &infile, std::istream& in, 
1587                               bool debug, bool addAttrs)
1588 {
1589   Upgradelineno = 1; 
1590   CurFilename = infile;
1591   LexInput = &in;
1592   yydebug = debug;
1593   AddAttributes = addAttrs;
1594   ObsoleteVarArgs = false;
1595   NewVarArgs = false;
1596
1597   CurModule.CurrentModule = new Module(CurFilename);
1598
1599   // Check to make sure the parser succeeded
1600   if (yyparse()) {
1601     if (ParserResult)
1602       delete ParserResult;
1603     std::cerr << "llvm-upgrade: parse failed.\n";
1604     return 0;
1605   }
1606
1607   // Check to make sure that parsing produced a result
1608   if (!ParserResult) {
1609     std::cerr << "llvm-upgrade: no parse result.\n";
1610     return 0;
1611   }
1612
1613   // Reset ParserResult variable while saving its value for the result.
1614   Module *Result = ParserResult;
1615   ParserResult = 0;
1616
1617   //Not all functions use vaarg, so make a second check for ObsoleteVarArgs
1618   {
1619     Function* F;
1620     if ((F = Result->getFunction("llvm.va_start"))
1621         && F->getFunctionType()->getNumParams() == 0)
1622       ObsoleteVarArgs = true;
1623     if((F = Result->getFunction("llvm.va_copy"))
1624        && F->getFunctionType()->getNumParams() == 1)
1625       ObsoleteVarArgs = true;
1626   }
1627
1628   if (ObsoleteVarArgs && NewVarArgs) {
1629     error("This file is corrupt: it uses both new and old style varargs");
1630     return 0;
1631   }
1632
1633   if(ObsoleteVarArgs) {
1634     if(Function* F = Result->getFunction("llvm.va_start")) {
1635       if (F->arg_size() != 0) {
1636         error("Obsolete va_start takes 0 argument");
1637         return 0;
1638       }
1639       
1640       //foo = va_start()
1641       // ->
1642       //bar = alloca typeof(foo)
1643       //va_start(bar)
1644       //foo = load bar
1645
1646       const Type* RetTy = Type::getPrimitiveType(Type::VoidTyID);
1647       const Type* ArgTy = F->getFunctionType()->getReturnType();
1648       const Type* ArgTyPtr = PointerType::get(ArgTy);
1649       Function* NF = cast<Function>(Result->getOrInsertFunction(
1650         "llvm.va_start", RetTy, ArgTyPtr, (Type *)0));
1651
1652       while (!F->use_empty()) {
1653         CallInst* CI = cast<CallInst>(F->use_back());
1654         AllocaInst* bar = new AllocaInst(ArgTy, 0, "vastart.fix.1", CI);
1655         new CallInst(NF, bar, "", CI);
1656         Value* foo = new LoadInst(bar, "vastart.fix.2", CI);
1657         CI->replaceAllUsesWith(foo);
1658         CI->getParent()->getInstList().erase(CI);
1659       }
1660       Result->getFunctionList().erase(F);
1661     }
1662     
1663     if(Function* F = Result->getFunction("llvm.va_end")) {
1664       if(F->arg_size() != 1) {
1665         error("Obsolete va_end takes 1 argument");
1666         return 0;
1667       }
1668
1669       //vaend foo
1670       // ->
1671       //bar = alloca 1 of typeof(foo)
1672       //vaend bar
1673       const Type* RetTy = Type::getPrimitiveType(Type::VoidTyID);
1674       const Type* ArgTy = F->getFunctionType()->getParamType(0);
1675       const Type* ArgTyPtr = PointerType::get(ArgTy);
1676       Function* NF = cast<Function>(Result->getOrInsertFunction(
1677         "llvm.va_end", RetTy, ArgTyPtr, (Type *)0));
1678
1679       while (!F->use_empty()) {
1680         CallInst* CI = cast<CallInst>(F->use_back());
1681         AllocaInst* bar = new AllocaInst(ArgTy, 0, "vaend.fix.1", CI);
1682         new StoreInst(CI->getOperand(1), bar, CI);
1683         new CallInst(NF, bar, "", CI);
1684         CI->getParent()->getInstList().erase(CI);
1685       }
1686       Result->getFunctionList().erase(F);
1687     }
1688
1689     if(Function* F = Result->getFunction("llvm.va_copy")) {
1690       if(F->arg_size() != 1) {
1691         error("Obsolete va_copy takes 1 argument");
1692         return 0;
1693       }
1694       //foo = vacopy(bar)
1695       // ->
1696       //a = alloca 1 of typeof(foo)
1697       //b = alloca 1 of typeof(foo)
1698       //store bar -> b
1699       //vacopy(a, b)
1700       //foo = load a
1701       
1702       const Type* RetTy = Type::getPrimitiveType(Type::VoidTyID);
1703       const Type* ArgTy = F->getFunctionType()->getReturnType();
1704       const Type* ArgTyPtr = PointerType::get(ArgTy);
1705       Function* NF = cast<Function>(Result->getOrInsertFunction(
1706         "llvm.va_copy", RetTy, ArgTyPtr, ArgTyPtr, (Type *)0));
1707
1708       while (!F->use_empty()) {
1709         CallInst* CI = cast<CallInst>(F->use_back());
1710         AllocaInst* a = new AllocaInst(ArgTy, 0, "vacopy.fix.1", CI);
1711         AllocaInst* b = new AllocaInst(ArgTy, 0, "vacopy.fix.2", CI);
1712         new StoreInst(CI->getOperand(1), b, CI);
1713         new CallInst(NF, a, b, "", CI);
1714         Value* foo = new LoadInst(a, "vacopy.fix.3", CI);
1715         CI->replaceAllUsesWith(foo);
1716         CI->getParent()->getInstList().erase(CI);
1717       }
1718       Result->getFunctionList().erase(F);
1719     }
1720   }
1721
1722   return Result;
1723 }
1724
1725 } // end llvm namespace
1726
1727 using namespace llvm;
1728
1729 %}
1730
1731 %union {
1732   llvm::Module                           *ModuleVal;
1733   llvm::Function                         *FunctionVal;
1734   std::pair<llvm::PATypeInfo, char*>     *ArgVal;
1735   llvm::BasicBlock                       *BasicBlockVal;
1736   llvm::TermInstInfo                     TermInstVal;
1737   llvm::InstrInfo                        InstVal;
1738   llvm::ConstInfo                        ConstVal;
1739   llvm::ValueInfo                        ValueVal;
1740   llvm::PATypeInfo                       TypeVal;
1741   llvm::TypeInfo                         PrimType;
1742   llvm::PHIListInfo                      PHIList;
1743   std::list<llvm::PATypeInfo>            *TypeList;
1744   std::vector<llvm::ValueInfo>           *ValueList;
1745   std::vector<llvm::ConstInfo>           *ConstVector;
1746
1747
1748   std::vector<std::pair<llvm::PATypeInfo,char*> > *ArgList;
1749   // Represent the RHS of PHI node
1750   std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
1751
1752   llvm::GlobalValue::LinkageTypes         Linkage;
1753   int64_t                           SInt64Val;
1754   uint64_t                          UInt64Val;
1755   int                               SIntVal;
1756   unsigned                          UIntVal;
1757   double                            FPVal;
1758   bool                              BoolVal;
1759
1760   char                             *StrVal;   // This memory is strdup'd!
1761   llvm::ValID                       ValIDVal; // strdup'd memory maybe!
1762
1763   llvm::BinaryOps                   BinaryOpVal;
1764   llvm::TermOps                     TermOpVal;
1765   llvm::MemoryOps                   MemOpVal;
1766   llvm::OtherOps                    OtherOpVal;
1767   llvm::CastOps                     CastOpVal;
1768   llvm::ICmpInst::Predicate         IPred;
1769   llvm::FCmpInst::Predicate         FPred;
1770   llvm::Module::Endianness          Endianness;
1771 }
1772
1773 %type <ModuleVal>     Module FunctionList
1774 %type <FunctionVal>   Function FunctionProto FunctionHeader BasicBlockList
1775 %type <BasicBlockVal> BasicBlock InstructionList
1776 %type <TermInstVal>   BBTerminatorInst
1777 %type <InstVal>       Inst InstVal MemoryInst
1778 %type <ConstVal>      ConstVal ConstExpr
1779 %type <ConstVector>   ConstVector
1780 %type <ArgList>       ArgList ArgListH
1781 %type <ArgVal>        ArgVal
1782 %type <PHIList>       PHIList
1783 %type <ValueList>     ValueRefList ValueRefListE  // For call param lists
1784 %type <ValueList>     IndexList                   // For GEP derived indices
1785 %type <TypeList>      TypeListI ArgTypeListI
1786 %type <JumpTable>     JumpTable
1787 %type <BoolVal>       GlobalType                  // GLOBAL or CONSTANT?
1788 %type <BoolVal>       OptVolatile                 // 'volatile' or not
1789 %type <BoolVal>       OptTailCall                 // TAIL CALL or plain CALL.
1790 %type <BoolVal>       OptSideEffect               // 'sideeffect' or not.
1791 %type <Linkage>       OptLinkage FnDeclareLinkage
1792 %type <Endianness>    BigOrLittle
1793
1794 // ValueRef - Unresolved reference to a definition or BB
1795 %type <ValIDVal>      ValueRef ConstValueRef SymbolicValueRef
1796 %type <ValueVal>      ResolvedVal            // <type> <valref> pair
1797
1798 // Tokens and types for handling constant integer values
1799 //
1800 // ESINT64VAL - A negative number within long long range
1801 %token <SInt64Val> ESINT64VAL
1802
1803 // EUINT64VAL - A positive number within uns. long long range
1804 %token <UInt64Val> EUINT64VAL
1805 %type  <SInt64Val> EINT64VAL
1806
1807 %token  <SIntVal>   SINTVAL   // Signed 32 bit ints...
1808 %token  <UIntVal>   UINTVAL   // Unsigned 32 bit ints...
1809 %type   <SIntVal>   INTVAL
1810 %token  <FPVal>     FPVAL     // Float or Double constant
1811
1812 // Built in types...
1813 %type  <TypeVal> Types TypesV UpRTypes UpRTypesV
1814 %type  <PrimType> SIntType UIntType IntType FPType PrimType // Classifications
1815 %token <PrimType> VOID BOOL SBYTE UBYTE SHORT USHORT INT UINT LONG ULONG
1816 %token <PrimType> FLOAT DOUBLE TYPE LABEL
1817
1818 %token <StrVal> VAR_ID LABELSTR STRINGCONSTANT
1819 %type  <StrVal> Name OptName OptAssign
1820 %type  <UIntVal> OptAlign OptCAlign
1821 %type <StrVal> OptSection SectionString
1822
1823 %token IMPLEMENTATION ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
1824 %token DECLARE GLOBAL CONSTANT SECTION VOLATILE
1825 %token TO DOTDOTDOT NULL_TOK UNDEF CONST INTERNAL LINKONCE WEAK APPENDING
1826 %token DLLIMPORT DLLEXPORT EXTERN_WEAK
1827 %token OPAQUE NOT EXTERNAL TARGET TRIPLE ENDIAN POINTERSIZE LITTLE BIG ALIGN
1828 %token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
1829 %token CC_TOK CCC_TOK CSRETCC_TOK FASTCC_TOK COLDCC_TOK
1830 %token X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
1831 %token DATALAYOUT
1832 %type <UIntVal> OptCallingConv
1833
1834 // Basic Block Terminating Operators
1835 %token <TermOpVal> RET BR SWITCH INVOKE UNREACHABLE
1836 %token UNWIND EXCEPT
1837
1838 // Binary Operators
1839 %type  <BinaryOpVal> ArithmeticOps LogicalOps SetCondOps // Binops Subcatagories
1840 %type  <BinaryOpVal> ShiftOps
1841 %token <BinaryOpVal> ADD SUB MUL DIV UDIV SDIV FDIV REM UREM SREM FREM 
1842 %token <BinaryOpVal> AND OR XOR SHL SHR ASHR LSHR 
1843 %token <BinaryOpVal> SETLE SETGE SETLT SETGT SETEQ SETNE  // Binary Comparators
1844 %token <OtherOpVal> ICMP FCMP
1845
1846 // Memory Instructions
1847 %token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
1848
1849 // Other Operators
1850 %token <OtherOpVal> PHI_TOK SELECT VAARG
1851 %token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
1852 %token VAARG_old VANEXT_old //OBSOLETE
1853
1854 // Support for ICmp/FCmp Predicates, which is 1.9++ but not 2.0
1855 %type  <IPred> IPredicates
1856 %type  <FPred> FPredicates
1857 %token  EQ NE SLT SGT SLE SGE ULT UGT ULE UGE 
1858 %token  OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
1859
1860 %token <CastOpVal> CAST TRUNC ZEXT SEXT FPTRUNC FPEXT FPTOUI FPTOSI 
1861 %token <CastOpVal> UITOFP SITOFP PTRTOINT INTTOPTR BITCAST 
1862 %type  <CastOpVal> CastOps
1863
1864 %start Module
1865
1866 %%
1867
1868 // Handle constant integer size restriction and conversion...
1869 //
1870 INTVAL 
1871   : SINTVAL
1872   | UINTVAL {
1873     if ($1 > (uint32_t)INT32_MAX)     // Outside of my range!
1874       error("Value too large for type");
1875     $$ = (int32_t)$1;
1876   }
1877   ;
1878
1879 EINT64VAL 
1880   : ESINT64VAL       // These have same type and can't cause problems...
1881   | EUINT64VAL {
1882     if ($1 > (uint64_t)INT64_MAX)     // Outside of my range!
1883       error("Value too large for type");
1884     $$ = (int64_t)$1;
1885   };
1886
1887 // Operations that are notably excluded from this list include:
1888 // RET, BR, & SWITCH because they end basic blocks and are treated specially.
1889 //
1890 ArithmeticOps
1891   : ADD | SUB | MUL | DIV | UDIV | SDIV | FDIV | REM | UREM | SREM | FREM
1892   ;
1893
1894 LogicalOps   
1895   : AND | OR | XOR
1896   ;
1897
1898 SetCondOps   
1899   : SETLE | SETGE | SETLT | SETGT | SETEQ | SETNE
1900   ;
1901
1902 IPredicates  
1903   : EQ   { $$ = ICmpInst::ICMP_EQ; }  | NE   { $$ = ICmpInst::ICMP_NE; }
1904   | SLT  { $$ = ICmpInst::ICMP_SLT; } | SGT  { $$ = ICmpInst::ICMP_SGT; }
1905   | SLE  { $$ = ICmpInst::ICMP_SLE; } | SGE  { $$ = ICmpInst::ICMP_SGE; }
1906   | ULT  { $$ = ICmpInst::ICMP_ULT; } | UGT  { $$ = ICmpInst::ICMP_UGT; }
1907   | ULE  { $$ = ICmpInst::ICMP_ULE; } | UGE  { $$ = ICmpInst::ICMP_UGE; } 
1908   ;
1909
1910 FPredicates  
1911   : OEQ  { $$ = FCmpInst::FCMP_OEQ; } | ONE  { $$ = FCmpInst::FCMP_ONE; }
1912   | OLT  { $$ = FCmpInst::FCMP_OLT; } | OGT  { $$ = FCmpInst::FCMP_OGT; }
1913   | OLE  { $$ = FCmpInst::FCMP_OLE; } | OGE  { $$ = FCmpInst::FCMP_OGE; }
1914   | ORD  { $$ = FCmpInst::FCMP_ORD; } | UNO  { $$ = FCmpInst::FCMP_UNO; }
1915   | UEQ  { $$ = FCmpInst::FCMP_UEQ; } | UNE  { $$ = FCmpInst::FCMP_UNE; }
1916   | ULT  { $$ = FCmpInst::FCMP_ULT; } | UGT  { $$ = FCmpInst::FCMP_UGT; }
1917   | ULE  { $$ = FCmpInst::FCMP_ULE; } | UGE  { $$ = FCmpInst::FCMP_UGE; }
1918   | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1919   | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1920   ;
1921 ShiftOps  
1922   : SHL | SHR | ASHR | LSHR
1923   ;
1924
1925 CastOps      
1926   : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | FPTOUI | FPTOSI 
1927   | UITOFP | SITOFP | PTRTOINT | INTTOPTR | BITCAST | CAST
1928   ;
1929
1930 // These are some types that allow classification if we only want a particular 
1931 // thing... for example, only a signed, unsigned, or integral type.
1932 SIntType 
1933   :  LONG |  INT |  SHORT | SBYTE
1934   ;
1935
1936 UIntType 
1937   : ULONG | UINT | USHORT | UBYTE
1938   ;
1939
1940 IntType  
1941   : SIntType | UIntType
1942   ;
1943
1944 FPType   
1945   : FLOAT | DOUBLE
1946   ;
1947
1948 // OptAssign - Value producing statements have an optional assignment component
1949 OptAssign 
1950   : Name '=' {
1951     $$ = $1;
1952   }
1953   | /*empty*/ {
1954     $$ = 0;
1955   };
1956
1957 OptLinkage 
1958   : INTERNAL    { $$ = GlobalValue::InternalLinkage; }
1959   | LINKONCE    { $$ = GlobalValue::LinkOnceLinkage; } 
1960   | WEAK        { $$ = GlobalValue::WeakLinkage; } 
1961   | APPENDING   { $$ = GlobalValue::AppendingLinkage; } 
1962   | DLLIMPORT   { $$ = GlobalValue::DLLImportLinkage; } 
1963   | DLLEXPORT   { $$ = GlobalValue::DLLExportLinkage; } 
1964   | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1965   | /*empty*/   { $$ = GlobalValue::ExternalLinkage; }
1966   ;
1967
1968 OptCallingConv 
1969   : /*empty*/          { $$ = OldCallingConv::C; } 
1970   | CCC_TOK            { $$ = OldCallingConv::C; } 
1971   | CSRETCC_TOK        { $$ = OldCallingConv::CSRet; } 
1972   | FASTCC_TOK         { $$ = OldCallingConv::Fast; } 
1973   | COLDCC_TOK         { $$ = OldCallingConv::Cold; } 
1974   | X86_STDCALLCC_TOK  { $$ = OldCallingConv::X86_StdCall; } 
1975   | X86_FASTCALLCC_TOK { $$ = OldCallingConv::X86_FastCall; } 
1976   | CC_TOK EUINT64VAL  {
1977     if ((unsigned)$2 != $2)
1978       error("Calling conv too large");
1979     $$ = $2;
1980   }
1981   ;
1982
1983 // OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1984 // a comma before it.
1985 OptAlign 
1986   : /*empty*/        { $$ = 0; } 
1987   | ALIGN EUINT64VAL {
1988     $$ = $2;
1989     if ($$ != 0 && !isPowerOf2_32($$))
1990       error("Alignment must be a power of two");
1991   }
1992   ;
1993
1994 OptCAlign 
1995   : /*empty*/ { $$ = 0; } 
1996   | ',' ALIGN EUINT64VAL {
1997     $$ = $3;
1998     if ($$ != 0 && !isPowerOf2_32($$))
1999       error("Alignment must be a power of two");
2000   }
2001   ;
2002
2003 SectionString 
2004   : SECTION STRINGCONSTANT {
2005     for (unsigned i = 0, e = strlen($2); i != e; ++i)
2006       if ($2[i] == '"' || $2[i] == '\\')
2007         error("Invalid character in section name");
2008     $$ = $2;
2009   }
2010   ;
2011
2012 OptSection 
2013   : /*empty*/ { $$ = 0; } 
2014   | SectionString { $$ = $1; }
2015   ;
2016
2017 // GlobalVarAttributes - Used to pass the attributes string on a global.  CurGV
2018 // is set to be the global we are processing.
2019 //
2020 GlobalVarAttributes 
2021   : /* empty */ {} 
2022   | ',' GlobalVarAttribute GlobalVarAttributes {}
2023   ;
2024
2025 GlobalVarAttribute
2026   : SectionString {
2027     CurGV->setSection($1);
2028     free($1);
2029   } 
2030   | ALIGN EUINT64VAL {
2031     if ($2 != 0 && !isPowerOf2_32($2))
2032       error("Alignment must be a power of two");
2033     CurGV->setAlignment($2);
2034     
2035   }
2036   ;
2037
2038 //===----------------------------------------------------------------------===//
2039 // Types includes all predefined types... except void, because it can only be
2040 // used in specific contexts (function returning void for example).  To have
2041 // access to it, a user must explicitly use TypesV.
2042 //
2043
2044 // TypesV includes all of 'Types', but it also includes the void type.
2045 TypesV    
2046   : Types
2047   | VOID { 
2048     $$.PAT = new PATypeHolder($1.T); 
2049     $$.S.makeSignless();
2050   }
2051   ;
2052
2053 UpRTypesV 
2054   : UpRTypes 
2055   | VOID { 
2056     $$.PAT = new PATypeHolder($1.T); 
2057     $$.S.makeSignless();
2058   }
2059   ;
2060
2061 Types
2062   : UpRTypes {
2063     if (!UpRefs.empty())
2064       error("Invalid upreference in type: " + (*$1.PAT)->getDescription());
2065     $$ = $1;
2066   }
2067   ;
2068
2069 PrimType
2070   : BOOL | SBYTE | UBYTE | SHORT  | USHORT | INT   | UINT 
2071   | LONG | ULONG | FLOAT | DOUBLE | LABEL
2072   ;
2073
2074 // Derived types are added later...
2075 UpRTypes 
2076   : PrimType { 
2077     $$.PAT = new PATypeHolder($1.T);
2078     $$.S.copy($1.S);
2079   }
2080   | OPAQUE {
2081     $$.PAT = new PATypeHolder(OpaqueType::get());
2082     $$.S.makeSignless();
2083   }
2084   | SymbolicValueRef {            // Named types are also simple types...
2085     $$.S.copy(getTypeSign($1));
2086     const Type* tmp = getType($1);
2087     $$.PAT = new PATypeHolder(tmp);
2088   }
2089   | '\\' EUINT64VAL {                   // Type UpReference
2090     if ($2 > (uint64_t)~0U) 
2091       error("Value out of range");
2092     OpaqueType *OT = OpaqueType::get();        // Use temporary placeholder
2093     UpRefs.push_back(UpRefRecord((unsigned)$2, OT));  // Add to vector...
2094     $$.PAT = new PATypeHolder(OT);
2095     $$.S.makeSignless();
2096     UR_OUT("New Upreference!\n");
2097   }
2098   | UpRTypesV '(' ArgTypeListI ')' {           // Function derived type?
2099     $$.S.makeComposite($1.S);
2100     std::vector<const Type*> Params;
2101     for (std::list<llvm::PATypeInfo>::iterator I = $3->begin(),
2102            E = $3->end(); I != E; ++I) {
2103       Params.push_back(I->PAT->get());
2104       $$.S.add(I->S);
2105     }
2106     FunctionType::ParamAttrsList ParamAttrs;
2107     bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
2108     if (isVarArg) Params.pop_back();
2109
2110     $$.PAT = new PATypeHolder(
2111       HandleUpRefs(FunctionType::get($1.PAT->get(), Params, isVarArg, 
2112                    ParamAttrs), $$.S));
2113     delete $1.PAT;  // Delete the return type handle
2114     delete $3;      // Delete the argument list
2115   }
2116   | '[' EUINT64VAL 'x' UpRTypes ']' {          // Sized array type?
2117     $$.S.makeComposite($4.S);
2118     $$.PAT = new PATypeHolder(HandleUpRefs(ArrayType::get($4.PAT->get(), 
2119                                            (unsigned)$2), $$.S));
2120     delete $4.PAT;
2121   }
2122   | '<' EUINT64VAL 'x' UpRTypes '>' {          // Vector type?
2123     const llvm::Type* ElemTy = $4.PAT->get();
2124     if ((unsigned)$2 != $2)
2125        error("Unsigned result not equal to signed result");
2126     if (!(ElemTy->isInteger() || ElemTy->isFloatingPoint()))
2127        error("Elements of a VectorType must be integer or floating point");
2128     if (!isPowerOf2_32($2))
2129       error("VectorType length should be a power of 2");
2130     $$.S.makeComposite($4.S);
2131     $$.PAT = new PATypeHolder(HandleUpRefs(VectorType::get(ElemTy, 
2132                                          (unsigned)$2), $$.S));
2133     delete $4.PAT;
2134   }
2135   | '{' TypeListI '}' {                        // Structure type?
2136     std::vector<const Type*> Elements;
2137     $$.S.makeComposite();
2138     for (std::list<llvm::PATypeInfo>::iterator I = $2->begin(),
2139            E = $2->end(); I != E; ++I) {
2140       Elements.push_back(I->PAT->get());
2141       $$.S.add(I->S);
2142     }
2143     $$.PAT = new PATypeHolder(HandleUpRefs(StructType::get(Elements), $$.S));
2144     delete $2;
2145   }
2146   | '{' '}' {                                  // Empty structure type?
2147     $$.PAT = new PATypeHolder(StructType::get(std::vector<const Type*>()));
2148     $$.S.makeComposite();
2149   }
2150   | '<' '{' TypeListI '}' '>' {                // Packed Structure type?
2151     $$.S.makeComposite();
2152     std::vector<const Type*> Elements;
2153     for (std::list<llvm::PATypeInfo>::iterator I = $3->begin(),
2154            E = $3->end(); I != E; ++I) {
2155       Elements.push_back(I->PAT->get());
2156       $$.S.add(I->S);
2157       delete I->PAT;
2158     }
2159     $$.PAT = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true), 
2160                                            $$.S));
2161     delete $3;
2162   }
2163   | '<' '{' '}' '>' {                          // Empty packed structure type?
2164     $$.PAT = new PATypeHolder(StructType::get(std::vector<const Type*>(),true));
2165     $$.S.makeComposite();
2166   }
2167   | UpRTypes '*' {                             // Pointer type?
2168     if ($1.PAT->get() == Type::LabelTy)
2169       error("Cannot form a pointer to a basic block");
2170     $$.S.makeComposite($1.S);
2171     $$.PAT = new PATypeHolder(HandleUpRefs(PointerType::get($1.PAT->get()),
2172                                            $$.S));
2173     delete $1.PAT;
2174   }
2175   ;
2176
2177 // TypeList - Used for struct declarations and as a basis for function type 
2178 // declaration type lists
2179 //
2180 TypeListI 
2181   : UpRTypes {
2182     $$ = new std::list<PATypeInfo>();
2183     $$->push_back($1); 
2184   }
2185   | TypeListI ',' UpRTypes {
2186     ($$=$1)->push_back($3);
2187   }
2188   ;
2189
2190 // ArgTypeList - List of types for a function type declaration...
2191 ArgTypeListI 
2192   : TypeListI
2193   | TypeListI ',' DOTDOTDOT {
2194     PATypeInfo VoidTI;
2195     VoidTI.PAT = new PATypeHolder(Type::VoidTy);
2196     VoidTI.S.makeSignless();
2197     ($$=$1)->push_back(VoidTI);
2198   }
2199   | DOTDOTDOT {
2200     $$ = new std::list<PATypeInfo>();
2201     PATypeInfo VoidTI;
2202     VoidTI.PAT = new PATypeHolder(Type::VoidTy);
2203     VoidTI.S.makeSignless();
2204     $$->push_back(VoidTI);
2205   }
2206   | /*empty*/ {
2207     $$ = new std::list<PATypeInfo>();
2208   }
2209   ;
2210
2211 // ConstVal - The various declarations that go into the constant pool.  This
2212 // production is used ONLY to represent constants that show up AFTER a 'const',
2213 // 'constant' or 'global' token at global scope.  Constants that can be inlined
2214 // into other expressions (such as integers and constexprs) are handled by the
2215 // ResolvedVal, ValueRef and ConstValueRef productions.
2216 //
2217 ConstVal
2218   : Types '[' ConstVector ']' { // Nonempty unsized arr
2219     const ArrayType *ATy = dyn_cast<ArrayType>($1.PAT->get());
2220     if (ATy == 0)
2221       error("Cannot make array constant with type: '" + 
2222             $1.PAT->get()->getDescription() + "'");
2223     const Type *ETy = ATy->getElementType();
2224     int NumElements = ATy->getNumElements();
2225
2226     // Verify that we have the correct size...
2227     if (NumElements != -1 && NumElements != (int)$3->size())
2228       error("Type mismatch: constant sized array initialized with " +
2229             utostr($3->size()) +  " arguments, but has size of " + 
2230             itostr(NumElements) + "");
2231
2232     // Verify all elements are correct type!
2233     std::vector<Constant*> Elems;
2234     for (unsigned i = 0; i < $3->size(); i++) {
2235       Constant *C = (*$3)[i].C;
2236       const Type* ValTy = C->getType();
2237       if (ETy != ValTy)
2238         error("Element #" + utostr(i) + " is not of type '" + 
2239               ETy->getDescription() +"' as required!\nIt is of type '"+
2240               ValTy->getDescription() + "'");
2241       Elems.push_back(C);
2242     }
2243     $$.C = ConstantArray::get(ATy, Elems);
2244     $$.S.copy($1.S);
2245     delete $1.PAT; 
2246     delete $3;
2247   }
2248   | Types '[' ']' {
2249     const ArrayType *ATy = dyn_cast<ArrayType>($1.PAT->get());
2250     if (ATy == 0)
2251       error("Cannot make array constant with type: '" + 
2252             $1.PAT->get()->getDescription() + "'");
2253     int NumElements = ATy->getNumElements();
2254     if (NumElements != -1 && NumElements != 0) 
2255       error("Type mismatch: constant sized array initialized with 0"
2256             " arguments, but has size of " + itostr(NumElements) +"");
2257     $$.C = ConstantArray::get(ATy, std::vector<Constant*>());
2258     $$.S.copy($1.S);
2259     delete $1.PAT;
2260   }
2261   | Types 'c' STRINGCONSTANT {
2262     const ArrayType *ATy = dyn_cast<ArrayType>($1.PAT->get());
2263     if (ATy == 0)
2264       error("Cannot make array constant with type: '" + 
2265             $1.PAT->get()->getDescription() + "'");
2266     int NumElements = ATy->getNumElements();
2267     const Type *ETy = dyn_cast<IntegerType>(ATy->getElementType());
2268     if (!ETy || cast<IntegerType>(ETy)->getBitWidth() != 8)
2269       error("String arrays require type i8, not '" + ETy->getDescription() + 
2270             "'");
2271     char *EndStr = UnEscapeLexed($3, true);
2272     if (NumElements != -1 && NumElements != (EndStr-$3))
2273       error("Can't build string constant of size " + 
2274             itostr((int)(EndStr-$3)) + " when array has size " + 
2275             itostr(NumElements) + "");
2276     std::vector<Constant*> Vals;
2277     for (char *C = (char *)$3; C != (char *)EndStr; ++C)
2278       Vals.push_back(ConstantInt::get(ETy, *C));
2279     free($3);
2280     $$.C = ConstantArray::get(ATy, Vals);
2281     $$.S.copy($1.S);
2282     delete $1.PAT;
2283   }
2284   | Types '<' ConstVector '>' { // Nonempty unsized arr
2285     const VectorType *PTy = dyn_cast<VectorType>($1.PAT->get());
2286     if (PTy == 0)
2287       error("Cannot make packed constant with type: '" + 
2288             $1.PAT->get()->getDescription() + "'");
2289     const Type *ETy = PTy->getElementType();
2290     int NumElements = PTy->getNumElements();
2291     // Verify that we have the correct size...
2292     if (NumElements != -1 && NumElements != (int)$3->size())
2293       error("Type mismatch: constant sized packed initialized with " +
2294             utostr($3->size()) +  " arguments, but has size of " + 
2295             itostr(NumElements) + "");
2296     // Verify all elements are correct type!
2297     std::vector<Constant*> Elems;
2298     for (unsigned i = 0; i < $3->size(); i++) {
2299       Constant *C = (*$3)[i].C;
2300       const Type* ValTy = C->getType();
2301       if (ETy != ValTy)
2302         error("Element #" + utostr(i) + " is not of type '" + 
2303               ETy->getDescription() +"' as required!\nIt is of type '"+
2304               ValTy->getDescription() + "'");
2305       Elems.push_back(C);
2306     }
2307     $$.C = ConstantVector::get(PTy, Elems);
2308     $$.S.copy($1.S);
2309     delete $1.PAT;
2310     delete $3;
2311   }
2312   | Types '{' ConstVector '}' {
2313     const StructType *STy = dyn_cast<StructType>($1.PAT->get());
2314     if (STy == 0)
2315       error("Cannot make struct constant with type: '" + 
2316             $1.PAT->get()->getDescription() + "'");
2317     if ($3->size() != STy->getNumContainedTypes())
2318       error("Illegal number of initializers for structure type");
2319
2320     // Check to ensure that constants are compatible with the type initializer!
2321     std::vector<Constant*> Fields;
2322     for (unsigned i = 0, e = $3->size(); i != e; ++i) {
2323       Constant *C = (*$3)[i].C;
2324       if (C->getType() != STy->getElementType(i))
2325         error("Expected type '" + STy->getElementType(i)->getDescription() +
2326               "' for element #" + utostr(i) + " of structure initializer");
2327       Fields.push_back(C);
2328     }
2329     $$.C = ConstantStruct::get(STy, Fields);
2330     $$.S.copy($1.S);
2331     delete $1.PAT;
2332     delete $3;
2333   }
2334   | Types '{' '}' {
2335     const StructType *STy = dyn_cast<StructType>($1.PAT->get());
2336     if (STy == 0)
2337       error("Cannot make struct constant with type: '" + 
2338               $1.PAT->get()->getDescription() + "'");
2339     if (STy->getNumContainedTypes() != 0)
2340       error("Illegal number of initializers for structure type");
2341     $$.C = ConstantStruct::get(STy, std::vector<Constant*>());
2342     $$.S.copy($1.S);
2343     delete $1.PAT;
2344   }
2345   | Types '<' '{' ConstVector '}' '>' {
2346     const StructType *STy = dyn_cast<StructType>($1.PAT->get());
2347     if (STy == 0)
2348       error("Cannot make packed struct constant with type: '" + 
2349             $1.PAT->get()->getDescription() + "'");
2350     if ($4->size() != STy->getNumContainedTypes())
2351       error("Illegal number of initializers for packed structure type");
2352
2353     // Check to ensure that constants are compatible with the type initializer!
2354     std::vector<Constant*> Fields;
2355     for (unsigned i = 0, e = $4->size(); i != e; ++i) {
2356       Constant *C = (*$4)[i].C;
2357       if (C->getType() != STy->getElementType(i))
2358         error("Expected type '" + STy->getElementType(i)->getDescription() +
2359               "' for element #" + utostr(i) + " of packed struct initializer");
2360       Fields.push_back(C);
2361     }
2362     $$.C = ConstantStruct::get(STy, Fields);
2363     $$.S.copy($1.S);
2364     delete $1.PAT; 
2365     delete $4;
2366   }
2367   | Types '<' '{' '}' '>' {
2368     const StructType *STy = dyn_cast<StructType>($1.PAT->get());
2369     if (STy == 0)
2370       error("Cannot make packed struct constant with type: '" + 
2371               $1.PAT->get()->getDescription() + "'");
2372     if (STy->getNumContainedTypes() != 0)
2373       error("Illegal number of initializers for packed structure type");
2374     $$.C = ConstantStruct::get(STy, std::vector<Constant*>());
2375     $$.S.copy($1.S);
2376     delete $1.PAT;
2377   }
2378   | Types NULL_TOK {
2379     const PointerType *PTy = dyn_cast<PointerType>($1.PAT->get());
2380     if (PTy == 0)
2381       error("Cannot make null pointer constant with type: '" + 
2382             $1.PAT->get()->getDescription() + "'");
2383     $$.C = ConstantPointerNull::get(PTy);
2384     $$.S.copy($1.S);
2385     delete $1.PAT;
2386   }
2387   | Types UNDEF {
2388     $$.C = UndefValue::get($1.PAT->get());
2389     $$.S.copy($1.S);
2390     delete $1.PAT;
2391   }
2392   | Types SymbolicValueRef {
2393     const PointerType *Ty = dyn_cast<PointerType>($1.PAT->get());
2394     if (Ty == 0)
2395       error("Global const reference must be a pointer type, not" +
2396             $1.PAT->get()->getDescription());
2397
2398     // ConstExprs can exist in the body of a function, thus creating
2399     // GlobalValues whenever they refer to a variable.  Because we are in
2400     // the context of a function, getExistingValue will search the functions
2401     // symbol table instead of the module symbol table for the global symbol,
2402     // which throws things all off.  To get around this, we just tell
2403     // getExistingValue that we are at global scope here.
2404     //
2405     Function *SavedCurFn = CurFun.CurrentFunction;
2406     CurFun.CurrentFunction = 0;
2407     $2.S.copy($1.S);
2408     Value *V = getExistingValue(Ty, $2);
2409     CurFun.CurrentFunction = SavedCurFn;
2410
2411     // If this is an initializer for a constant pointer, which is referencing a
2412     // (currently) undefined variable, create a stub now that shall be replaced
2413     // in the future with the right type of variable.
2414     //
2415     if (V == 0) {
2416       assert(isa<PointerType>(Ty) && "Globals may only be used as pointers");
2417       const PointerType *PT = cast<PointerType>(Ty);
2418
2419       // First check to see if the forward references value is already created!
2420       PerModuleInfo::GlobalRefsType::iterator I =
2421         CurModule.GlobalRefs.find(std::make_pair(PT, $2));
2422     
2423       if (I != CurModule.GlobalRefs.end()) {
2424         V = I->second;             // Placeholder already exists, use it...
2425         $2.destroy();
2426       } else {
2427         std::string Name;
2428         if ($2.Type == ValID::NameVal) Name = $2.Name;
2429
2430         // Create the forward referenced global.
2431         GlobalValue *GV;
2432         if (const FunctionType *FTy = 
2433                  dyn_cast<FunctionType>(PT->getElementType())) {
2434           GV = new Function(FTy, GlobalValue::ExternalLinkage, Name,
2435                             CurModule.CurrentModule);
2436         } else {
2437           GV = new GlobalVariable(PT->getElementType(), false,
2438                                   GlobalValue::ExternalLinkage, 0,
2439                                   Name, CurModule.CurrentModule);
2440         }
2441
2442         // Keep track of the fact that we have a forward ref to recycle it
2443         CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
2444         V = GV;
2445       }
2446     }
2447     $$.C = cast<GlobalValue>(V);
2448     $$.S.copy($1.S);
2449     delete $1.PAT;            // Free the type handle
2450   }
2451   | Types ConstExpr {
2452     if ($1.PAT->get() != $2.C->getType())
2453       error("Mismatched types for constant expression");
2454     $$ = $2;
2455     $$.S.copy($1.S);
2456     delete $1.PAT;
2457   }
2458   | Types ZEROINITIALIZER {
2459     const Type *Ty = $1.PAT->get();
2460     if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
2461       error("Cannot create a null initialized value of this type");
2462     $$.C = Constant::getNullValue(Ty);
2463     $$.S.copy($1.S);
2464     delete $1.PAT;
2465   }
2466   | SIntType EINT64VAL {      // integral constants
2467     const Type *Ty = $1.T;
2468     if (!ConstantInt::isValueValidForType(Ty, $2))
2469       error("Constant value doesn't fit in type");
2470     $$.C = ConstantInt::get(Ty, $2);
2471     $$.S.makeSigned();
2472   }
2473   | UIntType EUINT64VAL {            // integral constants
2474     const Type *Ty = $1.T;
2475     if (!ConstantInt::isValueValidForType(Ty, $2))
2476       error("Constant value doesn't fit in type");
2477     $$.C = ConstantInt::get(Ty, $2);
2478     $$.S.makeUnsigned();
2479   }
2480   | BOOL TRUETOK {                      // Boolean constants
2481     $$.C = ConstantInt::get(Type::Int1Ty, true);
2482     $$.S.makeUnsigned();
2483   }
2484   | BOOL FALSETOK {                     // Boolean constants
2485     $$.C = ConstantInt::get(Type::Int1Ty, false);
2486     $$.S.makeUnsigned();
2487   }
2488   | FPType FPVAL {                   // Float & Double constants
2489     if (!ConstantFP::isValueValidForType($1.T, $2))
2490       error("Floating point constant invalid for type");
2491     $$.C = ConstantFP::get($1.T, $2);
2492     $$.S.makeSignless();
2493   }
2494   ;
2495
2496 ConstExpr
2497   : CastOps '(' ConstVal TO Types ')' {
2498     const Type* SrcTy = $3.C->getType();
2499     const Type* DstTy = $5.PAT->get();
2500     Signedness SrcSign($3.S);
2501     Signedness DstSign($5.S);
2502     if (!SrcTy->isFirstClassType())
2503       error("cast constant expression from a non-primitive type: '" +
2504             SrcTy->getDescription() + "'");
2505     if (!DstTy->isFirstClassType())
2506       error("cast constant expression to a non-primitive type: '" +
2507             DstTy->getDescription() + "'");
2508     $$.C = cast<Constant>(getCast($1, $3.C, SrcSign, DstTy, DstSign));
2509     $$.S.copy(DstSign);
2510     delete $5.PAT;
2511   }
2512   | GETELEMENTPTR '(' ConstVal IndexList ')' {
2513     const Type *Ty = $3.C->getType();
2514     if (!isa<PointerType>(Ty))
2515       error("GetElementPtr requires a pointer operand");
2516
2517     std::vector<Value*> VIndices;
2518     std::vector<Constant*> CIndices;
2519     upgradeGEPIndices($3.C->getType(), $4, VIndices, &CIndices);
2520
2521     delete $4;
2522     $$.C = ConstantExpr::getGetElementPtr($3.C, &CIndices[0], CIndices.size());
2523     $$.S.copy(getElementSign($3, CIndices));
2524   }
2525   | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
2526     if (!$3.C->getType()->isInteger() ||
2527         cast<IntegerType>($3.C->getType())->getBitWidth() != 1)
2528       error("Select condition must be bool type");
2529     if ($5.C->getType() != $7.C->getType())
2530       error("Select operand types must match");
2531     $$.C = ConstantExpr::getSelect($3.C, $5.C, $7.C);
2532     $$.S.copy($5.S);
2533   }
2534   | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
2535     const Type *Ty = $3.C->getType();
2536     if (Ty != $5.C->getType())
2537       error("Binary operator types must match");
2538     // First, make sure we're dealing with the right opcode by upgrading from
2539     // obsolete versions.
2540     Instruction::BinaryOps Opcode = getBinaryOp($1, Ty, $3.S);
2541
2542     // HACK: llvm 1.3 and earlier used to emit invalid pointer constant exprs.
2543     // To retain backward compatibility with these early compilers, we emit a
2544     // cast to the appropriate integer type automatically if we are in the
2545     // broken case.  See PR424 for more information.
2546     if (!isa<PointerType>(Ty)) {
2547       $$.C = ConstantExpr::get(Opcode, $3.C, $5.C);
2548     } else {
2549       const Type *IntPtrTy = 0;
2550       switch (CurModule.CurrentModule->getPointerSize()) {
2551       case Module::Pointer32: IntPtrTy = Type::Int32Ty; break;
2552       case Module::Pointer64: IntPtrTy = Type::Int64Ty; break;
2553       default: error("invalid pointer binary constant expr");
2554       }
2555       $$.C = ConstantExpr::get(Opcode, 
2556              ConstantExpr::getCast(Instruction::PtrToInt, $3.C, IntPtrTy),
2557              ConstantExpr::getCast(Instruction::PtrToInt, $5.C, IntPtrTy));
2558       $$.C = ConstantExpr::getCast(Instruction::IntToPtr, $$.C, Ty);
2559     }
2560     $$.S.copy($3.S); 
2561   }
2562   | LogicalOps '(' ConstVal ',' ConstVal ')' {
2563     const Type* Ty = $3.C->getType();
2564     if (Ty != $5.C->getType())
2565       error("Logical operator types must match");
2566     if (!Ty->isInteger()) {
2567       if (!isa<VectorType>(Ty) || 
2568           !cast<VectorType>(Ty)->getElementType()->isInteger())
2569         error("Logical operator requires integer operands");
2570     }
2571     Instruction::BinaryOps Opcode = getBinaryOp($1, Ty, $3.S);
2572     $$.C = ConstantExpr::get(Opcode, $3.C, $5.C);
2573     $$.S.copy($3.S);
2574   }
2575   | SetCondOps '(' ConstVal ',' ConstVal ')' {
2576     const Type* Ty = $3.C->getType();
2577     if (Ty != $5.C->getType())
2578       error("setcc operand types must match");
2579     unsigned short pred;
2580     Instruction::OtherOps Opcode = getCompareOp($1, pred, Ty, $3.S);
2581     $$.C = ConstantExpr::getCompare(Opcode, $3.C, $5.C);
2582     $$.S.makeUnsigned();
2583   }
2584   | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
2585     if ($4.C->getType() != $6.C->getType()) 
2586       error("icmp operand types must match");
2587     $$.C = ConstantExpr::getCompare($2, $4.C, $6.C);
2588     $$.S.makeUnsigned();
2589   }
2590   | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
2591     if ($4.C->getType() != $6.C->getType()) 
2592       error("fcmp operand types must match");
2593     $$.C = ConstantExpr::getCompare($2, $4.C, $6.C);
2594     $$.S.makeUnsigned();
2595   }
2596   | ShiftOps '(' ConstVal ',' ConstVal ')' {
2597     if (!$5.C->getType()->isInteger() ||
2598         cast<IntegerType>($5.C->getType())->getBitWidth() != 8)
2599       error("Shift count for shift constant must be unsigned byte");
2600     const Type* Ty = $3.C->getType();
2601     if (!$3.C->getType()->isInteger())
2602       error("Shift constant expression requires integer operand");
2603     Constant *ShiftAmt = ConstantExpr::getZExt($5.C, Ty);
2604     $$.C = ConstantExpr::get(getBinaryOp($1, Ty, $3.S), $3.C, ShiftAmt);
2605     $$.S.copy($3.S);
2606   }
2607   | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
2608     if (!ExtractElementInst::isValidOperands($3.C, $5.C))
2609       error("Invalid extractelement operands");
2610     $$.C = ConstantExpr::getExtractElement($3.C, $5.C);
2611     $$.S.copy($3.S.get(0));
2612   }
2613   | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
2614     if (!InsertElementInst::isValidOperands($3.C, $5.C, $7.C))
2615       error("Invalid insertelement operands");
2616     $$.C = ConstantExpr::getInsertElement($3.C, $5.C, $7.C);
2617     $$.S.copy($3.S);
2618   }
2619   | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
2620     if (!ShuffleVectorInst::isValidOperands($3.C, $5.C, $7.C))
2621       error("Invalid shufflevector operands");
2622     $$.C = ConstantExpr::getShuffleVector($3.C, $5.C, $7.C);
2623     $$.S.copy($3.S);
2624   }
2625   ;
2626
2627
2628 // ConstVector - A list of comma separated constants.
2629 ConstVector 
2630   : ConstVector ',' ConstVal { ($$ = $1)->push_back($3); }
2631   | ConstVal {
2632     $$ = new std::vector<ConstInfo>();
2633     $$->push_back($1);
2634   }
2635   ;
2636
2637
2638 // GlobalType - Match either GLOBAL or CONSTANT for global declarations...
2639 GlobalType 
2640   : GLOBAL { $$ = false; } 
2641   | CONSTANT { $$ = true; }
2642   ;
2643
2644
2645 //===----------------------------------------------------------------------===//
2646 //                             Rules to match Modules
2647 //===----------------------------------------------------------------------===//
2648
2649 // Module rule: Capture the result of parsing the whole file into a result
2650 // variable...
2651 //
2652 Module 
2653   : FunctionList {
2654     $$ = ParserResult = $1;
2655     CurModule.ModuleDone();
2656   }
2657   ;
2658
2659 // FunctionList - A list of functions, preceeded by a constant pool.
2660 //
2661 FunctionList 
2662   : FunctionList Function { $$ = $1; CurFun.FunctionDone(); } 
2663   | FunctionList FunctionProto { $$ = $1; }
2664   | FunctionList MODULE ASM_TOK AsmBlock { $$ = $1; }  
2665   | FunctionList IMPLEMENTATION { $$ = $1; }
2666   | ConstPool {
2667     $$ = CurModule.CurrentModule;
2668     // Emit an error if there are any unresolved types left.
2669     if (!CurModule.LateResolveTypes.empty()) {
2670       const ValID &DID = CurModule.LateResolveTypes.begin()->first;
2671       if (DID.Type == ValID::NameVal) {
2672         error("Reference to an undefined type: '"+DID.getName() + "'");
2673       } else {
2674         error("Reference to an undefined type: #" + itostr(DID.Num));
2675       }
2676     }
2677   }
2678   ;
2679
2680 // ConstPool - Constants with optional names assigned to them.
2681 ConstPool 
2682   : ConstPool OptAssign TYPE TypesV {
2683     // Eagerly resolve types.  This is not an optimization, this is a
2684     // requirement that is due to the fact that we could have this:
2685     //
2686     // %list = type { %list * }
2687     // %list = type { %list * }    ; repeated type decl
2688     //
2689     // If types are not resolved eagerly, then the two types will not be
2690     // determined to be the same type!
2691     //
2692     ResolveTypeTo($2, $4.PAT->get(), $4.S);
2693
2694     if (!setTypeName($4, $2) && !$2) {
2695       // If this is a numbered type that is not a redefinition, add it to the 
2696       // slot table.
2697       CurModule.Types.push_back($4.PAT->get());
2698       CurModule.TypeSigns.push_back($4.S);
2699     }
2700     delete $4.PAT;
2701   }
2702   | ConstPool FunctionProto {       // Function prototypes can be in const pool
2703   }
2704   | ConstPool MODULE ASM_TOK AsmBlock {  // Asm blocks can be in the const pool
2705   }
2706   | ConstPool OptAssign OptLinkage GlobalType ConstVal {
2707     if ($5.C == 0) 
2708       error("Global value initializer is not a constant");
2709     CurGV = ParseGlobalVariable($2, $3, $4, $5.C->getType(), $5.C, $5.S);
2710   } GlobalVarAttributes {
2711     CurGV = 0;
2712   }
2713   | ConstPool OptAssign EXTERNAL GlobalType Types {
2714     const Type *Ty = $5.PAT->get();
2715     CurGV = ParseGlobalVariable($2, GlobalValue::ExternalLinkage, $4, Ty, 0,
2716                                 $5.S);
2717     delete $5.PAT;
2718   } GlobalVarAttributes {
2719     CurGV = 0;
2720   }
2721   | ConstPool OptAssign DLLIMPORT GlobalType Types {
2722     const Type *Ty = $5.PAT->get();
2723     CurGV = ParseGlobalVariable($2, GlobalValue::DLLImportLinkage, $4, Ty, 0,
2724                                 $5.S);
2725     delete $5.PAT;
2726   } GlobalVarAttributes {
2727     CurGV = 0;
2728   }
2729   | ConstPool OptAssign EXTERN_WEAK GlobalType Types {
2730     const Type *Ty = $5.PAT->get();
2731     CurGV = 
2732       ParseGlobalVariable($2, GlobalValue::ExternalWeakLinkage, $4, Ty, 0, 
2733                           $5.S);
2734     delete $5.PAT;
2735   } GlobalVarAttributes {
2736     CurGV = 0;
2737   }
2738   | ConstPool TARGET TargetDefinition { 
2739   }
2740   | ConstPool DEPLIBS '=' LibrariesDefinition {
2741   }
2742   | /* empty: end of list */ { 
2743   }
2744   ;
2745
2746 AsmBlock 
2747   : STRINGCONSTANT {
2748     const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
2749     char *EndStr = UnEscapeLexed($1, true);
2750     std::string NewAsm($1, EndStr);
2751     free($1);
2752
2753     if (AsmSoFar.empty())
2754       CurModule.CurrentModule->setModuleInlineAsm(NewAsm);
2755     else
2756       CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+NewAsm);
2757   }
2758   ;
2759
2760 BigOrLittle 
2761   : BIG    { $$ = Module::BigEndian; }
2762   | LITTLE { $$ = Module::LittleEndian; }
2763   ;
2764
2765 TargetDefinition 
2766   : ENDIAN '=' BigOrLittle {
2767     CurModule.setEndianness($3);
2768   }
2769   | POINTERSIZE '=' EUINT64VAL {
2770     if ($3 == 32)
2771       CurModule.setPointerSize(Module::Pointer32);
2772     else if ($3 == 64)
2773       CurModule.setPointerSize(Module::Pointer64);
2774     else
2775       error("Invalid pointer size: '" + utostr($3) + "'");
2776   }
2777   | TRIPLE '=' STRINGCONSTANT {
2778     CurModule.CurrentModule->setTargetTriple($3);
2779     free($3);
2780   }
2781   | DATALAYOUT '=' STRINGCONSTANT {
2782     CurModule.CurrentModule->setDataLayout($3);
2783     free($3);
2784   }
2785   ;
2786
2787 LibrariesDefinition 
2788   : '[' LibList ']'
2789   ;
2790
2791 LibList 
2792   : LibList ',' STRINGCONSTANT {
2793       CurModule.CurrentModule->addLibrary($3);
2794       free($3);
2795   }
2796   | STRINGCONSTANT {
2797     CurModule.CurrentModule->addLibrary($1);
2798     free($1);
2799   }
2800   | /* empty: end of list */ { }
2801   ;
2802
2803 //===----------------------------------------------------------------------===//
2804 //                       Rules to match Function Headers
2805 //===----------------------------------------------------------------------===//
2806
2807 Name 
2808   : VAR_ID | STRINGCONSTANT
2809   ;
2810
2811 OptName 
2812   : Name 
2813   | /*empty*/ { $$ = 0; }
2814   ;
2815
2816 ArgVal 
2817   : Types OptName {
2818     if ($1.PAT->get() == Type::VoidTy)
2819       error("void typed arguments are invalid");
2820     $$ = new std::pair<PATypeInfo, char*>($1, $2);
2821   }
2822   ;
2823
2824 ArgListH 
2825   : ArgListH ',' ArgVal {
2826     $$ = $1;
2827     $$->push_back(*$3);
2828     delete $3;
2829   }
2830   | ArgVal {
2831     $$ = new std::vector<std::pair<PATypeInfo,char*> >();
2832     $$->push_back(*$1);
2833     delete $1;
2834   }
2835   ;
2836
2837 ArgList 
2838   : ArgListH { $$ = $1; }
2839   | ArgListH ',' DOTDOTDOT {
2840     $$ = $1;
2841     PATypeInfo VoidTI;
2842     VoidTI.PAT = new PATypeHolder(Type::VoidTy);
2843     VoidTI.S.makeSignless();
2844     $$->push_back(std::pair<PATypeInfo, char*>(VoidTI, 0));
2845   }
2846   | DOTDOTDOT {
2847     $$ = new std::vector<std::pair<PATypeInfo,char*> >();
2848     PATypeInfo VoidTI;
2849     VoidTI.PAT = new PATypeHolder(Type::VoidTy);
2850     VoidTI.S.makeSignless();
2851     $$->push_back(std::pair<PATypeInfo, char*>(VoidTI, 0));
2852   }
2853   | /* empty */ { $$ = 0; }
2854   ;
2855
2856 FunctionHeaderH 
2857   : OptCallingConv TypesV Name '(' ArgList ')' OptSection OptAlign {
2858     UnEscapeLexed($3);
2859     std::string FunctionName($3);
2860     free($3);  // Free strdup'd memory!
2861
2862     const Type* RetTy = $2.PAT->get();
2863     
2864     if (!RetTy->isFirstClassType() && RetTy != Type::VoidTy)
2865       error("LLVM functions cannot return aggregate types");
2866
2867     Signedness FTySign;
2868     FTySign.makeComposite($2.S);
2869     std::vector<const Type*> ParamTyList;
2870
2871     // In LLVM 2.0 the signatures of three varargs intrinsics changed to take
2872     // i8*. We check here for those names and override the parameter list
2873     // types to ensure the prototype is correct.
2874     if (FunctionName == "llvm.va_start" || FunctionName == "llvm.va_end") {
2875       ParamTyList.push_back(PointerType::get(Type::Int8Ty));
2876     } else if (FunctionName == "llvm.va_copy") {
2877       ParamTyList.push_back(PointerType::get(Type::Int8Ty));
2878       ParamTyList.push_back(PointerType::get(Type::Int8Ty));
2879     } else if ($5) {   // If there are arguments...
2880       for (std::vector<std::pair<PATypeInfo,char*> >::iterator 
2881            I = $5->begin(), E = $5->end(); I != E; ++I) {
2882         const Type *Ty = I->first.PAT->get();
2883         ParamTyList.push_back(Ty);
2884         FTySign.add(I->first.S);
2885       }
2886     }
2887
2888     bool isVarArg = ParamTyList.size() && ParamTyList.back() == Type::VoidTy;
2889     if (isVarArg) 
2890       ParamTyList.pop_back();
2891
2892     // Convert the CSRet calling convention into the corresponding parameter
2893     // attribute.
2894     FunctionType::ParamAttrsList ParamAttrs;
2895     if ($1 == OldCallingConv::CSRet) {
2896       ParamAttrs.push_back(FunctionType::NoAttributeSet);     // result
2897       ParamAttrs.push_back(FunctionType::StructRetAttribute); // first arg
2898     }
2899
2900     const FunctionType *FT = FunctionType::get(RetTy, ParamTyList, isVarArg,
2901                                                ParamAttrs);
2902     const PointerType *PFT = PointerType::get(FT);
2903     delete $2.PAT;
2904
2905     ValID ID;
2906     if (!FunctionName.empty()) {
2907       ID = ValID::create((char*)FunctionName.c_str());
2908     } else {
2909       ID = ValID::create((int)CurModule.Values[PFT].size());
2910     }
2911     ID.S.makeComposite(FTySign);
2912
2913     Function *Fn = 0;
2914     Module* M = CurModule.CurrentModule;
2915
2916     // See if this function was forward referenced.  If so, recycle the object.
2917     if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
2918       // Move the function to the end of the list, from whereever it was 
2919       // previously inserted.
2920       Fn = cast<Function>(FWRef);
2921       M->getFunctionList().remove(Fn);
2922       M->getFunctionList().push_back(Fn);
2923     } else if (!FunctionName.empty()) {
2924       GlobalValue *Conflict = M->getFunction(FunctionName);
2925       if (!Conflict)
2926         Conflict = M->getNamedGlobal(FunctionName);
2927       if (Conflict && PFT == Conflict->getType()) {
2928         if (!CurFun.isDeclare && !Conflict->isDeclaration()) {
2929           // We have two function definitions that conflict, same type, same
2930           // name. We should really check to make sure that this is the result
2931           // of integer type planes collapsing and generate an error if it is
2932           // not, but we'll just rename on the assumption that it is. However,
2933           // let's do it intelligently and rename the internal linkage one
2934           // if there is one.
2935           std::string NewName(makeNameUnique(FunctionName));
2936           if (Conflict->hasInternalLinkage()) {
2937             Conflict->setName(NewName);
2938             RenameMapKey Key = 
2939               makeRenameMapKey(FunctionName, Conflict->getType(), ID.S);
2940             CurModule.RenameMap[Key] = NewName;
2941             Fn = new Function(FT, CurFun.Linkage, FunctionName, M);
2942             InsertValue(Fn, CurModule.Values);
2943           } else {
2944             Fn = new Function(FT, CurFun.Linkage, NewName, M);
2945             InsertValue(Fn, CurModule.Values);
2946             RenameMapKey Key = 
2947               makeRenameMapKey(FunctionName, PFT, ID.S);
2948             CurModule.RenameMap[Key] = NewName;
2949           }
2950         } else {
2951           // If they are not both definitions, then just use the function we
2952           // found since the types are the same.
2953           Fn = cast<Function>(Conflict);
2954
2955           // Make sure to strip off any argument names so we can't get 
2956           // conflicts.
2957           if (Fn->isDeclaration())
2958             for (Function::arg_iterator AI = Fn->arg_begin(), 
2959                  AE = Fn->arg_end(); AI != AE; ++AI)
2960               AI->setName("");
2961         }
2962       } else if (Conflict) {
2963         // We have two globals with the same name and  different types. 
2964         // Previously, this was permitted because the symbol table had 
2965         // "type planes" and names only needed to be distinct within a 
2966         // type plane. After PR411 was fixed, this is no loner the case. 
2967         // To resolve this we must rename one of the two. 
2968         if (Conflict->hasInternalLinkage()) {
2969           // We can safely rename the Conflict.
2970           RenameMapKey Key = 
2971             makeRenameMapKey(Conflict->getName(), Conflict->getType(), 
2972               CurModule.NamedValueSigns[Conflict->getName()]);
2973           Conflict->setName(makeNameUnique(Conflict->getName()));
2974           CurModule.RenameMap[Key] = Conflict->getName();
2975           Fn = new Function(FT, CurFun.Linkage, FunctionName, M);
2976           InsertValue(Fn, CurModule.Values);
2977         } else { 
2978           // We can't quietly rename either of these things, but we must
2979           // rename one of them. Only if the function's linkage is internal can
2980           // we forgo a warning message about the renamed function. 
2981           std::string NewName = makeNameUnique(FunctionName);
2982           if (CurFun.Linkage != GlobalValue::InternalLinkage) {
2983             warning("Renaming function '" + FunctionName + "' as '" + NewName +
2984                     "' may cause linkage errors");
2985           }
2986           // Elect to rename the thing we're now defining.
2987           Fn = new Function(FT, CurFun.Linkage, NewName, M);
2988           InsertValue(Fn, CurModule.Values);
2989           RenameMapKey Key = makeRenameMapKey(FunctionName, PFT, ID.S);
2990           CurModule.RenameMap[Key] = NewName;
2991         } 
2992       } else {
2993         // There's no conflict, just define the function
2994         Fn = new Function(FT, CurFun.Linkage, FunctionName, M);
2995         InsertValue(Fn, CurModule.Values);
2996       }
2997     }
2998
2999     CurFun.FunctionStart(Fn);
3000
3001     if (CurFun.isDeclare) {
3002       // If we have declaration, always overwrite linkage.  This will allow us 
3003       // to correctly handle cases, when pointer to function is passed as 
3004       // argument to another function.
3005       Fn->setLinkage(CurFun.Linkage);
3006     }
3007     Fn->setCallingConv(upgradeCallingConv($1));
3008     Fn->setAlignment($8);
3009     if ($7) {
3010       Fn->setSection($7);
3011       free($7);
3012     }
3013
3014     // Add all of the arguments we parsed to the function...
3015     if ($5) {                     // Is null if empty...
3016       if (isVarArg) {  // Nuke the last entry
3017         assert($5->back().first.PAT->get() == Type::VoidTy && 
3018                $5->back().second == 0 && "Not a varargs marker");
3019         delete $5->back().first.PAT;
3020         $5->pop_back();  // Delete the last entry
3021       }
3022       Function::arg_iterator ArgIt = Fn->arg_begin();
3023       Function::arg_iterator ArgEnd = Fn->arg_end();
3024       std::vector<std::pair<PATypeInfo,char*> >::iterator I = $5->begin();
3025       std::vector<std::pair<PATypeInfo,char*> >::iterator E = $5->end();
3026       for ( ; I != E && ArgIt != ArgEnd; ++I, ++ArgIt) {
3027         delete I->first.PAT;                      // Delete the typeholder...
3028         ValueInfo VI; VI.V = ArgIt; VI.S.copy(I->first.S); 
3029         setValueName(VI, I->second);           // Insert arg into symtab...
3030         InsertValue(ArgIt);
3031       }
3032       delete $5;                     // We're now done with the argument list
3033     }
3034   }
3035   ;
3036
3037 BEGIN 
3038   : BEGINTOK | '{'                // Allow BEGIN or '{' to start a function
3039   ;
3040
3041 FunctionHeader 
3042   : OptLinkage { CurFun.Linkage = $1; } FunctionHeaderH BEGIN {
3043     $$ = CurFun.CurrentFunction;
3044
3045     // Make sure that we keep track of the linkage type even if there was a
3046     // previous "declare".
3047     $$->setLinkage($1);
3048   }
3049   ;
3050
3051 END 
3052   : ENDTOK | '}'                    // Allow end of '}' to end a function
3053   ;
3054
3055 Function 
3056   : BasicBlockList END {
3057     $$ = $1;
3058   };
3059
3060 FnDeclareLinkage
3061   : /*default*/ { $$ = GlobalValue::ExternalLinkage; }
3062   | DLLIMPORT   { $$ = GlobalValue::DLLImportLinkage; } 
3063   | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
3064   ;
3065   
3066 FunctionProto 
3067   : DECLARE { CurFun.isDeclare = true; } 
3068      FnDeclareLinkage { CurFun.Linkage = $3; } FunctionHeaderH {
3069     $$ = CurFun.CurrentFunction;
3070     CurFun.FunctionDone();
3071     
3072   }
3073   ;
3074
3075 //===----------------------------------------------------------------------===//
3076 //                        Rules to match Basic Blocks
3077 //===----------------------------------------------------------------------===//
3078
3079 OptSideEffect 
3080   : /* empty */ { $$ = false; }
3081   | SIDEEFFECT { $$ = true; }
3082   ;
3083
3084 ConstValueRef 
3085     // A reference to a direct constant
3086   : ESINT64VAL { $$ = ValID::create($1); }
3087   | EUINT64VAL { $$ = ValID::create($1); }
3088   | FPVAL { $$ = ValID::create($1); } 
3089   | TRUETOK { 
3090     $$ = ValID::create(ConstantInt::get(Type::Int1Ty, true));
3091     $$.S.makeUnsigned();
3092   }
3093   | FALSETOK { 
3094     $$ = ValID::create(ConstantInt::get(Type::Int1Ty, false)); 
3095     $$.S.makeUnsigned();
3096   }
3097   | NULL_TOK { $$ = ValID::createNull(); }
3098   | UNDEF { $$ = ValID::createUndef(); }
3099   | ZEROINITIALIZER { $$ = ValID::createZeroInit(); }
3100   | '<' ConstVector '>' { // Nonempty unsized packed vector
3101     const Type *ETy = (*$2)[0].C->getType();
3102     int NumElements = $2->size(); 
3103     VectorType* pt = VectorType::get(ETy, NumElements);
3104     $$.S.makeComposite((*$2)[0].S);
3105     PATypeHolder* PTy = new PATypeHolder(HandleUpRefs(pt, $$.S));
3106     
3107     // Verify all elements are correct type!
3108     std::vector<Constant*> Elems;
3109     for (unsigned i = 0; i < $2->size(); i++) {
3110       Constant *C = (*$2)[i].C;
3111       const Type *CTy = C->getType();
3112       if (ETy != CTy)
3113         error("Element #" + utostr(i) + " is not of type '" + 
3114               ETy->getDescription() +"' as required!\nIt is of type '" +
3115               CTy->getDescription() + "'");
3116       Elems.push_back(C);
3117     }
3118     $$ = ValID::create(ConstantVector::get(pt, Elems));
3119     delete PTy; delete $2;
3120   }
3121   | ConstExpr {
3122     $$ = ValID::create($1.C);
3123     $$.S.copy($1.S);
3124   }
3125   | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
3126     char *End = UnEscapeLexed($3, true);
3127     std::string AsmStr = std::string($3, End);
3128     End = UnEscapeLexed($5, true);
3129     std::string Constraints = std::string($5, End);
3130     $$ = ValID::createInlineAsm(AsmStr, Constraints, $2);
3131     free($3);
3132     free($5);
3133   }
3134   ;
3135
3136 // SymbolicValueRef - Reference to one of two ways of symbolically refering to // another value.
3137 //
3138 SymbolicValueRef 
3139   : INTVAL {  $$ = ValID::create($1); $$.S.makeSignless(); }
3140   | Name   {  $$ = ValID::create($1); $$.S.makeSignless(); }
3141   ;
3142
3143 // ValueRef - A reference to a definition... either constant or symbolic
3144 ValueRef 
3145   : SymbolicValueRef | ConstValueRef
3146   ;
3147
3148
3149 // ResolvedVal - a <type> <value> pair.  This is used only in cases where the
3150 // type immediately preceeds the value reference, and allows complex constant
3151 // pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
3152 ResolvedVal 
3153   : Types ValueRef { 
3154     const Type *Ty = $1.PAT->get();
3155     $2.S.copy($1.S);
3156     $$.V = getVal(Ty, $2); 
3157     $$.S.copy($1.S);
3158     delete $1.PAT;
3159   }
3160   ;
3161
3162 BasicBlockList 
3163   : BasicBlockList BasicBlock {
3164     $$ = $1;
3165   }
3166   | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks   
3167     $$ = $1;
3168   };
3169
3170
3171 // Basic blocks are terminated by branching instructions: 
3172 // br, br/cc, switch, ret
3173 //
3174 BasicBlock 
3175   : InstructionList OptAssign BBTerminatorInst  {
3176     ValueInfo VI; VI.V = $3.TI; VI.S.copy($3.S);
3177     setValueName(VI, $2);
3178     InsertValue($3.TI);
3179     $1->getInstList().push_back($3.TI);
3180     InsertValue($1);
3181     $$ = $1;
3182   }
3183   ;
3184
3185 InstructionList
3186   : InstructionList Inst {
3187     if ($2.I)
3188       $1->getInstList().push_back($2.I);
3189     $$ = $1;
3190   }
3191   | /* empty */ {
3192     $$ = CurBB = getBBVal(ValID::create((int)CurFun.NextBBNum++),true);
3193     // Make sure to move the basic block to the correct location in the
3194     // function, instead of leaving it inserted wherever it was first
3195     // referenced.
3196     Function::BasicBlockListType &BBL = 
3197       CurFun.CurrentFunction->getBasicBlockList();
3198     BBL.splice(BBL.end(), BBL, $$);
3199   }
3200   | LABELSTR {
3201     $$ = CurBB = getBBVal(ValID::create($1), true);
3202     // Make sure to move the basic block to the correct location in the
3203     // function, instead of leaving it inserted wherever it was first
3204     // referenced.
3205     Function::BasicBlockListType &BBL = 
3206       CurFun.CurrentFunction->getBasicBlockList();
3207     BBL.splice(BBL.end(), BBL, $$);
3208   }
3209   ;
3210
3211 Unwind : UNWIND | EXCEPT;
3212
3213 BBTerminatorInst 
3214   : RET ResolvedVal {              // Return with a result...
3215     $$.TI = new ReturnInst($2.V);
3216     $$.S.makeSignless();
3217   }
3218   | RET VOID {                                       // Return with no result...
3219     $$.TI = new ReturnInst();
3220     $$.S.makeSignless();
3221   }
3222   | BR LABEL ValueRef {                         // Unconditional Branch...
3223     BasicBlock* tmpBB = getBBVal($3);
3224     $$.TI = new BranchInst(tmpBB);
3225     $$.S.makeSignless();
3226   }                                                  // Conditional Branch...
3227   | BR BOOL ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {  
3228     $6.S.makeSignless();
3229     $9.S.makeSignless();
3230     BasicBlock* tmpBBA = getBBVal($6);
3231     BasicBlock* tmpBBB = getBBVal($9);
3232     $3.S.makeUnsigned();
3233     Value* tmpVal = getVal(Type::Int1Ty, $3);
3234     $$.TI = new BranchInst(tmpBBA, tmpBBB, tmpVal);
3235     $$.S.makeSignless();
3236   }
3237   | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
3238     $3.S.copy($2.S);
3239     Value* tmpVal = getVal($2.T, $3);
3240     $6.S.makeSignless();
3241     BasicBlock* tmpBB = getBBVal($6);
3242     SwitchInst *S = new SwitchInst(tmpVal, tmpBB, $8->size());
3243     $$.TI = S;
3244     $$.S.makeSignless();
3245     std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
3246       E = $8->end();
3247     for (; I != E; ++I) {
3248       if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
3249           S->addCase(CI, I->second);
3250       else
3251         error("Switch case is constant, but not a simple integer");
3252     }
3253     delete $8;
3254   }
3255   | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
3256     $3.S.copy($2.S);
3257     Value* tmpVal = getVal($2.T, $3);
3258     $6.S.makeSignless();
3259     BasicBlock* tmpBB = getBBVal($6);
3260     SwitchInst *S = new SwitchInst(tmpVal, tmpBB, 0);
3261     $$.TI = S;
3262     $$.S.makeSignless();
3263   }
3264   | INVOKE OptCallingConv TypesV ValueRef '(' ValueRefListE ')'
3265     TO LABEL ValueRef Unwind LABEL ValueRef {
3266     const PointerType *PFTy;
3267     const FunctionType *Ty;
3268     Signedness FTySign;
3269
3270     if (!(PFTy = dyn_cast<PointerType>($3.PAT->get())) ||
3271         !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3272       // Pull out the types of all of the arguments...
3273       std::vector<const Type*> ParamTypes;
3274       FTySign.makeComposite($3.S);
3275       if ($6) {
3276         for (std::vector<ValueInfo>::iterator I = $6->begin(), E = $6->end();
3277              I != E; ++I) {
3278           ParamTypes.push_back((*I).V->getType());
3279           FTySign.add(I->S);
3280         }
3281       }
3282       FunctionType::ParamAttrsList ParamAttrs;
3283       if ($2 == OldCallingConv::CSRet) {
3284         ParamAttrs.push_back(FunctionType::NoAttributeSet);
3285         ParamAttrs.push_back(FunctionType::StructRetAttribute);
3286       }
3287       bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
3288       if (isVarArg) ParamTypes.pop_back();
3289       Ty = FunctionType::get($3.PAT->get(), ParamTypes, isVarArg, ParamAttrs);
3290       PFTy = PointerType::get(Ty);
3291       $$.S.copy($3.S);
3292     } else {
3293       FTySign = $3.S;
3294       // Get the signedness of the result type. $3 is the pointer to the
3295       // function type so we get the 0th element to extract the function type,
3296       // and then the 0th element again to get the result type.
3297       $$.S.copy($3.S.get(0).get(0)); 
3298     }
3299     $4.S.makeComposite(FTySign);
3300     Value *V = getVal(PFTy, $4);   // Get the function we're calling...
3301     BasicBlock *Normal = getBBVal($10);
3302     BasicBlock *Except = getBBVal($13);
3303
3304     // Create the call node...
3305     if (!$6) {                                   // Has no arguments?
3306       $$.TI = new InvokeInst(V, Normal, Except, 0, 0);
3307     } else {                                     // Has arguments?
3308       // Loop through FunctionType's arguments and ensure they are specified
3309       // correctly!
3310       //
3311       FunctionType::param_iterator I = Ty->param_begin();
3312       FunctionType::param_iterator E = Ty->param_end();
3313       std::vector<ValueInfo>::iterator ArgI = $6->begin(), ArgE = $6->end();
3314
3315       std::vector<Value*> Args;
3316       for (; ArgI != ArgE && I != E; ++ArgI, ++I) {
3317         if ((*ArgI).V->getType() != *I)
3318           error("Parameter " +(*ArgI).V->getName()+ " is not of type '" +
3319                 (*I)->getDescription() + "'");
3320         Args.push_back((*ArgI).V);
3321       }
3322
3323       if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
3324         error("Invalid number of parameters detected");
3325
3326       $$.TI = new InvokeInst(V, Normal, Except, &Args[0], Args.size());
3327     }
3328     cast<InvokeInst>($$.TI)->setCallingConv(upgradeCallingConv($2));
3329     delete $3.PAT;
3330     delete $6;
3331   }
3332   | Unwind {
3333     $$.TI = new UnwindInst();
3334     $$.S.makeSignless();
3335   }
3336   | UNREACHABLE {
3337     $$.TI = new UnreachableInst();
3338     $$.S.makeSignless();
3339   }
3340   ;
3341
3342 JumpTable 
3343   : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
3344     $$ = $1;
3345     $3.S.copy($2.S);
3346     Constant *V = cast<Constant>(getExistingValue($2.T, $3));
3347     
3348     if (V == 0)
3349       error("May only switch on a constant pool value");
3350
3351     $6.S.makeSignless();
3352     BasicBlock* tmpBB = getBBVal($6);
3353     $$->push_back(std::make_pair(V, tmpBB));
3354   }
3355   | IntType ConstValueRef ',' LABEL ValueRef {
3356     $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
3357     $2.S.copy($1.S);
3358     Constant *V = cast<Constant>(getExistingValue($1.T, $2));
3359
3360     if (V == 0)
3361       error("May only switch on a constant pool value");
3362
3363     $5.S.makeSignless();
3364     BasicBlock* tmpBB = getBBVal($5);
3365     $$->push_back(std::make_pair(V, tmpBB)); 
3366   }
3367   ;
3368
3369 Inst 
3370   : OptAssign InstVal {
3371     bool omit = false;
3372     if ($1)
3373       if (BitCastInst *BCI = dyn_cast<BitCastInst>($2.I))
3374         if (BCI->getSrcTy() == BCI->getDestTy() && 
3375             BCI->getOperand(0)->getName() == $1)
3376           // This is a useless bit cast causing a name redefinition. It is
3377           // a bit cast from a type to the same type of an operand with the
3378           // same name as the name we would give this instruction. Since this
3379           // instruction results in no code generation, it is safe to omit
3380           // the instruction. This situation can occur because of collapsed
3381           // type planes. For example:
3382           //   %X = add int %Y, %Z
3383           //   %X = cast int %Y to uint
3384           // After upgrade, this looks like:
3385           //   %X = add i32 %Y, %Z
3386           //   %X = bitcast i32 to i32
3387           // The bitcast is clearly useless so we omit it.
3388           omit = true;
3389     if (omit) {
3390       $$.I = 0;
3391       $$.S.makeSignless();
3392     } else {
3393       ValueInfo VI; VI.V = $2.I; VI.S.copy($2.S);
3394       setValueName(VI, $1);
3395       InsertValue($2.I);
3396       $$ = $2;
3397     }
3398   };
3399
3400 PHIList : Types '[' ValueRef ',' ValueRef ']' {    // Used for PHI nodes
3401     $$.P = new std::list<std::pair<Value*, BasicBlock*> >();
3402     $$.S.copy($1.S);
3403     $3.S.copy($1.S);
3404     Value* tmpVal = getVal($1.PAT->get(), $3);
3405     $5.S.makeSignless();
3406     BasicBlock* tmpBB = getBBVal($5);
3407     $$.P->push_back(std::make_pair(tmpVal, tmpBB));
3408     delete $1.PAT;
3409   }
3410   | PHIList ',' '[' ValueRef ',' ValueRef ']' {
3411     $$ = $1;
3412     $4.S.copy($1.S);
3413     Value* tmpVal = getVal($1.P->front().first->getType(), $4);
3414     $6.S.makeSignless();
3415     BasicBlock* tmpBB = getBBVal($6);
3416     $1.P->push_back(std::make_pair(tmpVal, tmpBB));
3417   }
3418   ;
3419
3420 ValueRefList : ResolvedVal {    // Used for call statements, and memory insts...
3421     $$ = new std::vector<ValueInfo>();
3422     $$->push_back($1);
3423   }
3424   | ValueRefList ',' ResolvedVal {
3425     $$ = $1;
3426     $1->push_back($3);
3427   };
3428
3429 // ValueRefListE - Just like ValueRefList, except that it may also be empty!
3430 ValueRefListE 
3431   : ValueRefList 
3432   | /*empty*/ { $$ = 0; }
3433   ;
3434
3435 OptTailCall 
3436   : TAIL CALL {
3437     $$ = true;
3438   }
3439   | CALL {
3440     $$ = false;
3441   }
3442   ;
3443
3444 InstVal 
3445   : ArithmeticOps Types ValueRef ',' ValueRef {
3446     $3.S.copy($2.S);
3447     $5.S.copy($2.S);
3448     const Type* Ty = $2.PAT->get();
3449     if (!Ty->isInteger() && !Ty->isFloatingPoint() && !isa<VectorType>(Ty))
3450       error("Arithmetic operator requires integer, FP, or packed operands");
3451     if (isa<VectorType>(Ty) && 
3452         ($1 == URemOp || $1 == SRemOp || $1 == FRemOp || $1 == RemOp))
3453       error("Remainder not supported on vector types");
3454     // Upgrade the opcode from obsolete versions before we do anything with it.
3455     Instruction::BinaryOps Opcode = getBinaryOp($1, Ty, $2.S);
3456     Value* val1 = getVal(Ty, $3); 
3457     Value* val2 = getVal(Ty, $5);
3458     $$.I = BinaryOperator::create(Opcode, val1, val2);
3459     if ($$.I == 0)
3460       error("binary operator returned null");
3461     $$.S.copy($2.S);
3462     delete $2.PAT;
3463   }
3464   | LogicalOps Types ValueRef ',' ValueRef {
3465     $3.S.copy($2.S);
3466     $5.S.copy($2.S);
3467     const Type *Ty = $2.PAT->get();
3468     if (!Ty->isInteger()) {
3469       if (!isa<VectorType>(Ty) ||
3470           !cast<VectorType>(Ty)->getElementType()->isInteger())
3471         error("Logical operator requires integral operands");
3472     }
3473     Instruction::BinaryOps Opcode = getBinaryOp($1, Ty, $2.S);
3474     Value* tmpVal1 = getVal(Ty, $3);
3475     Value* tmpVal2 = getVal(Ty, $5);
3476     $$.I = BinaryOperator::create(Opcode, tmpVal1, tmpVal2);
3477     if ($$.I == 0)
3478       error("binary operator returned null");
3479     $$.S.copy($2.S);
3480     delete $2.PAT;
3481   }
3482   | SetCondOps Types ValueRef ',' ValueRef {
3483     $3.S.copy($2.S);
3484     $5.S.copy($2.S);
3485     const Type* Ty = $2.PAT->get();
3486     if(isa<VectorType>(Ty))
3487       error("VectorTypes currently not supported in setcc instructions");
3488     unsigned short pred;
3489     Instruction::OtherOps Opcode = getCompareOp($1, pred, Ty, $2.S);
3490     Value* tmpVal1 = getVal(Ty, $3);
3491     Value* tmpVal2 = getVal(Ty, $5);
3492     $$.I = CmpInst::create(Opcode, pred, tmpVal1, tmpVal2);
3493     if ($$.I == 0)
3494       error("binary operator returned null");
3495     $$.S.makeUnsigned();
3496     delete $2.PAT;
3497   }
3498   | ICMP IPredicates Types ValueRef ',' ValueRef {
3499     $4.S.copy($3.S);
3500     $6.S.copy($3.S);
3501     const Type *Ty = $3.PAT->get();
3502     if (isa<VectorType>(Ty)) 
3503       error("VectorTypes currently not supported in icmp instructions");
3504     else if (!Ty->isInteger() && !isa<PointerType>(Ty))
3505       error("icmp requires integer or pointer typed operands");
3506     Value* tmpVal1 = getVal(Ty, $4);
3507     Value* tmpVal2 = getVal(Ty, $6);
3508     $$.I = new ICmpInst($2, tmpVal1, tmpVal2);
3509     $$.S.makeUnsigned();
3510     delete $3.PAT;
3511   }
3512   | FCMP FPredicates Types ValueRef ',' ValueRef {
3513     $4.S.copy($3.S);
3514     $6.S.copy($3.S);
3515     const Type *Ty = $3.PAT->get();
3516     if (isa<VectorType>(Ty))
3517       error("VectorTypes currently not supported in fcmp instructions");
3518     else if (!Ty->isFloatingPoint())
3519       error("fcmp instruction requires floating point operands");
3520     Value* tmpVal1 = getVal(Ty, $4);
3521     Value* tmpVal2 = getVal(Ty, $6);
3522     $$.I = new FCmpInst($2, tmpVal1, tmpVal2);
3523     $$.S.makeUnsigned();
3524     delete $3.PAT;
3525   }
3526   | NOT ResolvedVal {
3527     warning("Use of obsolete 'not' instruction: Replacing with 'xor");
3528     const Type *Ty = $2.V->getType();
3529     Value *Ones = ConstantInt::getAllOnesValue(Ty);
3530     if (Ones == 0)
3531       error("Expected integral type for not instruction");
3532     $$.I = BinaryOperator::create(Instruction::Xor, $2.V, Ones);
3533     if ($$.I == 0)
3534       error("Could not create a xor instruction");
3535     $$.S.copy($2.S);
3536   }
3537   | ShiftOps ResolvedVal ',' ResolvedVal {
3538     if (!$4.V->getType()->isInteger() ||
3539         cast<IntegerType>($4.V->getType())->getBitWidth() != 8)
3540       error("Shift amount must be int8");
3541     const Type* Ty = $2.V->getType();
3542     if (!Ty->isInteger())
3543       error("Shift constant expression requires integer operand");
3544     Value* ShiftAmt = 0;
3545     if (cast<IntegerType>(Ty)->getBitWidth() > Type::Int8Ty->getBitWidth())
3546       if (Constant *C = dyn_cast<Constant>($4.V))
3547         ShiftAmt = ConstantExpr::getZExt(C, Ty);
3548       else
3549         ShiftAmt = new ZExtInst($4.V, Ty, makeNameUnique("shift"), CurBB);
3550     else
3551       ShiftAmt = $4.V;
3552     $$.I = BinaryOperator::create(getBinaryOp($1, Ty, $2.S), $2.V, ShiftAmt);
3553     $$.S.copy($2.S);
3554   }
3555   | CastOps ResolvedVal TO Types {
3556     const Type *DstTy = $4.PAT->get();
3557     if (!DstTy->isFirstClassType())
3558       error("cast instruction to a non-primitive type: '" +
3559             DstTy->getDescription() + "'");
3560     $$.I = cast<Instruction>(getCast($1, $2.V, $2.S, DstTy, $4.S, true));
3561     $$.S.copy($4.S);
3562     delete $4.PAT;
3563   }
3564   | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
3565     if (!$2.V->getType()->isInteger() ||
3566         cast<IntegerType>($2.V->getType())->getBitWidth() != 1)
3567       error("select condition must be bool");
3568     if ($4.V->getType() != $6.V->getType())
3569       error("select value types should match");
3570     $$.I = new SelectInst($2.V, $4.V, $6.V);
3571     $$.S.copy($4.S);
3572   }
3573   | VAARG ResolvedVal ',' Types {
3574     const Type *Ty = $4.PAT->get();
3575     NewVarArgs = true;
3576     $$.I = new VAArgInst($2.V, Ty);
3577     $$.S.copy($4.S);
3578     delete $4.PAT;
3579   }
3580   | VAARG_old ResolvedVal ',' Types {
3581     const Type* ArgTy = $2.V->getType();
3582     const Type* DstTy = $4.PAT->get();
3583     ObsoleteVarArgs = true;
3584     Function* NF = cast<Function>(CurModule.CurrentModule->
3585       getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy, (Type *)0));
3586
3587     //b = vaarg a, t -> 
3588     //foo = alloca 1 of t
3589     //bar = vacopy a 
3590     //store bar -> foo
3591     //b = vaarg foo, t
3592     AllocaInst* foo = new AllocaInst(ArgTy, 0, "vaarg.fix");
3593     CurBB->getInstList().push_back(foo);
3594     CallInst* bar = new CallInst(NF, $2.V);
3595     CurBB->getInstList().push_back(bar);
3596     CurBB->getInstList().push_back(new StoreInst(bar, foo));
3597     $$.I = new VAArgInst(foo, DstTy);
3598     $$.S.copy($4.S);
3599     delete $4.PAT;
3600   }
3601   | VANEXT_old ResolvedVal ',' Types {
3602     const Type* ArgTy = $2.V->getType();
3603     const Type* DstTy = $4.PAT->get();
3604     ObsoleteVarArgs = true;
3605     Function* NF = cast<Function>(CurModule.CurrentModule->
3606       getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy, (Type *)0));
3607
3608     //b = vanext a, t ->
3609     //foo = alloca 1 of t
3610     //bar = vacopy a
3611     //store bar -> foo
3612     //tmp = vaarg foo, t
3613     //b = load foo
3614     AllocaInst* foo = new AllocaInst(ArgTy, 0, "vanext.fix");
3615     CurBB->getInstList().push_back(foo);
3616     CallInst* bar = new CallInst(NF, $2.V);
3617     CurBB->getInstList().push_back(bar);
3618     CurBB->getInstList().push_back(new StoreInst(bar, foo));
3619     Instruction* tmp = new VAArgInst(foo, DstTy);
3620     CurBB->getInstList().push_back(tmp);
3621     $$.I = new LoadInst(foo);
3622     $$.S.copy($4.S);
3623     delete $4.PAT;
3624   }
3625   | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
3626     if (!ExtractElementInst::isValidOperands($2.V, $4.V))
3627       error("Invalid extractelement operands");
3628     $$.I = new ExtractElementInst($2.V, $4.V);
3629     $$.S.copy($2.S.get(0));
3630   }
3631   | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
3632     if (!InsertElementInst::isValidOperands($2.V, $4.V, $6.V))
3633       error("Invalid insertelement operands");
3634     $$.I = new InsertElementInst($2.V, $4.V, $6.V);
3635     $$.S.copy($2.S);
3636   }
3637   | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
3638     if (!ShuffleVectorInst::isValidOperands($2.V, $4.V, $6.V))
3639       error("Invalid shufflevector operands");
3640     $$.I = new ShuffleVectorInst($2.V, $4.V, $6.V);
3641     $$.S.copy($2.S);
3642   }
3643   | PHI_TOK PHIList {
3644     const Type *Ty = $2.P->front().first->getType();
3645     if (!Ty->isFirstClassType())
3646       error("PHI node operands must be of first class type");
3647     PHINode *PHI = new PHINode(Ty);
3648     PHI->reserveOperandSpace($2.P->size());
3649     while ($2.P->begin() != $2.P->end()) {
3650       if ($2.P->front().first->getType() != Ty) 
3651         error("All elements of a PHI node must be of the same type");
3652       PHI->addIncoming($2.P->front().first, $2.P->front().second);
3653       $2.P->pop_front();
3654     }
3655     $$.I = PHI;
3656     $$.S.copy($2.S);
3657     delete $2.P;  // Free the list...
3658   }
3659   | OptTailCall OptCallingConv TypesV ValueRef '(' ValueRefListE ')'  {
3660     // Handle the short call syntax
3661     const PointerType *PFTy;
3662     const FunctionType *FTy;
3663     Signedness FTySign;
3664     if (!(PFTy = dyn_cast<PointerType>($3.PAT->get())) ||
3665         !(FTy = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3666       // Pull out the types of all of the arguments...
3667       std::vector<const Type*> ParamTypes;
3668       FTySign.makeComposite($3.S);
3669       if ($6) {
3670         for (std::vector<ValueInfo>::iterator I = $6->begin(), E = $6->end();
3671              I != E; ++I) {
3672           ParamTypes.push_back((*I).V->getType());
3673           FTySign.add(I->S);
3674         }
3675       }
3676
3677       FunctionType::ParamAttrsList ParamAttrs;
3678       if ($2 == OldCallingConv::CSRet) {
3679         ParamAttrs.push_back(FunctionType::NoAttributeSet);
3680         ParamAttrs.push_back(FunctionType::StructRetAttribute);
3681       }
3682       bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
3683       if (isVarArg) ParamTypes.pop_back();
3684
3685       const Type *RetTy = $3.PAT->get();
3686       if (!RetTy->isFirstClassType() && RetTy != Type::VoidTy)
3687         error("Functions cannot return aggregate types");
3688
3689       FTy = FunctionType::get(RetTy, ParamTypes, isVarArg, ParamAttrs);
3690       PFTy = PointerType::get(FTy);
3691       $$.S.copy($3.S);
3692     } else {
3693       FTySign = $3.S;
3694       // Get the signedness of the result type. $3 is the pointer to the
3695       // function type so we get the 0th element to extract the function type,
3696       // and then the 0th element again to get the result type.
3697       $$.S.copy($3.S.get(0).get(0)); 
3698     }
3699     $4.S.makeComposite(FTySign);
3700
3701     // First upgrade any intrinsic calls.
3702     std::vector<Value*> Args;
3703     if ($6)
3704       for (unsigned i = 0, e = $6->size(); i < e; ++i) 
3705         Args.push_back((*$6)[i].V);
3706     Instruction *Inst = upgradeIntrinsicCall(FTy->getReturnType(), $4, Args);
3707
3708     // If we got an upgraded intrinsic
3709     if (Inst) {
3710       $$.I = Inst;
3711     } else {
3712       // Get the function we're calling
3713       Value *V = getVal(PFTy, $4);
3714
3715       // Check the argument values match
3716       if (!$6) {                                   // Has no arguments?
3717         // Make sure no arguments is a good thing!
3718         if (FTy->getNumParams() != 0)
3719           error("No arguments passed to a function that expects arguments");
3720       } else {                                     // Has arguments?
3721         // Loop through FunctionType's arguments and ensure they are specified
3722         // correctly!
3723         //
3724         FunctionType::param_iterator I = FTy->param_begin();
3725         FunctionType::param_iterator E = FTy->param_end();
3726         std::vector<ValueInfo>::iterator ArgI = $6->begin(), ArgE = $6->end();
3727
3728         for (; ArgI != ArgE && I != E; ++ArgI, ++I)
3729           if ((*ArgI).V->getType() != *I)
3730             error("Parameter " +(*ArgI).V->getName()+ " is not of type '" +
3731                   (*I)->getDescription() + "'");
3732
3733         if (I != E || (ArgI != ArgE && !FTy->isVarArg()))
3734           error("Invalid number of parameters detected");
3735       }
3736
3737       // Create the call instruction
3738       CallInst *CI = new CallInst(V, &Args[0], Args.size());
3739       CI->setTailCall($1);
3740       CI->setCallingConv(upgradeCallingConv($2));
3741       $$.I = CI;
3742     }
3743     delete $3.PAT;
3744     delete $6;
3745   }
3746   | MemoryInst {
3747     $$ = $1;
3748   }
3749   ;
3750
3751
3752 // IndexList - List of indices for GEP based instructions...
3753 IndexList 
3754   : ',' ValueRefList { $$ = $2; } 
3755   | /* empty */ { $$ = new std::vector<ValueInfo>(); }
3756   ;
3757
3758 OptVolatile 
3759   : VOLATILE { $$ = true; }
3760   | /* empty */ { $$ = false; }
3761   ;
3762
3763 MemoryInst 
3764   : MALLOC Types OptCAlign {
3765     const Type *Ty = $2.PAT->get();
3766     $$.S.makeComposite($2.S);
3767     $$.I = new MallocInst(Ty, 0, $3);
3768     delete $2.PAT;
3769   }
3770   | MALLOC Types ',' UINT ValueRef OptCAlign {
3771     const Type *Ty = $2.PAT->get();
3772     $5.S.makeUnsigned();
3773     $$.S.makeComposite($2.S);
3774     $$.I = new MallocInst(Ty, getVal($4.T, $5), $6);
3775     delete $2.PAT;
3776   }
3777   | ALLOCA Types OptCAlign {
3778     const Type *Ty = $2.PAT->get();
3779     $$.S.makeComposite($2.S);
3780     $$.I = new AllocaInst(Ty, 0, $3);
3781     delete $2.PAT;
3782   }
3783   | ALLOCA Types ',' UINT ValueRef OptCAlign {
3784     const Type *Ty = $2.PAT->get();
3785     $5.S.makeUnsigned();
3786     $$.S.makeComposite($4.S);
3787     $$.I = new AllocaInst(Ty, getVal($4.T, $5), $6);
3788     delete $2.PAT;
3789   }
3790   | FREE ResolvedVal {
3791     const Type *PTy = $2.V->getType();
3792     if (!isa<PointerType>(PTy))
3793       error("Trying to free nonpointer type '" + PTy->getDescription() + "'");
3794     $$.I = new FreeInst($2.V);
3795     $$.S.makeSignless();
3796   }
3797   | OptVolatile LOAD Types ValueRef {
3798     const Type* Ty = $3.PAT->get();
3799     $4.S.copy($3.S);
3800     if (!isa<PointerType>(Ty))
3801       error("Can't load from nonpointer type: " + Ty->getDescription());
3802     if (!cast<PointerType>(Ty)->getElementType()->isFirstClassType())
3803       error("Can't load from pointer of non-first-class type: " +
3804                      Ty->getDescription());
3805     Value* tmpVal = getVal(Ty, $4);
3806     $$.I = new LoadInst(tmpVal, "", $1);
3807     $$.S.copy($3.S.get(0));
3808     delete $3.PAT;
3809   }
3810   | OptVolatile STORE ResolvedVal ',' Types ValueRef {
3811     $6.S.copy($5.S);
3812     const PointerType *PTy = dyn_cast<PointerType>($5.PAT->get());
3813     if (!PTy)
3814       error("Can't store to a nonpointer type: " + 
3815              $5.PAT->get()->getDescription());
3816     const Type *ElTy = PTy->getElementType();
3817     Value *StoreVal = $3.V;
3818     Value* tmpVal = getVal(PTy, $6);
3819     if (ElTy != $3.V->getType()) {
3820       StoreVal = handleSRetFuncTypeMerge($3.V, ElTy);
3821       if (!StoreVal)
3822         error("Can't store '" + $3.V->getType()->getDescription() +
3823               "' into space of type '" + ElTy->getDescription() + "'");
3824       else {
3825         PTy = PointerType::get(StoreVal->getType());
3826         if (Constant *C = dyn_cast<Constant>(tmpVal))
3827           tmpVal = ConstantExpr::getBitCast(C, PTy);
3828         else
3829           tmpVal = new BitCastInst(tmpVal, PTy, "upgrd.cast", CurBB);
3830       }
3831     }
3832     $$.I = new StoreInst(StoreVal, tmpVal, $1);
3833     $$.S.makeSignless();
3834     delete $5.PAT;
3835   }
3836   | GETELEMENTPTR Types ValueRef IndexList {
3837     $3.S.copy($2.S);
3838     const Type* Ty = $2.PAT->get();
3839     if (!isa<PointerType>(Ty))
3840       error("getelementptr insn requires pointer operand");
3841
3842     std::vector<Value*> VIndices;
3843     upgradeGEPIndices(Ty, $4, VIndices);
3844
3845     Value* tmpVal = getVal(Ty, $3);
3846     $$.I = new GetElementPtrInst(tmpVal, &VIndices[0], VIndices.size());
3847     ValueInfo VI; VI.V = tmpVal; VI.S.copy($2.S);
3848     $$.S.copy(getElementSign(VI, VIndices));
3849     delete $2.PAT;
3850     delete $4;
3851   };
3852
3853
3854 %%
3855
3856 int yyerror(const char *ErrorMsg) {
3857   std::string where 
3858     = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
3859                   + ":" + llvm::utostr((unsigned) Upgradelineno) + ": ";
3860   std::string errMsg = where + "error: " + std::string(ErrorMsg);
3861   if (yychar != YYEMPTY && yychar != 0)
3862     errMsg += " while reading token '" + std::string(Upgradetext, Upgradeleng) +
3863               "'.";
3864   std::cerr << "llvm-upgrade: " << errMsg << '\n';
3865   std::cout << "llvm-upgrade: parse failed.\n";
3866   exit(1);
3867 }
3868
3869 void warning(const std::string& ErrorMsg) {
3870   std::string where 
3871     = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
3872                   + ":" + llvm::utostr((unsigned) Upgradelineno) + ": ";
3873   std::string errMsg = where + "warning: " + std::string(ErrorMsg);
3874   if (yychar != YYEMPTY && yychar != 0)
3875     errMsg += " while reading token '" + std::string(Upgradetext, Upgradeleng) +
3876               "'.";
3877   std::cerr << "llvm-upgrade: " << errMsg << '\n';
3878 }
3879
3880 void error(const std::string& ErrorMsg, int LineNo) {
3881   if (LineNo == -1) LineNo = Upgradelineno;
3882   Upgradelineno = LineNo;
3883   yyerror(ErrorMsg.c_str());
3884 }
3885