Packed Structures
[oota-llvm.git] / lib / AsmParser / llvmAsmParser.y
1 //===-- llvmAsmParser.y - Parser for llvm assembly files --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the bison parser for LLVM assembly languages files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 %{
15 #include "ParserInternals.h"
16 #include "llvm/CallingConv.h"
17 #include "llvm/InlineAsm.h"
18 #include "llvm/Instructions.h"
19 #include "llvm/Module.h"
20 #include "llvm/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 %type  <SInt64Val> EINT64VAL
930
931 %token  <SIntVal>   SINTVAL   // Signed 32 bit ints...
932 %token  <UIntVal>   UINTVAL   // Unsigned 32 bit ints...
933 %type   <SIntVal>   INTVAL
934 %token  <FPVal>     FPVAL     // Float or Double constant
935
936 // Built in types...
937 %type  <TypeVal> Types TypesV UpRTypes UpRTypesV
938 %type  <PrimType> SIntType UIntType IntType FPType PrimType   // Classifications
939 %token <PrimType> VOID BOOL SBYTE UBYTE SHORT USHORT INT UINT LONG ULONG
940 %token <PrimType> FLOAT DOUBLE TYPE LABEL
941
942 %token <StrVal> VAR_ID LABELSTR STRINGCONSTANT
943 %type  <StrVal> Name OptName OptAssign
944 %type  <UIntVal> OptAlign OptCAlign
945 %type <StrVal> OptSection SectionString
946
947 %token IMPLEMENTATION ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
948 %token DECLARE GLOBAL CONSTANT SECTION VOLATILE
949 %token TO DOTDOTDOT NULL_TOK UNDEF CONST INTERNAL LINKONCE WEAK APPENDING
950 %token DLLIMPORT DLLEXPORT EXTERN_WEAK
951 %token OPAQUE NOT EXTERNAL TARGET TRIPLE ENDIAN POINTERSIZE LITTLE BIG ALIGN
952 %token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
953 %token CC_TOK CCC_TOK CSRETCC_TOK FASTCC_TOK COLDCC_TOK
954 %token X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
955 %token DATALAYOUT
956 %type <UIntVal> OptCallingConv
957
958 // Basic Block Terminating Operators
959 %token <TermOpVal> RET BR SWITCH INVOKE UNWIND UNREACHABLE
960
961 // Binary Operators
962 %type  <BinaryOpVal> ArithmeticOps LogicalOps SetCondOps // Binops Subcatagories
963 %token <BinaryOpVal> ADD SUB MUL UDIV SDIV FDIV UREM SREM FREM AND OR XOR
964 %token <BinaryOpVal> SETLE SETGE SETLT SETGT SETEQ SETNE  // Binary Comparators
965 %token <OtherOpVal> ICMP FCMP
966 %type  <IPredicate> IPredicates
967 %type  <FPredicate> FPredicates
968 %token  EQ NE SLT SGT SLE SGE ULT UGT ULE UGE 
969 %token  OEQ ONE OLT OGT OLE OGE ORD UNO UEQ UNE
970
971 // Memory Instructions
972 %token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
973
974 // Cast Operators
975 %type <CastOpVal> CastOps
976 %token <CastOpVal> TRUNC ZEXT SEXT FPTRUNC FPEXT BITCAST
977 %token <CastOpVal> UITOFP SITOFP FPTOUI FPTOSI INTTOPTR PTRTOINT
978
979 // Other Operators
980 %type  <OtherOpVal> ShiftOps
981 %token <OtherOpVal> PHI_TOK SELECT SHL LSHR ASHR VAARG
982 %token <OtherOpVal> EXTRACTELEMENT INSERTELEMENT SHUFFLEVECTOR
983
984
985 %start Module
986 %%
987
988 // Handle constant integer size restriction and conversion...
989 //
990 INTVAL : SINTVAL;
991 INTVAL : UINTVAL {
992   if ($1 > (uint32_t)INT32_MAX)     // Outside of my range!
993     GEN_ERROR("Value too large for type!");
994   $$ = (int32_t)$1;
995   CHECK_FOR_ERROR
996 };
997
998
999 EINT64VAL : ESINT64VAL;      // These have same type and can't cause problems...
1000 EINT64VAL : EUINT64VAL {
1001   if ($1 > (uint64_t)INT64_MAX)     // Outside of my range!
1002     GEN_ERROR("Value too large for type!");
1003   $$ = (int64_t)$1;
1004   CHECK_FOR_ERROR
1005 };
1006
1007 // Operations that are notably excluded from this list include:
1008 // RET, BR, & SWITCH because they end basic blocks and are treated specially.
1009 //
1010 ArithmeticOps: ADD | SUB | MUL | UDIV | SDIV | FDIV | UREM | SREM | FREM;
1011 LogicalOps   : AND | OR | XOR;
1012 SetCondOps   : SETLE | SETGE | SETLT | SETGT | SETEQ | SETNE;
1013 CastOps      : TRUNC | ZEXT | SEXT | FPTRUNC | FPEXT | BITCAST | 
1014                UITOFP | SITOFP | FPTOUI | FPTOSI | INTTOPTR | PTRTOINT;
1015 ShiftOps     : SHL | LSHR | ASHR;
1016 IPredicates  
1017   : EQ   { $$ = ICmpInst::ICMP_EQ; }  | NE   { $$ = ICmpInst::ICMP_NE; }
1018   | SLT  { $$ = ICmpInst::ICMP_SLT; } | SGT  { $$ = ICmpInst::ICMP_SGT; }
1019   | SLE  { $$ = ICmpInst::ICMP_SLE; } | SGE  { $$ = ICmpInst::ICMP_SGE; }
1020   | ULT  { $$ = ICmpInst::ICMP_ULT; } | UGT  { $$ = ICmpInst::ICMP_UGT; }
1021   | ULE  { $$ = ICmpInst::ICMP_ULE; } | UGE  { $$ = ICmpInst::ICMP_UGE; } 
1022   ;
1023
1024 FPredicates  
1025   : OEQ  { $$ = FCmpInst::FCMP_OEQ; } | ONE  { $$ = FCmpInst::FCMP_ONE; }
1026   | OLT  { $$ = FCmpInst::FCMP_OLT; } | OGT  { $$ = FCmpInst::FCMP_OGT; }
1027   | OLE  { $$ = FCmpInst::FCMP_OLE; } | OGE  { $$ = FCmpInst::FCMP_OGE; }
1028   | ORD  { $$ = FCmpInst::FCMP_ORD; } | UNO  { $$ = FCmpInst::FCMP_UNO; }
1029   | UEQ  { $$ = FCmpInst::FCMP_UEQ; } | UNE  { $$ = FCmpInst::FCMP_UNE; }
1030   | ULT  { $$ = FCmpInst::FCMP_ULT; } | UGT  { $$ = FCmpInst::FCMP_UGT; }
1031   | ULE  { $$ = FCmpInst::FCMP_ULE; } | UGE  { $$ = FCmpInst::FCMP_UGE; }
1032   | TRUETOK { $$ = FCmpInst::FCMP_TRUE; }
1033   | FALSETOK { $$ = FCmpInst::FCMP_FALSE; }
1034   ;
1035
1036 // These are some types that allow classification if we only want a particular 
1037 // thing... for example, only a signed, unsigned, or integral type.
1038 SIntType :  LONG |  INT |  SHORT | SBYTE;
1039 UIntType : ULONG | UINT | USHORT | UBYTE;
1040 IntType  : SIntType | UIntType;
1041 FPType   : FLOAT | DOUBLE;
1042
1043 // OptAssign - Value producing statements have an optional assignment component
1044 OptAssign : Name '=' {
1045     $$ = $1;
1046     CHECK_FOR_ERROR
1047   }
1048   | /*empty*/ {
1049     $$ = 0;
1050     CHECK_FOR_ERROR
1051   };
1052
1053 OptLinkage : INTERNAL    { $$ = GlobalValue::InternalLinkage; } |
1054              LINKONCE    { $$ = GlobalValue::LinkOnceLinkage; } |
1055              WEAK        { $$ = GlobalValue::WeakLinkage; } |
1056              APPENDING   { $$ = GlobalValue::AppendingLinkage; } |
1057              DLLIMPORT   { $$ = GlobalValue::DLLImportLinkage; } |
1058              DLLEXPORT   { $$ = GlobalValue::DLLExportLinkage; } |
1059              EXTERN_WEAK { $$ = GlobalValue::ExternalWeakLinkage; } |
1060              /*empty*/   { $$ = GlobalValue::ExternalLinkage; };
1061
1062 OptCallingConv : /*empty*/          { $$ = CallingConv::C; } |
1063                  CCC_TOK            { $$ = CallingConv::C; } |
1064                  CSRETCC_TOK        { $$ = CallingConv::CSRet; } |
1065                  FASTCC_TOK         { $$ = CallingConv::Fast; } |
1066                  COLDCC_TOK         { $$ = CallingConv::Cold; } |
1067                  X86_STDCALLCC_TOK  { $$ = CallingConv::X86_StdCall; } |
1068                  X86_FASTCALLCC_TOK { $$ = CallingConv::X86_FastCall; } |
1069                  CC_TOK EUINT64VAL  {
1070                    if ((unsigned)$2 != $2)
1071                      GEN_ERROR("Calling conv too large!");
1072                    $$ = $2;
1073                   CHECK_FOR_ERROR
1074                  };
1075
1076 // OptAlign/OptCAlign - An optional alignment, and an optional alignment with
1077 // a comma before it.
1078 OptAlign : /*empty*/        { $$ = 0; } |
1079            ALIGN EUINT64VAL {
1080   $$ = $2;
1081   if ($$ != 0 && !isPowerOf2_32($$))
1082     GEN_ERROR("Alignment must be a power of two!");
1083   CHECK_FOR_ERROR
1084 };
1085 OptCAlign : /*empty*/            { $$ = 0; } |
1086             ',' ALIGN EUINT64VAL {
1087   $$ = $3;
1088   if ($$ != 0 && !isPowerOf2_32($$))
1089     GEN_ERROR("Alignment must be a power of two!");
1090   CHECK_FOR_ERROR
1091 };
1092
1093
1094 SectionString : SECTION STRINGCONSTANT {
1095   for (unsigned i = 0, e = strlen($2); i != e; ++i)
1096     if ($2[i] == '"' || $2[i] == '\\')
1097       GEN_ERROR("Invalid character in section name!");
1098   $$ = $2;
1099   CHECK_FOR_ERROR
1100 };
1101
1102 OptSection : /*empty*/ { $$ = 0; } |
1103              SectionString { $$ = $1; };
1104
1105 // GlobalVarAttributes - Used to pass the attributes string on a global.  CurGV
1106 // is set to be the global we are processing.
1107 //
1108 GlobalVarAttributes : /* empty */ {} |
1109                      ',' GlobalVarAttribute GlobalVarAttributes {};
1110 GlobalVarAttribute : SectionString {
1111     CurGV->setSection($1);
1112     free($1);
1113     CHECK_FOR_ERROR
1114   } 
1115   | ALIGN EUINT64VAL {
1116     if ($2 != 0 && !isPowerOf2_32($2))
1117       GEN_ERROR("Alignment must be a power of two!");
1118     CurGV->setAlignment($2);
1119     CHECK_FOR_ERROR
1120   };
1121
1122 //===----------------------------------------------------------------------===//
1123 // Types includes all predefined types... except void, because it can only be
1124 // used in specific contexts (function returning void for example).  To have
1125 // access to it, a user must explicitly use TypesV.
1126 //
1127
1128 // TypesV includes all of 'Types', but it also includes the void type.
1129 TypesV    : Types    | VOID { $$ = new PATypeHolder($1); };
1130 UpRTypesV : UpRTypes | VOID { $$ = new PATypeHolder($1); };
1131
1132 Types     : UpRTypes {
1133     if (!UpRefs.empty())
1134       GEN_ERROR("Invalid upreference in type: " + (*$1)->getDescription());
1135     $$ = $1;
1136     CHECK_FOR_ERROR
1137   };
1138
1139
1140 // Derived types are added later...
1141 //
1142 PrimType : BOOL | SBYTE | UBYTE | SHORT  | USHORT | INT   | UINT ;
1143 PrimType : LONG | ULONG | FLOAT | DOUBLE | TYPE   | LABEL;
1144 UpRTypes : OPAQUE {
1145     $$ = new PATypeHolder(OpaqueType::get());
1146     CHECK_FOR_ERROR
1147   }
1148   | PrimType {
1149     $$ = new PATypeHolder($1);
1150     CHECK_FOR_ERROR
1151   };
1152 UpRTypes : SymbolicValueRef {            // Named types are also simple types...
1153   const Type* tmp = getTypeVal($1);
1154   CHECK_FOR_ERROR
1155   $$ = new PATypeHolder(tmp);
1156 };
1157
1158 // Include derived types in the Types production.
1159 //
1160 UpRTypes : '\\' EUINT64VAL {                   // Type UpReference
1161     if ($2 > (uint64_t)~0U) GEN_ERROR("Value out of range!");
1162     OpaqueType *OT = OpaqueType::get();        // Use temporary placeholder
1163     UpRefs.push_back(UpRefRecord((unsigned)$2, OT));  // Add to vector...
1164     $$ = new PATypeHolder(OT);
1165     UR_OUT("New Upreference!\n");
1166     CHECK_FOR_ERROR
1167   }
1168   | UpRTypesV '(' ArgTypeListI ')' {           // Function derived type?
1169     std::vector<const Type*> Params;
1170     for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1171            E = $3->end(); I != E; ++I)
1172       Params.push_back(*I);
1173     bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
1174     if (isVarArg) Params.pop_back();
1175
1176     $$ = new PATypeHolder(HandleUpRefs(FunctionType::get(*$1,Params,isVarArg)));
1177     delete $3;      // Delete the argument list
1178     delete $1;      // Delete the return type handle
1179     CHECK_FOR_ERROR
1180   }
1181   | '[' EUINT64VAL 'x' UpRTypes ']' {          // Sized array type?
1182     $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
1183     delete $4;
1184     CHECK_FOR_ERROR
1185   }
1186   | '<' EUINT64VAL 'x' UpRTypes '>' {          // Packed array type?
1187      const llvm::Type* ElemTy = $4->get();
1188      if ((unsigned)$2 != $2)
1189         GEN_ERROR("Unsigned result not equal to signed result");
1190      if (!ElemTy->isPrimitiveType())
1191         GEN_ERROR("Elemental type of a PackedType must be primitive");
1192      if (!isPowerOf2_32($2))
1193        GEN_ERROR("Vector length should be a power of 2!");
1194      $$ = new PATypeHolder(HandleUpRefs(PackedType::get(*$4, (unsigned)$2)));
1195      delete $4;
1196      CHECK_FOR_ERROR
1197   }
1198   | '{' TypeListI '}' {                        // Structure type?
1199     std::vector<const Type*> Elements;
1200     for (std::list<llvm::PATypeHolder>::iterator I = $2->begin(),
1201            E = $2->end(); I != E; ++I)
1202       Elements.push_back(*I);
1203
1204     $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
1205     delete $2;
1206     CHECK_FOR_ERROR
1207   }
1208   | '{' '}' {                                  // Empty structure type?
1209     $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
1210     CHECK_FOR_ERROR
1211   }
1212   | '<' '{' TypeListI '}' '>' {
1213     std::vector<const Type*> Elements;
1214     for (std::list<llvm::PATypeHolder>::iterator I = $3->begin(),
1215            E = $3->end(); I != E; ++I)
1216       Elements.push_back(*I);
1217
1218     $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements, true)));
1219     delete $3;
1220     CHECK_FOR_ERROR
1221   }
1222   | '<' '{' '}' '>' {                         // Empty structure type?
1223     $$ = new PATypeHolder(StructType::get(std::vector<const Type*>(), true));
1224     CHECK_FOR_ERROR
1225   }
1226   | UpRTypes '*' {                             // Pointer type?
1227     if (*$1 == Type::LabelTy)
1228       GEN_ERROR("Cannot form a pointer to a basic block");
1229     $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
1230     delete $1;
1231     CHECK_FOR_ERROR
1232   };
1233
1234 // TypeList - Used for struct declarations and as a basis for function type 
1235 // declaration type lists
1236 //
1237 TypeListI : UpRTypes {
1238     $$ = new std::list<PATypeHolder>();
1239     $$->push_back(*$1); delete $1;
1240     CHECK_FOR_ERROR
1241   }
1242   | TypeListI ',' UpRTypes {
1243     ($$=$1)->push_back(*$3); delete $3;
1244     CHECK_FOR_ERROR
1245   };
1246
1247 // ArgTypeList - List of types for a function type declaration...
1248 ArgTypeListI : TypeListI
1249   | TypeListI ',' DOTDOTDOT {
1250     ($$=$1)->push_back(Type::VoidTy);
1251     CHECK_FOR_ERROR
1252   }
1253   | DOTDOTDOT {
1254     ($$ = new std::list<PATypeHolder>())->push_back(Type::VoidTy);
1255     CHECK_FOR_ERROR
1256   }
1257   | /*empty*/ {
1258     $$ = new std::list<PATypeHolder>();
1259     CHECK_FOR_ERROR
1260   };
1261
1262 // ConstVal - The various declarations that go into the constant pool.  This
1263 // production is used ONLY to represent constants that show up AFTER a 'const',
1264 // 'constant' or 'global' token at global scope.  Constants that can be inlined
1265 // into other expressions (such as integers and constexprs) are handled by the
1266 // ResolvedVal, ValueRef and ConstValueRef productions.
1267 //
1268 ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
1269     const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
1270     if (ATy == 0)
1271       GEN_ERROR("Cannot make array constant with type: '" + 
1272                      (*$1)->getDescription() + "'!");
1273     const Type *ETy = ATy->getElementType();
1274     int NumElements = ATy->getNumElements();
1275
1276     // Verify that we have the correct size...
1277     if (NumElements != -1 && NumElements != (int)$3->size())
1278       GEN_ERROR("Type mismatch: constant sized array initialized with " +
1279                      utostr($3->size()) +  " arguments, but has size of " + 
1280                      itostr(NumElements) + "!");
1281
1282     // Verify all elements are correct type!
1283     for (unsigned i = 0; i < $3->size(); i++) {
1284       if (ETy != (*$3)[i]->getType())
1285         GEN_ERROR("Element #" + utostr(i) + " is not of type '" + 
1286                        ETy->getDescription() +"' as required!\nIt is of type '"+
1287                        (*$3)[i]->getType()->getDescription() + "'.");
1288     }
1289
1290     $$ = ConstantArray::get(ATy, *$3);
1291     delete $1; delete $3;
1292     CHECK_FOR_ERROR
1293   }
1294   | Types '[' ']' {
1295     const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
1296     if (ATy == 0)
1297       GEN_ERROR("Cannot make array constant with type: '" + 
1298                      (*$1)->getDescription() + "'!");
1299
1300     int NumElements = ATy->getNumElements();
1301     if (NumElements != -1 && NumElements != 0) 
1302       GEN_ERROR("Type mismatch: constant sized array initialized with 0"
1303                      " arguments, but has size of " + itostr(NumElements) +"!");
1304     $$ = ConstantArray::get(ATy, std::vector<Constant*>());
1305     delete $1;
1306     CHECK_FOR_ERROR
1307   }
1308   | Types 'c' STRINGCONSTANT {
1309     const ArrayType *ATy = dyn_cast<ArrayType>($1->get());
1310     if (ATy == 0)
1311       GEN_ERROR("Cannot make array constant with type: '" + 
1312                      (*$1)->getDescription() + "'!");
1313
1314     int NumElements = ATy->getNumElements();
1315     const Type *ETy = ATy->getElementType();
1316     char *EndStr = UnEscapeLexed($3, true);
1317     if (NumElements != -1 && NumElements != (EndStr-$3))
1318       GEN_ERROR("Can't build string constant of size " + 
1319                      itostr((int)(EndStr-$3)) +
1320                      " when array has size " + itostr(NumElements) + "!");
1321     std::vector<Constant*> Vals;
1322     if (ETy == Type::SByteTy) {
1323       for (signed char *C = (signed char *)$3; C != (signed char *)EndStr; ++C)
1324         Vals.push_back(ConstantInt::get(ETy, *C));
1325     } else if (ETy == Type::UByteTy) {
1326       for (unsigned char *C = (unsigned char *)$3; 
1327            C != (unsigned char*)EndStr; ++C)
1328         Vals.push_back(ConstantInt::get(ETy, *C));
1329     } else {
1330       free($3);
1331       GEN_ERROR("Cannot build string arrays of non byte sized elements!");
1332     }
1333     free($3);
1334     $$ = ConstantArray::get(ATy, Vals);
1335     delete $1;
1336     CHECK_FOR_ERROR
1337   }
1338   | Types '<' ConstVector '>' { // Nonempty unsized arr
1339     const PackedType *PTy = dyn_cast<PackedType>($1->get());
1340     if (PTy == 0)
1341       GEN_ERROR("Cannot make packed constant with type: '" + 
1342                      (*$1)->getDescription() + "'!");
1343     const Type *ETy = PTy->getElementType();
1344     int NumElements = PTy->getNumElements();
1345
1346     // Verify that we have the correct size...
1347     if (NumElements != -1 && NumElements != (int)$3->size())
1348       GEN_ERROR("Type mismatch: constant sized packed initialized with " +
1349                      utostr($3->size()) +  " arguments, but has size of " + 
1350                      itostr(NumElements) + "!");
1351
1352     // Verify all elements are correct type!
1353     for (unsigned i = 0; i < $3->size(); i++) {
1354       if (ETy != (*$3)[i]->getType())
1355         GEN_ERROR("Element #" + utostr(i) + " is not of type '" + 
1356            ETy->getDescription() +"' as required!\nIt is of type '"+
1357            (*$3)[i]->getType()->getDescription() + "'.");
1358     }
1359
1360     $$ = ConstantPacked::get(PTy, *$3);
1361     delete $1; delete $3;
1362     CHECK_FOR_ERROR
1363   }
1364   | Types '{' ConstVector '}' {
1365     const StructType *STy = dyn_cast<StructType>($1->get());
1366     if (STy == 0)
1367       GEN_ERROR("Cannot make struct constant with type: '" + 
1368                      (*$1)->getDescription() + "'!");
1369
1370     if ($3->size() != STy->getNumContainedTypes())
1371       GEN_ERROR("Illegal number of initializers for structure type!");
1372
1373     // Check to ensure that constants are compatible with the type initializer!
1374     for (unsigned i = 0, e = $3->size(); i != e; ++i)
1375       if ((*$3)[i]->getType() != STy->getElementType(i))
1376         GEN_ERROR("Expected type '" +
1377                        STy->getElementType(i)->getDescription() +
1378                        "' for element #" + utostr(i) +
1379                        " of structure initializer!");
1380
1381     $$ = ConstantStruct::get(STy, *$3);
1382     delete $1; delete $3;
1383     CHECK_FOR_ERROR
1384   }
1385   | Types '{' '}' {
1386     const StructType *STy = dyn_cast<StructType>($1->get());
1387     if (STy == 0)
1388       GEN_ERROR("Cannot make struct constant with type: '" + 
1389                      (*$1)->getDescription() + "'!");
1390
1391     if (STy->getNumContainedTypes() != 0)
1392       GEN_ERROR("Illegal number of initializers for structure type!");
1393
1394     $$ = ConstantStruct::get(STy, std::vector<Constant*>());
1395     delete $1;
1396     CHECK_FOR_ERROR
1397   }
1398   | Types NULL_TOK {
1399     const PointerType *PTy = dyn_cast<PointerType>($1->get());
1400     if (PTy == 0)
1401       GEN_ERROR("Cannot make null pointer constant with type: '" + 
1402                      (*$1)->getDescription() + "'!");
1403
1404     $$ = ConstantPointerNull::get(PTy);
1405     delete $1;
1406     CHECK_FOR_ERROR
1407   }
1408   | Types UNDEF {
1409     $$ = UndefValue::get($1->get());
1410     delete $1;
1411     CHECK_FOR_ERROR
1412   }
1413   | Types SymbolicValueRef {
1414     const PointerType *Ty = dyn_cast<PointerType>($1->get());
1415     if (Ty == 0)
1416       GEN_ERROR("Global const reference must be a pointer type!");
1417
1418     // ConstExprs can exist in the body of a function, thus creating
1419     // GlobalValues whenever they refer to a variable.  Because we are in
1420     // the context of a function, getValNonImprovising will search the functions
1421     // symbol table instead of the module symbol table for the global symbol,
1422     // which throws things all off.  To get around this, we just tell
1423     // getValNonImprovising that we are at global scope here.
1424     //
1425     Function *SavedCurFn = CurFun.CurrentFunction;
1426     CurFun.CurrentFunction = 0;
1427
1428     Value *V = getValNonImprovising(Ty, $2);
1429     CHECK_FOR_ERROR
1430
1431     CurFun.CurrentFunction = SavedCurFn;
1432
1433     // If this is an initializer for a constant pointer, which is referencing a
1434     // (currently) undefined variable, create a stub now that shall be replaced
1435     // in the future with the right type of variable.
1436     //
1437     if (V == 0) {
1438       assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
1439       const PointerType *PT = cast<PointerType>(Ty);
1440
1441       // First check to see if the forward references value is already created!
1442       PerModuleInfo::GlobalRefsType::iterator I =
1443         CurModule.GlobalRefs.find(std::make_pair(PT, $2));
1444     
1445       if (I != CurModule.GlobalRefs.end()) {
1446         V = I->second;             // Placeholder already exists, use it...
1447         $2.destroy();
1448       } else {
1449         std::string Name;
1450         if ($2.Type == ValID::NameVal) Name = $2.Name;
1451
1452         // Create the forward referenced global.
1453         GlobalValue *GV;
1454         if (const FunctionType *FTy = 
1455                  dyn_cast<FunctionType>(PT->getElementType())) {
1456           GV = new Function(FTy, GlobalValue::ExternalLinkage, Name,
1457                             CurModule.CurrentModule);
1458         } else {
1459           GV = new GlobalVariable(PT->getElementType(), false,
1460                                   GlobalValue::ExternalLinkage, 0,
1461                                   Name, CurModule.CurrentModule);
1462         }
1463
1464         // Keep track of the fact that we have a forward ref to recycle it
1465         CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1466         V = GV;
1467       }
1468     }
1469
1470     $$ = cast<GlobalValue>(V);
1471     delete $1;            // Free the type handle
1472     CHECK_FOR_ERROR
1473   }
1474   | Types ConstExpr {
1475     if ($1->get() != $2->getType())
1476       GEN_ERROR("Mismatched types for constant expression!");
1477     $$ = $2;
1478     delete $1;
1479     CHECK_FOR_ERROR
1480   }
1481   | Types ZEROINITIALIZER {
1482     const Type *Ty = $1->get();
1483     if (isa<FunctionType>(Ty) || Ty == Type::LabelTy || isa<OpaqueType>(Ty))
1484       GEN_ERROR("Cannot create a null initialized value of this type!");
1485     $$ = Constant::getNullValue(Ty);
1486     delete $1;
1487     CHECK_FOR_ERROR
1488   }
1489   | SIntType EINT64VAL {      // 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 EUINT64VAL {            // integral constants
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   | SetCondOps '(' ConstVal ',' ConstVal ')' {
1576     if ($3->getType() != $5->getType())
1577       GEN_ERROR("setcc operand types must match!");
1578     $$ = ConstantExpr::get($1, $3, $5);
1579     CHECK_FOR_ERROR
1580   }
1581   | ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
1582     if ($4->getType() != $6->getType())
1583       GEN_ERROR("icmp operand types must match!");
1584     $$ = ConstantExpr::getICmp($2, $4, $6);
1585   }
1586   | FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
1587     if ($4->getType() != $6->getType())
1588       GEN_ERROR("fcmp operand types must match!");
1589     $$ = ConstantExpr::getFCmp($2, $4, $6);
1590   }
1591   | ShiftOps '(' ConstVal ',' ConstVal ')' {
1592     if ($5->getType() != Type::UByteTy)
1593       GEN_ERROR("Shift count for shift constant must be unsigned byte!");
1594     if (!$3->getType()->isInteger())
1595       GEN_ERROR("Shift constant expression requires integer operand!");
1596     CHECK_FOR_ERROR;
1597     $$ = ConstantExpr::get($1, $3, $5);
1598     CHECK_FOR_ERROR
1599   }
1600   | EXTRACTELEMENT '(' ConstVal ',' ConstVal ')' {
1601     if (!ExtractElementInst::isValidOperands($3, $5))
1602       GEN_ERROR("Invalid extractelement operands!");
1603     $$ = ConstantExpr::getExtractElement($3, $5);
1604     CHECK_FOR_ERROR
1605   }
1606   | INSERTELEMENT '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1607     if (!InsertElementInst::isValidOperands($3, $5, $7))
1608       GEN_ERROR("Invalid insertelement operands!");
1609     $$ = ConstantExpr::getInsertElement($3, $5, $7);
1610     CHECK_FOR_ERROR
1611   }
1612   | SHUFFLEVECTOR '(' ConstVal ',' ConstVal ',' ConstVal ')' {
1613     if (!ShuffleVectorInst::isValidOperands($3, $5, $7))
1614       GEN_ERROR("Invalid shufflevector operands!");
1615     $$ = ConstantExpr::getShuffleVector($3, $5, $7);
1616     CHECK_FOR_ERROR
1617   };
1618
1619
1620 // ConstVector - A list of comma separated constants.
1621 ConstVector : ConstVector ',' ConstVal {
1622     ($$ = $1)->push_back($3);
1623     CHECK_FOR_ERROR
1624   }
1625   | ConstVal {
1626     $$ = new std::vector<Constant*>();
1627     $$->push_back($1);
1628     CHECK_FOR_ERROR
1629   };
1630
1631
1632 // GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1633 GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
1634
1635
1636 //===----------------------------------------------------------------------===//
1637 //                             Rules to match Modules
1638 //===----------------------------------------------------------------------===//
1639
1640 // Module rule: Capture the result of parsing the whole file into a result
1641 // variable...
1642 //
1643 Module : FunctionList {
1644   $$ = ParserResult = $1;
1645   CurModule.ModuleDone();
1646   CHECK_FOR_ERROR;
1647 };
1648
1649 // FunctionList - A list of functions, preceeded by a constant pool.
1650 //
1651 FunctionList : FunctionList Function {
1652     $$ = $1;
1653     CurFun.FunctionDone();
1654     CHECK_FOR_ERROR
1655   } 
1656   | FunctionList FunctionProto {
1657     $$ = $1;
1658     CHECK_FOR_ERROR
1659   }
1660   | FunctionList MODULE ASM_TOK AsmBlock {
1661     $$ = $1;
1662     CHECK_FOR_ERROR
1663   }  
1664   | FunctionList IMPLEMENTATION {
1665     $$ = $1;
1666     CHECK_FOR_ERROR
1667   }
1668   | ConstPool {
1669     $$ = CurModule.CurrentModule;
1670     // Emit an error if there are any unresolved types left.
1671     if (!CurModule.LateResolveTypes.empty()) {
1672       const ValID &DID = CurModule.LateResolveTypes.begin()->first;
1673       if (DID.Type == ValID::NameVal) {
1674         GEN_ERROR("Reference to an undefined type: '"+DID.getName() + "'");
1675       } else {
1676         GEN_ERROR("Reference to an undefined type: #" + itostr(DID.Num));
1677       }
1678     }
1679     CHECK_FOR_ERROR
1680   };
1681
1682 // ConstPool - Constants with optional names assigned to them.
1683 ConstPool : ConstPool OptAssign TYPE TypesV {
1684     // Eagerly resolve types.  This is not an optimization, this is a
1685     // requirement that is due to the fact that we could have this:
1686     //
1687     // %list = type { %list * }
1688     // %list = type { %list * }    ; repeated type decl
1689     //
1690     // If types are not resolved eagerly, then the two types will not be
1691     // determined to be the same type!
1692     //
1693     ResolveTypeTo($2, *$4);
1694
1695     if (!setTypeName(*$4, $2) && !$2) {
1696       CHECK_FOR_ERROR
1697       // If this is a named type that is not a redefinition, add it to the slot
1698       // table.
1699       CurModule.Types.push_back(*$4);
1700     }
1701
1702     delete $4;
1703     CHECK_FOR_ERROR
1704   }
1705   | ConstPool FunctionProto {       // Function prototypes can be in const pool
1706     CHECK_FOR_ERROR
1707   }
1708   | ConstPool MODULE ASM_TOK AsmBlock {  // Asm blocks can be in the const pool
1709     CHECK_FOR_ERROR
1710   }
1711   | ConstPool OptAssign OptLinkage GlobalType ConstVal {
1712     if ($5 == 0) 
1713       GEN_ERROR("Global value initializer is not a constant!");
1714     CurGV = ParseGlobalVariable($2, $3, $4, $5->getType(), $5);
1715     CHECK_FOR_ERROR
1716   } GlobalVarAttributes {
1717     CurGV = 0;
1718   }
1719   | ConstPool OptAssign EXTERNAL GlobalType Types {
1720     CurGV = ParseGlobalVariable($2, GlobalValue::ExternalLinkage, $4, *$5, 0);
1721     CHECK_FOR_ERROR
1722     delete $5;
1723   } GlobalVarAttributes {
1724     CurGV = 0;
1725     CHECK_FOR_ERROR
1726   }
1727   | ConstPool OptAssign DLLIMPORT GlobalType Types {
1728     CurGV = ParseGlobalVariable($2, GlobalValue::DLLImportLinkage, $4, *$5, 0);
1729     CHECK_FOR_ERROR
1730     delete $5;
1731   } GlobalVarAttributes {
1732     CurGV = 0;
1733     CHECK_FOR_ERROR
1734   }
1735   | ConstPool OptAssign EXTERN_WEAK GlobalType Types {
1736     CurGV = 
1737       ParseGlobalVariable($2, GlobalValue::ExternalWeakLinkage, $4, *$5, 0);
1738     CHECK_FOR_ERROR
1739     delete $5;
1740   } GlobalVarAttributes {
1741     CurGV = 0;
1742     CHECK_FOR_ERROR
1743   }
1744   | ConstPool TARGET TargetDefinition { 
1745     CHECK_FOR_ERROR
1746   }
1747   | ConstPool DEPLIBS '=' LibrariesDefinition {
1748     CHECK_FOR_ERROR
1749   }
1750   | /* empty: end of list */ { 
1751   };
1752
1753
1754 AsmBlock : STRINGCONSTANT {
1755   const std::string &AsmSoFar = CurModule.CurrentModule->getModuleInlineAsm();
1756   char *EndStr = UnEscapeLexed($1, true);
1757   std::string NewAsm($1, EndStr);
1758   free($1);
1759
1760   if (AsmSoFar.empty())
1761     CurModule.CurrentModule->setModuleInlineAsm(NewAsm);
1762   else
1763     CurModule.CurrentModule->setModuleInlineAsm(AsmSoFar+"\n"+NewAsm);
1764   CHECK_FOR_ERROR
1765 };
1766
1767 BigOrLittle : BIG    { $$ = Module::BigEndian; };
1768 BigOrLittle : LITTLE { $$ = Module::LittleEndian; };
1769
1770 TargetDefinition : ENDIAN '=' BigOrLittle {
1771     CurModule.CurrentModule->setEndianness($3);
1772     CHECK_FOR_ERROR
1773   }
1774   | POINTERSIZE '=' EUINT64VAL {
1775     if ($3 == 32)
1776       CurModule.CurrentModule->setPointerSize(Module::Pointer32);
1777     else if ($3 == 64)
1778       CurModule.CurrentModule->setPointerSize(Module::Pointer64);
1779     else
1780       GEN_ERROR("Invalid pointer size: '" + utostr($3) + "'!");
1781     CHECK_FOR_ERROR
1782   }
1783   | TRIPLE '=' STRINGCONSTANT {
1784     CurModule.CurrentModule->setTargetTriple($3);
1785     free($3);
1786   }
1787   | DATALAYOUT '=' STRINGCONSTANT {
1788     CurModule.CurrentModule->setDataLayout($3);
1789     free($3);
1790   };
1791
1792 LibrariesDefinition : '[' LibList ']';
1793
1794 LibList : LibList ',' STRINGCONSTANT {
1795           CurModule.CurrentModule->addLibrary($3);
1796           free($3);
1797           CHECK_FOR_ERROR
1798         }
1799         | STRINGCONSTANT {
1800           CurModule.CurrentModule->addLibrary($1);
1801           free($1);
1802           CHECK_FOR_ERROR
1803         }
1804         | /* empty: end of list */ {
1805           CHECK_FOR_ERROR
1806         }
1807         ;
1808
1809 //===----------------------------------------------------------------------===//
1810 //                       Rules to match Function Headers
1811 //===----------------------------------------------------------------------===//
1812
1813 Name : VAR_ID | STRINGCONSTANT;
1814 OptName : Name | /*empty*/ { $$ = 0; };
1815
1816 ArgVal : Types OptName {
1817   if (*$1 == Type::VoidTy)
1818     GEN_ERROR("void typed arguments are invalid!");
1819   $$ = new std::pair<PATypeHolder*, char*>($1, $2);
1820   CHECK_FOR_ERROR
1821 };
1822
1823 ArgListH : ArgListH ',' ArgVal {
1824     $$ = $1;
1825     $1->push_back(*$3);
1826     delete $3;
1827     CHECK_FOR_ERROR
1828   }
1829   | ArgVal {
1830     $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
1831     $$->push_back(*$1);
1832     delete $1;
1833     CHECK_FOR_ERROR
1834   };
1835
1836 ArgList : ArgListH {
1837     $$ = $1;
1838     CHECK_FOR_ERROR
1839   }
1840   | ArgListH ',' DOTDOTDOT {
1841     $$ = $1;
1842     $$->push_back(std::pair<PATypeHolder*,
1843                             char*>(new PATypeHolder(Type::VoidTy), 0));
1844     CHECK_FOR_ERROR
1845   }
1846   | DOTDOTDOT {
1847     $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
1848     $$->push_back(std::make_pair(new PATypeHolder(Type::VoidTy), (char*)0));
1849     CHECK_FOR_ERROR
1850   }
1851   | /* empty */ {
1852     $$ = 0;
1853     CHECK_FOR_ERROR
1854   };
1855
1856 FunctionHeaderH : OptCallingConv TypesV Name '(' ArgList ')' 
1857                   OptSection OptAlign {
1858   UnEscapeLexed($3);
1859   std::string FunctionName($3);
1860   free($3);  // Free strdup'd memory!
1861   
1862   if (!(*$2)->isFirstClassType() && *$2 != Type::VoidTy)
1863     GEN_ERROR("LLVM functions cannot return aggregate types!");
1864
1865   std::vector<const Type*> ParamTypeList;
1866   if ($5) {   // If there are arguments...
1867     for (std::vector<std::pair<PATypeHolder*,char*> >::iterator I = $5->begin();
1868          I != $5->end(); ++I)
1869       ParamTypeList.push_back(I->first->get());
1870   }
1871
1872   bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
1873   if (isVarArg) ParamTypeList.pop_back();
1874
1875   const FunctionType *FT = FunctionType::get(*$2, ParamTypeList, isVarArg);
1876   const PointerType *PFT = PointerType::get(FT);
1877   delete $2;
1878
1879   ValID ID;
1880   if (!FunctionName.empty()) {
1881     ID = ValID::create((char*)FunctionName.c_str());
1882   } else {
1883     ID = ValID::create((int)CurModule.Values[PFT].size());
1884   }
1885
1886   Function *Fn = 0;
1887   // See if this function was forward referenced.  If so, recycle the object.
1888   if (GlobalValue *FWRef = CurModule.GetForwardRefForGlobal(PFT, ID)) {
1889     // Move the function to the end of the list, from whereever it was 
1890     // previously inserted.
1891     Fn = cast<Function>(FWRef);
1892     CurModule.CurrentModule->getFunctionList().remove(Fn);
1893     CurModule.CurrentModule->getFunctionList().push_back(Fn);
1894   } else if (!FunctionName.empty() &&     // Merge with an earlier prototype?
1895              (Fn = CurModule.CurrentModule->getFunction(FunctionName, FT))) {
1896     // If this is the case, either we need to be a forward decl, or it needs 
1897     // to be.
1898     if (!CurFun.isDeclare && !Fn->isExternal())
1899       GEN_ERROR("Redefinition of function '" + FunctionName + "'!");
1900     
1901     // Make sure to strip off any argument names so we can't get conflicts.
1902     if (Fn->isExternal())
1903       for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
1904            AI != AE; ++AI)
1905         AI->setName("");
1906   } else  {  // Not already defined?
1907     Fn = new Function(FT, GlobalValue::ExternalLinkage, FunctionName,
1908                       CurModule.CurrentModule);
1909
1910     InsertValue(Fn, CurModule.Values);
1911   }
1912
1913   CurFun.FunctionStart(Fn);
1914
1915   if (CurFun.isDeclare) {
1916     // If we have declaration, always overwrite linkage.  This will allow us to
1917     // correctly handle cases, when pointer to function is passed as argument to
1918     // another function.
1919     Fn->setLinkage(CurFun.Linkage);
1920   }
1921   Fn->setCallingConv($1);
1922   Fn->setAlignment($8);
1923   if ($7) {
1924     Fn->setSection($7);
1925     free($7);
1926   }
1927
1928   // Add all of the arguments we parsed to the function...
1929   if ($5) {                     // Is null if empty...
1930     if (isVarArg) {  // Nuke the last entry
1931       assert($5->back().first->get() == Type::VoidTy && $5->back().second == 0&&
1932              "Not a varargs marker!");
1933       delete $5->back().first;
1934       $5->pop_back();  // Delete the last entry
1935     }
1936     Function::arg_iterator ArgIt = Fn->arg_begin();
1937     for (std::vector<std::pair<PATypeHolder*,char*> >::iterator I = $5->begin();
1938          I != $5->end(); ++I, ++ArgIt) {
1939       delete I->first;                          // Delete the typeholder...
1940
1941       setValueName(ArgIt, I->second);           // Insert arg into symtab...
1942       CHECK_FOR_ERROR
1943       InsertValue(ArgIt);
1944     }
1945
1946     delete $5;                     // We're now done with the argument list
1947   }
1948   CHECK_FOR_ERROR
1949 };
1950
1951 BEGIN : BEGINTOK | '{';                // Allow BEGIN or '{' to start a function
1952
1953 FunctionHeader : OptLinkage FunctionHeaderH BEGIN {
1954   $$ = CurFun.CurrentFunction;
1955
1956   // Make sure that we keep track of the linkage type even if there was a
1957   // previous "declare".
1958   $$->setLinkage($1);
1959 };
1960
1961 END : ENDTOK | '}';                    // Allow end of '}' to end a function
1962
1963 Function : BasicBlockList END {
1964   $$ = $1;
1965   CHECK_FOR_ERROR
1966 };
1967
1968 FnDeclareLinkage: /*default*/ |
1969                   DLLIMPORT   { CurFun.Linkage = GlobalValue::DLLImportLinkage; } |
1970                   EXTERN_WEAK { CurFun.Linkage = GlobalValue::ExternalWeakLinkage; };
1971   
1972 FunctionProto : DECLARE { CurFun.isDeclare = true; } FnDeclareLinkage FunctionHeaderH {
1973     $$ = CurFun.CurrentFunction;
1974     CurFun.FunctionDone();
1975     CHECK_FOR_ERROR
1976   };
1977
1978 //===----------------------------------------------------------------------===//
1979 //                        Rules to match Basic Blocks
1980 //===----------------------------------------------------------------------===//
1981
1982 OptSideEffect : /* empty */ {
1983     $$ = false;
1984     CHECK_FOR_ERROR
1985   }
1986   | SIDEEFFECT {
1987     $$ = true;
1988     CHECK_FOR_ERROR
1989   };
1990
1991 ConstValueRef : ESINT64VAL {    // A reference to a direct constant
1992     $$ = ValID::create($1);
1993     CHECK_FOR_ERROR
1994   }
1995   | EUINT64VAL {
1996     $$ = ValID::create($1);
1997     CHECK_FOR_ERROR
1998   }
1999   | FPVAL {                     // Perhaps it's an FP constant?
2000     $$ = ValID::create($1);
2001     CHECK_FOR_ERROR
2002   }
2003   | TRUETOK {
2004     $$ = ValID::create(ConstantBool::getTrue());
2005     CHECK_FOR_ERROR
2006   } 
2007   | FALSETOK {
2008     $$ = ValID::create(ConstantBool::getFalse());
2009     CHECK_FOR_ERROR
2010   }
2011   | NULL_TOK {
2012     $$ = ValID::createNull();
2013     CHECK_FOR_ERROR
2014   }
2015   | UNDEF {
2016     $$ = ValID::createUndef();
2017     CHECK_FOR_ERROR
2018   }
2019   | ZEROINITIALIZER {     // A vector zero constant.
2020     $$ = ValID::createZeroInit();
2021     CHECK_FOR_ERROR
2022   }
2023   | '<' ConstVector '>' { // Nonempty unsized packed vector
2024     const Type *ETy = (*$2)[0]->getType();
2025     int NumElements = $2->size(); 
2026     
2027     PackedType* pt = PackedType::get(ETy, NumElements);
2028     PATypeHolder* PTy = new PATypeHolder(
2029                                          HandleUpRefs(
2030                                             PackedType::get(
2031                                                 ETy, 
2032                                                 NumElements)
2033                                             )
2034                                          );
2035     
2036     // Verify all elements are correct type!
2037     for (unsigned i = 0; i < $2->size(); i++) {
2038       if (ETy != (*$2)[i]->getType())
2039         GEN_ERROR("Element #" + utostr(i) + " is not of type '" + 
2040                      ETy->getDescription() +"' as required!\nIt is of type '" +
2041                      (*$2)[i]->getType()->getDescription() + "'.");
2042     }
2043
2044     $$ = ValID::create(ConstantPacked::get(pt, *$2));
2045     delete PTy; delete $2;
2046     CHECK_FOR_ERROR
2047   }
2048   | ConstExpr {
2049     $$ = ValID::create($1);
2050     CHECK_FOR_ERROR
2051   }
2052   | ASM_TOK OptSideEffect STRINGCONSTANT ',' STRINGCONSTANT {
2053     char *End = UnEscapeLexed($3, true);
2054     std::string AsmStr = std::string($3, End);
2055     End = UnEscapeLexed($5, true);
2056     std::string Constraints = std::string($5, End);
2057     $$ = ValID::createInlineAsm(AsmStr, Constraints, $2);
2058     free($3);
2059     free($5);
2060     CHECK_FOR_ERROR
2061   };
2062
2063 // SymbolicValueRef - Reference to one of two ways of symbolically refering to
2064 // another value.
2065 //
2066 SymbolicValueRef : INTVAL {  // Is it an integer reference...?
2067     $$ = ValID::create($1);
2068     CHECK_FOR_ERROR
2069   }
2070   | Name {                   // Is it a named reference...?
2071     $$ = ValID::create($1);
2072     CHECK_FOR_ERROR
2073   };
2074
2075 // ValueRef - A reference to a definition... either constant or symbolic
2076 ValueRef : SymbolicValueRef | ConstValueRef;
2077
2078
2079 // ResolvedVal - a <type> <value> pair.  This is used only in cases where the
2080 // type immediately preceeds the value reference, and allows complex constant
2081 // pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
2082 ResolvedVal : Types ValueRef {
2083     $$ = getVal(*$1, $2); delete $1;
2084     CHECK_FOR_ERROR
2085   };
2086
2087 BasicBlockList : BasicBlockList BasicBlock {
2088     $$ = $1;
2089     CHECK_FOR_ERROR
2090   }
2091   | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks   
2092     $$ = $1;
2093     CHECK_FOR_ERROR
2094   };
2095
2096
2097 // Basic blocks are terminated by branching instructions: 
2098 // br, br/cc, switch, ret
2099 //
2100 BasicBlock : InstructionList OptAssign BBTerminatorInst  {
2101     setValueName($3, $2);
2102     CHECK_FOR_ERROR
2103     InsertValue($3);
2104
2105     $1->getInstList().push_back($3);
2106     InsertValue($1);
2107     $$ = $1;
2108     CHECK_FOR_ERROR
2109   };
2110
2111 InstructionList : InstructionList Inst {
2112     if (CastInst *CI1 = dyn_cast<CastInst>($2))
2113       if (CastInst *CI2 = dyn_cast<CastInst>(CI1->getOperand(0)))
2114         if (CI2->getParent() == 0)
2115           $1->getInstList().push_back(CI2);
2116     $1->getInstList().push_back($2);
2117     $$ = $1;
2118     CHECK_FOR_ERROR
2119   }
2120   | /* empty */ {
2121     $$ = getBBVal(ValID::create((int)CurFun.NextBBNum++), true);
2122     CHECK_FOR_ERROR
2123
2124     // Make sure to move the basic block to the correct location in the
2125     // function, instead of leaving it inserted wherever it was first
2126     // referenced.
2127     Function::BasicBlockListType &BBL = 
2128       CurFun.CurrentFunction->getBasicBlockList();
2129     BBL.splice(BBL.end(), BBL, $$);
2130     CHECK_FOR_ERROR
2131   }
2132   | LABELSTR {
2133     $$ = getBBVal(ValID::create($1), true);
2134     CHECK_FOR_ERROR
2135
2136     // Make sure to move the basic block to the correct location in the
2137     // function, instead of leaving it inserted wherever it was first
2138     // referenced.
2139     Function::BasicBlockListType &BBL = 
2140       CurFun.CurrentFunction->getBasicBlockList();
2141     BBL.splice(BBL.end(), BBL, $$);
2142     CHECK_FOR_ERROR
2143   };
2144
2145 BBTerminatorInst : RET ResolvedVal {              // Return with a result...
2146     $$ = new ReturnInst($2);
2147     CHECK_FOR_ERROR
2148   }
2149   | RET VOID {                                       // Return with no result...
2150     $$ = new ReturnInst();
2151     CHECK_FOR_ERROR
2152   }
2153   | BR LABEL ValueRef {                         // Unconditional Branch...
2154     BasicBlock* tmpBB = getBBVal($3);
2155     CHECK_FOR_ERROR
2156     $$ = new BranchInst(tmpBB);
2157   }                                                  // Conditional Branch...
2158   | BR BOOL ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {  
2159     BasicBlock* tmpBBA = getBBVal($6);
2160     CHECK_FOR_ERROR
2161     BasicBlock* tmpBBB = getBBVal($9);
2162     CHECK_FOR_ERROR
2163     Value* tmpVal = getVal(Type::BoolTy, $3);
2164     CHECK_FOR_ERROR
2165     $$ = new BranchInst(tmpBBA, tmpBBB, tmpVal);
2166   }
2167   | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
2168     Value* tmpVal = getVal($2, $3);
2169     CHECK_FOR_ERROR
2170     BasicBlock* tmpBB = getBBVal($6);
2171     CHECK_FOR_ERROR
2172     SwitchInst *S = new SwitchInst(tmpVal, tmpBB, $8->size());
2173     $$ = S;
2174
2175     std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
2176       E = $8->end();
2177     for (; I != E; ++I) {
2178       if (ConstantInt *CI = dyn_cast<ConstantInt>(I->first))
2179           S->addCase(CI, I->second);
2180       else
2181         GEN_ERROR("Switch case is constant, but not a simple integer!");
2182     }
2183     delete $8;
2184     CHECK_FOR_ERROR
2185   }
2186   | SWITCH IntType ValueRef ',' LABEL ValueRef '[' ']' {
2187     Value* tmpVal = getVal($2, $3);
2188     CHECK_FOR_ERROR
2189     BasicBlock* tmpBB = getBBVal($6);
2190     CHECK_FOR_ERROR
2191     SwitchInst *S = new SwitchInst(tmpVal, tmpBB, 0);
2192     $$ = S;
2193     CHECK_FOR_ERROR
2194   }
2195   | INVOKE OptCallingConv TypesV ValueRef '(' ValueRefListE ')'
2196     TO LABEL ValueRef UNWIND LABEL ValueRef {
2197     const PointerType *PFTy;
2198     const FunctionType *Ty;
2199
2200     if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
2201         !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2202       // Pull out the types of all of the arguments...
2203       std::vector<const Type*> ParamTypes;
2204       if ($6) {
2205         for (std::vector<Value*>::iterator I = $6->begin(), E = $6->end();
2206              I != E; ++I)
2207           ParamTypes.push_back((*I)->getType());
2208       }
2209
2210       bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
2211       if (isVarArg) ParamTypes.pop_back();
2212
2213       Ty = FunctionType::get($3->get(), ParamTypes, isVarArg);
2214       PFTy = PointerType::get(Ty);
2215     }
2216
2217     Value *V = getVal(PFTy, $4);   // Get the function we're calling...
2218     CHECK_FOR_ERROR
2219     BasicBlock *Normal = getBBVal($10);
2220     CHECK_FOR_ERROR
2221     BasicBlock *Except = getBBVal($13);
2222     CHECK_FOR_ERROR
2223
2224     // Create the call node...
2225     if (!$6) {                                   // Has no arguments?
2226       $$ = new InvokeInst(V, Normal, Except, std::vector<Value*>());
2227     } else {                                     // Has arguments?
2228       // Loop through FunctionType's arguments and ensure they are specified
2229       // correctly!
2230       //
2231       FunctionType::param_iterator I = Ty->param_begin();
2232       FunctionType::param_iterator E = Ty->param_end();
2233       std::vector<Value*>::iterator ArgI = $6->begin(), ArgE = $6->end();
2234
2235       for (; ArgI != ArgE && I != E; ++ArgI, ++I)
2236         if ((*ArgI)->getType() != *I)
2237           GEN_ERROR("Parameter " +(*ArgI)->getName()+ " is not of type '" +
2238                          (*I)->getDescription() + "'!");
2239
2240       if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
2241         GEN_ERROR("Invalid number of parameters detected!");
2242
2243       $$ = new InvokeInst(V, Normal, Except, *$6);
2244     }
2245     cast<InvokeInst>($$)->setCallingConv($2);
2246   
2247     delete $3;
2248     delete $6;
2249     CHECK_FOR_ERROR
2250   }
2251   | UNWIND {
2252     $$ = new UnwindInst();
2253     CHECK_FOR_ERROR
2254   }
2255   | UNREACHABLE {
2256     $$ = new UnreachableInst();
2257     CHECK_FOR_ERROR
2258   };
2259
2260
2261
2262 JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
2263     $$ = $1;
2264     Constant *V = cast<Constant>(getValNonImprovising($2, $3));
2265     CHECK_FOR_ERROR
2266     if (V == 0)
2267       GEN_ERROR("May only switch on a constant pool value!");
2268
2269     BasicBlock* tmpBB = getBBVal($6);
2270     CHECK_FOR_ERROR
2271     $$->push_back(std::make_pair(V, tmpBB));
2272   }
2273   | IntType ConstValueRef ',' LABEL ValueRef {
2274     $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
2275     Constant *V = cast<Constant>(getValNonImprovising($1, $2));
2276     CHECK_FOR_ERROR
2277
2278     if (V == 0)
2279       GEN_ERROR("May only switch on a constant pool value!");
2280
2281     BasicBlock* tmpBB = getBBVal($5);
2282     CHECK_FOR_ERROR
2283     $$->push_back(std::make_pair(V, tmpBB)); 
2284   };
2285
2286 Inst : OptAssign InstVal {
2287   // Is this definition named?? if so, assign the name...
2288   setValueName($2, $1);
2289   CHECK_FOR_ERROR
2290   InsertValue($2);
2291   $$ = $2;
2292   CHECK_FOR_ERROR
2293 };
2294
2295 PHIList : Types '[' ValueRef ',' ValueRef ']' {    // Used for PHI nodes
2296     $$ = new std::list<std::pair<Value*, BasicBlock*> >();
2297     Value* tmpVal = getVal(*$1, $3);
2298     CHECK_FOR_ERROR
2299     BasicBlock* tmpBB = getBBVal($5);
2300     CHECK_FOR_ERROR
2301     $$->push_back(std::make_pair(tmpVal, tmpBB));
2302     delete $1;
2303   }
2304   | PHIList ',' '[' ValueRef ',' ValueRef ']' {
2305     $$ = $1;
2306     Value* tmpVal = getVal($1->front().first->getType(), $4);
2307     CHECK_FOR_ERROR
2308     BasicBlock* tmpBB = getBBVal($6);
2309     CHECK_FOR_ERROR
2310     $1->push_back(std::make_pair(tmpVal, tmpBB));
2311   };
2312
2313
2314 ValueRefList : ResolvedVal {    // Used for call statements, and memory insts...
2315     $$ = new std::vector<Value*>();
2316     $$->push_back($1);
2317   }
2318   | ValueRefList ',' ResolvedVal {
2319     $$ = $1;
2320     $1->push_back($3);
2321     CHECK_FOR_ERROR
2322   };
2323
2324 // ValueRefListE - Just like ValueRefList, except that it may also be empty!
2325 ValueRefListE : ValueRefList | /*empty*/ { $$ = 0; };
2326
2327 OptTailCall : TAIL CALL {
2328     $$ = true;
2329     CHECK_FOR_ERROR
2330   }
2331   | CALL {
2332     $$ = false;
2333     CHECK_FOR_ERROR
2334   };
2335
2336 InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
2337     if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint() && 
2338         !isa<PackedType>((*$2).get()))
2339       GEN_ERROR(
2340         "Arithmetic operator requires integer, FP, or packed operands!");
2341     if (isa<PackedType>((*$2).get()) && 
2342         ($1 == Instruction::URem || 
2343          $1 == Instruction::SRem ||
2344          $1 == Instruction::FRem))
2345       GEN_ERROR("U/S/FRem not supported on packed types!");
2346     Value* val1 = getVal(*$2, $3); 
2347     CHECK_FOR_ERROR
2348     Value* val2 = getVal(*$2, $5);
2349     CHECK_FOR_ERROR
2350     $$ = BinaryOperator::create($1, val1, val2);
2351     if ($$ == 0)
2352       GEN_ERROR("binary operator returned null!");
2353     delete $2;
2354   }
2355   | LogicalOps Types ValueRef ',' ValueRef {
2356     if (!(*$2)->isIntegral()) {
2357       if (!isa<PackedType>($2->get()) ||
2358           !cast<PackedType>($2->get())->getElementType()->isIntegral())
2359         GEN_ERROR("Logical operator requires integral operands!");
2360     }
2361     Value* tmpVal1 = getVal(*$2, $3);
2362     CHECK_FOR_ERROR
2363     Value* tmpVal2 = getVal(*$2, $5);
2364     CHECK_FOR_ERROR
2365     $$ = BinaryOperator::create($1, tmpVal1, tmpVal2);
2366     if ($$ == 0)
2367       GEN_ERROR("binary operator returned null!");
2368     delete $2;
2369   }
2370   | SetCondOps Types ValueRef ',' ValueRef {
2371     if(isa<PackedType>((*$2).get())) {
2372       GEN_ERROR(
2373         "PackedTypes currently not supported in setcc instructions!");
2374     }
2375     Value* tmpVal1 = getVal(*$2, $3);
2376     CHECK_FOR_ERROR
2377     Value* tmpVal2 = getVal(*$2, $5);
2378     CHECK_FOR_ERROR
2379     $$ = new SetCondInst($1, tmpVal1, tmpVal2);
2380     if ($$ == 0)
2381       GEN_ERROR("binary operator returned null!");
2382     delete $2;
2383   }
2384   | ICMP IPredicates Types ValueRef ',' ValueRef  {
2385     if (isa<PackedType>((*$3).get()))
2386       GEN_ERROR("Packed types not supported by icmp instruction");
2387     Value* tmpVal1 = getVal(*$3, $4);
2388     CHECK_FOR_ERROR
2389     Value* tmpVal2 = getVal(*$3, $6);
2390     CHECK_FOR_ERROR
2391     $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2392     if ($$ == 0)
2393       GEN_ERROR("icmp operator returned null!");
2394   }
2395   | FCMP FPredicates Types ValueRef ',' ValueRef  {
2396     if (isa<PackedType>((*$3).get()))
2397       GEN_ERROR("Packed types not supported by fcmp instruction");
2398     Value* tmpVal1 = getVal(*$3, $4);
2399     CHECK_FOR_ERROR
2400     Value* tmpVal2 = getVal(*$3, $6);
2401     CHECK_FOR_ERROR
2402     $$ = CmpInst::create($1, $2, tmpVal1, tmpVal2);
2403     if ($$ == 0)
2404       GEN_ERROR("fcmp operator returned null!");
2405   }
2406   | NOT ResolvedVal {
2407     cerr << "WARNING: Use of eliminated 'not' instruction:"
2408          << " Replacing with 'xor'.\n";
2409
2410     Value *Ones = ConstantIntegral::getAllOnesValue($2->getType());
2411     if (Ones == 0)
2412       GEN_ERROR("Expected integral type for not instruction!");
2413
2414     $$ = BinaryOperator::create(Instruction::Xor, $2, Ones);
2415     if ($$ == 0)
2416       GEN_ERROR("Could not create a xor instruction!");
2417     CHECK_FOR_ERROR
2418   }
2419   | ShiftOps ResolvedVal ',' ResolvedVal {
2420     if ($4->getType() != Type::UByteTy)
2421       GEN_ERROR("Shift amount must be ubyte!");
2422     if (!$2->getType()->isInteger())
2423       GEN_ERROR("Shift constant expression requires integer operand!");
2424     CHECK_FOR_ERROR;
2425     $$ = new ShiftInst($1, $2, $4);
2426     CHECK_FOR_ERROR
2427   }
2428   | CastOps ResolvedVal TO Types {
2429     Value* Val = $2;
2430     const Type* Ty = $4->get();
2431     if (!Val->getType()->isFirstClassType())
2432       GEN_ERROR("cast from a non-primitive type: '" +
2433                 Val->getType()->getDescription() + "'!");
2434     if (!Ty->isFirstClassType())
2435       GEN_ERROR("cast to a non-primitive type: '" + Ty->getDescription() +"'!");
2436     $$ = CastInst::create($1, $2, $4->get());
2437     delete $4;
2438   }
2439   | SELECT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2440     if ($2->getType() != Type::BoolTy)
2441       GEN_ERROR("select condition must be boolean!");
2442     if ($4->getType() != $6->getType())
2443       GEN_ERROR("select value types should match!");
2444     $$ = new SelectInst($2, $4, $6);
2445     CHECK_FOR_ERROR
2446   }
2447   | VAARG ResolvedVal ',' Types {
2448     $$ = new VAArgInst($2, *$4);
2449     delete $4;
2450     CHECK_FOR_ERROR
2451   }
2452   | EXTRACTELEMENT ResolvedVal ',' ResolvedVal {
2453     if (!ExtractElementInst::isValidOperands($2, $4))
2454       GEN_ERROR("Invalid extractelement operands!");
2455     $$ = new ExtractElementInst($2, $4);
2456     CHECK_FOR_ERROR
2457   }
2458   | INSERTELEMENT ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2459     if (!InsertElementInst::isValidOperands($2, $4, $6))
2460       GEN_ERROR("Invalid insertelement operands!");
2461     $$ = new InsertElementInst($2, $4, $6);
2462     CHECK_FOR_ERROR
2463   }
2464   | SHUFFLEVECTOR ResolvedVal ',' ResolvedVal ',' ResolvedVal {
2465     if (!ShuffleVectorInst::isValidOperands($2, $4, $6))
2466       GEN_ERROR("Invalid shufflevector operands!");
2467     $$ = new ShuffleVectorInst($2, $4, $6);
2468     CHECK_FOR_ERROR
2469   }
2470   | PHI_TOK PHIList {
2471     const Type *Ty = $2->front().first->getType();
2472     if (!Ty->isFirstClassType())
2473       GEN_ERROR("PHI node operands must be of first class type!");
2474     $$ = new PHINode(Ty);
2475     ((PHINode*)$$)->reserveOperandSpace($2->size());
2476     while ($2->begin() != $2->end()) {
2477       if ($2->front().first->getType() != Ty) 
2478         GEN_ERROR("All elements of a PHI node must be of the same type!");
2479       cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
2480       $2->pop_front();
2481     }
2482     delete $2;  // Free the list...
2483     CHECK_FOR_ERROR
2484   }
2485   | OptTailCall OptCallingConv TypesV ValueRef '(' ValueRefListE ')'  {
2486     const PointerType *PFTy = 0;
2487     const FunctionType *Ty = 0;
2488
2489     if (!(PFTy = dyn_cast<PointerType>($3->get())) ||
2490         !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2491       // Pull out the types of all of the arguments...
2492       std::vector<const Type*> ParamTypes;
2493       if ($6) {
2494         for (std::vector<Value*>::iterator I = $6->begin(), E = $6->end();
2495              I != E; ++I)
2496           ParamTypes.push_back((*I)->getType());
2497       }
2498
2499       bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
2500       if (isVarArg) ParamTypes.pop_back();
2501
2502       if (!(*$3)->isFirstClassType() && *$3 != Type::VoidTy)
2503         GEN_ERROR("LLVM functions cannot return aggregate types!");
2504
2505       Ty = FunctionType::get($3->get(), ParamTypes, isVarArg);
2506       PFTy = PointerType::get(Ty);
2507     }
2508
2509     Value *V = getVal(PFTy, $4);   // Get the function we're calling...
2510     CHECK_FOR_ERROR
2511
2512     // Create the call node...
2513     if (!$6) {                                   // Has no arguments?
2514       // Make sure no arguments is a good thing!
2515       if (Ty->getNumParams() != 0)
2516         GEN_ERROR("No arguments passed to a function that "
2517                        "expects arguments!");
2518
2519       $$ = new CallInst(V, std::vector<Value*>());
2520     } else {                                     // Has arguments?
2521       // Loop through FunctionType's arguments and ensure they are specified
2522       // correctly!
2523       //
2524       FunctionType::param_iterator I = Ty->param_begin();
2525       FunctionType::param_iterator E = Ty->param_end();
2526       std::vector<Value*>::iterator ArgI = $6->begin(), ArgE = $6->end();
2527
2528       for (; ArgI != ArgE && I != E; ++ArgI, ++I)
2529         if ((*ArgI)->getType() != *I)
2530           GEN_ERROR("Parameter " +(*ArgI)->getName()+ " is not of type '" +
2531                          (*I)->getDescription() + "'!");
2532
2533       if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
2534         GEN_ERROR("Invalid number of parameters detected!");
2535
2536       $$ = new CallInst(V, *$6);
2537     }
2538     cast<CallInst>($$)->setTailCall($1);
2539     cast<CallInst>($$)->setCallingConv($2);
2540     delete $3;
2541     delete $6;
2542     CHECK_FOR_ERROR
2543   }
2544   | MemoryInst {
2545     $$ = $1;
2546     CHECK_FOR_ERROR
2547   };
2548
2549
2550 // IndexList - List of indices for GEP based instructions...
2551 IndexList : ',' ValueRefList { 
2552     $$ = $2; 
2553     CHECK_FOR_ERROR
2554   } | /* empty */ { 
2555     $$ = new std::vector<Value*>(); 
2556     CHECK_FOR_ERROR
2557   };
2558
2559 OptVolatile : VOLATILE {
2560     $$ = true;
2561     CHECK_FOR_ERROR
2562   }
2563   | /* empty */ {
2564     $$ = false;
2565     CHECK_FOR_ERROR
2566   };
2567
2568
2569
2570 MemoryInst : MALLOC Types OptCAlign {
2571     $$ = new MallocInst(*$2, 0, $3);
2572     delete $2;
2573     CHECK_FOR_ERROR
2574   }
2575   | MALLOC Types ',' UINT ValueRef OptCAlign {
2576     Value* tmpVal = getVal($4, $5);
2577     CHECK_FOR_ERROR
2578     $$ = new MallocInst(*$2, tmpVal, $6);
2579     delete $2;
2580   }
2581   | ALLOCA Types OptCAlign {
2582     $$ = new AllocaInst(*$2, 0, $3);
2583     delete $2;
2584     CHECK_FOR_ERROR
2585   }
2586   | ALLOCA Types ',' UINT ValueRef OptCAlign {
2587     Value* tmpVal = getVal($4, $5);
2588     CHECK_FOR_ERROR
2589     $$ = new AllocaInst(*$2, tmpVal, $6);
2590     delete $2;
2591   }
2592   | FREE ResolvedVal {
2593     if (!isa<PointerType>($2->getType()))
2594       GEN_ERROR("Trying to free nonpointer type " + 
2595                      $2->getType()->getDescription() + "!");
2596     $$ = new FreeInst($2);
2597     CHECK_FOR_ERROR
2598   }
2599
2600   | OptVolatile LOAD Types ValueRef {
2601     if (!isa<PointerType>($3->get()))
2602       GEN_ERROR("Can't load from nonpointer type: " +
2603                      (*$3)->getDescription());
2604     if (!cast<PointerType>($3->get())->getElementType()->isFirstClassType())
2605       GEN_ERROR("Can't load from pointer of non-first-class type: " +
2606                      (*$3)->getDescription());
2607     Value* tmpVal = getVal(*$3, $4);
2608     CHECK_FOR_ERROR
2609     $$ = new LoadInst(tmpVal, "", $1);
2610     delete $3;
2611   }
2612   | OptVolatile STORE ResolvedVal ',' Types ValueRef {
2613     const PointerType *PT = dyn_cast<PointerType>($5->get());
2614     if (!PT)
2615       GEN_ERROR("Can't store to a nonpointer type: " +
2616                      (*$5)->getDescription());
2617     const Type *ElTy = PT->getElementType();
2618     if (ElTy != $3->getType())
2619       GEN_ERROR("Can't store '" + $3->getType()->getDescription() +
2620                      "' into space of type '" + ElTy->getDescription() + "'!");
2621
2622     Value* tmpVal = getVal(*$5, $6);
2623     CHECK_FOR_ERROR
2624     $$ = new StoreInst($3, tmpVal, $1);
2625     delete $5;
2626   }
2627   | GETELEMENTPTR Types ValueRef IndexList {
2628     if (!isa<PointerType>($2->get()))
2629       GEN_ERROR("getelementptr insn requires pointer operand!");
2630
2631     if (!GetElementPtrInst::getIndexedType(*$2, *$4, true))
2632       GEN_ERROR("Invalid getelementptr indices for type '" +
2633                      (*$2)->getDescription()+ "'!");
2634     Value* tmpVal = getVal(*$2, $3);
2635     CHECK_FOR_ERROR
2636     $$ = new GetElementPtrInst(tmpVal, *$4);
2637     delete $2; 
2638     delete $4;
2639   };
2640
2641
2642 %%
2643
2644 void llvm::GenerateError(const std::string &message, int LineNo) {
2645   if (LineNo == -1) LineNo = llvmAsmlineno;
2646   // TODO: column number in exception
2647   if (TheParseError)
2648     TheParseError->setError(CurFilename, message, LineNo);
2649   TriggerError = 1;
2650 }
2651
2652 int yyerror(const char *ErrorMsg) {
2653   std::string where 
2654     = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
2655                   + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
2656   std::string errMsg = std::string(ErrorMsg) + "\n" + where + " while reading ";
2657   if (yychar == YYEMPTY || yychar == 0)
2658     errMsg += "end-of-file.";
2659   else
2660     errMsg += "token: '" + std::string(llvmAsmtext, llvmAsmleng) + "'";
2661   GenerateError(errMsg);
2662   return 0;
2663 }