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