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