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