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