90fe540b8df3c74460115a3a6b87a5328309d792
[oota-llvm.git] / lib / AsmParser / llvmAsmParser.y
1 //===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the bison parser for LLVM assembly languages files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 %{
15 #include "ParserInternals.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/AutoUpgrade.h"
22 #include "llvm/Support/GetElementPtrTypeIterator.h"
23 #include "llvm/Support/CommandLine.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/ADT/STLExtras.h"
26 #include "llvm/Support/MathExtras.h"
27 #include "llvm/Support/Streams.h"
28 #include <algorithm>
29 #include <list>
30 #include <map>
31 #include <utility>
32
33 // The following is a gross hack. In order to rid the libAsmParser library of
34 // exceptions, we have to have a way of getting the yyparse function to go into
35 // an error situation. So, whenever we want an error to occur, the GenerateError
36 // function (see bottom of file) sets TriggerError. Then, at the end of each 
37 // production in the grammer we use CHECK_FOR_ERROR which will invoke YYERROR 
38 // (a goto) to put YACC in error state. Furthermore, several calls to 
39 // GenerateError are made from inside productions and they must simulate the
40 // previous exception behavior by exiting the production immediately. We have
41 // replaced these with the GEN_ERROR macro which calls GeneratError and then
42 // immediately invokes YYERROR. This would be so much cleaner if it was a 
43 // recursive descent parser.
44 static bool TriggerError = false;
45 #define CHECK_FOR_ERROR { if (TriggerError) { TriggerError = false; YYABORT; } }
46 #define GEN_ERROR(msg) { GenerateError(msg); YYERROR; }
47
48 int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
49 int yylex();                       // declaration" of xxx warnings.
50 int yyparse();
51 using namespace llvm;
52
53 static Module *ParserResult;
54
55 // DEBUG_UPREFS - Define this symbol if you want to enable debugging output
56 // relating to upreferences in the input stream.
57 //
58 //#define DEBUG_UPREFS 1
59 #ifdef DEBUG_UPREFS
60 #define UR_OUT(X) cerr << X
61 #else
62 #define UR_OUT(X)
63 #endif
64
65 #define YYERROR_VERBOSE 1
66
67 static GlobalVariable *CurGV;
68
69
70 // This contains info used when building the body of a function.  It is
71 // destroyed when the function is completed.
72 //
73 typedef std::vector<Value *> ValueList;           // Numbered defs
74
75 static void 
76 ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers=0);
77
78 static struct PerModuleInfo {
79   Module *CurrentModule;
80   ValueList Values; // Module level numbered definitions
81   ValueList LateResolveValues;
82   std::vector<PATypeHolder>    Types;
83   std::map<ValID, PATypeHolder> LateResolveTypes;
84
85   /// PlaceHolderInfo - When temporary placeholder objects are created, remember
86   /// how they were referenced and on which line of the input they came from so
87   /// that we can resolve them later and print error messages as appropriate.
88   std::map<Value*, std::pair<ValID, int> > PlaceHolderInfo;
89
90   // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
91   // references to global values.  Global values may be referenced before they
92   // are defined, and if so, the temporary object that they represent is held
93   // here.  This is used for forward references of GlobalValues.
94   //
95   typedef std::map<std::pair<const PointerType *,
96                              ValID>, GlobalValue*> GlobalRefsType;
97   GlobalRefsType GlobalRefs;
98
99   void ModuleDone() {
100     // If we could not resolve some functions at function compilation time
101     // (calls to functions before they are defined), resolve them now...  Types
102     // are resolved when the constant pool has been completely parsed.
103     //
104     ResolveDefinitions(LateResolveValues);
105     if (TriggerError)
106       return;
107
108     // Check to make sure that all global value forward references have been
109     // resolved!
110     //
111     if (!GlobalRefs.empty()) {
112       std::string UndefinedReferences = "Unresolved global references exist:\n";
113
114       for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
115            I != E; ++I) {
116         UndefinedReferences += "  " + I->first.first->getDescription() + " " +
117                                I->first.second.getName() + "\n";
118       }
119       GenerateError(UndefinedReferences);
120       return;
121     }
122
123     // Look for intrinsic functions and CallInst that need to be upgraded
124     for (Module::iterator FI = CurrentModule->begin(),
125          FE = CurrentModule->end(); FI != FE; )
126       UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
127
128     Values.clear();         // Clear out function local definitions
129     Types.clear();
130     CurrentModule = 0;
131   }
132
133   // GetForwardRefForGlobal - Check to see if there is a forward reference
134   // for this global.  If so, remove it from the GlobalRefs map and return it.
135   // If not, just return null.
136   GlobalValue *GetForwardRefForGlobal(const PointerType *PTy, ValID ID) {
137     // Check to see if there is a forward reference to this global variable...
138     // if there is, eliminate it and patch the reference to use the new def'n.
139     GlobalRefsType::iterator I = GlobalRefs.find(std::make_pair(PTy, ID));
140     GlobalValue *Ret = 0;
141     if (I != GlobalRefs.end()) {
142       Ret = I->second;
143       GlobalRefs.erase(I);
144     }
145     return Ret;
146   }
147
148   bool TypeIsUnresolved(PATypeHolder* PATy) {
149     // If it isn't abstract, its resolved
150     const Type* Ty = PATy->get();
151     if (!Ty->isAbstract())
152       return false;
153     // Traverse the type looking for abstract types. If it isn't abstract then
154     // we don't need to traverse that leg of the type. 
155     std::vector<const Type*> WorkList, SeenList;
156     WorkList.push_back(Ty);
157     while (!WorkList.empty()) {
158       const Type* Ty = WorkList.back();
159       SeenList.push_back(Ty);
160       WorkList.pop_back();
161       if (const OpaqueType* OpTy = dyn_cast<OpaqueType>(Ty)) {
162         // Check to see if this is an unresolved type
163         std::map<ValID, PATypeHolder>::iterator I = LateResolveTypes.begin();
164         std::map<ValID, PATypeHolder>::iterator E = LateResolveTypes.end();
165         for ( ; I != E; ++I) {
166           if (I->second.get() == OpTy)
167             return true;
168         }
169       } else if (const SequentialType* SeqTy = dyn_cast<SequentialType>(Ty)) {
170         const Type* TheTy = SeqTy->getElementType();
171         if (TheTy->isAbstract() && TheTy != Ty) {
172           std::vector<const Type*>::iterator I = SeenList.begin(), 
173                                              E = SeenList.end();
174           for ( ; I != E; ++I)
175             if (*I == TheTy)
176               break;
177           if (I == E)
178             WorkList.push_back(TheTy);
179         }
180       } else if (const StructType* StrTy = dyn_cast<StructType>(Ty)) {
181         for (unsigned i = 0; i < StrTy->getNumElements(); ++i) {
182           const Type* TheTy = StrTy->getElementType(i);
183           if (TheTy->isAbstract() && TheTy != Ty) {
184             std::vector<const Type*>::iterator I = SeenList.begin(), 
185                                                E = SeenList.end();
186             for ( ; I != E; ++I)
187               if (*I == TheTy)
188                 break;
189             if (I == E)
190               WorkList.push_back(TheTy);
191           }
192         }
193       }
194     }
195     return false;
196   }
197 } CurModule;
198
199 static struct PerFunctionInfo {
200   Function *CurrentFunction;     // Pointer to current function being created
201
202   ValueList Values; // Keep track of #'d definitions
203   unsigned NextValNum;
204   ValueList LateResolveValues;
205   bool isDeclare;                   // Is this function a forward declararation?
206   GlobalValue::LinkageTypes Linkage; // Linkage for forward declaration.
207   GlobalValue::VisibilityTypes Visibility;
208
209   /// BBForwardRefs - When we see forward references to basic blocks, keep
210   /// track of them here.
211   std::map<ValID, BasicBlock*> BBForwardRefs;
212
213   inline PerFunctionInfo() {
214     CurrentFunction = 0;
215     isDeclare = false;
216     Linkage = GlobalValue::ExternalLinkage;
217     Visibility = GlobalValue::DefaultVisibility;
218   }
219
220   inline void FunctionStart(Function *M) {
221     CurrentFunction = M;
222     NextValNum = 0;
223   }
224
225   void FunctionDone() {
226     // Any forward referenced blocks left?
227     if (!BBForwardRefs.empty()) {
228       GenerateError("Undefined reference to label " +
229                      BBForwardRefs.begin()->second->getName());
230       return;
231     }
232
233     // Resolve all forward references now.
234     ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
235
236     Values.clear();         // Clear out function local definitions
237     BBForwardRefs.clear();
238     CurrentFunction = 0;
239     isDeclare = false;
240     Linkage = GlobalValue::ExternalLinkage;
241     Visibility = GlobalValue::DefaultVisibility;
242   }
243 } CurFun;  // Info for the current function...
244
245 static bool inFunctionScope() { return CurFun.CurrentFunction != 0; }
246
247
248 //===----------------------------------------------------------------------===//
249 //               Code to handle definitions of all the types
250 //===----------------------------------------------------------------------===//
251
252 static void InsertValue(Value *V, ValueList &ValueTab = CurFun.Values) {
253   // Things that have names or are void typed don't get slot numbers
254   if (V->hasName() || (V->getType() == Type::VoidTy))
255     return;
256
257   // In the case of function values, we have to allow for the forward reference
258   // of basic blocks, which are included in the numbering. Consequently, we keep
259   // track of the next insertion location with NextValNum. When a BB gets 
260   // inserted, it could change the size of the CurFun.Values vector.
261   if (&ValueTab == &CurFun.Values) {
262     if (ValueTab.size() <= CurFun.NextValNum)
263       ValueTab.resize(CurFun.NextValNum+1);
264     ValueTab[CurFun.NextValNum++] = V;
265     return;
266   } 
267   // For all other lists, its okay to just tack it on the back of the vector.
268   ValueTab.push_back(V);
269 }
270
271 static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
272   switch (D.Type) {
273   case ValID::LocalID:               // Is it a numbered definition?
274     // Module constants occupy the lowest numbered slots...
275     if (D.Num < CurModule.Types.size())
276       return CurModule.Types[D.Num];
277     break;
278   case ValID::LocalName:                 // Is it a named definition?
279     if (const Type *N = CurModule.CurrentModule->getTypeByName(D.getName())) {
280       D.destroy();  // Free old strdup'd memory...
281       return N;
282     }
283     break;
284   default:
285     GenerateError("Internal parser error: Invalid symbol type reference");
286     return 0;
287   }
288
289   // If we reached here, we referenced either a symbol that we don't know about
290   // or an id number that hasn't been read yet.  We may be referencing something
291   // forward, so just create an entry to be resolved later and get to it...
292   //
293   if (DoNotImprovise) return 0;  // Do we just want a null to be returned?
294
295
296   if (inFunctionScope()) {
297     if (D.Type == ValID::LocalName) {
298       GenerateError("Reference to an undefined type: '" + D.getName() + "'");
299       return 0;
300     } else {
301       GenerateError("Reference to an undefined type: #" + utostr(D.Num));
302       return 0;
303     }
304   }
305
306   std::map<ValID, PATypeHolder>::iterator I =CurModule.LateResolveTypes.find(D);
307   if (I != CurModule.LateResolveTypes.end())
308     return I->second;
309
310   Type *Typ = OpaqueType::get();
311   CurModule.LateResolveTypes.insert(std::make_pair(D, Typ));
312   return Typ;
313  }
314
315 // getExistingVal - Look up the value specified by the provided type and
316 // the provided ValID.  If the value exists and has already been defined, return
317 // it.  Otherwise return null.
318 //
319 static Value *getExistingVal(const Type *Ty, const ValID &D) {
320   if (isa<FunctionType>(Ty)) {
321     GenerateError("Functions are not values and "
322                    "must be referenced as pointers");
323     return 0;
324   }
325
326   switch (D.Type) {
327   case ValID::LocalID: {                 // Is it a numbered definition?
328     // Check that the number is within bounds.
329     if (D.Num >= CurFun.Values.size()) 
330       return 0;
331     Value *Result = CurFun.Values[D.Num];
332     if (Ty != Result->getType()) {
333       GenerateError("Numbered value (%" + utostr(D.Num) + ") of type '" +
334                     Result->getType()->getDescription() + "' does not match " 
335                     "expected type, '" + Ty->getDescription() + "'");
336       return 0;
337     }
338     return Result;
339   }
340   case ValID::GlobalID: {                 // Is it a numbered definition?
341     if (D.Num >= CurModule.Values.size()) 
342       return 0;
343     Value *Result = CurModule.Values[D.Num];
344     if (Ty != Result->getType()) {
345       GenerateError("Numbered value (@" + utostr(D.Num) + ") of type '" +
346                     Result->getType()->getDescription() + "' does not match " 
347                     "expected type, '" + Ty->getDescription() + "'");
348       return 0;
349     }
350     return Result;
351   }
352     
353   case ValID::LocalName: {                // Is it a named definition?
354     if (!inFunctionScope()) 
355       return 0;
356     ValueSymbolTable &SymTab = CurFun.CurrentFunction->getValueSymbolTable();
357     Value *N = SymTab.lookup(D.getName());
358     if (N == 0) 
359       return 0;
360     if (N->getType() != Ty)
361       return 0;
362     
363     D.destroy();  // Free old strdup'd memory...
364     return N;
365   }
366   case ValID::GlobalName: {                // Is it a named definition?
367     ValueSymbolTable &SymTab = CurModule.CurrentModule->getValueSymbolTable();
368     Value *N = SymTab.lookup(D.getName());
369     if (N == 0) 
370       return 0;
371     if (N->getType() != Ty)
372       return 0;
373
374     D.destroy();  // Free old strdup'd memory...
375     return N;
376   }
377
378   // Check to make sure that "Ty" is an integral type, and that our
379   // value will fit into the specified type...
380   case ValID::ConstSIntVal:    // Is it a constant pool reference??
381     if (!isa<IntegerType>(Ty) ||
382         !ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
383       GenerateError("Signed integral constant '" +
384                      itostr(D.ConstPool64) + "' is invalid for type '" +
385                      Ty->getDescription() + "'");
386       return 0;
387     }
388     return ConstantInt::get(Ty, D.ConstPool64, true);
389
390   case ValID::ConstUIntVal:     // Is it an unsigned const pool reference?
391     if (isa<IntegerType>(Ty) &&
392         ConstantInt::isValueValidForType(Ty, D.UConstPool64))
393       return ConstantInt::get(Ty, D.UConstPool64);
394
395     if (!isa<IntegerType>(Ty) ||
396         !ConstantInt::isValueValidForType(Ty, D.ConstPool64)) {
397       GenerateError("Integral constant '" + utostr(D.UConstPool64) +
398                     "' is invalid or out of range for type '" +
399                     Ty->getDescription() + "'");
400       return 0;
401     }
402     // This is really a signed reference.  Transmogrify.
403     return ConstantInt::get(Ty, D.ConstPool64, true);
404
405   case ValID::ConstFPVal:        // Is it a floating point const pool reference?
406     if (!Ty->isFloatingPoint() ||
407         !ConstantFP::isValueValidForType(Ty, *D.ConstPoolFP)) {
408       GenerateError("FP constant invalid for type");
409       return 0;
410     }
411     // Lexer has no type info, so builds all float and double FP constants 
412     // as double.  Fix this here.  Long double does not need this.
413     if (&D.ConstPoolFP->getSemantics() == &APFloat::IEEEdouble &&
414         Ty==Type::FloatTy)
415       D.ConstPoolFP->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
416     return ConstantFP::get(*D.ConstPoolFP);
417
418   case ValID::ConstNullVal:      // Is it a null value?
419     if (!isa<PointerType>(Ty)) {
420       GenerateError("Cannot create a a non pointer null");
421       return 0;
422     }
423     return ConstantPointerNull::get(cast<PointerType>(Ty));
424
425   case ValID::ConstUndefVal:      // Is it an undef value?
426     return UndefValue::get(Ty);
427
428   case ValID::ConstZeroVal:      // Is it a zero value?
429     return Constant::getNullValue(Ty);
430     
431   case ValID::ConstantVal:       // Fully resolved constant?
432     if (D.ConstantValue->getType() != Ty) {
433       GenerateError("Constant expression type different from required type");
434       return 0;
435     }
436     return D.ConstantValue;
437
438   case ValID::InlineAsmVal: {    // Inline asm expression
439     const PointerType *PTy = dyn_cast<PointerType>(Ty);
440     const FunctionType *FTy =
441       PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
442     if (!FTy || !InlineAsm::Verify(FTy, D.IAD->Constraints)) {
443       GenerateError("Invalid type for asm constraint string");
444       return 0;
445     }
446     InlineAsm *IA = InlineAsm::get(FTy, D.IAD->AsmString, D.IAD->Constraints,
447                                    D.IAD->HasSideEffects);
448     D.destroy();   // Free InlineAsmDescriptor.
449     return IA;
450   }
451   default:
452     assert(0 && "Unhandled case!");
453     return 0;
454   }   // End of switch
455
456   assert(0 && "Unhandled case!");
457   return 0;
458 }
459
460 // getVal - This function is identical to getExistingVal, except that if a
461 // value is not already defined, it "improvises" by creating a placeholder var
462 // that looks and acts just like the requested variable.  When the value is
463 // defined later, all uses of the placeholder variable are replaced with the
464 // real thing.
465 //
466 static Value *getVal(const Type *Ty, const ValID &ID) {
467   if (Ty == Type::LabelTy) {
468     GenerateError("Cannot use a basic block here");
469     return 0;
470   }
471
472   // See if the value has already been defined.
473   Value *V = getExistingVal(Ty, ID);
474   if (V) return V;
475   if (TriggerError) return 0;
476
477   if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty)) {
478     GenerateError("Invalid use of a composite type");
479     return 0;
480   }
481
482   // If we reached here, we referenced either a symbol that we don't know about
483   // or an id number that hasn't been read yet.  We may be referencing something
484   // forward, so just create an entry to be resolved later and get to it...
485   //
486   switch (ID.Type) {
487   case ValID::GlobalName:
488   case ValID::GlobalID: {
489    const PointerType *PTy = dyn_cast<PointerType>(Ty);
490    if (!PTy) {
491      GenerateError("Invalid type for reference to global" );
492      return 0;
493    }
494    const Type* ElTy = PTy->getElementType();
495    if (const FunctionType *FTy = dyn_cast<FunctionType>(ElTy))
496      V = Function::Create(FTy, GlobalValue::ExternalLinkage);
497    else
498      V = new GlobalVariable(ElTy, false, GlobalValue::ExternalLinkage, 0, "",
499                             (Module*)0, false, PTy->getAddressSpace());
500    break;
501   }
502   default:
503    V = new Argument(Ty);
504   }
505   
506   // Remember where this forward reference came from.  FIXME, shouldn't we try
507   // to recycle these things??
508   CurModule.PlaceHolderInfo.insert(std::make_pair(V, std::make_pair(ID,
509                                                               LLLgetLineNo())));
510
511   if (inFunctionScope())
512     InsertValue(V, CurFun.LateResolveValues);
513   else
514     InsertValue(V, CurModule.LateResolveValues);
515   return V;
516 }
517
518 /// defineBBVal - This is a definition of a new basic block with the specified
519 /// identifier which must be the same as CurFun.NextValNum, if its numeric.
520 static BasicBlock *defineBBVal(const ValID &ID) {
521   assert(inFunctionScope() && "Can't get basic block at global scope!");
522
523   BasicBlock *BB = 0;
524
525   // First, see if this was forward referenced
526
527   std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
528   if (BBI != CurFun.BBForwardRefs.end()) {
529     BB = BBI->second;
530     // The forward declaration could have been inserted anywhere in the
531     // function: insert it into the correct place now.
532     CurFun.CurrentFunction->getBasicBlockList().remove(BB);
533     CurFun.CurrentFunction->getBasicBlockList().push_back(BB);
534
535     // We're about to erase the entry, save the key so we can clean it up.
536     ValID Tmp = BBI->first;
537
538     // Erase the forward ref from the map as its no longer "forward"
539     CurFun.BBForwardRefs.erase(ID);
540
541     // The key has been removed from the map but so we don't want to leave 
542     // strdup'd memory around so destroy it too.
543     Tmp.destroy();
544
545     // If its a numbered definition, bump the number and set the BB value.
546     if (ID.Type == ValID::LocalID) {
547       assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
548       InsertValue(BB);
549     }
550   } else { 
551     // We haven't seen this BB before and its first mention is a definition. 
552     // Just create it and return it.
553     std::string Name (ID.Type == ValID::LocalName ? ID.getName() : "");
554     BB = BasicBlock::Create(Name, CurFun.CurrentFunction);
555     if (ID.Type == ValID::LocalID) {
556       assert(ID.Num == CurFun.NextValNum && "Invalid new block number");
557       InsertValue(BB);
558     }
559   }
560
561   ID.destroy();
562   return BB;
563 }
564
565 /// getBBVal - get an existing BB value or create a forward reference for it.
566 /// 
567 static BasicBlock *getBBVal(const ValID &ID) {
568   assert(inFunctionScope() && "Can't get basic block at global scope!");
569
570   BasicBlock *BB =  0;
571
572   std::map<ValID, BasicBlock*>::iterator BBI = CurFun.BBForwardRefs.find(ID);
573   if (BBI != CurFun.BBForwardRefs.end()) {
574     BB = BBI->second;
575   } if (ID.Type == ValID::LocalName) {
576     std::string Name = ID.getName();
577     Value *N = CurFun.CurrentFunction->getValueSymbolTable().lookup(Name);
578     if (N) {
579       if (N->getType()->getTypeID() == Type::LabelTyID)
580         BB = cast<BasicBlock>(N);
581       else
582         GenerateError("Reference to label '" + Name + "' is actually of type '"+
583           N->getType()->getDescription() + "'");
584     }
585   } else if (ID.Type == ValID::LocalID) {
586     if (ID.Num < CurFun.NextValNum && ID.Num < CurFun.Values.size()) {
587       if (CurFun.Values[ID.Num]->getType()->getTypeID() == Type::LabelTyID)
588         BB = cast<BasicBlock>(CurFun.Values[ID.Num]);
589       else
590         GenerateError("Reference to label '%" + utostr(ID.Num) + 
591           "' is actually of type '"+ 
592           CurFun.Values[ID.Num]->getType()->getDescription() + "'");
593     }
594   } else {
595     GenerateError("Illegal label reference " + ID.getName());
596     return 0;
597   }
598
599   // If its already been defined, return it now.
600   if (BB) {
601     ID.destroy(); // Free strdup'd memory.
602     return BB;
603   }
604
605   // Otherwise, this block has not been seen before, create it.
606   std::string Name;
607   if (ID.Type == ValID::LocalName)
608     Name = ID.getName();
609   BB = BasicBlock::Create(Name, CurFun.CurrentFunction);
610
611   // Insert it in the forward refs map.
612   CurFun.BBForwardRefs[ID] = BB;
613
614   return BB;
615 }
616
617
618 //===----------------------------------------------------------------------===//
619 //              Code to handle forward references in instructions
620 //===----------------------------------------------------------------------===//
621 //
622 // This code handles the late binding needed with statements that reference
623 // values not defined yet... for example, a forward branch, or the PHI node for
624 // a loop body.
625 //
626 // This keeps a table (CurFun.LateResolveValues) of all such forward references
627 // and back patchs after we are done.
628 //
629
630 // ResolveDefinitions - If we could not resolve some defs at parsing
631 // time (forward branches, phi functions for loops, etc...) resolve the
632 // defs now...
633 //
634 static void 
635 ResolveDefinitions(ValueList &LateResolvers, ValueList *FutureLateResolvers) {
636   // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
637   while (!LateResolvers.empty()) {
638     Value *V = LateResolvers.back();
639     LateResolvers.pop_back();
640
641     std::map<Value*, std::pair<ValID, int> >::iterator PHI =
642       CurModule.PlaceHolderInfo.find(V);
643     assert(PHI != CurModule.PlaceHolderInfo.end() && "Placeholder error!");
644
645     ValID &DID = PHI->second.first;
646
647     Value *TheRealValue = getExistingVal(V->getType(), DID);
648     if (TriggerError)
649       return;
650     if (TheRealValue) {
651       V->replaceAllUsesWith(TheRealValue);
652       delete V;
653       CurModule.PlaceHolderInfo.erase(PHI);
654     } else if (FutureLateResolvers) {
655       // Functions have their unresolved items forwarded to the module late
656       // resolver table
657       InsertValue(V, *FutureLateResolvers);
658     } else {
659       if (DID.Type == ValID::LocalName || DID.Type == ValID::GlobalName) {
660         GenerateError("Reference to an invalid definition: '" +DID.getName()+
661                        "' of type '" + V->getType()->getDescription() + "'",
662                        PHI->second.second);
663         return;
664       } else {
665         GenerateError("Reference to an invalid definition: #" +
666                        itostr(DID.Num) + " of type '" +
667                        V->getType()->getDescription() + "'",
668                        PHI->second.second);
669         return;
670       }
671     }
672   }
673   LateResolvers.clear();
674 }
675
676 // ResolveTypeTo - A brand new type was just declared.  This means that (if
677 // name is not null) things referencing Name can be resolved.  Otherwise, things
678 // refering to the number can be resolved.  Do this now.
679 //
680 static void ResolveTypeTo(std::string *Name, const Type *ToTy) {
681   ValID D;
682   if (Name)
683     D = ValID::createLocalName(*Name);
684   else      
685     D = ValID::createLocalID(CurModule.Types.size());
686
687   std::map<ValID, PATypeHolder>::iterator I =
688     CurModule.LateResolveTypes.find(D);
689   if (I != CurModule.LateResolveTypes.end()) {
690     ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
691     CurModule.LateResolveTypes.erase(I);
692   }
693 }
694
695 // setValueName - Set the specified value to the name given.  The name may be
696 // null potentially, in which case this is a noop.  The string passed in is
697 // assumed to be a malloc'd string buffer, and is free'd by this function.
698 //
699 static void setValueName(Value *V, std::string *NameStr) {
700   if (!NameStr) return;
701   std::string Name(*NameStr);      // Copy string
702   delete NameStr;                  // Free old string
703
704   if (V->getType() == Type::VoidTy) {
705     GenerateError("Can't assign name '" + Name+"' to value with void type");
706     return;
707   }
708
709   assert(inFunctionScope() && "Must be in function scope!");
710   ValueSymbolTable &ST = CurFun.CurrentFunction->getValueSymbolTable();
711   if (ST.lookup(Name)) {
712     GenerateError("Redefinition of value '" + Name + "' of type '" +
713                    V->getType()->getDescription() + "'");
714     return;
715   }
716
717   // Set the name.
718   V->setName(Name);
719 }
720
721 /// ParseGlobalVariable - Handle parsing of a global.  If Initializer is null,
722 /// this is a declaration, otherwise it is a definition.
723 static GlobalVariable *
724 ParseGlobalVariable(std::string *NameStr,
725                     GlobalValue::LinkageTypes Linkage,
726                     GlobalValue::VisibilityTypes Visibility,
727                     bool isConstantGlobal, const Type *Ty,
728                     Constant *Initializer, bool IsThreadLocal,
729                     unsigned AddressSpace = 0) {
730   if (isa<FunctionType>(Ty)) {
731     GenerateError("Cannot declare global vars of function type");
732     return 0;
733   }
734
735   const PointerType *PTy = PointerType::get(Ty, AddressSpace);
736
737   std::string Name;
738   if (NameStr) {
739     Name = *NameStr;      // Copy string
740     delete NameStr;       // Free old string
741   }
742
743   // See if this global value was forward referenced.  If so, recycle the
744   // object.
745   ValID ID;
746   if (!Name.empty()) {
747     ID = ValID::createGlobalName(Name);
748   } else {
749     ID = ValID::createGlobalID(CurModule.Values.size());
750   }
751
752   if (GlobalValue *FWGV = CurModule.GetForwardRefForGlobal(PTy, ID)) {
753     // Move the global to the end of the list, from whereever it was
754     // previously inserted.
755     GlobalVariable *GV = cast<GlobalVariable>(FWGV);
756     CurModule.CurrentModule->getGlobalList().remove(GV);
757     CurModule.CurrentModule->getGlobalList().push_back(GV);
758     GV->setInitializer(Initializer);
759     GV->setLinkage(Linkage);
760     GV->setVisibility(Visibility);
761     GV->setConstant(isConstantGlobal);
762     GV->setThreadLocal(IsThreadLocal);
763     InsertValue(GV, CurModule.Values);
764     return GV;
765   }
766
767   // If this global has a name
768   if (!Name.empty()) {
769     // if the global we're parsing has an initializer (is a definition) and
770     // has external linkage.
771     if (Initializer && Linkage != GlobalValue::InternalLinkage)
772       // If there is already a global with external linkage with this name
773       if (CurModule.CurrentModule->getGlobalVariable(Name, false)) {
774         // If we allow this GVar to get created, it will be renamed in the
775         // symbol table because it conflicts with an existing GVar. We can't
776         // allow redefinition of GVars whose linking indicates that their name
777         // must stay the same. Issue the error.
778         GenerateError("Redefinition of global variable named '" + Name +
779                        "' of type '" + Ty->getDescription() + "'");
780         return 0;
781       }
782   }
783
784   // Otherwise there is no existing GV to use, create one now.
785   GlobalVariable *GV =
786     new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
787                        CurModule.CurrentModule, IsThreadLocal, AddressSpace);
788   GV->setVisibility(Visibility);
789   InsertValue(GV, CurModule.Values);
790   return GV;
791 }
792
793 // setTypeName - Set the specified type to the name given.  The name may be
794 // null potentially, in which case this is a noop.  The string passed in is
795 // assumed to be a malloc'd string buffer, and is freed by this function.
796 //
797 // This function returns true if the type has already been defined, but is
798 // allowed to be redefined in the specified context.  If the name is a new name
799 // for the type plane, it is inserted and false is returned.
800 static bool setTypeName(const Type *T, std::string *NameStr) {
801   assert(!inFunctionScope() && "Can't give types function-local names!");
802   if (NameStr == 0) return false;
803  
804   std::string Name(*NameStr);      // Copy string
805   delete NameStr;                  // Free old string
806
807   // We don't allow assigning names to void type
808   if (T == Type::VoidTy) {
809     GenerateError("Can't assign name '" + Name + "' to the void type");
810     return false;
811   }
812
813   // Set the type name, checking for conflicts as we do so.
814   bool AlreadyExists = CurModule.CurrentModule->addTypeName(Name, T);
815
816   if (AlreadyExists) {   // Inserting a name that is already defined???
817     const Type *Existing = CurModule.CurrentModule->getTypeByName(Name);
818     assert(Existing && "Conflict but no matching type?!");
819
820     // There is only one case where this is allowed: when we are refining an
821     // opaque type.  In this case, Existing will be an opaque type.
822     if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Existing)) {
823       // We ARE replacing an opaque type!
824       const_cast<OpaqueType*>(OpTy)->refineAbstractTypeTo(T);
825       return true;
826     }
827
828     // Otherwise, this is an attempt to redefine a type. That's okay if
829     // the redefinition is identical to the original. This will be so if
830     // Existing and T point to the same Type object. In this one case we
831     // allow the equivalent redefinition.
832     if (Existing == T) return true;  // Yes, it's equal.
833
834     // Any other kind of (non-equivalent) redefinition is an error.
835     GenerateError("Redefinition of type named '" + Name + "' of type '" +
836                    T->getDescription() + "'");
837   }
838
839   return false;
840 }
841
842 //===----------------------------------------------------------------------===//
843 // Code for handling upreferences in type names...
844 //
845
846 // TypeContains - Returns true if Ty directly contains E in it.
847 //
848 static bool TypeContains(const Type *Ty, const Type *E) {
849   return std::find(Ty->subtype_begin(), Ty->subtype_end(),
850                    E) != Ty->subtype_end();
851 }
852
853 namespace {
854   struct UpRefRecord {
855     // NestingLevel - The number of nesting levels that need to be popped before
856     // this type is resolved.
857     unsigned NestingLevel;
858
859     // LastContainedTy - This is the type at the current binding level for the
860     // type.  Every time we reduce the nesting level, this gets updated.
861     const Type *LastContainedTy;
862
863     // UpRefTy - This is the actual opaque type that the upreference is
864     // represented with.
865     OpaqueType *UpRefTy;
866
867     UpRefRecord(unsigned NL, OpaqueType *URTy)
868       : NestingLevel(NL), LastContainedTy(URTy), UpRefTy(URTy) {}
869   };
870 }
871
872 // UpRefs - A list of the outstanding upreferences that need to be resolved.
873 static std::vector<UpRefRecord> UpRefs;
874
875 /// HandleUpRefs - Every time we finish a new layer of types, this function is
876 /// called.  It loops through the UpRefs vector, which is a list of the
877 /// currently active types.  For each type, if the up reference is contained in
878 /// the newly completed type, we decrement the level count.  When the level
879 /// count reaches zero, the upreferenced type is the type that is passed in:
880 /// thus we can complete the cycle.
881 ///
882 static PATypeHolder HandleUpRefs(const Type *ty) {
883   // If Ty isn't abstract, or if there are no up-references in it, then there is
884   // nothing to resolve here.
885   if (!ty->isAbstract() || UpRefs.empty()) return ty;
886   
887   PATypeHolder Ty(ty);
888   UR_OUT("Type '" << Ty->getDescription() <<
889          "' newly formed.  Resolving upreferences.\n" <<
890          UpRefs.size() << " upreferences active!\n");
891
892   // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
893   // to zero), we resolve them all together before we resolve them to Ty.  At
894   // the end of the loop, if there is anything to resolve to Ty, it will be in
895   // this variable.
896   OpaqueType *TypeToResolve = 0;
897
898   for (unsigned i = 0; i != UpRefs.size(); ++i) {
899     UR_OUT("  UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
900            << UpRefs[i].second->getDescription() << ") = "
901            << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << "\n");
902     if (TypeContains(Ty, UpRefs[i].LastContainedTy)) {
903       // Decrement level of upreference
904       unsigned Level = --UpRefs[i].NestingLevel;
905       UpRefs[i].LastContainedTy = Ty;
906       UR_OUT("  Uplevel Ref Level = " << Level << "\n");
907       if (Level == 0) {                     // Upreference should be resolved!
908         if (!TypeToResolve) {
909           TypeToResolve = UpRefs[i].UpRefTy;
910         } else {
911           UR_OUT("  * Resolving upreference for "
912                  << UpRefs[i].second->getDescription() << "\n";
913                  std::string OldName = UpRefs[i].UpRefTy->getDescription());
914           UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
915           UR_OUT("  * Type '" << OldName << "' refined upreference to: "
916                  << (const void*)Ty << ", " << Ty->getDescription() << "\n");
917         }
918         UpRefs.erase(UpRefs.begin()+i);     // Remove from upreference list...
919         --i;                                // Do not skip the next element...
920       }
921     }
922   }
923
924   if (TypeToResolve) {
925     UR_OUT("  * Resolving upreference for "
926            << UpRefs[i].second->getDescription() << "\n";
927            std::string OldName = TypeToResolve->getDescription());
928     TypeToResolve->refineAbstractTypeTo(Ty);
929   }
930
931   return Ty;
932 }
933
934 //===----------------------------------------------------------------------===//
935 //            RunVMAsmParser - Define an interface to this parser
936 //===----------------------------------------------------------------------===//
937 //
938 static Module* RunParser(Module * M);
939
940 Module *llvm::RunVMAsmParser(llvm::MemoryBuffer *MB) {
941   InitLLLexer(MB);
942   Module *M = RunParser(new Module(LLLgetFilename()));
943   FreeLexer();
944   return M;
945 }
946
947 %}
948
949 %union {
950   llvm::Module                           *ModuleVal;
951   llvm::Function                         *FunctionVal;
952   llvm::BasicBlock                       *BasicBlockVal;
953   llvm::TerminatorInst                   *TermInstVal;
954   llvm::Instruction                      *InstVal;
955   llvm::Constant                         *ConstVal;
956
957   const llvm::Type                       *PrimType;
958   std::list<llvm::PATypeHolder>          *TypeList;
959   llvm::PATypeHolder                     *TypeVal;
960   llvm::Value                            *ValueVal;
961   std::vector<llvm::Value*>              *ValueList;
962   llvm::ArgListType                      *ArgList;
963   llvm::TypeWithAttrs                     TypeWithAttrs;
964   llvm::TypeWithAttrsList                *TypeWithAttrsList;
965   llvm::ParamList                        *ParamList;
966
967   // Represent the RHS of PHI node
968   std::list<std::pair<llvm::Value*,
969                       llvm::BasicBlock*> > *PHIList;
970   std::vector<std::pair<llvm::Constant*, llvm::BasicBlock*> > *JumpTable;
971   std::vector<llvm::Constant*>           *ConstVector;
972
973   llvm::GlobalValue::LinkageTypes         Linkage;
974   llvm::GlobalValue::VisibilityTypes      Visibility;
975   llvm::ParameterAttributes         ParamAttrs;
976   llvm::APInt                       *APIntVal;
977   int64_t                           SInt64Val;
978   uint64_t                          UInt64Val;
979   int                               SIntVal;
980   unsigned                          UIntVal;
981   llvm::APFloat                    *FPVal;
982   bool                              BoolVal;
983
984   std::string                      *StrVal;   // This memory must be deleted
985   llvm::ValID                       ValIDVal;
986
987   llvm::Instruction::BinaryOps      BinaryOpVal;
988   llvm::Instruction::TermOps        TermOpVal;
989   llvm::Instruction::MemoryOps      MemOpVal;
990   llvm::Instruction::CastOps        CastOpVal;
991   llvm::Instruction::OtherOps       OtherOpVal;
992   llvm::ICmpInst::Predicate         IPredicate;
993   llvm::FCmpInst::Predicate         FPredicate;
994 }
995
996 %type <ModuleVal>     Module 
997 %type <FunctionVal>   Function FunctionProto FunctionHeader BasicBlockList
998 %type <BasicBlockVal> BasicBlock InstructionList
999 %type <TermInstVal>   BBTerminatorInst
1000 %type <InstVal>       Inst InstVal MemoryInst
1001 %type <ConstVal>      ConstVal ConstExpr AliaseeRef
1002 %type <ConstVector>   ConstVector
1003 %type <ArgList>       ArgList ArgListH
1004 %type <PHIList>       PHIList
1005 %type <ParamList>     ParamList      // For call param lists & GEP indices
1006 %type <ValueList>     IndexList         // For GEP indices
1007 %type <TypeList>      TypeListI 
1008 %type <TypeWithAttrsList> ArgTypeList ArgTypeListI
1009 %type <TypeWithAttrs> ArgType
1010 %type <JumpTable>     JumpTable
1011 %type <BoolVal>       GlobalType                  // GLOBAL or CONSTANT?
1012 %type <BoolVal>       ThreadLocal                 // 'thread_local' or not
1013 %type <BoolVal>       OptVolatile                 // 'volatile' or not
1014 %type <BoolVal>       OptTailCall                 // TAIL CALL or plain CALL.
1015 %type <BoolVal>       OptSideEffect               // 'sideeffect' or not.
1016 %type <Linkage>       GVInternalLinkage GVExternalLinkage
1017 %type <Linkage>       FunctionDefineLinkage FunctionDeclareLinkage
1018 %type <Linkage>       AliasLinkage
1019 %type <Visibility>    GVVisibilityStyle
1020
1021 // ValueRef - Unresolved reference to a definition or BB
1022 %type <ValIDVal>      ValueRef ConstValueRef SymbolicValueRef
1023 %type <ValueVal>      ResolvedVal            // <type> <valref> pair
1024 %type <ValueList>     ReturnedVal
1025 // Tokens and types for handling constant integer values
1026 //
1027 // ESINT64VAL - A negative number within long long range
1028 %token <SInt64Val> ESINT64VAL
1029
1030 // EUINT64VAL - A positive number within uns. long long range
1031 %token <UInt64Val> EUINT64VAL
1032
1033 // ESAPINTVAL - A negative number with arbitrary precision 
1034 %token <APIntVal>  ESAPINTVAL
1035
1036 // EUAPINTVAL - A positive number with arbitrary precision 
1037 %token <APIntVal>  EUAPINTVAL
1038
1039 %token  <UIntVal>   LOCALVAL_ID GLOBALVAL_ID  // %123 @123
1040 %token  <FPVal>     FPVAL     // Float or Double constant
1041
1042 // Built in types...
1043 %type  <TypeVal> Types ResultTypes
1044 %type  <PrimType> IntType FPType PrimType           // Classifications
1045 %token <PrimType> VOID INTTYPE 
1046 %token <PrimType> FLOAT DOUBLE X86_FP80 FP128 PPC_FP128 LABEL
1047 %token TYPE
1048
1049
1050 %token<StrVal> LOCALVAR GLOBALVAR LABELSTR 
1051 %token<StrVal> STRINGCONSTANT ATSTRINGCONSTANT PCTSTRINGCONSTANT
1052 %type <StrVal> LocalName OptLocalName OptLocalAssign
1053 %type <StrVal> GlobalName OptGlobalAssign GlobalAssign
1054 %type <StrVal> OptSection SectionString OptGC
1055
1056 %type <UIntVal> OptAlign OptCAlign OptAddrSpace
1057
1058 %token ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
1059 %token DECLARE DEFINE GLOBAL CONSTANT SECTION ALIAS VOLATILE THREAD_LOCAL
1060 %token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
1061 %token DLLIMPORT DLLEXPORT EXTERN_WEAK COMMON
1062 %token OPAQUE EXTERNAL TARGET TRIPLE ALIGN ADDRSPACE
1063 %token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
1064 %token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
1065 %token DATALAYOUT
1066 %type <UIntVal> OptCallingConv
1067 %type <ParamAttrs> OptParamAttrs ParamAttr 
1068 %type <ParamAttrs> OptFuncAttrs  FuncAttr
1069
1070 // Basic Block Terminating Operators
1071 %token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
1072
1073 // Binary Operators
1074 %type  <BinaryOpVal> ArithmeticOps LogicalOps // Binops Subcatagories
1075 %token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
1076 %token <BinaryOpVal> SHL LSHR ASHR
1077
1078 %token <OtherOpVal> ICMP FCMP VICMP VFCMP
1079 %type  <IPredicate> IPredicates
1080 %type  <FPredicate> FPredicates
1081 %token  EQ NE SLT SGT SLE SGE ULT UGT ULE UGE 
1082 %token  OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
1083
1084 // Memory Instructions
1085 %token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
1086
1087 // Cast Operators
1088 %type <CastOpVal> CastOps
1089 %token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
1090 %token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
1091
1092 // Other Operators
1093 %token <OtherOpVal> PHI_TOK SELECT VAARG
1094 %token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
1095 %token <OtherOpVal> GETRESULT
1096
1097 // Function Attributes
1098 %token SIGNEXT ZEROEXT NORETURN INREG SRET NOUNWIND NOALIAS BYVAL NEST
1099 %token READNONE READONLY GC
1100
1101 // Visibility Styles
1102 %token DEFAULT HIDDEN PROTECTED
1103
1104 %start Module
1105 %%
1106
1107
1108 // Operations that are notably excluded from this list include:
1109 // RET, BR, & SWITCH because they end basic blocks and are treated specially.
1110 //
1111 ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
1112 LogicalOps   : SHL | LSHR | ASHR | AND | OR | XOR;
1113 CastOps      : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST | 
1114                UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
1115
1116 IPredicates  
1117   : EQ   { $$ = ICmpInst::ICMP_EQ; }  | NE   { $$ = ICmpInst::ICMP_NE; }
1118   | SLT  { $$ = ICmpInst::ICMP_SLT; } | SGT  { $$ = ICmpInst::ICMP_SGT; }
1119   | SLE  { $$ = ICmpInst::ICMP_SLE; } | SGE  { $$ = ICmpInst::ICMP_SGE; }
1120   | ULT  { $$ = ICmpInst::ICMP_ULT; } | UGT  { $$ = ICmpInst::ICMP_UGT; }
1121   | ULE  { $$ = ICmpInst::ICMP_ULE; } | UGE  { $$ = ICmpInst::ICMP_UGE; } 
1122   ;
1123
1124 FPredicates  
1125   : OEQ  { $$ = FCmpInst::FCMP_OEQ; } | ONE  { $$ = FCmpInst::FCMP_ONE; }
1126   | OLT  { $$ = FCmpInst::FCMP_OLT; } | OGT  { $$ = FCmpInst::FCMP_OGT; }
1127   | OLE  { $$ = FCmpInst::FCMP_OLE; } | OGE  { $$ = FCmpInst::FCMP_OGE; }
1128   | ORD  { $$ = FCmpInst::FCMP_ORD; } | UNO  { $$ = FCmpInst::FCMP_UNO; }
1129   | UEQ  { $$ = FCmpInst::FCMP_UEQ; } | UNE  { $$ = FCmpInst::FCMP_UNE; }
1130   | ULT  { $$ = FCmpInst::FCMP_ULT; } | UGT  { $$ = FCmpInst::FCMP_UGT; }
1131   | ULE  { $$ = FCmpInst::FCMP_ULE; } | UGE  { $$ = FCmpInst::FCMP_UGE; }
1132   | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1133   | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1134   ;
1135
1136 // These are some types that allow classification if we only want a particular 
1137 // thing... for example, only a signed, unsigned, or integral type.
1138 IntType :  INTTYPE;
1139 FPType   : FLOAT | DOUBLE | PPC_FP128 | FP128 | X86_FP80;
1140
1141 LocalName : LOCALVAR | STRINGCONSTANT | PCTSTRINGCONSTANT ;
1142 OptLocalName : LocalName | /*empty*/ { $$ = 0; };
1143
1144 OptAddrSpace : ADDRSPACE '(' EUINT64VAL ')' { $$=$3; }
1145              | /*empty*/                    { $$=0; };
1146
1147 /// OptLocalAssign - Value producing statements have an optional assignment
1148 /// component.
1149 OptLocalAssign : LocalName '=' {
1150     $$ = $1;
1151     CHECK_FOR_ERROR
1152   }
1153   | /*empty*/ {
1154     $$ = 0;
1155     CHECK_FOR_ERROR
1156   };
1157
1158 GlobalName : GLOBALVAR | ATSTRINGCONSTANT ;
1159
1160 OptGlobalAssign : GlobalAssign
1161   | /*empty*/ {
1162     $$ = 0;
1163     CHECK_FOR_ERROR
1164   };
1165
1166 GlobalAssign : GlobalName '=' {
1167     $$ = $1;
1168     CHECK_FOR_ERROR
1169   };
1170
1171 GVInternalLinkage 
1172   : INTERNAL    { $$ = GlobalValue::InternalLinkage; } 
1173   | WEAK        { $$ = GlobalValue::WeakLinkage; } 
1174   | LINKONCE    { $$ = GlobalValue::LinkOnceLinkage; }
1175   | APPENDING   { $$ = GlobalValue::AppendingLinkage; }
1176   | DLLEXPORT   { $$ = GlobalValue::DLLExportLinkage; } 
1177   | COMMON      { $$ = GlobalValue::CommonLinkage; }
1178   ;
1179
1180 GVExternalLinkage
1181   : DLLIMPORT   { $$ = GlobalValue::DLLImportLinkage; }
1182   | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1183   | EXTERNAL    { $$ = GlobalValue::ExternalLinkage; }
1184   ;
1185
1186 GVVisibilityStyle
1187   : /*empty*/ { $$ = GlobalValue::DefaultVisibility;   }
1188   | DEFAULT   { $$ = GlobalValue::DefaultVisibility;   }
1189   | HIDDEN    { $$ = GlobalValue::HiddenVisibility;    }
1190   | PROTECTED { $$ = GlobalValue::ProtectedVisibility; }
1191   ;
1192
1193 FunctionDeclareLinkage
1194   : /*empty*/   { $$ = GlobalValue::ExternalLinkage; }
1195   | DLLIMPORT   { $$ = GlobalValue::DLLImportLinkage; } 
1196   | EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; }
1197   ;
1198   
1199 FunctionDefineLinkage
1200   : /*empty*/   { $$ = GlobalValue::ExternalLinkage; }
1201   | INTERNAL    { $$ = GlobalValue::InternalLinkage; }
1202   | LINKONCE    { $$ = GlobalValue::LinkOnceLinkage; }
1203   | WEAK        { $$ = GlobalValue::WeakLinkage; }
1204   | DLLEXPORT   { $$ = GlobalValue::DLLExportLinkage; } 
1205   ; 
1206
1207 AliasLinkage
1208   : /*empty*/   { $$ = GlobalValue::ExternalLinkage; }
1209   | WEAK        { $$ = GlobalValue::WeakLinkage; }
1210   | INTERNAL    { $$ = GlobalValue::InternalLinkage; }
1211   ;
1212
1213 OptCallingConv : /*empty*/          { $$ = CallingConv::C; } |
1214                  CCC_TOK            { $$ = CallingConv::C; } |
1215                  FASTCC_TOK         { $$ = CallingConv::Fast; } |
1216                  COLDCC_TOK         { $$ = CallingConv::Cold; } |
1217                  X86_STDCALLCC_TOK  { $$ = CallingConv::X86_StdCall; } |
1218                  X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
1219                  CC_TOK EUINT64VAL  {
1220                    if ((unsigned)$2 != $2)
1221                      GEN_ERROR("Calling conv too large");
1222                    $$ = $2;
1223                   CHECK_FOR_ERROR
1224                  };
1225
1226 ParamAttr     : ZEROEXT { $$ = ParamAttr::ZExt;      }
1227               | ZEXT    { $$ = ParamAttr::ZExt;      }
1228               | SIGNEXT { $$ = ParamAttr::SExt;      }
1229               | SEXT    { $$ = ParamAttr::SExt;      }
1230               | INREG   { $$ = ParamAttr::InReg;     }
1231               | SRET    { $$ = ParamAttr::StructRet; }
1232               | NOALIAS { $$ = ParamAttr::NoAlias;   }
1233               | BYVAL   { $$ = ParamAttr::ByVal;     }
1234               | NEST    { $$ = ParamAttr::Nest;      }
1235               | ALIGN EUINT64VAL { $$ = 
1236                           ParamAttr::constructAlignmentFromInt($2);    }
1237               ;
1238
1239 OptParamAttrs : /* empty */  { $$ = ParamAttr::None; }
1240               | OptParamAttrs ParamAttr {
1241                 $$ = $1 | $2;
1242               }
1243               ;
1244
1245 FuncAttr      : NORETURN { $$ = ParamAttr::NoReturn; }
1246               | NOUNWIND { $$ = ParamAttr::NoUnwind; }
1247               | ZEROEXT  { $$ = ParamAttr::ZExt;     }
1248               | SIGNEXT  { $$ = ParamAttr::SExt;     }
1249               | READNONE { $$ = ParamAttr::ReadNone; }
1250               | READONLY { $$ = ParamAttr::ReadOnly; }
1251               ;
1252
1253 OptFuncAttrs  : /* empty */ { $$ = ParamAttr::None; }
1254               | OptFuncAttrs FuncAttr {
1255                 $$ = $1 | $2;
1256               }
1257               ;
1258
1259 OptGC         : /* empty */ { $$ = 0; }
1260               | GC STRINGCONSTANT {
1261                 $$ = $2;
1262               }
1263               ;
1264
1265 // OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1266 // a comma before it.
1267 OptAlign : /*empty*/        { $$ = 0; } |
1268            ALIGN EUINT64VAL {
1269   $$ = $2;
1270   if ($$ != 0 && !isPowerOf2_32($$))
1271     GEN_ERROR("Alignment must be a power of two");
1272   CHECK_FOR_ERROR
1273 };
1274 OptCAlign : /*empty*/            { $$ = 0; } |
1275             ',' ALIGN EUINT64VAL {
1276   $$ = $3;
1277   if ($$ != 0 && !isPowerOf2_32($$))
1278     GEN_ERROR("Alignment must be a power of two");
1279   CHECK_FOR_ERROR
1280 };
1281
1282
1283
1284 SectionString : SECTION STRINGCONSTANT {
1285   for (unsigned i = 0, e = $2->length(); i != e; ++i)
1286     if ((*$2)[i] == '"' || (*$2)[i] == '\\')
1287       GEN_ERROR("Invalid character in section name");
1288   $$ = $2;
1289   CHECK_FOR_ERROR
1290 };
1291
1292 OptSection : /*empty*/ { $$ = 0; } |
1293              SectionString { $$ = $1; };
1294
1295 // GlobalVarAttributes - Used to pass the attributes string on a global.  CurGV
1296 // is set to be the global we are processing.
1297 //
1298 GlobalVarAttributes : /* empty */ {} |
1299                      ',' GlobalVarAttribute GlobalVarAttributes {};
1300 GlobalVarAttribute : SectionString {
1301     CurGV->setSection(*$1);
1302     delete $1;
1303     CHECK_FOR_ERROR
1304   } 
1305   | ALIGN EUINT64VAL {
1306     if ($2 != 0 && !isPowerOf2_32($2))
1307       GEN_ERROR("Alignment must be a power of two");
1308     CurGV->setAlignment($2);
1309     CHECK_FOR_ERROR
1310   };
1311
1312 //===----------------------------------------------------------------------===//
1313 // Types includes all predefined types... except void, because it can only be
1314 // used in specific contexts (function returning void for example).  
1315
1316 // Derived types are added later...
1317 //
1318 PrimType : INTTYPE | FLOAT | DOUBLE | PPC_FP128 | FP128 | X86_FP80 | LABEL ;
1319
1320 Types 
1321   : OPAQUE {
1322     $$ = new PATypeHolder(OpaqueType::get());
1323     CHECK_FOR_ERROR
1324   }
1325   | PrimType {
1326     $$ = new PATypeHolder($1);
1327     CHECK_FOR_ERROR
1328   }
1329   | Types OptAddrSpace '*' {                             // Pointer type?
1330     if (*$1 == Type::LabelTy)
1331       GEN_ERROR("Cannot form a pointer to a basic block");
1332     $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1, $2)));
1333     delete $1;
1334     CHECK_FOR_ERROR
1335   }
1336   | SymbolicValueRef {            // Named types are also simple types...
1337     const Type* tmp = getTypeVal($1);
1338     CHECK_FOR_ERROR
1339     $$ = new PATypeHolder(tmp);
1340   }
1341   | '\\' EUINT64VAL {                   // Type UpReference
1342     if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range");
1343     OpaqueType *OT = OpaqueType::get();        // Use temporary placeholder
1344     UpRefs.push_back(UpRefRecord((unsigned)$2, OT));  // Add to vector...
1345     $$ = new PATypeHolder(OT);
1346     UR_OUT("New Upreference!\n");
1347     CHECK_FOR_ERROR
1348   }
1349   | Types '(' ArgTypeListI ')' OptFuncAttrs {
1350     // Allow but ignore attributes on function types; this permits auto-upgrade.
1351     // FIXME: remove in LLVM 3.0.
1352     const Type *RetTy = *$1;
1353     if (!FunctionType::isValidReturnType(RetTy))
1354       GEN_ERROR("Invalid result type for LLVM function");
1355       
1356     std::vector<const Type*> Params;
1357     TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1358     for (; I != E; ++I ) {
1359       const Type *Ty = I->Ty->get();
1360       Params.push_back(Ty);
1361     }
1362
1363     bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1364     if (isVarArg) Params.pop_back();
1365
1366     for (unsigned i = 0; i != Params.size(); ++i)
1367       if (!(Params[i]->isFirstClassType() || isa<OpaqueType>(Params[i])))
1368         GEN_ERROR("Function arguments must be value types!");
1369
1370     CHECK_FOR_ERROR
1371
1372     FunctionType *FT = FunctionType::get(RetTy, Params, isVarArg);
1373     delete $3;   // Delete the argument list
1374     delete $1;   // Delete the return type handle
1375     $$ = new PATypeHolder(HandleUpRefs(FT)); 
1376     CHECK_FOR_ERROR
1377   }
1378   | VOID '(' ArgTypeListI ')' OptFuncAttrs {
1379     // Allow but ignore attributes on function types; this permits auto-upgrade.
1380     // FIXME: remove in LLVM 3.0.
1381     std::vector<const Type*> Params;
1382     TypeWithAttrsList::iterator I = $3->begin(), E = $3->end();
1383     for ( ; I != E; ++I ) {
1384       const Type* Ty = I->Ty->get();
1385       Params.push_back(Ty);
1386     }
1387
1388     bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1389     if (isVarArg) Params.pop_back();
1390
1391     for (unsigned i = 0; i != Params.size(); ++i)
1392       if (!(Params[i]->isFirstClassType() || isa<OpaqueType>(Params[i])))
1393         GEN_ERROR("Function arguments must be value types!");
1394
1395     CHECK_FOR_ERROR
1396
1397     FunctionType *FT = FunctionType::get($1, Params, isVarArg);
1398     delete $3;      // Delete the argument list
1399     $$ = new PATypeHolder(HandleUpRefs(FT)); 
1400     CHECK_FOR_ERROR
1401   }
1402
1403   | '[' EUINT64VAL 'x' Types ']' {          // Sized array type?
1404     $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
1405     delete $4;
1406     CHECK_FOR_ERROR
1407   }
1408   | '<' EUINT64VAL 'x' Types '>' {          // Vector type?
1409      const llvm::Type* ElemTy = $4->get();
1410      if ((unsigned)$2 != $2)
1411         GEN_ERROR("Unsigned result not equal to signed result");
1412      if (!ElemTy->isFloatingPoint() && !ElemTy->isInteger())
1413         GEN_ERROR("Element type of a VectorType must be primitive");
1414      $$ = new PATypeHolder(HandleUpRefs(VectorType::get(*$4, (unsigned)$2)));
1415      delete $4;
1416      CHECK_FOR_ERROR
1417   }
1418   | '{' TypeListI '}' {                        // Structure type?
1419     std::vector<const Type*> Elements;
1420     for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
1421            E = $2->end(); I != E; ++I)
1422       Elements.push_back(*I);
1423
1424     $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
1425     delete $2;
1426     CHECK_FOR_ERROR
1427   }
1428   | '{' '}' {                                  // Empty structure type?
1429     $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
1430     CHECK_FOR_ERROR
1431   }
1432   | '<' '{' TypeListI '}' '>' {
1433     std::vector<const Type*> Elements;
1434     for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1435            E = $3->end(); I != E; ++I)
1436       Elements.push_back(*I);
1437
1438     $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1439     delete $3;
1440     CHECK_FOR_ERROR
1441   }
1442   | '<' '{' '}' '>' {                         // Empty structure type?
1443     $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1444     CHECK_FOR_ERROR
1445   }
1446   ;
1447
1448 ArgType 
1449   : Types OptParamAttrs {
1450     // Allow but ignore attributes on function types; this permits auto-upgrade.
1451     // FIXME: remove in LLVM 3.0.
1452     $$.Ty = $1; 
1453     $$.Attrs = ParamAttr::None;
1454   }
1455   ;
1456
1457 ResultTypes
1458   : Types {
1459     if (!UpRefs.empty())
1460       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1461     if (!(*$1)->isFirstClassType() && !isa<StructType>($1->get()))
1462       GEN_ERROR("LLVM functions cannot return aggregate types");
1463     $$ = $1;
1464   }
1465   | VOID {
1466     $$ = new PATypeHolder(Type::VoidTy);
1467   }
1468   ;
1469
1470 ArgTypeList : ArgType {
1471     $$ = new TypeWithAttrsList();
1472     $$->push_back($1);
1473     CHECK_FOR_ERROR
1474   }
1475   | ArgTypeList ',' ArgType {
1476     ($$=$1)->push_back($3);
1477     CHECK_FOR_ERROR
1478   }
1479   ;
1480
1481 ArgTypeListI 
1482   : ArgTypeList
1483   | ArgTypeList ',' DOTDOTDOT {
1484     $$=$1;
1485     TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
1486     TWA.Ty = new PATypeHolder(Type::VoidTy);
1487     $$->push_back(TWA);
1488     CHECK_FOR_ERROR
1489   }
1490   | DOTDOTDOT {
1491     $$ = new TypeWithAttrsList;
1492     TypeWithAttrs TWA; TWA.Attrs = ParamAttr::None;
1493     TWA.Ty = new PATypeHolder(Type::VoidTy);
1494     $$->push_back(TWA);
1495     CHECK_FOR_ERROR
1496   }
1497   | /*empty*/ {
1498     $$ = new TypeWithAttrsList();
1499     CHECK_FOR_ERROR
1500   };
1501
1502 // TypeList - Used for struct declarations and as a basis for function type 
1503 // declaration type lists
1504 //
1505 TypeListI : Types {
1506     $$ = new std::list<PATypeHolder>();
1507     $$->push_back(*$1); 
1508     delete $1;
1509     CHECK_FOR_ERROR
1510   }
1511   | TypeListI ',' Types {
1512     ($$=$1)->push_back(*$3); 
1513     delete $3;
1514     CHECK_FOR_ERROR
1515   };
1516
1517 // ConstVal - The various declarations that go into the constant pool.  This
1518 // production is used ONLY to represent constants that show up AFTER a 'const',
1519 // 'constant' or 'global' token at global scope.  Constants that can be inlined
1520 // into other expressions (such as integers and constexprs) are handled by the
1521 // ResolvedVal, ValueRef and ConstValueRef productions.
1522 //
1523 ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
1524     if (!UpRefs.empty())
1525       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1526     const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
1527     if (ATy == 0)
1528       GEN_ERROR("Cannot make array constant with type: '" + 
1529                      (*$1)->getDescription() + "'");
1530     const Type *ETy = ATy->getElementType();
1531     int NumElements = ATy->getNumElements();
1532
1533     // Verify that we have the correct size...
1534     if (NumElements != -1 && NumElements != (int)$3->size())
1535       GEN_ERROR("Type mismatch: constant sized array initialized with " +
1536                      utostr($3->size()) +  " arguments, but has size of " + 
1537                      itostr(NumElements) + "");
1538
1539     // Verify all elements are correct type!
1540     for (unsigned i = 0; i < $3->size(); i++) {
1541       if (ETy != (*$3)[i]->getType())
1542         GEN_ERROR("Element #" + utostr(i) + " is not of type '" + 
1543                        ETy->getDescription() +"' as required!\nIt is of type '"+
1544                        (*$3)[i]->getType()->getDescription() + "'.");
1545     }
1546
1547     $$ = ConstantArray::get(ATy, *$3);
1548     delete $1; delete $3;
1549     CHECK_FOR_ERROR
1550   }
1551   | Types '[' ']' {
1552     if (!UpRefs.empty())
1553       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1554     const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
1555     if (ATy == 0)
1556       GEN_ERROR("Cannot make array constant with type: '" + 
1557                      (*$1)->getDescription() + "'");
1558
1559     int NumElements = ATy->getNumElements();
1560     if (NumElements != -1 && NumElements != 0) 
1561       GEN_ERROR("Type mismatch: constant sized array initialized with 0"
1562                      " arguments, but has size of " + itostr(NumElements) +"");
1563     $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1564     delete $1;
1565     CHECK_FOR_ERROR
1566   }
1567   | Types 'c' STRINGCONSTANT {
1568     if (!UpRefs.empty())
1569       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1570     const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
1571     if (ATy == 0)
1572       GEN_ERROR("Cannot make array constant with type: '" + 
1573                      (*$1)->getDescription() + "'");
1574
1575     int NumElements = ATy->getNumElements();
1576     const Type *ETy = ATy->getElementType();
1577     if (NumElements != -1 && NumElements != int($3->length()))
1578       GEN_ERROR("Can't build string constant of size " + 
1579                      itostr((int)($3->length())) +
1580                      " when array has size " + itostr(NumElements) + "");
1581     std::vector<Constant*> Vals;
1582     if (ETy == Type::Int8Ty) {
1583       for (unsigned i = 0; i < $3->length(); ++i)
1584         Vals.push_back(ConstantInt::get(ETy, (*$3)[i]));
1585     } else {
1586       delete $3;
1587       GEN_ERROR("Cannot build string arrays of non byte sized elements");
1588     }
1589     delete $3;
1590     $$ = ConstantArray::get(ATy, Vals);
1591     delete $1;
1592     CHECK_FOR_ERROR
1593   }
1594   | Types '<' ConstVector '>' { // Nonempty unsized arr
1595     if (!UpRefs.empty())
1596       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1597     const VectorType *PTy = dyn_cast<VectorType>($1->get());
1598     if (PTy == 0)
1599       GEN_ERROR("Cannot make packed constant with type: '" + 
1600                      (*$1)->getDescription() + "'");
1601     const Type *ETy = PTy->getElementType();
1602     int NumElements = PTy->getNumElements();
1603
1604     // Verify that we have the correct size...
1605     if (NumElements != -1 && NumElements != (int)$3->size())
1606       GEN_ERROR("Type mismatch: constant sized packed initialized with " +
1607                      utostr($3->size()) +  " arguments, but has size of " + 
1608                      itostr(NumElements) + "");
1609
1610     // Verify all elements are correct type!
1611     for (unsigned i = 0; i < $3->size(); i++) {
1612       if (ETy != (*$3)[i]->getType())
1613         GEN_ERROR("Element #" + utostr(i) + " is not of type '" + 
1614            ETy->getDescription() +"' as required!\nIt is of type '"+
1615            (*$3)[i]->getType()->getDescription() + "'.");
1616     }
1617
1618     $$ = ConstantVector::get(PTy, *$3);
1619     delete $1; delete $3;
1620     CHECK_FOR_ERROR
1621   }
1622   | Types '{' ConstVector '}' {
1623     const StructType *STy = dyn_cast<StructType>($1->get());
1624     if (STy == 0)
1625       GEN_ERROR("Cannot make struct constant with type: '" + 
1626                      (*$1)->getDescription() + "'");
1627
1628     if ($3->size() != STy->getNumContainedTypes())
1629       GEN_ERROR("Illegal number of initializers for structure type");
1630
1631     // Check to ensure that constants are compatible with the type initializer!
1632     for (unsigned i = 0, e = $3->size(); i != e; ++i)
1633       if ((*$3)[i]->getType() != STy->getElementType(i))
1634         GEN_ERROR("Expected type '" +
1635                        STy->getElementType(i)->getDescription() +
1636                        "' for element #" + utostr(i) +
1637                        " of structure initializer");
1638
1639     // Check to ensure that Type is not packed
1640     if (STy->isPacked())
1641       GEN_ERROR("Unpacked Initializer to vector type '" +
1642                 STy->getDescription() + "'");
1643
1644     $$ = ConstantStruct::get(STy, *$3);
1645     delete $1; delete $3;
1646     CHECK_FOR_ERROR
1647   }
1648   | Types '{' '}' {
1649     if (!UpRefs.empty())
1650       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1651     const StructType *STy = dyn_cast<StructType>($1->get());
1652     if (STy == 0)
1653       GEN_ERROR("Cannot make struct constant with type: '" + 
1654                      (*$1)->getDescription() + "'");
1655
1656     if (STy->getNumContainedTypes() != 0)
1657       GEN_ERROR("Illegal number of initializers for structure type");
1658
1659     // Check to ensure that Type is not packed
1660     if (STy->isPacked())
1661       GEN_ERROR("Unpacked Initializer to vector type '" +
1662                 STy->getDescription() + "'");
1663
1664     $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1665     delete $1;
1666     CHECK_FOR_ERROR
1667   }
1668   | Types '<' '{' ConstVector '}' '>' {
1669     const StructType *STy = dyn_cast<StructType>($1->get());
1670     if (STy == 0)
1671       GEN_ERROR("Cannot make struct constant with type: '" + 
1672                      (*$1)->getDescription() + "'");
1673
1674     if ($4->size() != STy->getNumContainedTypes())
1675       GEN_ERROR("Illegal number of initializers for structure type");
1676
1677     // Check to ensure that constants are compatible with the type initializer!
1678     for (unsigned i = 0, e = $4->size(); i != e; ++i)
1679       if ((*$4)[i]->getType() != STy->getElementType(i))
1680         GEN_ERROR("Expected type '" +
1681                        STy->getElementType(i)->getDescription() +
1682                        "' for element #" + utostr(i) +
1683                        " of structure initializer");
1684
1685     // Check to ensure that Type is packed
1686     if (!STy->isPacked())
1687       GEN_ERROR("Vector initializer to non-vector type '" + 
1688                 STy->getDescription() + "'");
1689
1690     $$ = ConstantStruct::get(STy, *$4);
1691     delete $1; delete $4;
1692     CHECK_FOR_ERROR
1693   }
1694   | Types '<' '{' '}' '>' {
1695     if (!UpRefs.empty())
1696       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1697     const StructType *STy = dyn_cast<StructType>($1->get());
1698     if (STy == 0)
1699       GEN_ERROR("Cannot make struct constant with type: '" + 
1700                      (*$1)->getDescription() + "'");
1701
1702     if (STy->getNumContainedTypes() != 0)
1703       GEN_ERROR("Illegal number of initializers for structure type");
1704
1705     // Check to ensure that Type is packed
1706     if (!STy->isPacked())
1707       GEN_ERROR("Vector initializer to non-vector type '" + 
1708                 STy->getDescription() + "'");
1709
1710     $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1711     delete $1;
1712     CHECK_FOR_ERROR
1713   }
1714   | Types NULL_TOK {
1715     if (!UpRefs.empty())
1716       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1717     const PointerType *PTy = dyn_cast<PointerType>($1->get());
1718     if (PTy == 0)
1719       GEN_ERROR("Cannot make null pointer constant with type: '" + 
1720                      (*$1)->getDescription() + "'");
1721
1722     $$ = ConstantPointerNull::get(PTy);
1723     delete $1;
1724     CHECK_FOR_ERROR
1725   }
1726   | Types UNDEF {
1727     if (!UpRefs.empty())
1728       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1729     $$ = UndefValue::get($1->get());
1730     delete $1;
1731     CHECK_FOR_ERROR
1732   }
1733   | Types SymbolicValueRef {
1734     if (!UpRefs.empty())
1735       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1736     const PointerType *Ty = dyn_cast<PointerType>($1->get());
1737     if (Ty == 0)
1738       GEN_ERROR("Global const reference must be a pointer type " + (*$1)->getDescription());
1739
1740     // ConstExprs can exist in the body of a function, thus creating
1741     // GlobalValues whenever they refer to a variable.  Because we are in
1742     // the context of a function, getExistingVal will search the functions
1743     // symbol table instead of the module symbol table for the global symbol,
1744     // which throws things all off.  To get around this, we just tell
1745     // getExistingVal that we are at global scope here.
1746     //
1747     Function *SavedCurFn = CurFun.CurrentFunction;
1748     CurFun.CurrentFunction = 0;
1749
1750     Value *V = getExistingVal(Ty, $2);
1751     CHECK_FOR_ERROR
1752
1753     CurFun.CurrentFunction = SavedCurFn;
1754
1755     // If this is an initializer for a constant pointer, which is referencing a
1756     // (currently) undefined variable, create a stub now that shall be replaced
1757     // in the future with the right type of variable.
1758     //
1759     if (V == 0) {
1760       assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
1761       const PointerType *PT = cast<PointerType>(Ty);
1762
1763       // First check to see if the forward references value is already created!
1764       PerModuleInfo::GlobalRefsType::iterator I =
1765         CurModule.GlobalRefs.find(std::make_pair(PT, $2));
1766     
1767       if (I != CurModule.GlobalRefs.end()) {
1768         V = I->second;             // Placeholder already exists, use it...
1769         $2.destroy();
1770       } else {
1771         std::string Name;
1772         if ($2.Type == ValID::GlobalName)
1773           Name = $2.getName();
1774         else if ($2.Type != ValID::GlobalID)
1775           GEN_ERROR("Invalid reference to global");
1776
1777         // Create the forward referenced global.
1778         GlobalValue *GV;
1779         if (const FunctionType *FTy = 
1780                  dyn_cast<FunctionType>(PT->getElementType())) {
1781           GV = Function::Create(FTy, GlobalValue::ExternalWeakLinkage, Name,
1782                                 CurModule.CurrentModule);
1783         } else {
1784           GV = new GlobalVariable(PT->getElementType(), false,
1785                                   GlobalValue::ExternalWeakLinkage, 0,
1786                                   Name, CurModule.CurrentModule);
1787         }
1788
1789         // Keep track of the fact that we have a forward ref to recycle it
1790         CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1791         V = GV;
1792       }
1793     }
1794
1795     $$ = cast<GlobalValue>(V);
1796     delete $1;            // Free the type handle
1797     CHECK_FOR_ERROR
1798   }
1799   | Types ConstExpr {
1800     if (!UpRefs.empty())
1801       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1802     if ($1->get() != $2->getType())
1803       GEN_ERROR("Mismatched types for constant expression: " + 
1804         (*$1)->getDescription() + " and " + $2->getType()->getDescription());
1805     $$ = $2;
1806     delete $1;
1807     CHECK_FOR_ERROR
1808   }
1809   | Types ZEROINITIALIZER {
1810     if (!UpRefs.empty())
1811       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1812     const Type *Ty = $1->get();
1813     if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
1814       GEN_ERROR("Cannot create a null initialized value of this type");
1815     $$ = Constant::getNullValue(Ty);
1816     delete $1;
1817     CHECK_FOR_ERROR
1818   }
1819   | IntType ESINT64VAL {      // integral constants
1820     if (!ConstantInt::isValueValidForType($1, $2))
1821       GEN_ERROR("Constant value doesn't fit in type");
1822     $$ = ConstantInt::get($1, $2, true);
1823     CHECK_FOR_ERROR
1824   }
1825   | IntType ESAPINTVAL {      // arbitrary precision integer constants
1826     uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1827     if ($2->getBitWidth() > BitWidth) {
1828       GEN_ERROR("Constant value does not fit in type");
1829     }
1830     $2->sextOrTrunc(BitWidth);
1831     $$ = ConstantInt::get(*$2);
1832     delete $2;
1833     CHECK_FOR_ERROR
1834   }
1835   | IntType EUINT64VAL {      // integral constants
1836     if (!ConstantInt::isValueValidForType($1, $2))
1837       GEN_ERROR("Constant value doesn't fit in type");
1838     $$ = ConstantInt::get($1, $2, false);
1839     CHECK_FOR_ERROR
1840   }
1841   | IntType EUAPINTVAL {      // arbitrary precision integer constants
1842     uint32_t BitWidth = cast<IntegerType>($1)->getBitWidth();
1843     if ($2->getBitWidth() > BitWidth) {
1844       GEN_ERROR("Constant value does not fit in type");
1845     } 
1846     $2->zextOrTrunc(BitWidth);
1847     $$ = ConstantInt::get(*$2);
1848     delete $2;
1849     CHECK_FOR_ERROR
1850   }
1851   | INTTYPE TRUETOK {                      // Boolean constants
1852     assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
1853     $$ = ConstantInt::getTrue();
1854     CHECK_FOR_ERROR
1855   }
1856   | INTTYPE FALSETOK {                     // Boolean constants
1857     assert(cast<IntegerType>($1)->getBitWidth() == 1 && "Not Bool?");
1858     $$ = ConstantInt::getFalse();
1859     CHECK_FOR_ERROR
1860   }
1861   | FPType FPVAL {                   // Floating point constants
1862     if (!ConstantFP::isValueValidForType($1, *$2))
1863       GEN_ERROR("Floating point constant invalid for type");
1864     // Lexer has no type info, so builds all float and double FP constants 
1865     // as double.  Fix this here.  Long double is done right.
1866     if (&$2->getSemantics()==&APFloat::IEEEdouble && $1==Type::FloatTy)
1867       $2->convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven);
1868     $$ = ConstantFP::get(*$2);
1869     delete $2;
1870     CHECK_FOR_ERROR
1871   };
1872
1873
1874 ConstExpr: CastOps '(' ConstVal TO Types ')' {
1875     if (!UpRefs.empty())
1876       GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
1877     Constant *Val = $3;
1878     const Type *DestTy = $5->get();
1879     if (!CastInst::castIsValid($1, $3, DestTy))
1880       GEN_ERROR("invalid cast opcode for cast from '" +
1881                 Val->getType()->getDescription() + "' to '" +
1882                 DestTy->getDescription() + "'"); 
1883     $$ = ConstantExpr::getCast($1, $3, DestTy);
1884     delete $5;
1885   }
1886   | GETELEMENTPTR '(' ConstVal IndexList ')' {
1887     if (!isa<PointerType>($3->getType()))
1888       GEN_ERROR("GetElementPtr requires a pointer operand");
1889
1890     const Type *IdxTy =
1891       GetElementPtrInst::getIndexedType($3->getType(), $4->begin(), $4->end());
1892     if (!IdxTy)
1893       GEN_ERROR("Index list invalid for constant getelementptr");
1894
1895     SmallVector<Constant*, 8> IdxVec;
1896     for (unsigned i = 0, e = $4->size(); i != e; ++i)
1897       if (Constant *C = dyn_cast<Constant>((*$4)[i]))
1898         IdxVec.push_back(C);
1899       else
1900         GEN_ERROR("Indices to constant getelementptr must be constants");
1901
1902     delete $4;
1903
1904     $$ = ConstantExpr::getGetElementPtr($3, &IdxVec[0], IdxVec.size());
1905     CHECK_FOR_ERROR
1906   }
1907   | SELECT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1908     if ($3->getType() != Type::Int1Ty)
1909       GEN_ERROR("Select condition must be of boolean type");
1910     if ($5->getType() != $7->getType())
1911       GEN_ERROR("Select operand types must match");
1912     $$ = ConstantExpr::getSelect($3, $5, $7);
1913     CHECK_FOR_ERROR
1914   }
1915   | ArithmeticOps '(' ConstVal ',' ConstVal ')' {
1916     if ($3->getType() != $5->getType())
1917       GEN_ERROR("Binary operator types must match");
1918     CHECK_FOR_ERROR;
1919     $$ = ConstantExpr::get($1, $3, $5);
1920   }
1921   | LogicalOps '(' ConstVal ',' ConstVal ')' {
1922     if ($3->getType() != $5->getType())
1923       GEN_ERROR("Logical operator types must match");
1924     if (!$3->getType()->isInteger()) {
1925       if (Instruction::isShift($1) || !isa<VectorType>($3->getType()) || 
1926           !cast<VectorType>($3->getType())->getElementType()->isInteger())
1927         GEN_ERROR("Logical operator requires integral operands");
1928     }
1929     $$ = ConstantExpr::get($1, $3, $5);
1930     CHECK_FOR_ERROR
1931   }
1932   | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1933     if ($4->getType() != $6->getType())
1934       GEN_ERROR("icmp operand types must match");
1935     $$ = ConstantExpr::getICmp($2, $4, $6);
1936   }
1937   | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1938     if ($4->getType() != $6->getType())
1939       GEN_ERROR("fcmp operand types must match");
1940     $$ = ConstantExpr::getFCmp($2, $4, $6);
1941   }
1942   | VICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1943     if ($4->getType() != $6->getType())
1944       GEN_ERROR("vicmp operand types must match");
1945     $$ = ConstantExpr::getVICmp($2, $4, $6);
1946   }
1947   | VFCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1948     if ($4->getType() != $6->getType())
1949       GEN_ERROR("vfcmp operand types must match");
1950     $$ = ConstantExpr::getVFCmp($2, $4, $6);
1951   }
1952   | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
1953     if (!ExtractElementInst::isValidOperands($3, $5))
1954       GEN_ERROR("Invalid extractelement operands");
1955     $$ = ConstantExpr::getExtractElement($3, $5);
1956     CHECK_FOR_ERROR
1957   }
1958   | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1959     if (!InsertElementInst::isValidOperands($3, $5, $7))
1960       GEN_ERROR("Invalid insertelement operands");
1961     $$ = ConstantExpr::getInsertElement($3, $5, $7);
1962     CHECK_FOR_ERROR
1963   }
1964   | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1965     if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
1966       GEN_ERROR("Invalid shufflevector operands");
1967     $$ = ConstantExpr::getShuffleVector($3, $5, $7);
1968     CHECK_FOR_ERROR
1969   };
1970
1971
1972 // ConstVector - A list of comma separated constants.
1973 ConstVector : ConstVector ',' ConstVal {
1974     ($$ = $1)->push_back($3);
1975     CHECK_FOR_ERROR
1976   }
1977   | ConstVal {
1978     $$ = new std::vector<Constant*>();
1979     $$->push_back($1);
1980     CHECK_FOR_ERROR
1981   };
1982
1983
1984 // GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1985 GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
1986
1987 // ThreadLocal 
1988 ThreadLocal : THREAD_LOCAL { $$ = true; } | { $$ = false; };
1989
1990 // AliaseeRef - Match either GlobalValue or bitcast to GlobalValue.
1991 AliaseeRef : ResultTypes SymbolicValueRef {
1992     const Type* VTy = $1->get();
1993     Value *V = getVal(VTy, $2);
1994     CHECK_FOR_ERROR
1995     GlobalValue* Aliasee = dyn_cast<GlobalValue>(V);
1996     if (!Aliasee)
1997       GEN_ERROR("Aliases can be created only to global values");
1998
1999     $$ = Aliasee;
2000     CHECK_FOR_ERROR
2001     delete $1;
2002    }
2003    | BITCAST '(' AliaseeRef TO Types ')' {
2004     Constant *Val = $3;
2005     const Type *DestTy = $5->get();
2006     if (!CastInst::castIsValid($1, $3, DestTy))
2007       GEN_ERROR("invalid cast opcode for cast from '" +
2008                 Val->getType()->getDescription() + "' to '" +
2009                 DestTy->getDescription() + "'");
2010     
2011     $$ = ConstantExpr::getCast($1, $3, DestTy);
2012     CHECK_FOR_ERROR
2013     delete $5;
2014    };
2015
2016 //===----------------------------------------------------------------------===//
2017 //                             Rules to match Modules
2018 //===----------------------------------------------------------------------===//
2019
2020 // Module rule: Capture the result of parsing the whole file into a result
2021 // variable...
2022 //
2023 Module 
2024   : DefinitionList {
2025     $$ = ParserResult = CurModule.CurrentModule;
2026     CurModule.ModuleDone();
2027     CHECK_FOR_ERROR;
2028   }
2029   | /*empty*/ {
2030     $$ = ParserResult = CurModule.CurrentModule;
2031     CurModule.ModuleDone();
2032     CHECK_FOR_ERROR;
2033   }
2034   ;
2035
2036 DefinitionList
2037   : Definition
2038   | DefinitionList Definition
2039   ;
2040
2041 Definition 
2042   : DEFINE { CurFun.isDeclare = false; } Function {
2043     CurFun.FunctionDone();
2044     CHECK_FOR_ERROR
2045   }
2046   | DECLARE { CurFun.isDeclare = true; } FunctionProto {
2047     CHECK_FOR_ERROR
2048   }
2049   | MODULE ASM_TOK AsmBlock {
2050     CHECK_FOR_ERROR
2051   }  
2052   | OptLocalAssign TYPE Types {
2053     if (!UpRefs.empty())
2054       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2055     // Eagerly resolve types.  This is not an optimization, this is a
2056     // requirement that is due to the fact that we could have this:
2057     //
2058     // %list = type { %list * }
2059     // %list = type { %list * }    ; repeated type decl
2060     //
2061     // If types are not resolved eagerly, then the two types will not be
2062     // determined to be the same type!
2063     //
2064     ResolveTypeTo($1, *$3);
2065
2066     if (!setTypeName(*$3, $1) && !$1) {
2067       CHECK_FOR_ERROR
2068       // If this is a named type that is not a redefinition, add it to the slot
2069       // table.
2070       CurModule.Types.push_back(*$3);
2071     }
2072
2073     delete $3;
2074     CHECK_FOR_ERROR
2075   }
2076   | OptLocalAssign TYPE VOID {
2077     ResolveTypeTo($1, $3);
2078
2079     if (!setTypeName($3, $1) && !$1) {
2080       CHECK_FOR_ERROR
2081       // If this is a named type that is not a redefinition, add it to the slot
2082       // table.
2083       CurModule.Types.push_back($3);
2084     }
2085     CHECK_FOR_ERROR
2086   }
2087   | OptGlobalAssign GVVisibilityStyle ThreadLocal GlobalType ConstVal 
2088     OptAddrSpace { 
2089     /* "Externally Visible" Linkage */
2090     if ($5 == 0) 
2091       GEN_ERROR("Global value initializer is not a constant");
2092     CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage,
2093                                 $2, $4, $5->getType(), $5, $3, $6);
2094     CHECK_FOR_ERROR
2095   } GlobalVarAttributes {
2096     CurGV = 0;
2097   }
2098   | OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2099     ConstVal OptAddrSpace {
2100     if ($6 == 0) 
2101       GEN_ERROR("Global value initializer is not a constant");
2102     CurGV = ParseGlobalVariable($1, $2, $3, $5, $6->getType(), $6, $4, $7);
2103     CHECK_FOR_ERROR
2104   } GlobalVarAttributes {
2105     CurGV = 0;
2106   }
2107   | OptGlobalAssign GVExternalLinkage GVVisibilityStyle ThreadLocal GlobalType
2108     Types OptAddrSpace {
2109     if (!UpRefs.empty())
2110       GEN_ERROR("Invalid upreference in type: " + (*$6)->getDescription());
2111     CurGV = ParseGlobalVariable($1, $2, $3, $5, *$6, 0, $4, $7);
2112     CHECK_FOR_ERROR
2113     delete $6;
2114   } GlobalVarAttributes {
2115     CurGV = 0;
2116     CHECK_FOR_ERROR
2117   }
2118   | OptGlobalAssign GVVisibilityStyle ALIAS AliasLinkage AliaseeRef {
2119     std::string Name;
2120     if ($1) {
2121       Name = *$1;
2122       delete $1;
2123     }
2124     if (Name.empty())
2125       GEN_ERROR("Alias name cannot be empty");
2126     
2127     Constant* Aliasee = $5;
2128     if (Aliasee == 0)
2129       GEN_ERROR(std::string("Invalid aliasee for alias: ") + Name);
2130
2131     GlobalAlias* GA = new GlobalAlias(Aliasee->getType(), $4, Name, Aliasee,
2132                                       CurModule.CurrentModule);
2133     GA->setVisibility($2);
2134     InsertValue(GA, CurModule.Values);
2135     
2136     
2137     // If there was a forward reference of this alias, resolve it now.
2138     
2139     ValID ID;
2140     if (!Name.empty())
2141       ID = ValID::createGlobalName(Name);
2142     else
2143       ID = ValID::createGlobalID(CurModule.Values.size()-1);
2144     
2145     if (GlobalValue *FWGV =
2146           CurModule.GetForwardRefForGlobal(GA->getType(), ID)) {
2147       // Replace uses of the fwdref with the actual alias.
2148       FWGV->replaceAllUsesWith(GA);
2149       if (GlobalVariable *GV = dyn_cast<GlobalVariable>(FWGV))
2150         GV->eraseFromParent();
2151       else
2152         cast<Function>(FWGV)->eraseFromParent();
2153     }
2154     ID.destroy();
2155     
2156     CHECK_FOR_ERROR
2157   }
2158   | TARGET TargetDefinition { 
2159     CHECK_FOR_ERROR
2160   }
2161   | DEPLIBS '=' LibrariesDefinition {
2162     CHECK_FOR_ERROR
2163   }
2164   ;
2165
2166
2167 AsmBlock : STRINGCONSTANT {
2168   const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
2169   if (AsmSoFar.empty())
2170     CurModule.CurrentModule->setModuleInlineAsm(*$1);
2171   else
2172     CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+*$1);
2173   delete $1;
2174   CHECK_FOR_ERROR
2175 };
2176
2177 TargetDefinition : TRIPLE '=' STRINGCONSTANT {
2178     CurModule.CurrentModule->setTargetTriple(*$3);
2179     delete $3;
2180   }
2181   | DATALAYOUT '=' STRINGCONSTANT {
2182     CurModule.CurrentModule->setDataLayout(*$3);
2183     delete $3;
2184   };
2185
2186 LibrariesDefinition : '[' LibList ']';
2187
2188 LibList : LibList ',' STRINGCONSTANT {
2189           CurModule.CurrentModule->addLibrary(*$3);
2190           delete $3;
2191           CHECK_FOR_ERROR
2192         }
2193         | STRINGCONSTANT {
2194           CurModule.CurrentModule->addLibrary(*$1);
2195           delete $1;
2196           CHECK_FOR_ERROR
2197         }
2198         | /* empty: end of list */ {
2199           CHECK_FOR_ERROR
2200         }
2201         ;
2202
2203 //===----------------------------------------------------------------------===//
2204 //                       Rules to match Function Headers
2205 //===----------------------------------------------------------------------===//
2206
2207 ArgListH : ArgListH ',' Types OptParamAttrs OptLocalName {
2208     if (!UpRefs.empty())
2209       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2210     if (*$3 == Type::VoidTy)
2211       GEN_ERROR("void typed arguments are invalid");
2212     ArgListEntry E; E.Attrs = $4; E.Ty = $3; E.Name = $5;
2213     $$ = $1;
2214     $1->push_back(E);
2215     CHECK_FOR_ERROR
2216   }
2217   | Types OptParamAttrs OptLocalName {
2218     if (!UpRefs.empty())
2219       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2220     if (*$1 == Type::VoidTy)
2221       GEN_ERROR("void typed arguments are invalid");
2222     ArgListEntry E; E.Attrs = $2; E.Ty = $1; E.Name = $3;
2223     $$ = new ArgListType;
2224     $$->push_back(E);
2225     CHECK_FOR_ERROR
2226   };
2227
2228 ArgList : ArgListH {
2229     $$ = $1;
2230     CHECK_FOR_ERROR
2231   }
2232   | ArgListH ',' DOTDOTDOT {
2233     $$ = $1;
2234     struct ArgListEntry E;
2235     E.Ty = new PATypeHolder(Type::VoidTy);
2236     E.Name = 0;
2237     E.Attrs = ParamAttr::None;
2238     $$->push_back(E);
2239     CHECK_FOR_ERROR
2240   }
2241   | DOTDOTDOT {
2242     $$ = new ArgListType;
2243     struct ArgListEntry E;
2244     E.Ty = new PATypeHolder(Type::VoidTy);
2245     E.Name = 0;
2246     E.Attrs = ParamAttr::None;
2247     $$->push_back(E);
2248     CHECK_FOR_ERROR
2249   }
2250   | /* empty */ {
2251     $$ = 0;
2252     CHECK_FOR_ERROR
2253   };
2254
2255 FunctionHeaderH : OptCallingConv ResultTypes GlobalName '(' ArgList ')' 
2256                   OptFuncAttrs OptSection OptAlign OptGC {
2257   std::string FunctionName(*$3);
2258   delete $3;  // Free strdup'd memory!
2259   
2260   // Check the function result for abstractness if this is a define. We should
2261   // have no abstract types at this point
2262   if (!CurFun.isDeclare && CurModule.TypeIsUnresolved($2))
2263     GEN_ERROR("Reference to abstract result: "+ $2->get()->getDescription());
2264
2265   if (!FunctionType::isValidReturnType(*$2))
2266     GEN_ERROR("Invalid result type for LLVM function");
2267     
2268   std::vector<const Type*> ParamTypeList;
2269   SmallVector<ParamAttrsWithIndex, 8> Attrs;
2270   if ($7 != ParamAttr::None)
2271     Attrs.push_back(ParamAttrsWithIndex::get(0, $7));
2272   if ($5) {   // If there are arguments...
2273     unsigned index = 1;
2274     for (ArgListType::iterator I = $5->begin(); I != $5->end(); ++I, ++index) {
2275       const Type* Ty = I->Ty->get();
2276       if (!CurFun.isDeclare && CurModule.TypeIsUnresolved(I->Ty))
2277         GEN_ERROR("Reference to abstract argument: " + Ty->getDescription());
2278       ParamTypeList.push_back(Ty);
2279       if (Ty != Type::VoidTy && I->Attrs != ParamAttr::None)
2280         Attrs.push_back(ParamAttrsWithIndex::get(index, I->Attrs));
2281     }
2282   }
2283
2284   bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
2285   if (isVarArg) ParamTypeList.pop_back();
2286
2287   PAListPtr PAL;
2288   if (!Attrs.empty())
2289     PAL = PAListPtr::get(Attrs.begin(), Attrs.end());
2290
2291   FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg);
2292   const PointerType *PFT = PointerType::getUnqual(FT);
2293   delete $2;
2294
2295   ValID ID;
2296   if (!FunctionName.empty()) {
2297     ID = ValID::createGlobalName((char*)FunctionName.c_str());
2298   } else {
2299     ID = ValID::createGlobalID(CurModule.Values.size());
2300   }
2301
2302   Function *Fn = 0;
2303   // See if this function was forward referenced.  If so, recycle the object.
2304   if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
2305     // Move the function to the end of the list, from whereever it was 
2306     // previously inserted.
2307     Fn = cast<Function>(FWRef);
2308     assert(Fn->getParamAttrs().isEmpty() &&
2309            "Forward reference has parameter attributes!");
2310     CurModule.CurrentModule->getFunctionList().remove(Fn);
2311     CurModule.CurrentModule->getFunctionList().push_back(Fn);
2312   } else if (!FunctionName.empty() &&     // Merge with an earlier prototype?
2313              (Fn = CurModule.CurrentModule->getFunction(FunctionName))) {
2314     if (Fn->getFunctionType() != FT ) {
2315       // The existing function doesn't have the same type. This is an overload
2316       // error.
2317       GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
2318     } else if (Fn->getParamAttrs() != PAL) {
2319       // The existing function doesn't have the same parameter attributes.
2320       // This is an overload error.
2321       GEN_ERROR("Overload of function '" + FunctionName + "' not permitted.");
2322     } else if (!CurFun.isDeclare && !Fn->isDeclaration()) {
2323       // Neither the existing or the current function is a declaration and they
2324       // have the same name and same type. Clearly this is a redefinition.
2325       GEN_ERROR("Redefinition of function '" + FunctionName + "'");
2326     } else if (Fn->isDeclaration()) {
2327       // Make sure to strip off any argument names so we can't get conflicts.
2328       for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2329            AI != AE; ++AI)
2330         AI->setName("");
2331     }
2332   } else  {  // Not already defined?
2333     Fn = Function::Create(FT, GlobalValue::ExternalWeakLinkage, FunctionName,
2334                           CurModule.CurrentModule);
2335     InsertValue(Fn, CurModule.Values);
2336   }
2337
2338   CurFun.FunctionStart(Fn);
2339
2340   if (CurFun.isDeclare) {
2341     // If we have declaration, always overwrite linkage.  This will allow us to
2342     // correctly handle cases, when pointer to function is passed as argument to
2343     // another function.
2344     Fn->setLinkage(CurFun.Linkage);
2345     Fn->setVisibility(CurFun.Visibility);
2346   }
2347   Fn->setCallingConv($1);
2348   Fn->setParamAttrs(PAL);
2349   Fn->setAlignment($9);
2350   if ($8) {
2351     Fn->setSection(*$8);
2352     delete $8;
2353   }
2354   if ($10) {
2355     Fn->setCollector($10->c_str());
2356     delete $10;
2357   }
2358
2359   // Add all of the arguments we parsed to the function...
2360   if ($5) {                     // Is null if empty...
2361     if (isVarArg) {  // Nuke the last entry
2362       assert($5->back().Ty->get() == Type::VoidTy && $5->back().Name == 0 &&
2363              "Not a varargs marker!");
2364       delete $5->back().Ty;
2365       $5->pop_back();  // Delete the last entry
2366     }
2367     Function::arg_iterator ArgIt = Fn->arg_begin();
2368     Function::arg_iterator ArgEnd = Fn->arg_end();
2369     unsigned Idx = 1;
2370     for (ArgListType::iterator I = $5->begin(); 
2371          I != $5->end() && ArgIt != ArgEnd; ++I, ++ArgIt) {
2372       delete I->Ty;                          // Delete the typeholder...
2373       setValueName(ArgIt, I->Name);       // Insert arg into symtab...
2374       CHECK_FOR_ERROR
2375       InsertValue(ArgIt);
2376       Idx++;
2377     }
2378
2379     delete $5;                     // We're now done with the argument list
2380   }
2381   CHECK_FOR_ERROR
2382 };
2383
2384 BEGIN : BEGINTOK | '{';                // Allow BEGIN or '{' to start a function
2385
2386 FunctionHeader : FunctionDefineLinkage GVVisibilityStyle FunctionHeaderH BEGIN {
2387   $$ = CurFun.CurrentFunction;
2388
2389   // Make sure that we keep track of the linkage type even if there was a
2390   // previous "declare".
2391   $$->setLinkage($1);
2392   $$->setVisibility($2);
2393 };
2394
2395 END : ENDTOK | '}';                    // Allow end of '}' to end a function
2396
2397 Function : BasicBlockList END {
2398   $$ = $1;
2399   CHECK_FOR_ERROR
2400 };
2401
2402 FunctionProto : FunctionDeclareLinkage GVVisibilityStyle FunctionHeaderH {
2403     CurFun.CurrentFunction->setLinkage($1);
2404     CurFun.CurrentFunction->setVisibility($2);
2405     $$ = CurFun.CurrentFunction;
2406     CurFun.FunctionDone();
2407     CHECK_FOR_ERROR
2408   };
2409
2410 //===----------------------------------------------------------------------===//
2411 //                        Rules to match Basic Blocks
2412 //===----------------------------------------------------------------------===//
2413
2414 OptSideEffect : /* empty */ {
2415     $$ = false;
2416     CHECK_FOR_ERROR
2417   }
2418   | SIDEEFFECT {
2419     $$ = true;
2420     CHECK_FOR_ERROR
2421   };
2422
2423 ConstValueRef : ESINT64VAL {    // A reference to a direct constant
2424     $$ = ValID::create($1);
2425     CHECK_FOR_ERROR
2426   }
2427   | EUINT64VAL {
2428     $$ = ValID::create($1);
2429     CHECK_FOR_ERROR
2430   }
2431   | FPVAL {                     // Perhaps it's an FP constant?
2432     $$ = ValID::create($1);
2433     CHECK_FOR_ERROR
2434   }
2435   | TRUETOK {
2436     $$ = ValID::create(ConstantInt::getTrue());
2437     CHECK_FOR_ERROR
2438   } 
2439   | FALSETOK {
2440     $$ = ValID::create(ConstantInt::getFalse());
2441     CHECK_FOR_ERROR
2442   }
2443   | NULL_TOK {
2444     $$ = ValID::createNull();
2445     CHECK_FOR_ERROR
2446   }
2447   | UNDEF {
2448     $$ = ValID::createUndef();
2449     CHECK_FOR_ERROR
2450   }
2451   | ZEROINITIALIZER {     // A vector zero constant.
2452     $$ = ValID::createZeroInit();
2453     CHECK_FOR_ERROR
2454   }
2455   | '<' ConstVector '>' { // Nonempty unsized packed vector
2456     const Type *ETy = (*$2)[0]->getType();
2457     int NumElements = $2->size(); 
2458     
2459     VectorType* pt = VectorType::get(ETy, NumElements);
2460     PATypeHolder* PTy = new PATypeHolder(
2461                                          HandleUpRefs(
2462                                             VectorType::get(
2463                                                 ETy, 
2464                                                 NumElements)
2465                                             )
2466                                          );
2467     
2468     // Verify all elements are correct type!
2469     for (unsigned i = 0; i < $2->size(); i++) {
2470       if (ETy != (*$2)[i]->getType())
2471         GEN_ERROR("Element #" + utostr(i) + " is not of type '" + 
2472                      ETy->getDescription() +"' as required!\nIt is of type '" +
2473                      (*$2)[i]->getType()->getDescription() + "'.");
2474     }
2475
2476     $$ = ValID::create(ConstantVector::get(pt, *$2));
2477     delete PTy; delete $2;
2478     CHECK_FOR_ERROR
2479   }
2480   | ConstExpr {
2481     $$ = ValID::create($1);
2482     CHECK_FOR_ERROR
2483   }
2484   | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
2485     $$ = ValID::createInlineAsm(*$3, *$5, $2);
2486     delete $3;
2487     delete $5;
2488     CHECK_FOR_ERROR
2489   };
2490
2491 // SymbolicValueRef - Reference to one of two ways of symbolically refering to
2492 // another value.
2493 //
2494 SymbolicValueRef : LOCALVAL_ID {  // Is it an integer reference...?
2495     $$ = ValID::createLocalID($1);
2496     CHECK_FOR_ERROR
2497   }
2498   | GLOBALVAL_ID {
2499     $$ = ValID::createGlobalID($1);
2500     CHECK_FOR_ERROR
2501   }
2502   | LocalName {                   // Is it a named reference...?
2503     $$ = ValID::createLocalName(*$1);
2504     delete $1;
2505     CHECK_FOR_ERROR
2506   }
2507   | GlobalName {                   // Is it a named reference...?
2508     $$ = ValID::createGlobalName(*$1);
2509     delete $1;
2510     CHECK_FOR_ERROR
2511   };
2512
2513 // ValueRef - A reference to a definition... either constant or symbolic
2514 ValueRef : SymbolicValueRef | ConstValueRef;
2515
2516
2517 // ResolvedVal - a <type> <value> pair.  This is used only in cases where the
2518 // type immediately preceeds the value reference, and allows complex constant
2519 // pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
2520 ResolvedVal : Types ValueRef {
2521     if (!UpRefs.empty())
2522       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2523     $$ = getVal(*$1, $2); 
2524     delete $1;
2525     CHECK_FOR_ERROR
2526   }
2527   ;
2528
2529 ReturnedVal : ResolvedVal {
2530     $$ = new std::vector<Value *>();
2531     $$->push_back($1); 
2532     CHECK_FOR_ERROR
2533   }
2534   | ReturnedVal ',' ResolvedVal {
2535     ($$=$1)->push_back($3); 
2536     CHECK_FOR_ERROR
2537   };
2538
2539 BasicBlockList : BasicBlockList BasicBlock {
2540     $$ = $1;
2541     CHECK_FOR_ERROR
2542   }
2543   | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks   
2544     $$ = $1;
2545     CHECK_FOR_ERROR
2546   };
2547
2548
2549 // Basic blocks are terminated by branching instructions: 
2550 // br, br/cc, switch, ret
2551 //
2552 BasicBlock : InstructionList OptLocalAssign BBTerminatorInst  {
2553     setValueName($3, $2);
2554     CHECK_FOR_ERROR
2555     InsertValue($3);
2556     $1->getInstList().push_back($3);
2557     $$ = $1;
2558     CHECK_FOR_ERROR
2559   };
2560
2561 InstructionList : InstructionList Inst {
2562     if (CastInst *CI1 = dyn_cast<CastInst>($2))
2563       if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2564         if (CI2->getParent() == 0)
2565           $1->getInstList().push_back(CI2);
2566     $1->getInstList().push_back($2);
2567     $$ = $1;
2568     CHECK_FOR_ERROR
2569   }
2570   | /* empty */ {          // Empty space between instruction lists
2571     $$ = defineBBVal(ValID::createLocalID(CurFun.NextValNum));
2572     CHECK_FOR_ERROR
2573   }
2574   | LABELSTR {             // Labelled (named) basic block
2575     $$ = defineBBVal(ValID::createLocalName(*$1));
2576     delete $1;
2577     CHECK_FOR_ERROR
2578
2579   };
2580
2581 BBTerminatorInst : 
2582   RET ReturnedVal  { // Return with a result...
2583     ValueList &VL = *$2;
2584     assert(!VL.empty() && "Invalid ret operands!");
2585     $$ = ReturnInst::Create(&VL[0], VL.size());
2586     delete $2;
2587     CHECK_FOR_ERROR
2588   }
2589   | RET VOID {                                    // Return with no result...
2590     $$ = ReturnInst::Create();
2591     CHECK_FOR_ERROR
2592   }
2593   | BR LABEL ValueRef {                           // Unconditional Branch...
2594     BasicBlock* tmpBB = getBBVal($3);
2595     CHECK_FOR_ERROR
2596     $$ = BranchInst::Create(tmpBB);
2597   }                                               // Conditional Branch...
2598   | BR INTTYPE ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {  
2599     assert(cast<IntegerType>($2)->getBitWidth() == 1 && "Not Bool?");
2600     BasicBlock* tmpBBA = getBBVal($6);
2601     CHECK_FOR_ERROR
2602     BasicBlock* tmpBBB = getBBVal($9);
2603     CHECK_FOR_ERROR
2604     Value* tmpVal = getVal(Type::Int1Ty, $3);
2605     CHECK_FOR_ERROR
2606     $$ = BranchInst::Create(tmpBBA, tmpBBB, tmpVal);
2607   }
2608   | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
2609     Value* tmpVal = getVal($2, $3);
2610     CHECK_FOR_ERROR
2611     BasicBlock* tmpBB = getBBVal($6);
2612     CHECK_FOR_ERROR
2613     SwitchInst *S = SwitchInst::Create(tmpVal, tmpBB, $8->size());
2614     $$ = S;
2615
2616     std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
2617       E = $8->end();
2618     for (; I != E; ++I) {
2619       if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2620           S->addCase(CI, I->second);
2621       else
2622         GEN_ERROR("Switch case is constant, but not a simple integer");
2623     }
2624     delete $8;
2625     CHECK_FOR_ERROR
2626   }
2627   | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
2628     Value* tmpVal = getVal($2, $3);
2629     CHECK_FOR_ERROR
2630     BasicBlock* tmpBB = getBBVal($6);
2631     CHECK_FOR_ERROR
2632     SwitchInst *S = SwitchInst::Create(tmpVal, tmpBB, 0);
2633     $$ = S;
2634     CHECK_FOR_ERROR
2635   }
2636   | INVOKE OptCallingConv ResultTypes ValueRef '(' ParamList ')' OptFuncAttrs
2637     TO LABEL ValueRef UNWIND LABEL ValueRef {
2638
2639     // Handle the short syntax
2640     const PointerType *PFTy = 0;
2641     const FunctionType *Ty = 0;
2642     if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
2643         !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2644       // Pull out the types of all of the arguments...
2645       std::vector<const Type*> ParamTypes;
2646       ParamList::iterator I = $6->begin(), E = $6->end();
2647       for (; I != E; ++I) {
2648         const Type *Ty = I->Val->getType();
2649         if (Ty == Type::VoidTy)
2650           GEN_ERROR("Short call syntax cannot be used with varargs");
2651         ParamTypes.push_back(Ty);
2652       }
2653       
2654       if (!FunctionType::isValidReturnType(*$3))
2655         GEN_ERROR("Invalid result type for LLVM function");
2656
2657       Ty = FunctionType::get($3->get(), ParamTypes, false);
2658       PFTy = PointerType::getUnqual(Ty);
2659     }
2660
2661     delete $3;
2662
2663     Value *V = getVal(PFTy, $4);   // Get the function we're calling...
2664     CHECK_FOR_ERROR
2665     BasicBlock *Normal = getBBVal($11);
2666     CHECK_FOR_ERROR
2667     BasicBlock *Except = getBBVal($14);
2668     CHECK_FOR_ERROR
2669
2670     SmallVector<ParamAttrsWithIndex, 8> Attrs;
2671     if ($8 != ParamAttr::None)
2672       Attrs.push_back(ParamAttrsWithIndex::get(0, $8));
2673
2674     // Check the arguments
2675     ValueList Args;
2676     if ($6->empty()) {                                   // Has no arguments?
2677       // Make sure no arguments is a good thing!
2678       if (Ty->getNumParams() != 0)
2679         GEN_ERROR("No arguments passed to a function that "
2680                        "expects arguments");
2681     } else {                                     // Has arguments?
2682       // Loop through FunctionType's arguments and ensure they are specified
2683       // correctly!
2684       FunctionType::param_iterator I = Ty->param_begin();
2685       FunctionType::param_iterator E = Ty->param_end();
2686       ParamList::iterator ArgI = $6->begin(), ArgE = $6->end();
2687       unsigned index = 1;
2688
2689       for (; ArgI != ArgE && I != E; ++ArgI, ++I, ++index) {
2690         if (ArgI->Val->getType() != *I)
2691           GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
2692                          (*I)->getDescription() + "'");
2693         Args.push_back(ArgI->Val);
2694         if (ArgI->Attrs != ParamAttr::None)
2695           Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
2696       }
2697
2698       if (Ty->isVarArg()) {
2699         if (I == E)
2700           for (; ArgI != ArgE; ++ArgI, ++index) {
2701             Args.push_back(ArgI->Val); // push the remaining varargs
2702             if (ArgI->Attrs != ParamAttr::None)
2703               Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
2704           }
2705       } else if (I != E || ArgI != ArgE)
2706         GEN_ERROR("Invalid number of parameters detected");
2707     }
2708
2709     PAListPtr PAL;
2710     if (!Attrs.empty())
2711       PAL = PAListPtr::get(Attrs.begin(), Attrs.end());
2712
2713     // Create the InvokeInst
2714     InvokeInst *II = InvokeInst::Create(V, Normal, Except,
2715                                         Args.begin(), Args.end());
2716     II->setCallingConv($2);
2717     II->setParamAttrs(PAL);
2718     $$ = II;
2719     delete $6;
2720     CHECK_FOR_ERROR
2721   }
2722   | UNWIND {
2723     $$ = new UnwindInst();
2724     CHECK_FOR_ERROR
2725   }
2726   | UNREACHABLE {
2727     $$ = new UnreachableInst();
2728     CHECK_FOR_ERROR
2729   };
2730
2731
2732
2733 JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2734     $$ = $1;
2735     Constant *V = cast<Constant>(getExistingVal($2, $3));
2736     CHECK_FOR_ERROR
2737     if (V == 0)
2738       GEN_ERROR("May only switch on a constant pool value");
2739
2740     BasicBlock* tmpBB = getBBVal($6);
2741     CHECK_FOR_ERROR
2742     $$->push_back(std::make_pair(V, tmpBB));
2743   }
2744   | IntType ConstValueRef ',' LABEL ValueRef {
2745     $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
2746     Constant *V = cast<Constant>(getExistingVal($1, $2));
2747     CHECK_FOR_ERROR
2748
2749     if (V == 0)
2750       GEN_ERROR("May only switch on a constant pool value");
2751
2752     BasicBlock* tmpBB = getBBVal($5);
2753     CHECK_FOR_ERROR
2754     $$->push_back(std::make_pair(V, tmpBB)); 
2755   };
2756
2757 Inst : OptLocalAssign InstVal {
2758     // Is this definition named?? if so, assign the name...
2759     setValueName($2, $1);
2760     CHECK_FOR_ERROR
2761     InsertValue($2);
2762     $$ = $2;
2763     CHECK_FOR_ERROR
2764   };
2765
2766
2767 PHIList : Types '[' ValueRef ',' ValueRef ']' {    // Used for PHI nodes
2768     if (!UpRefs.empty())
2769       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2770     $$ = new std::list<std::pair<Value*, BasicBlock*> >();
2771     Value* tmpVal = getVal(*$1, $3);
2772     CHECK_FOR_ERROR
2773     BasicBlock* tmpBB = getBBVal($5);
2774     CHECK_FOR_ERROR
2775     $$->push_back(std::make_pair(tmpVal, tmpBB));
2776     delete $1;
2777   }
2778   | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2779     $$ = $1;
2780     Value* tmpVal = getVal($1->front().first->getType(), $4);
2781     CHECK_FOR_ERROR
2782     BasicBlock* tmpBB = getBBVal($6);
2783     CHECK_FOR_ERROR
2784     $1->push_back(std::make_pair(tmpVal, tmpBB));
2785   };
2786
2787
2788 ParamList : Types OptParamAttrs ValueRef OptParamAttrs {
2789     // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
2790     if (!UpRefs.empty())
2791       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
2792     // Used for call and invoke instructions
2793     $$ = new ParamList();
2794     ParamListEntry E; E.Attrs = $2 | $4; E.Val = getVal($1->get(), $3);
2795     $$->push_back(E);
2796     delete $1;
2797     CHECK_FOR_ERROR
2798   }
2799   | LABEL OptParamAttrs ValueRef OptParamAttrs {
2800     // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
2801     // Labels are only valid in ASMs
2802     $$ = new ParamList();
2803     ParamListEntry E; E.Attrs = $2 | $4; E.Val = getBBVal($3);
2804     $$->push_back(E);
2805     CHECK_FOR_ERROR
2806   }
2807   | ParamList ',' Types OptParamAttrs ValueRef OptParamAttrs {
2808     // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
2809     if (!UpRefs.empty())
2810       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2811     $$ = $1;
2812     ParamListEntry E; E.Attrs = $4 | $6; E.Val = getVal($3->get(), $5);
2813     $$->push_back(E);
2814     delete $3;
2815     CHECK_FOR_ERROR
2816   }
2817   | ParamList ',' LABEL OptParamAttrs ValueRef OptParamAttrs {
2818     // FIXME: Remove trailing OptParamAttrs in LLVM 3.0, it was a mistake in 2.0
2819     $$ = $1;
2820     ParamListEntry E; E.Attrs = $4 | $6; E.Val = getBBVal($5);
2821     $$->push_back(E);
2822     CHECK_FOR_ERROR
2823   }
2824   | /*empty*/ { $$ = new ParamList(); };
2825
2826 IndexList       // Used for gep instructions and constant expressions
2827   : /*empty*/ { $$ = new std::vector<Value*>(); }
2828   | IndexList ',' ResolvedVal {
2829     $$ = $1;
2830     $$->push_back($3);
2831     CHECK_FOR_ERROR
2832   }
2833   ;
2834
2835 OptTailCall : TAIL CALL {
2836     $$ = true;
2837     CHECK_FOR_ERROR
2838   }
2839   | CALL {
2840     $$ = false;
2841     CHECK_FOR_ERROR
2842   };
2843
2844 InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
2845     if (!UpRefs.empty())
2846       GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
2847     if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() && 
2848         !isa<VectorType>((*$2).get()))
2849       GEN_ERROR(
2850         "Arithmetic operator requires integer, FP, or packed operands");
2851     Value* val1 = getVal(*$2, $3); 
2852     CHECK_FOR_ERROR
2853     Value* val2 = getVal(*$2, $5);
2854     CHECK_FOR_ERROR
2855     $$ = BinaryOperator::create($1, val1, val2);
2856     if ($$ == 0)
2857       GEN_ERROR("binary operator returned null");
2858     delete $2;
2859   }
2860   | LogicalOps Types ValueRef ',' ValueRef {
2861     if (!UpRefs.empty())
2862       GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
2863     if (!(*$2)->isInteger()) {
2864       if (Instruction::isShift($1) || !isa<VectorType>($2->get()) ||
2865           !cast<VectorType>($2->get())->getElementType()->isInteger())
2866         GEN_ERROR("Logical operator requires integral operands");
2867     }
2868     Value* tmpVal1 = getVal(*$2, $3);
2869     CHECK_FOR_ERROR
2870     Value* tmpVal2 = getVal(*$2, $5);
2871     CHECK_FOR_ERROR
2872     $$ = BinaryOperator::create($1, tmpVal1, tmpVal2);
2873     if ($$ == 0)
2874       GEN_ERROR("binary operator returned null");
2875     delete $2;
2876   }
2877   | ICMP IPredicates Types ValueRef ',' ValueRef  {
2878     if (!UpRefs.empty())
2879       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2880     if (isa<VectorType>((*$3).get()))
2881       GEN_ERROR("Vector types not supported by icmp instruction");
2882     Value* tmpVal1 = getVal(*$3, $4);
2883     CHECK_FOR_ERROR
2884     Value* tmpVal2 = getVal(*$3, $6);
2885     CHECK_FOR_ERROR
2886     $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2887     if ($$ == 0)
2888       GEN_ERROR("icmp operator returned null");
2889     delete $3;
2890   }
2891   | FCMP FPredicates Types ValueRef ',' ValueRef  {
2892     if (!UpRefs.empty())
2893       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2894     if (isa<VectorType>((*$3).get()))
2895       GEN_ERROR("Vector types not supported by fcmp instruction");
2896     Value* tmpVal1 = getVal(*$3, $4);
2897     CHECK_FOR_ERROR
2898     Value* tmpVal2 = getVal(*$3, $6);
2899     CHECK_FOR_ERROR
2900     $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2901     if ($$ == 0)
2902       GEN_ERROR("fcmp operator returned null");
2903     delete $3;
2904   }
2905   | VICMP IPredicates Types ValueRef ',' ValueRef  {
2906     if (!UpRefs.empty())
2907       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2908     if (!isa<VectorType>((*$3).get()))
2909       GEN_ERROR("Scalar types not supported by vicmp instruction");
2910     Value* tmpVal1 = getVal(*$3, $4);
2911     CHECK_FOR_ERROR
2912     Value* tmpVal2 = getVal(*$3, $6);
2913     CHECK_FOR_ERROR
2914     $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2915     if ($$ == 0)
2916       GEN_ERROR("icmp operator returned null");
2917     delete $3;
2918   }
2919   | VFCMP FPredicates Types ValueRef ',' ValueRef  {
2920     if (!UpRefs.empty())
2921       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
2922     if (!isa<VectorType>((*$3).get()))
2923       GEN_ERROR("Scalar types not supported by vfcmp instruction");
2924     Value* tmpVal1 = getVal(*$3, $4);
2925     CHECK_FOR_ERROR
2926     Value* tmpVal2 = getVal(*$3, $6);
2927     CHECK_FOR_ERROR
2928     $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2929     if ($$ == 0)
2930       GEN_ERROR("fcmp operator returned null");
2931     delete $3;
2932   }
2933   | CastOps ResolvedVal TO Types {
2934     if (!UpRefs.empty())
2935       GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
2936     Value* Val = $2;
2937     const Type* DestTy = $4->get();
2938     if (!CastInst::castIsValid($1, Val, DestTy))
2939       GEN_ERROR("invalid cast opcode for cast from '" +
2940                 Val->getType()->getDescription() + "' to '" +
2941                 DestTy->getDescription() + "'"); 
2942     $$ = CastInst::create($1, Val, DestTy);
2943     delete $4;
2944   }
2945   | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2946     if ($2->getType() != Type::Int1Ty)
2947       GEN_ERROR("select condition must be boolean");
2948     if ($4->getType() != $6->getType())
2949       GEN_ERROR("select value types should match");
2950     $$ = SelectInst::Create($2, $4, $6);
2951     CHECK_FOR_ERROR
2952   }
2953   | VAARG ResolvedVal ',' Types {
2954     if (!UpRefs.empty())
2955       GEN_ERROR("Invalid upreference in type: " + (*$4)->getDescription());
2956     $$ = new VAArgInst($2, *$4);
2957     delete $4;
2958     CHECK_FOR_ERROR
2959   }
2960   | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
2961     if (!ExtractElementInst::isValidOperands($2, $4))
2962       GEN_ERROR("Invalid extractelement operands");
2963     $$ = new ExtractElementInst($2, $4);
2964     CHECK_FOR_ERROR
2965   }
2966   | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2967     if (!InsertElementInst::isValidOperands($2, $4, $6))
2968       GEN_ERROR("Invalid insertelement operands");
2969     $$ = InsertElementInst::Create($2, $4, $6);
2970     CHECK_FOR_ERROR
2971   }
2972   | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2973     if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
2974       GEN_ERROR("Invalid shufflevector operands");
2975     $$ = new ShuffleVectorInst($2, $4, $6);
2976     CHECK_FOR_ERROR
2977   }
2978   | PHI_TOK PHIList {
2979     const Type *Ty = $2->front().first->getType();
2980     if (!Ty->isFirstClassType())
2981       GEN_ERROR("PHI node operands must be of first class type");
2982     $$ = PHINode::Create(Ty);
2983     ((PHINode*)$$)->reserveOperandSpace($2->size());
2984     while ($2->begin() != $2->end()) {
2985       if ($2->front().first->getType() != Ty) 
2986         GEN_ERROR("All elements of a PHI node must be of the same type");
2987       cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
2988       $2->pop_front();
2989     }
2990     delete $2;  // Free the list...
2991     CHECK_FOR_ERROR
2992   }
2993   | OptTailCall OptCallingConv ResultTypes ValueRef '(' ParamList ')' 
2994     OptFuncAttrs {
2995
2996     // Handle the short syntax
2997     const PointerType *PFTy = 0;
2998     const FunctionType *Ty = 0;
2999     if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
3000         !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3001       // Pull out the types of all of the arguments...
3002       std::vector<const Type*> ParamTypes;
3003       ParamList::iterator I = $6->begin(), E = $6->end();
3004       for (; I != E; ++I) {
3005         const Type *Ty = I->Val->getType();
3006         if (Ty == Type::VoidTy)
3007           GEN_ERROR("Short call syntax cannot be used with varargs");
3008         ParamTypes.push_back(Ty);
3009       }
3010
3011       if (!FunctionType::isValidReturnType(*$3))
3012         GEN_ERROR("Invalid result type for LLVM function");
3013
3014       Ty = FunctionType::get($3->get(), ParamTypes, false);
3015       PFTy = PointerType::getUnqual(Ty);
3016     }
3017
3018     Value *V = getVal(PFTy, $4);   // Get the function we're calling...
3019     CHECK_FOR_ERROR
3020
3021     // Check for call to invalid intrinsic to avoid crashing later.
3022     if (Function *theF = dyn_cast<Function>(V)) {
3023       if (theF->hasName() && (theF->getValueName()->getKeyLength() >= 5) &&
3024           (0 == strncmp(theF->getValueName()->getKeyData(), "llvm.", 5)) &&
3025           !theF->getIntrinsicID(true))
3026         GEN_ERROR("Call to invalid LLVM intrinsic function '" +
3027                   theF->getName() + "'");
3028     }
3029
3030     // Set up the ParamAttrs for the function
3031     SmallVector<ParamAttrsWithIndex, 8> Attrs;
3032     if ($8 != ParamAttr::None)
3033       Attrs.push_back(ParamAttrsWithIndex::get(0, $8));
3034     // Check the arguments 
3035     ValueList Args;
3036     if ($6->empty()) {                                   // Has no arguments?
3037       // Make sure no arguments is a good thing!
3038       if (Ty->getNumParams() != 0)
3039         GEN_ERROR("No arguments passed to a function that "
3040                        "expects arguments");
3041     } else {                                     // Has arguments?
3042       // Loop through FunctionType's arguments and ensure they are specified
3043       // correctly.  Also, gather any parameter attributes.
3044       FunctionType::param_iterator I = Ty->param_begin();
3045       FunctionType::param_iterator E = Ty->param_end();
3046       ParamList::iterator ArgI = $6->begin(), ArgE = $6->end();
3047       unsigned index = 1;
3048
3049       for (; ArgI != ArgE && I != E; ++ArgI, ++I, ++index) {
3050         if (ArgI->Val->getType() != *I)
3051           GEN_ERROR("Parameter " + ArgI->Val->getName()+ " is not of type '" +
3052                          (*I)->getDescription() + "'");
3053         Args.push_back(ArgI->Val);
3054         if (ArgI->Attrs != ParamAttr::None)
3055           Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
3056       }
3057       if (Ty->isVarArg()) {
3058         if (I == E)
3059           for (; ArgI != ArgE; ++ArgI, ++index) {
3060             Args.push_back(ArgI->Val); // push the remaining varargs
3061             if (ArgI->Attrs != ParamAttr::None)
3062               Attrs.push_back(ParamAttrsWithIndex::get(index, ArgI->Attrs));
3063           }
3064       } else if (I != E || ArgI != ArgE)
3065         GEN_ERROR("Invalid number of parameters detected");
3066     }
3067
3068     // Finish off the ParamAttrs and check them
3069     PAListPtr PAL;
3070     if (!Attrs.empty())
3071       PAL = PAListPtr::get(Attrs.begin(), Attrs.end());
3072
3073     // Create the call node
3074     CallInst *CI = CallInst::Create(V, Args.begin(), Args.end());
3075     CI->setTailCall($1);
3076     CI->setCallingConv($2);
3077     CI->setParamAttrs(PAL);
3078     $$ = CI;
3079     delete $6;
3080     delete $3;
3081     CHECK_FOR_ERROR
3082   }
3083   | MemoryInst {
3084     $$ = $1;
3085     CHECK_FOR_ERROR
3086   };
3087
3088 OptVolatile : VOLATILE {
3089     $$ = true;
3090     CHECK_FOR_ERROR
3091   }
3092   | /* empty */ {
3093     $$ = false;
3094     CHECK_FOR_ERROR
3095   };
3096
3097
3098
3099 MemoryInst : MALLOC Types OptCAlign {
3100     if (!UpRefs.empty())
3101       GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3102     $$ = new MallocInst(*$2, 0, $3);
3103     delete $2;
3104     CHECK_FOR_ERROR
3105   }
3106   | MALLOC Types ',' INTTYPE ValueRef OptCAlign {
3107     if (!UpRefs.empty())
3108       GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3109     Value* tmpVal = getVal($4, $5);
3110     CHECK_FOR_ERROR
3111     $$ = new MallocInst(*$2, tmpVal, $6);
3112     delete $2;
3113   }
3114   | ALLOCA Types OptCAlign {
3115     if (!UpRefs.empty())
3116       GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3117     $$ = new AllocaInst(*$2, 0, $3);
3118     delete $2;
3119     CHECK_FOR_ERROR
3120   }
3121   | ALLOCA Types ',' INTTYPE ValueRef OptCAlign {
3122     if (!UpRefs.empty())
3123       GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3124     Value* tmpVal = getVal($4, $5);
3125     CHECK_FOR_ERROR
3126     $$ = new AllocaInst(*$2, tmpVal, $6);
3127     delete $2;
3128   }
3129   | FREE ResolvedVal {
3130     if (!isa<PointerType>($2->getType()))
3131       GEN_ERROR("Trying to free nonpointer type " + 
3132                      $2->getType()->getDescription() + "");
3133     $$ = new FreeInst($2);
3134     CHECK_FOR_ERROR
3135   }
3136
3137   | OptVolatile LOAD Types ValueRef OptCAlign {
3138     if (!UpRefs.empty())
3139       GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
3140     if (!isa<PointerType>($3->get()))
3141       GEN_ERROR("Can't load from nonpointer type: " +
3142                      (*$3)->getDescription());
3143     if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
3144       GEN_ERROR("Can't load from pointer of non-first-class type: " +
3145                      (*$3)->getDescription());
3146     Value* tmpVal = getVal(*$3, $4);
3147     CHECK_FOR_ERROR
3148     $$ = new LoadInst(tmpVal, "", $1, $5);
3149     delete $3;
3150   }
3151   | OptVolatile STORE ResolvedVal ',' Types ValueRef OptCAlign {
3152     if (!UpRefs.empty())
3153       GEN_ERROR("Invalid upreference in type: " + (*$5)->getDescription());
3154     const PointerType *PT = dyn_cast<PointerType>($5->get());
3155     if (!PT)
3156       GEN_ERROR("Can't store to a nonpointer type: " +
3157                      (*$5)->getDescription());
3158     const Type *ElTy = PT->getElementType();
3159     if (ElTy != $3->getType())
3160       GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
3161                      "' into space of type '" + ElTy->getDescription() + "'");
3162
3163     Value* tmpVal = getVal(*$5, $6);
3164     CHECK_FOR_ERROR
3165     $$ = new StoreInst($3, tmpVal, $1, $7);
3166     delete $5;
3167   }
3168 | GETRESULT Types ValueRef ',' EUINT64VAL  {
3169   Value *TmpVal = getVal($2->get(), $3);
3170   if (!GetResultInst::isValidOperands(TmpVal, $5))
3171       GEN_ERROR("Invalid getresult operands");
3172     $$ = new GetResultInst(TmpVal, $5);
3173     delete $2;
3174     CHECK_FOR_ERROR
3175   }
3176   | GETELEMENTPTR Types ValueRef IndexList {
3177     if (!UpRefs.empty())
3178       GEN_ERROR("Invalid upreference in type: " + (*$2)->getDescription());
3179     if (!isa<PointerType>($2->get()))
3180       GEN_ERROR("getelementptr insn requires pointer operand");
3181
3182     if (!GetElementPtrInst::getIndexedType(*$2, $4->begin(), $4->end()))
3183       GEN_ERROR("Invalid getelementptr indices for type '" +
3184                      (*$2)->getDescription()+ "'");
3185     Value* tmpVal = getVal(*$2, $3);
3186     CHECK_FOR_ERROR
3187     $$ = GetElementPtrInst::Create(tmpVal, $4->begin(), $4->end());
3188     delete $2; 
3189     delete $4;
3190   };
3191
3192
3193 %%
3194
3195 // common code from the two 'RunVMAsmParser' functions
3196 static Module* RunParser(Module * M) {
3197   CurModule.CurrentModule = M;
3198   // Check to make sure the parser succeeded
3199   if (yyparse()) {
3200     if (ParserResult)
3201       delete ParserResult;
3202     return 0;
3203   }
3204
3205   // Emit an error if there are any unresolved types left.
3206   if (!CurModule.LateResolveTypes.empty()) {
3207     const ValID &DID = CurModule.LateResolveTypes.begin()->first;
3208     if (DID.Type == ValID::LocalName) {
3209       GenerateError("Undefined type remains at eof: '"+DID.getName() + "'");
3210     } else {
3211       GenerateError("Undefined type remains at eof: #" + itostr(DID.Num));
3212     }
3213     if (ParserResult)
3214       delete ParserResult;
3215     return 0;
3216   }
3217
3218   // Emit an error if there are any unresolved values left.
3219   if (!CurModule.LateResolveValues.empty()) {
3220     Value *V = CurModule.LateResolveValues.back();
3221     std::map<Value*, std::pair<ValID, int> >::iterator I =
3222       CurModule.PlaceHolderInfo.find(V);
3223
3224     if (I != CurModule.PlaceHolderInfo.end()) {
3225       ValID &DID = I->second.first;
3226       if (DID.Type == ValID::LocalName) {
3227         GenerateError("Undefined value remains at eof: "+DID.getName() + "'");
3228       } else {
3229         GenerateError("Undefined value remains at eof: #" + itostr(DID.Num));
3230       }
3231       if (ParserResult)
3232         delete ParserResult;
3233       return 0;
3234     }
3235   }
3236
3237   // Check to make sure that parsing produced a result
3238   if (!ParserResult)
3239     return 0;
3240
3241   // Reset ParserResult variable while saving its value for the result.
3242   Module *Result = ParserResult;
3243   ParserResult = 0;
3244
3245   return Result;
3246 }
3247
3248 void llvm::GenerateError(const std::string &message, int LineNo) {
3249   if (LineNo == -1) LineNo = LLLgetLineNo();
3250   // TODO: column number in exception
3251   if (TheParseError)
3252     TheParseError->setError(LLLgetFilename(), message, LineNo);
3253   TriggerError = 1;
3254 }
3255
3256 int yyerror(const char *ErrorMsg) {
3257   std::string where = LLLgetFilename() + ":" + utostr(LLLgetLineNo()) + ": ";
3258   std::string errMsg = where + "error: " + std::string(ErrorMsg);
3259   if (yychar != YYEMPTY && yychar != 0) {
3260     errMsg += " while reading token: '";
3261     errMsg += std::string(LLLgetTokenStart(), 
3262                           LLLgetTokenStart()+LLLgetTokenLength()) + "'";
3263   }
3264   GenerateError(errMsg);
3265   return 0;
3266 }