Make error messages more useful than jsut an abort
[oota-llvm.git] / lib / AsmParser / llvmAsmParser.y
1 //===-- llvmAsmParser.y - Parser for llvm assembly files ---------*- C++ -*--=//
2 //
3 //  This file implements the bison parser for LLVM assembly languages files.
4 //
5 //===------------------------------------------------------------------------=//
6
7 %{
8 #include "ParserInternals.h"
9 #include "llvm/SymbolTable.h"
10 #include "llvm/Module.h"
11 #include "llvm/iTerminators.h"
12 #include "llvm/iMemory.h"
13 #include "llvm/iOperators.h"
14 #include "llvm/iPHINode.h"
15 #include "Support/STLExtras.h"
16 #include "Support/DepthFirstIterator.h"
17 #include <list>
18 #include <utility>
19 #include <algorithm>
20
21 int yyerror(const char *ErrorMsg); // Forward declarations to prevent "implicit
22 int yylex();                       // declaration" of xxx warnings.
23 int yyparse();
24
25 static Module *ParserResult;
26 std::string CurFilename;
27
28 // DEBUG_UPREFS - Define this symbol if you want to enable debugging output
29 // relating to upreferences in the input stream.
30 //
31 //#define DEBUG_UPREFS 1
32 #ifdef DEBUG_UPREFS
33 #define UR_OUT(X) std::cerr << X
34 #else
35 #define UR_OUT(X)
36 #endif
37
38 #define YYERROR_VERBOSE 1
39
40 // HACK ALERT: This variable is used to implement the automatic conversion of
41 // load/store instructions with indexes into a load/store + getelementptr pair
42 // of instructions.  When this compatiblity "Feature" is removed, this should be
43 // too.
44 //
45 static BasicBlock *CurBB;
46
47
48 // This contains info used when building the body of a function.  It is
49 // destroyed when the function is completed.
50 //
51 typedef std::vector<Value *> ValueList;           // Numbered defs
52 static void ResolveDefinitions(std::vector<ValueList> &LateResolvers,
53                                std::vector<ValueList> *FutureLateResolvers = 0);
54
55 static struct PerModuleInfo {
56   Module *CurrentModule;
57   std::vector<ValueList>    Values;     // Module level numbered definitions
58   std::vector<ValueList>    LateResolveValues;
59   std::vector<PATypeHolder> Types;
60   std::map<ValID, PATypeHolder> LateResolveTypes;
61
62   // GlobalRefs - This maintains a mapping between <Type, ValID>'s and forward
63   // references to global values.  Global values may be referenced before they
64   // are defined, and if so, the temporary object that they represent is held
65   // here.  This is used for forward references of ConstantPointerRefs.
66   //
67   typedef std::map<std::pair<const PointerType *,
68                              ValID>, GlobalVariable*> GlobalRefsType;
69   GlobalRefsType GlobalRefs;
70
71   void ModuleDone() {
72     // If we could not resolve some functions at function compilation time
73     // (calls to functions before they are defined), resolve them now...  Types
74     // are resolved when the constant pool has been completely parsed.
75     //
76     ResolveDefinitions(LateResolveValues);
77
78     // Check to make sure that all global value forward references have been
79     // resolved!
80     //
81     if (!GlobalRefs.empty()) {
82       std::string UndefinedReferences = "Unresolved global references exist:\n";
83       
84       for (GlobalRefsType::iterator I = GlobalRefs.begin(), E =GlobalRefs.end();
85            I != E; ++I) {
86         UndefinedReferences += "  " + I->first.first->getDescription() + " " +
87                                I->first.second.getName() + "\n";
88       }
89       ThrowException(UndefinedReferences);
90     }
91
92     Values.clear();         // Clear out function local definitions
93     Types.clear();
94     CurrentModule = 0;
95   }
96
97
98   // DeclareNewGlobalValue - Called every time a new GV has been defined.  This
99   // is used to remove things from the forward declaration map, resolving them
100   // to the correct thing as needed.
101   //
102   void DeclareNewGlobalValue(GlobalValue *GV, ValID D) {
103     // Check to see if there is a forward reference to this global variable...
104     // if there is, eliminate it and patch the reference to use the new def'n.
105     GlobalRefsType::iterator I =
106       GlobalRefs.find(std::make_pair(GV->getType(), D));
107
108     if (I != GlobalRefs.end()) {
109       GlobalVariable *OldGV = I->second;   // Get the placeholder...
110       I->first.second.destroy();  // Free string memory if neccesary
111       
112       // Loop over all of the uses of the GlobalValue.  The only thing they are
113       // allowed to be is ConstantPointerRef's.
114       assert(OldGV->use_size() == 1 && "Only one reference should exist!");
115       User *U = OldGV->use_back();  // Must be a ConstantPointerRef...
116       ConstantPointerRef *CPR = cast<ConstantPointerRef>(U);
117         
118       // Change the const pool reference to point to the real global variable
119       // now.  This should drop a use from the OldGV.
120       CPR->mutateReferences(OldGV, GV);
121       assert(OldGV->use_empty() && "All uses should be gone now!");
122       
123       // Remove OldGV from the module...
124       CurrentModule->getGlobalList().remove(OldGV);
125       delete OldGV;                        // Delete the old placeholder
126       
127       // Remove the map entry for the global now that it has been created...
128       GlobalRefs.erase(I);
129     }
130   }
131
132 } CurModule;
133
134 static struct PerFunctionInfo {
135   Function *CurrentFunction;     // Pointer to current function being created
136
137   std::vector<ValueList> Values;      // Keep track of numbered definitions
138   std::vector<ValueList> LateResolveValues;
139   std::vector<PATypeHolder> Types;
140   std::map<ValID, PATypeHolder> LateResolveTypes;
141   bool isDeclare;                // Is this function a forward declararation?
142
143   inline PerFunctionInfo() {
144     CurrentFunction = 0;
145     isDeclare = false;
146   }
147
148   inline ~PerFunctionInfo() {}
149
150   inline void FunctionStart(Function *M) {
151     CurrentFunction = M;
152   }
153
154   void FunctionDone() {
155     // If we could not resolve some blocks at parsing time (forward branches)
156     // resolve the branches now...
157     ResolveDefinitions(LateResolveValues, &CurModule.LateResolveValues);
158
159     // Make sure to resolve any constant expr references that might exist within
160     // the function we just declared itself.
161     ValID FID;
162     if (CurrentFunction->hasName()) {
163       FID = ValID::create((char*)CurrentFunction->getName().c_str());
164     } else {
165       unsigned Slot = CurrentFunction->getType()->getUniqueID();
166       assert(CurModule.Values.size() > Slot && "Function not inserted?");
167       // Figure out which slot number if is...
168       for (unsigned i = 0; ; ++i) {
169         assert(i < CurModule.Values[Slot].size() && "Function not found!");
170         if (CurModule.Values[Slot][i] == CurrentFunction) {
171           FID = ValID::create((int)i);
172           break;
173         }
174       }
175     }
176     CurModule.DeclareNewGlobalValue(CurrentFunction, FID);
177
178     Values.clear();         // Clear out function local definitions
179     Types.clear();
180     CurrentFunction = 0;
181     isDeclare = false;
182   }
183 } CurMeth;  // Info for the current function...
184
185 static bool inFunctionScope() { return CurMeth.CurrentFunction != 0; }
186
187
188 //===----------------------------------------------------------------------===//
189 //               Code to handle definitions of all the types
190 //===----------------------------------------------------------------------===//
191
192 static int InsertValue(Value *D,
193                        std::vector<ValueList> &ValueTab = CurMeth.Values) {
194   if (D->hasName()) return -1;           // Is this a numbered definition?
195
196   // Yes, insert the value into the value table...
197   unsigned type = D->getType()->getUniqueID();
198   if (ValueTab.size() <= type)
199     ValueTab.resize(type+1, ValueList());
200   //printf("Values[%d][%d] = %d\n", type, ValueTab[type].size(), D);
201   ValueTab[type].push_back(D);
202   return ValueTab[type].size()-1;
203 }
204
205 // TODO: FIXME when Type are not const
206 static void InsertType(const Type *Ty, std::vector<PATypeHolder> &Types) {
207   Types.push_back(Ty);
208 }
209
210 static const Type *getTypeVal(const ValID &D, bool DoNotImprovise = false) {
211   switch (D.Type) {
212   case ValID::NumberVal: {                 // Is it a numbered definition?
213     unsigned Num = (unsigned)D.Num;
214
215     // Module constants occupy the lowest numbered slots...
216     if (Num < CurModule.Types.size()) 
217       return CurModule.Types[Num];
218
219     Num -= CurModule.Types.size();
220
221     // Check that the number is within bounds...
222     if (Num <= CurMeth.Types.size())
223       return CurMeth.Types[Num];
224     break;
225   }
226   case ValID::NameVal: {                // Is it a named definition?
227     std::string Name(D.Name);
228     SymbolTable *SymTab = 0;
229     Value *N = 0;
230     if (inFunctionScope()) {
231       SymTab = &CurMeth.CurrentFunction->getSymbolTable();
232       N = SymTab->lookup(Type::TypeTy, Name);
233     }
234
235     if (N == 0) {
236       // Symbol table doesn't automatically chain yet... because the function
237       // hasn't been added to the module...
238       //
239       SymTab = &CurModule.CurrentModule->getSymbolTable();
240       N = SymTab->lookup(Type::TypeTy, Name);
241       if (N == 0) break;
242     }
243
244     D.destroy();  // Free old strdup'd memory...
245     return cast<const Type>(N);
246   }
247   default:
248     ThrowException("Internal parser error: Invalid symbol type reference!");
249   }
250
251   // If we reached here, we referenced either a symbol that we don't know about
252   // or an id number that hasn't been read yet.  We may be referencing something
253   // forward, so just create an entry to be resolved later and get to it...
254   //
255   if (DoNotImprovise) return 0;  // Do we just want a null to be returned?
256
257   std::map<ValID, PATypeHolder> &LateResolver = inFunctionScope() ? 
258     CurMeth.LateResolveTypes : CurModule.LateResolveTypes;
259   
260   std::map<ValID, PATypeHolder>::iterator I = LateResolver.find(D);
261   if (I != LateResolver.end()) {
262     return I->second;
263   }
264
265   Type *Typ = OpaqueType::get();
266   LateResolver.insert(std::make_pair(D, Typ));
267   return Typ;
268 }
269
270 static Value *lookupInSymbolTable(const Type *Ty, const std::string &Name) {
271   SymbolTable &SymTab = 
272     inFunctionScope() ? CurMeth.CurrentFunction->getSymbolTable() :
273                         CurModule.CurrentModule->getSymbolTable();
274   return SymTab.lookup(Ty, Name);
275 }
276
277 // getValNonImprovising - Look up the value specified by the provided type and
278 // the provided ValID.  If the value exists and has already been defined, return
279 // it.  Otherwise return null.
280 //
281 static Value *getValNonImprovising(const Type *Ty, const ValID &D) {
282   if (isa<FunctionType>(Ty))
283     ThrowException("Functions are not values and "
284                    "must be referenced as pointers");
285
286   switch (D.Type) {
287   case ValID::NumberVal: {                 // Is it a numbered definition?
288     unsigned type = Ty->getUniqueID();
289     unsigned Num = (unsigned)D.Num;
290
291     // Module constants occupy the lowest numbered slots...
292     if (type < CurModule.Values.size()) {
293       if (Num < CurModule.Values[type].size()) 
294         return CurModule.Values[type][Num];
295
296       Num -= CurModule.Values[type].size();
297     }
298
299     // Make sure that our type is within bounds
300     if (CurMeth.Values.size() <= type) return 0;
301
302     // Check that the number is within bounds...
303     if (CurMeth.Values[type].size() <= Num) return 0;
304   
305     return CurMeth.Values[type][Num];
306   }
307
308   case ValID::NameVal: {                // Is it a named definition?
309     Value *N = lookupInSymbolTable(Ty, std::string(D.Name));
310     if (N == 0) return 0;
311
312     D.destroy();  // Free old strdup'd memory...
313     return N;
314   }
315
316   // Check to make sure that "Ty" is an integral type, and that our 
317   // value will fit into the specified type...
318   case ValID::ConstSIntVal:    // Is it a constant pool reference??
319     if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64))
320       ThrowException("Signed integral constant '" +
321                      itostr(D.ConstPool64) + "' is invalid for type '" + 
322                      Ty->getDescription() + "'!");
323     return ConstantSInt::get(Ty, D.ConstPool64);
324
325   case ValID::ConstUIntVal:     // Is it an unsigned const pool reference?
326     if (!ConstantUInt::isValueValidForType(Ty, D.UConstPool64)) {
327       if (!ConstantSInt::isValueValidForType(Ty, D.ConstPool64)) {
328         ThrowException("Integral constant '" + utostr(D.UConstPool64) +
329                        "' is invalid or out of range!");
330       } else {     // This is really a signed reference.  Transmogrify.
331         return ConstantSInt::get(Ty, D.ConstPool64);
332       }
333     } else {
334       return ConstantUInt::get(Ty, D.UConstPool64);
335     }
336
337   case ValID::ConstFPVal:        // Is it a floating point const pool reference?
338     if (!ConstantFP::isValueValidForType(Ty, D.ConstPoolFP))
339       ThrowException("FP constant invalid for type!!");
340     return ConstantFP::get(Ty, D.ConstPoolFP);
341     
342   case ValID::ConstNullVal:      // Is it a null value?
343     if (!isa<PointerType>(Ty))
344       ThrowException("Cannot create a a non pointer null!");
345     return ConstantPointerNull::get(cast<PointerType>(Ty));
346     
347   case ValID::ConstantVal:       // Fully resolved constant?
348     if (D.ConstantValue->getType() != Ty)
349       ThrowException("Constant expression type different from required type!");
350     return D.ConstantValue;
351
352   default:
353     assert(0 && "Unhandled case!");
354     return 0;
355   }   // End of switch
356
357   assert(0 && "Unhandled case!");
358   return 0;
359 }
360
361
362 // getVal - This function is identical to getValNonImprovising, except that if a
363 // value is not already defined, it "improvises" by creating a placeholder var
364 // that looks and acts just like the requested variable.  When the value is
365 // defined later, all uses of the placeholder variable are replaced with the
366 // real thing.
367 //
368 static Value *getVal(const Type *Ty, const ValID &D) {
369   assert(Ty != Type::TypeTy && "Should use getTypeVal for types!");
370
371   // See if the value has already been defined...
372   Value *V = getValNonImprovising(Ty, D);
373   if (V) return V;
374
375   // If we reached here, we referenced either a symbol that we don't know about
376   // or an id number that hasn't been read yet.  We may be referencing something
377   // forward, so just create an entry to be resolved later and get to it...
378   //
379   Value *d = 0;
380   switch (Ty->getPrimitiveID()) {
381   case Type::LabelTyID:  d = new   BBPlaceHolder(Ty, D); break;
382   default:               d = new ValuePlaceHolder(Ty, D); break;
383   }
384
385   assert(d != 0 && "How did we not make something?");
386   if (inFunctionScope())
387     InsertValue(d, CurMeth.LateResolveValues);
388   else 
389     InsertValue(d, CurModule.LateResolveValues);
390   return d;
391 }
392
393
394 //===----------------------------------------------------------------------===//
395 //              Code to handle forward references in instructions
396 //===----------------------------------------------------------------------===//
397 //
398 // This code handles the late binding needed with statements that reference
399 // values not defined yet... for example, a forward branch, or the PHI node for
400 // a loop body.
401 //
402 // This keeps a table (CurMeth.LateResolveValues) of all such forward references
403 // and back patchs after we are done.
404 //
405
406 // ResolveDefinitions - If we could not resolve some defs at parsing 
407 // time (forward branches, phi functions for loops, etc...) resolve the 
408 // defs now...
409 //
410 static void ResolveDefinitions(std::vector<ValueList> &LateResolvers,
411                                std::vector<ValueList> *FutureLateResolvers) {
412   // Loop over LateResolveDefs fixing up stuff that couldn't be resolved
413   for (unsigned ty = 0; ty < LateResolvers.size(); ty++) {
414     while (!LateResolvers[ty].empty()) {
415       Value *V = LateResolvers[ty].back();
416       assert(!isa<Type>(V) && "Types should be in LateResolveTypes!");
417
418       LateResolvers[ty].pop_back();
419       ValID &DID = getValIDFromPlaceHolder(V);
420
421       Value *TheRealValue = getValNonImprovising(Type::getUniqueIDType(ty),DID);
422       if (TheRealValue) {
423         V->replaceAllUsesWith(TheRealValue);
424         delete V;
425       } else if (FutureLateResolvers) {
426         // Functions have their unresolved items forwarded to the module late
427         // resolver table
428         InsertValue(V, *FutureLateResolvers);
429       } else {
430         if (DID.Type == ValID::NameVal)
431           ThrowException("Reference to an invalid definition: '" +DID.getName()+
432                          "' of type '" + V->getType()->getDescription() + "'",
433                          getLineNumFromPlaceHolder(V));
434         else
435           ThrowException("Reference to an invalid definition: #" +
436                          itostr(DID.Num) + " of type '" + 
437                          V->getType()->getDescription() + "'",
438                          getLineNumFromPlaceHolder(V));
439       }
440     }
441   }
442
443   LateResolvers.clear();
444 }
445
446 // ResolveTypeTo - A brand new type was just declared.  This means that (if
447 // name is not null) things referencing Name can be resolved.  Otherwise, things
448 // refering to the number can be resolved.  Do this now.
449 //
450 static void ResolveTypeTo(char *Name, const Type *ToTy) {
451   std::vector<PATypeHolder> &Types = inFunctionScope() ? 
452      CurMeth.Types : CurModule.Types;
453
454    ValID D;
455    if (Name) D = ValID::create(Name);
456    else      D = ValID::create((int)Types.size());
457
458    std::map<ValID, PATypeHolder> &LateResolver = inFunctionScope() ? 
459      CurMeth.LateResolveTypes : CurModule.LateResolveTypes;
460   
461    std::map<ValID, PATypeHolder>::iterator I = LateResolver.find(D);
462    if (I != LateResolver.end()) {
463      ((DerivedType*)I->second.get())->refineAbstractTypeTo(ToTy);
464      LateResolver.erase(I);
465    }
466 }
467
468 // ResolveTypes - At this point, all types should be resolved.  Any that aren't
469 // are errors.
470 //
471 static void ResolveTypes(std::map<ValID, PATypeHolder> &LateResolveTypes) {
472   if (!LateResolveTypes.empty()) {
473     const ValID &DID = LateResolveTypes.begin()->first;
474
475     if (DID.Type == ValID::NameVal)
476       ThrowException("Reference to an invalid type: '" +DID.getName() + "'");
477     else
478       ThrowException("Reference to an invalid type: #" + itostr(DID.Num));
479   }
480 }
481
482
483 // setValueName - Set the specified value to the name given.  The name may be
484 // null potentially, in which case this is a noop.  The string passed in is
485 // assumed to be a malloc'd string buffer, and is freed by this function.
486 //
487 // This function returns true if the value has already been defined, but is
488 // allowed to be redefined in the specified context.  If the name is a new name
489 // for the typeplane, false is returned.
490 //
491 static bool setValueName(Value *V, char *NameStr) {
492   if (NameStr == 0) return false;
493   
494   std::string Name(NameStr);      // Copy string
495   free(NameStr);                  // Free old string
496
497   if (V->getType() == Type::VoidTy) 
498     ThrowException("Can't assign name '" + Name + 
499                    "' to a null valued instruction!");
500
501   SymbolTable &ST = inFunctionScope() ? 
502     CurMeth.CurrentFunction->getSymbolTable() : 
503     CurModule.CurrentModule->getSymbolTable();
504
505   Value *Existing = ST.lookup(V->getType(), Name);
506   if (Existing) {    // Inserting a name that is already defined???
507     // There is only one case where this is allowed: when we are refining an
508     // opaque type.  In this case, Existing will be an opaque type.
509     if (const Type *Ty = dyn_cast<const Type>(Existing)) {
510       if (const OpaqueType *OpTy = dyn_cast<OpaqueType>(Ty)) {
511         // We ARE replacing an opaque type!
512         ((OpaqueType*)OpTy)->refineAbstractTypeTo(cast<Type>(V));
513         return true;
514       }
515     }
516
517     // Otherwise, we are a simple redefinition of a value, check to see if it
518     // is defined the same as the old one...
519     if (const Type *Ty = dyn_cast<Type>(Existing)) {
520       if (Ty == cast<Type>(V)) return true;  // Yes, it's equal.
521       // std::cerr << "Type: " << Ty->getDescription() << " != "
522       //      << cast<const Type>(V)->getDescription() << "!\n";
523     } else if (const Constant *C = dyn_cast<Constant>(Existing)) {
524       if (C == V) return true;      // Constants are equal to themselves
525     } else if (GlobalVariable *EGV = dyn_cast<GlobalVariable>(Existing)) {
526       // We are allowed to redefine a global variable in two circumstances:
527       // 1. If at least one of the globals is uninitialized or 
528       // 2. If both initializers have the same value.
529       //
530       if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
531         if (!EGV->hasInitializer() || !GV->hasInitializer() ||
532              EGV->getInitializer() == GV->getInitializer()) {
533
534           // Make sure the existing global version gets the initializer!  Make
535           // sure that it also gets marked const if the new version is.
536           if (GV->hasInitializer() && !EGV->hasInitializer())
537             EGV->setInitializer(GV->getInitializer());
538           if (GV->isConstant())
539             EGV->setConstant(true);
540           EGV->setLinkage(GV->getLinkage());
541           
542           delete GV;     // Destroy the duplicate!
543           return true;   // They are equivalent!
544         }
545       }
546     }
547     ThrowException("Redefinition of value named '" + Name + "' in the '" +
548                    V->getType()->getDescription() + "' type plane!");
549   }
550
551   V->setName(Name, &ST);
552   return false;
553 }
554
555
556 //===----------------------------------------------------------------------===//
557 // Code for handling upreferences in type names...
558 //
559
560 // TypeContains - Returns true if Ty contains E in it.
561 //
562 static bool TypeContains(const Type *Ty, const Type *E) {
563   return find(df_begin(Ty), df_end(Ty), E) != df_end(Ty);
564 }
565
566
567 static std::vector<std::pair<unsigned, OpaqueType *> > UpRefs;
568
569 static PATypeHolder HandleUpRefs(const Type *ty) {
570   PATypeHolder Ty(ty);
571   UR_OUT("Type '" << ty->getDescription() << 
572          "' newly formed.  Resolving upreferences.\n" <<
573          UpRefs.size() << " upreferences active!\n");
574   for (unsigned i = 0; i < UpRefs.size(); ) {
575     UR_OUT("  UR#" << i << " - TypeContains(" << Ty->getDescription() << ", " 
576            << UpRefs[i].second->getDescription() << ") = " 
577            << (TypeContains(Ty, UpRefs[i].second) ? "true" : "false") << endl);
578     if (TypeContains(Ty, UpRefs[i].second)) {
579       unsigned Level = --UpRefs[i].first;   // Decrement level of upreference
580       UR_OUT("  Uplevel Ref Level = " << Level << endl);
581       if (Level == 0) {                     // Upreference should be resolved! 
582         UR_OUT("  * Resolving upreference for "
583                << UpRefs[i].second->getDescription() << endl;
584                std::string OldName = UpRefs[i].second->getDescription());
585         UpRefs[i].second->refineAbstractTypeTo(Ty);
586         UpRefs.erase(UpRefs.begin()+i);     // Remove from upreference list...
587         UR_OUT("  * Type '" << OldName << "' refined upreference to: "
588                << (const void*)Ty << ", " << Ty->getDescription() << endl);
589         continue;
590       }
591     }
592
593     ++i;                                  // Otherwise, no resolve, move on...
594   }
595   // FIXME: TODO: this should return the updated type
596   return Ty;
597 }
598
599
600 //===----------------------------------------------------------------------===//
601 //            RunVMAsmParser - Define an interface to this parser
602 //===----------------------------------------------------------------------===//
603 //
604 Module *RunVMAsmParser(const std::string &Filename, FILE *F) {
605   llvmAsmin = F;
606   CurFilename = Filename;
607   llvmAsmlineno = 1;      // Reset the current line number...
608
609   // Allocate a new module to read
610   CurModule.CurrentModule = new Module(Filename);
611   yyparse();       // Parse the file.
612   Module *Result = ParserResult;
613   llvmAsmin = stdin;    // F is about to go away, don't use it anymore...
614   ParserResult = 0;
615
616   return Result;
617 }
618
619 %}
620
621 %union {
622   Module                           *ModuleVal;
623   Function                         *FunctionVal;
624   std::pair<PATypeHolder*, char*>  *ArgVal;
625   BasicBlock                       *BasicBlockVal;
626   TerminatorInst                   *TermInstVal;
627   Instruction                      *InstVal;
628   Constant                         *ConstVal;
629
630   const Type                       *PrimType;
631   PATypeHolder                     *TypeVal;
632   Value                            *ValueVal;
633
634   std::vector<std::pair<PATypeHolder*,char*> > *ArgList;
635   std::vector<Value*>              *ValueList;
636   std::list<PATypeHolder>          *TypeList;
637   std::list<std::pair<Value*,
638                       BasicBlock*> > *PHIList; // Represent the RHS of PHI node
639   std::vector<std::pair<Constant*, BasicBlock*> > *JumpTable;
640   std::vector<Constant*>           *ConstVector;
641
642   GlobalValue::LinkageTypes         Linkage;
643   int64_t                           SInt64Val;
644   uint64_t                          UInt64Val;
645   int                               SIntVal;
646   unsigned                          UIntVal;
647   double                            FPVal;
648   bool                              BoolVal;
649
650   char                             *StrVal;   // This memory is strdup'd!
651   ValID                             ValIDVal; // strdup'd memory maybe!
652
653   Instruction::BinaryOps            BinaryOpVal;
654   Instruction::TermOps              TermOpVal;
655   Instruction::MemoryOps            MemOpVal;
656   Instruction::OtherOps             OtherOpVal;
657   Module::Endianness                Endianness;
658 }
659
660 %type <ModuleVal>     Module FunctionList
661 %type <FunctionVal>   Function FunctionProto FunctionHeader BasicBlockList
662 %type <BasicBlockVal> BasicBlock InstructionList
663 %type <TermInstVal>   BBTerminatorInst
664 %type <InstVal>       Inst InstVal MemoryInst
665 %type <ConstVal>      ConstVal ConstExpr
666 %type <ConstVector>   ConstVector
667 %type <ArgList>       ArgList ArgListH
668 %type <ArgVal>        ArgVal
669 %type <PHIList>       PHIList
670 %type <ValueList>     ValueRefList ValueRefListE  // For call param lists
671 %type <ValueList>     IndexList                   // For GEP derived indices
672 %type <TypeList>      TypeListI ArgTypeListI
673 %type <JumpTable>     JumpTable
674 %type <BoolVal>       GlobalType                  // GLOBAL or CONSTANT?
675 %type <Linkage>       OptLinkage
676 %type <Endianness>    BigOrLittle
677
678 // ValueRef - Unresolved reference to a definition or BB
679 %type <ValIDVal>      ValueRef ConstValueRef SymbolicValueRef
680 %type <ValueVal>      ResolvedVal            // <type> <valref> pair
681 // Tokens and types for handling constant integer values
682 //
683 // ESINT64VAL - A negative number within long long range
684 %token <SInt64Val> ESINT64VAL
685
686 // EUINT64VAL - A positive number within uns. long long range
687 %token <UInt64Val> EUINT64VAL
688 %type  <SInt64Val> EINT64VAL
689
690 %token  <SIntVal>   SINTVAL   // Signed 32 bit ints...
691 %token  <UIntVal>   UINTVAL   // Unsigned 32 bit ints...
692 %type   <SIntVal>   INTVAL
693 %token  <FPVal>     FPVAL     // Float or Double constant
694
695 // Built in types...
696 %type  <TypeVal> Types TypesV UpRTypes UpRTypesV
697 %type  <PrimType> SIntType UIntType IntType FPType PrimType   // Classifications
698 %token <PrimType> VOID BOOL SBYTE UBYTE SHORT USHORT INT UINT LONG ULONG
699 %token <PrimType> FLOAT DOUBLE TYPE LABEL
700
701 %token <StrVal>     VAR_ID LABELSTR STRINGCONSTANT
702 %type  <StrVal>  OptVAR_ID OptAssign FuncName
703
704
705 %token IMPLEMENTATION TRUE FALSE BEGINTOK ENDTOK DECLARE GLOBAL CONSTANT
706 %token TO EXCEPT DOTDOTDOT NULL_TOK CONST INTERNAL LINKONCE APPENDING
707 %token OPAQUE NOT EXTERNAL TARGET ENDIAN POINTERSIZE LITTLE BIG
708
709 // Basic Block Terminating Operators 
710 %token <TermOpVal> RET BR SWITCH
711
712 // Binary Operators 
713 %type  <BinaryOpVal> BinaryOps  // all the binary operators
714 %type  <BinaryOpVal> ArithmeticOps LogicalOps SetCondOps // Binops Subcatagories
715 %token <BinaryOpVal> ADD SUB MUL DIV REM AND OR XOR
716 %token <BinaryOpVal> SETLE SETGE SETLT SETGT SETEQ SETNE  // Binary Comarators
717
718 // Memory Instructions
719 %token <MemOpVal> MALLOC ALLOCA FREE LOAD STORE GETELEMENTPTR
720
721 // Other Operators
722 %type  <OtherOpVal> ShiftOps
723 %token <OtherOpVal> PHI CALL INVOKE CAST SHL SHR VA_ARG
724
725 %start Module
726 %%
727
728 // Handle constant integer size restriction and conversion...
729 //
730
731 INTVAL : SINTVAL;
732 INTVAL : UINTVAL {
733   if ($1 > (uint32_t)INT32_MAX)     // Outside of my range!
734     ThrowException("Value too large for type!");
735   $$ = (int32_t)$1;
736 };
737
738
739 EINT64VAL : ESINT64VAL;      // These have same type and can't cause problems...
740 EINT64VAL : EUINT64VAL {
741   if ($1 > (uint64_t)INT64_MAX)     // Outside of my range!
742     ThrowException("Value too large for type!");
743   $$ = (int64_t)$1;
744 };
745
746 // Operations that are notably excluded from this list include: 
747 // RET, BR, & SWITCH because they end basic blocks and are treated specially.
748 //
749 ArithmeticOps: ADD | SUB | MUL | DIV | REM;
750 LogicalOps   : AND | OR | XOR;
751 SetCondOps   : SETLE | SETGE | SETLT | SETGT | SETEQ | SETNE;
752 BinaryOps : ArithmeticOps | LogicalOps | SetCondOps;
753
754 ShiftOps  : SHL | SHR;
755
756 // These are some types that allow classification if we only want a particular 
757 // thing... for example, only a signed, unsigned, or integral type.
758 SIntType :  LONG |  INT |  SHORT | SBYTE;
759 UIntType : ULONG | UINT | USHORT | UBYTE;
760 IntType  : SIntType | UIntType;
761 FPType   : FLOAT | DOUBLE;
762
763 // OptAssign - Value producing statements have an optional assignment component
764 OptAssign : VAR_ID '=' {
765     $$ = $1;
766   }
767   | /*empty*/ { 
768     $$ = 0; 
769   };
770
771 OptLinkage : INTERNAL  { $$ = GlobalValue::InternalLinkage; } |
772              LINKONCE  { $$ = GlobalValue::LinkOnceLinkage; } |
773              APPENDING { $$ = GlobalValue::AppendingLinkage; } |
774              /*empty*/ { $$ = GlobalValue::ExternalLinkage; };
775
776 //===----------------------------------------------------------------------===//
777 // Types includes all predefined types... except void, because it can only be
778 // used in specific contexts (function returning void for example).  To have
779 // access to it, a user must explicitly use TypesV.
780 //
781
782 // TypesV includes all of 'Types', but it also includes the void type.
783 TypesV    : Types    | VOID { $$ = new PATypeHolder($1); };
784 UpRTypesV : UpRTypes | VOID { $$ = new PATypeHolder($1); };
785
786 Types     : UpRTypes {
787     if (UpRefs.size())
788       ThrowException("Invalid upreference in type: " + (*$1)->getDescription());
789     $$ = $1;
790   };
791
792
793 // Derived types are added later...
794 //
795 PrimType : BOOL | SBYTE | UBYTE | SHORT  | USHORT | INT   | UINT ;
796 PrimType : LONG | ULONG | FLOAT | DOUBLE | TYPE   | LABEL;
797 UpRTypes : OPAQUE {
798     $$ = new PATypeHolder(OpaqueType::get());
799   }
800   | PrimType {
801     $$ = new PATypeHolder($1);
802   };
803 UpRTypes : SymbolicValueRef {            // Named types are also simple types...
804   $$ = new PATypeHolder(getTypeVal($1));
805 };
806
807 // Include derived types in the Types production.
808 //
809 UpRTypes : '\\' EUINT64VAL {                   // Type UpReference
810     if ($2 > (uint64_t)INT64_MAX) ThrowException("Value out of range!");
811     OpaqueType *OT = OpaqueType::get();        // Use temporary placeholder
812     UpRefs.push_back(std::make_pair((unsigned)$2, OT));  // Add to vector...
813     $$ = new PATypeHolder(OT);
814     UR_OUT("New Upreference!\n");
815   }
816   | UpRTypesV '(' ArgTypeListI ')' {           // Function derived type?
817     std::vector<const Type*> Params;
818     mapto($3->begin(), $3->end(), std::back_inserter(Params), 
819           std::mem_fun_ref(&PATypeHandle<Type>::get));
820     bool isVarArg = Params.size() && Params.back() == Type::VoidTy;
821     if (isVarArg) Params.pop_back();
822
823     $$ = new PATypeHolder(HandleUpRefs(FunctionType::get(*$1,Params,isVarArg)));
824     delete $3;      // Delete the argument list
825     delete $1;      // Delete the old type handle
826   }
827   | '[' EUINT64VAL 'x' UpRTypes ']' {          // Sized array type?
828     $$ = new PATypeHolder(HandleUpRefs(ArrayType::get(*$4, (unsigned)$2)));
829     delete $4;
830   }
831   | '{' TypeListI '}' {                        // Structure type?
832     std::vector<const Type*> Elements;
833     mapto($2->begin(), $2->end(), std::back_inserter(Elements), 
834         std::mem_fun_ref(&PATypeHandle<Type>::get));
835
836     $$ = new PATypeHolder(HandleUpRefs(StructType::get(Elements)));
837     delete $2;
838   }
839   | '{' '}' {                                  // Empty structure type?
840     $$ = new PATypeHolder(StructType::get(std::vector<const Type*>()));
841   }
842   | UpRTypes '*' {                             // Pointer type?
843     $$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1)));
844     delete $1;
845   };
846
847 // TypeList - Used for struct declarations and as a basis for function type 
848 // declaration type lists
849 //
850 TypeListI : UpRTypes {
851     $$ = new std::list<PATypeHolder>();
852     $$->push_back(*$1); delete $1;
853   }
854   | TypeListI ',' UpRTypes {
855     ($$=$1)->push_back(*$3); delete $3;
856   };
857
858 // ArgTypeList - List of types for a function type declaration...
859 ArgTypeListI : TypeListI
860   | TypeListI ',' DOTDOTDOT {
861     ($$=$1)->push_back(Type::VoidTy);
862   }
863   | DOTDOTDOT {
864     ($$ = new std::list<PATypeHolder>())->push_back(Type::VoidTy);
865   }
866   | /*empty*/ {
867     $$ = new std::list<PATypeHolder>();
868   };
869
870 // ConstVal - The various declarations that go into the constant pool.  This
871 // production is used ONLY to represent constants that show up AFTER a 'const',
872 // 'constant' or 'global' token at global scope.  Constants that can be inlined
873 // into other expressions (such as integers and constexprs) are handled by the
874 // ResolvedVal, ValueRef and ConstValueRef productions.
875 //
876 ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
877     const ArrayType *ATy = dyn_cast<const ArrayType>($1->get());
878     if (ATy == 0)
879       ThrowException("Cannot make array constant with type: '" + 
880                      (*$1)->getDescription() + "'!");
881     const Type *ETy = ATy->getElementType();
882     int NumElements = ATy->getNumElements();
883
884     // Verify that we have the correct size...
885     if (NumElements != -1 && NumElements != (int)$3->size())
886       ThrowException("Type mismatch: constant sized array initialized with " +
887                      utostr($3->size()) +  " arguments, but has size of " + 
888                      itostr(NumElements) + "!");
889
890     // Verify all elements are correct type!
891     for (unsigned i = 0; i < $3->size(); i++) {
892       if (ETy != (*$3)[i]->getType())
893         ThrowException("Element #" + utostr(i) + " is not of type '" + 
894                        ETy->getDescription() +"' as required!\nIt is of type '"+
895                        (*$3)[i]->getType()->getDescription() + "'.");
896     }
897
898     $$ = ConstantArray::get(ATy, *$3);
899     delete $1; delete $3;
900   }
901   | Types '[' ']' {
902     const ArrayType *ATy = dyn_cast<const ArrayType>($1->get());
903     if (ATy == 0)
904       ThrowException("Cannot make array constant with type: '" + 
905                      (*$1)->getDescription() + "'!");
906
907     int NumElements = ATy->getNumElements();
908     if (NumElements != -1 && NumElements != 0) 
909       ThrowException("Type mismatch: constant sized array initialized with 0"
910                      " arguments, but has size of " + itostr(NumElements) +"!");
911     $$ = ConstantArray::get(ATy, std::vector<Constant*>());
912     delete $1;
913   }
914   | Types 'c' STRINGCONSTANT {
915     const ArrayType *ATy = dyn_cast<const ArrayType>($1->get());
916     if (ATy == 0)
917       ThrowException("Cannot make array constant with type: '" + 
918                      (*$1)->getDescription() + "'!");
919
920     int NumElements = ATy->getNumElements();
921     const Type *ETy = ATy->getElementType();
922     char *EndStr = UnEscapeLexed($3, true);
923     if (NumElements != -1 && NumElements != (EndStr-$3))
924       ThrowException("Can't build string constant of size " + 
925                      itostr((int)(EndStr-$3)) +
926                      " when array has size " + itostr(NumElements) + "!");
927     std::vector<Constant*> Vals;
928     if (ETy == Type::SByteTy) {
929       for (char *C = $3; C != EndStr; ++C)
930         Vals.push_back(ConstantSInt::get(ETy, *C));
931     } else if (ETy == Type::UByteTy) {
932       for (char *C = $3; C != EndStr; ++C)
933         Vals.push_back(ConstantUInt::get(ETy, (unsigned char)*C));
934     } else {
935       free($3);
936       ThrowException("Cannot build string arrays of non byte sized elements!");
937     }
938     free($3);
939     $$ = ConstantArray::get(ATy, Vals);
940     delete $1;
941   }
942   | Types '{' ConstVector '}' {
943     const StructType *STy = dyn_cast<const StructType>($1->get());
944     if (STy == 0)
945       ThrowException("Cannot make struct constant with type: '" + 
946                      (*$1)->getDescription() + "'!");
947
948     // Check to ensure that constants are compatible with the type initializer!
949     for (unsigned i = 0, e = $3->size(); i != e; ++i)
950       if ((*$3)[i]->getType() != STy->getElementTypes()[i])
951         ThrowException("Expected type '" +
952                        STy->getElementTypes()[i]->getDescription() +
953                        "' for element #" + utostr(i) +
954                        " of structure initializer!");
955
956     $$ = ConstantStruct::get(STy, *$3);
957     delete $1; delete $3;
958   }
959   | Types NULL_TOK {
960     const PointerType *PTy = dyn_cast<const PointerType>($1->get());
961     if (PTy == 0)
962       ThrowException("Cannot make null pointer constant with type: '" + 
963                      (*$1)->getDescription() + "'!");
964
965     $$ = ConstantPointerNull::get(PTy);
966     delete $1;
967   }
968   | Types SymbolicValueRef {
969     const PointerType *Ty = dyn_cast<const PointerType>($1->get());
970     if (Ty == 0)
971       ThrowException("Global const reference must be a pointer type!");
972
973     // ConstExprs can exist in the body of a function, thus creating
974     // ConstantPointerRefs whenever they refer to a variable.  Because we are in
975     // the context of a function, getValNonImprovising will search the functions
976     // symbol table instead of the module symbol table for the global symbol,
977     // which throws things all off.  To get around this, we just tell
978     // getValNonImprovising that we are at global scope here.
979     //
980     Function *SavedCurFn = CurMeth.CurrentFunction;
981     CurMeth.CurrentFunction = 0;
982
983     Value *V = getValNonImprovising(Ty, $2);
984
985     CurMeth.CurrentFunction = SavedCurFn;
986
987     // If this is an initializer for a constant pointer, which is referencing a
988     // (currently) undefined variable, create a stub now that shall be replaced
989     // in the future with the right type of variable.
990     //
991     if (V == 0) {
992       assert(isa<PointerType>(Ty) && "Globals may only be used as pointers!");
993       const PointerType *PT = cast<PointerType>(Ty);
994
995       // First check to see if the forward references value is already created!
996       PerModuleInfo::GlobalRefsType::iterator I =
997         CurModule.GlobalRefs.find(std::make_pair(PT, $2));
998     
999       if (I != CurModule.GlobalRefs.end()) {
1000         V = I->second;             // Placeholder already exists, use it...
1001       } else {
1002         // TODO: Include line number info by creating a subclass of
1003         // TODO: GlobalVariable here that includes the said information!
1004         
1005         // Create a placeholder for the global variable reference...
1006         GlobalVariable *GV = new GlobalVariable(PT->getElementType(),
1007                                                 false,
1008                                                 GlobalValue::ExternalLinkage);
1009         // Keep track of the fact that we have a forward ref to recycle it
1010         CurModule.GlobalRefs.insert(std::make_pair(std::make_pair(PT, $2), GV));
1011
1012         // Must temporarily push this value into the module table...
1013         CurModule.CurrentModule->getGlobalList().push_back(GV);
1014         V = GV;
1015       }
1016     }
1017
1018     GlobalValue *GV = cast<GlobalValue>(V);
1019     $$ = ConstantPointerRef::get(GV);
1020     delete $1;            // Free the type handle
1021   }
1022   | Types ConstExpr {
1023     if ($1->get() != $2->getType())
1024       ThrowException("Mismatched types for constant expression!");
1025     $$ = $2;
1026     delete $1;
1027   };
1028
1029 ConstVal : SIntType EINT64VAL {      // integral constants
1030     if (!ConstantSInt::isValueValidForType($1, $2))
1031       ThrowException("Constant value doesn't fit in type!");
1032     $$ = ConstantSInt::get($1, $2);
1033   }
1034   | UIntType EUINT64VAL {            // integral constants
1035     if (!ConstantUInt::isValueValidForType($1, $2))
1036       ThrowException("Constant value doesn't fit in type!");
1037     $$ = ConstantUInt::get($1, $2);
1038   }
1039   | BOOL TRUE {                      // Boolean constants
1040     $$ = ConstantBool::True;
1041   }
1042   | BOOL FALSE {                     // Boolean constants
1043     $$ = ConstantBool::False;
1044   }
1045   | FPType FPVAL {                   // Float & Double constants
1046     $$ = ConstantFP::get($1, $2);
1047   };
1048
1049
1050 ConstExpr: CAST '(' ConstVal TO Types ')' {
1051     $$ = ConstantExpr::getCast($3, $5->get());
1052     delete $5;
1053   }
1054   | GETELEMENTPTR '(' ConstVal IndexList ')' {
1055     if (!isa<PointerType>($3->getType()))
1056       ThrowException("GetElementPtr requires a pointer operand!");
1057
1058     const Type *IdxTy =
1059       GetElementPtrInst::getIndexedType($3->getType(), *$4, true);
1060     if (!IdxTy)
1061       ThrowException("Index list invalid for constant getelementptr!");
1062
1063     std::vector<Constant*> IdxVec;
1064     for (unsigned i = 0, e = $4->size(); i != e; ++i)
1065       if (Constant *C = dyn_cast<Constant>((*$4)[i]))
1066         IdxVec.push_back(C);
1067       else
1068         ThrowException("Indices to constant getelementptr must be constants!");
1069
1070     delete $4;
1071
1072     $$ = ConstantExpr::getGetElementPtr($3, IdxVec);
1073   }
1074   | BinaryOps '(' ConstVal ',' ConstVal ')' {
1075     if ($3->getType() != $5->getType())
1076       ThrowException("Binary operator types must match!");
1077     $$ = ConstantExpr::get($1, $3, $5);
1078   }
1079   | ShiftOps '(' ConstVal ',' ConstVal ')' {
1080     if ($5->getType() != Type::UByteTy)
1081       ThrowException("Shift count for shift constant must be unsigned byte!");
1082     $$ = ConstantExpr::get($1, $3, $5);
1083   };
1084
1085
1086 // ConstVector - A list of comma seperated constants.
1087 ConstVector : ConstVector ',' ConstVal {
1088     ($$ = $1)->push_back($3);
1089   }
1090   | ConstVal {
1091     $$ = new std::vector<Constant*>();
1092     $$->push_back($1);
1093   };
1094
1095
1096 // GlobalType - Match either GLOBAL or CONSTANT for global declarations...
1097 GlobalType : GLOBAL { $$ = false; } | CONSTANT { $$ = true; };
1098
1099
1100 //===----------------------------------------------------------------------===//
1101 //                             Rules to match Modules
1102 //===----------------------------------------------------------------------===//
1103
1104 // Module rule: Capture the result of parsing the whole file into a result
1105 // variable...
1106 //
1107 Module : FunctionList {
1108   $$ = ParserResult = $1;
1109   CurModule.ModuleDone();
1110 };
1111
1112 // FunctionList - A list of functions, preceeded by a constant pool.
1113 //
1114 FunctionList : FunctionList Function {
1115     $$ = $1;
1116     assert($2->getParent() == 0 && "Function already in module!");
1117     $1->getFunctionList().push_back($2);
1118     CurMeth.FunctionDone();
1119   } 
1120   | FunctionList FunctionProto {
1121     $$ = $1;
1122   }
1123   | FunctionList IMPLEMENTATION {
1124     $$ = $1;
1125   }
1126   | ConstPool {
1127     $$ = CurModule.CurrentModule;
1128     // Resolve circular types before we parse the body of the module
1129     ResolveTypes(CurModule.LateResolveTypes);
1130   };
1131
1132 // ConstPool - Constants with optional names assigned to them.
1133 ConstPool : ConstPool OptAssign CONST ConstVal { 
1134     if (!setValueName($4, $2))
1135       InsertValue($4);
1136   }
1137   | ConstPool OptAssign TYPE TypesV {  // Types can be defined in the const pool
1138     // Eagerly resolve types.  This is not an optimization, this is a
1139     // requirement that is due to the fact that we could have this:
1140     //
1141     // %list = type { %list * }
1142     // %list = type { %list * }    ; repeated type decl
1143     //
1144     // If types are not resolved eagerly, then the two types will not be
1145     // determined to be the same type!
1146     //
1147     ResolveTypeTo($2, $4->get());
1148
1149     // TODO: FIXME when Type are not const
1150     if (!setValueName(const_cast<Type*>($4->get()), $2)) {
1151       // If this is not a redefinition of a type...
1152       if (!$2) {
1153         InsertType($4->get(),
1154                    inFunctionScope() ? CurMeth.Types : CurModule.Types);
1155       }
1156     }
1157
1158     delete $4;
1159   }
1160   | ConstPool FunctionProto {       // Function prototypes can be in const pool
1161   }
1162   | ConstPool OptAssign OptLinkage GlobalType ConstVal {
1163     const Type *Ty = $5->getType();
1164     // Global declarations appear in Constant Pool
1165     Constant *Initializer = $5;
1166     if (Initializer == 0)
1167       ThrowException("Global value initializer is not a constant!");
1168     
1169     GlobalVariable *GV = new GlobalVariable(Ty, $4, $3, Initializer);
1170     if (!setValueName(GV, $2)) {   // If not redefining...
1171       CurModule.CurrentModule->getGlobalList().push_back(GV);
1172       int Slot = InsertValue(GV, CurModule.Values);
1173
1174       if (Slot != -1) {
1175         CurModule.DeclareNewGlobalValue(GV, ValID::create(Slot));
1176       } else {
1177         CurModule.DeclareNewGlobalValue(GV, ValID::create(
1178                                                 (char*)GV->getName().c_str()));
1179       }
1180     }
1181   }
1182   | ConstPool OptAssign EXTERNAL GlobalType Types {
1183     const Type *Ty = *$5;
1184     // Global declarations appear in Constant Pool
1185     GlobalVariable *GV = new GlobalVariable(Ty,$4,GlobalValue::ExternalLinkage);
1186     if (!setValueName(GV, $2)) {   // If not redefining...
1187       CurModule.CurrentModule->getGlobalList().push_back(GV);
1188       int Slot = InsertValue(GV, CurModule.Values);
1189
1190       if (Slot != -1) {
1191         CurModule.DeclareNewGlobalValue(GV, ValID::create(Slot));
1192       } else {
1193         assert(GV->hasName() && "Not named and not numbered!?");
1194         CurModule.DeclareNewGlobalValue(GV, ValID::create(
1195                                                 (char*)GV->getName().c_str()));
1196       }
1197     }
1198     delete $5;
1199   }
1200   | ConstPool TARGET TargetDefinition { 
1201   }
1202   | /* empty: end of list */ { 
1203   };
1204
1205
1206
1207 BigOrLittle : BIG    { $$ = Module::BigEndian; };
1208 BigOrLittle : LITTLE { $$ = Module::LittleEndian; };
1209
1210 TargetDefinition : ENDIAN '=' BigOrLittle {
1211     CurModule.CurrentModule->setEndianness($3);
1212   }
1213   | POINTERSIZE '=' EUINT64VAL {
1214     if ($3 == 32)
1215       CurModule.CurrentModule->setPointerSize(Module::Pointer32);
1216     else if ($3 == 64)
1217       CurModule.CurrentModule->setPointerSize(Module::Pointer64);
1218     else
1219       ThrowException("Invalid pointer size: '" + utostr($3) + "'!");
1220   };
1221
1222
1223 //===----------------------------------------------------------------------===//
1224 //                       Rules to match Function Headers
1225 //===----------------------------------------------------------------------===//
1226
1227 OptVAR_ID : VAR_ID | /*empty*/ { $$ = 0; };
1228
1229 ArgVal : Types OptVAR_ID {
1230   if (*$1 == Type::VoidTy)
1231     ThrowException("void typed arguments are invalid!");
1232   $$ = new std::pair<PATypeHolder*, char*>($1, $2);
1233 };
1234
1235 ArgListH : ArgListH ',' ArgVal {
1236     $$ = $1;
1237     $1->push_back(*$3);
1238     delete $3;
1239   }
1240   | ArgVal {
1241     $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
1242     $$->push_back(*$1);
1243     delete $1;
1244   };
1245
1246 ArgList : ArgListH {
1247     $$ = $1;
1248   }
1249   | ArgListH ',' DOTDOTDOT {
1250     $$ = $1;
1251     $$->push_back(std::pair<PATypeHolder*,
1252                             char*>(new PATypeHolder(Type::VoidTy), 0));
1253   }
1254   | DOTDOTDOT {
1255     $$ = new std::vector<std::pair<PATypeHolder*,char*> >();
1256     $$->push_back(std::make_pair(new PATypeHolder(Type::VoidTy), (char*)0));
1257   }
1258   | /* empty */ {
1259     $$ = 0;
1260   };
1261
1262 FuncName : VAR_ID | STRINGCONSTANT;
1263
1264 FunctionHeaderH : TypesV FuncName '(' ArgList ')' {
1265   UnEscapeLexed($2);
1266   std::string FunctionName($2);
1267   
1268   std::vector<const Type*> ParamTypeList;
1269   if ($4) {   // If there are arguments...
1270     for (std::vector<std::pair<PATypeHolder*,char*> >::iterator I = $4->begin();
1271          I != $4->end(); ++I)
1272       ParamTypeList.push_back(I->first->get());
1273   }
1274
1275   bool isVarArg = ParamTypeList.size() && ParamTypeList.back() == Type::VoidTy;
1276   if (isVarArg) ParamTypeList.pop_back();
1277
1278   const FunctionType *FT = FunctionType::get(*$1, ParamTypeList, isVarArg);
1279   const PointerType *PFT = PointerType::get(FT);
1280   delete $1;
1281
1282   Function *Fn = 0;
1283   // Is the function already in symtab?
1284   if ((Fn = CurModule.CurrentModule->getFunction(FunctionName, FT))) {
1285     // Yes it is.  If this is the case, either we need to be a forward decl,
1286     // or it needs to be.
1287     if (!CurMeth.isDeclare && !Fn->isExternal())
1288       ThrowException("Redefinition of function '" + FunctionName + "'!");
1289     
1290     // If we found a preexisting function prototype, remove it from the
1291     // module, so that we don't get spurious conflicts with global & local
1292     // variables.
1293     //
1294     CurModule.CurrentModule->getFunctionList().remove(Fn);
1295
1296     // Make sure to strip off any argument names so we can't get conflicts...
1297     for (Function::aiterator AI = Fn->abegin(), AE = Fn->aend(); AI != AE; ++AI)
1298       AI->setName("");
1299
1300   } else  {  // Not already defined?
1301     Fn = new Function(FT, GlobalValue::ExternalLinkage, FunctionName);
1302     InsertValue(Fn, CurModule.Values);
1303     CurModule.DeclareNewGlobalValue(Fn, ValID::create($2));
1304   }
1305   free($2);  // Free strdup'd memory!
1306
1307   CurMeth.FunctionStart(Fn);
1308
1309   // Add all of the arguments we parsed to the function...
1310   if ($4) {                     // Is null if empty...
1311     if (isVarArg) {  // Nuke the last entry
1312       assert($4->back().first->get() == Type::VoidTy && $4->back().second == 0&&
1313              "Not a varargs marker!");
1314       delete $4->back().first;
1315       $4->pop_back();  // Delete the last entry
1316     }
1317     Function::aiterator ArgIt = Fn->abegin();
1318     for (std::vector<std::pair<PATypeHolder*, char*> >::iterator I =$4->begin();
1319          I != $4->end(); ++I, ++ArgIt) {
1320       delete I->first;                          // Delete the typeholder...
1321
1322       if (setValueName(ArgIt, I->second))       // Insert arg into symtab...
1323         assert(0 && "No arg redef allowed!");
1324       
1325       InsertValue(ArgIt);
1326     }
1327
1328     delete $4;                     // We're now done with the argument list
1329   }
1330 };
1331
1332 BEGIN : BEGINTOK | '{';                // Allow BEGIN or '{' to start a function
1333
1334 FunctionHeader : OptLinkage FunctionHeaderH BEGIN {
1335   $$ = CurMeth.CurrentFunction;
1336
1337   // Make sure that we keep track of the linkage type even if there was a
1338   // previous "declare".
1339   $$->setLinkage($1);
1340
1341   // Resolve circular types before we parse the body of the function.
1342   ResolveTypes(CurMeth.LateResolveTypes);
1343 };
1344
1345 END : ENDTOK | '}';                    // Allow end of '}' to end a function
1346
1347 Function : BasicBlockList END {
1348   $$ = $1;
1349 };
1350
1351 FunctionProto : DECLARE { CurMeth.isDeclare = true; } FunctionHeaderH {
1352   $$ = CurMeth.CurrentFunction;
1353   assert($$->getParent() == 0 && "Function already in module!");
1354   CurModule.CurrentModule->getFunctionList().push_back($$);
1355   CurMeth.FunctionDone();
1356 };
1357
1358 //===----------------------------------------------------------------------===//
1359 //                        Rules to match Basic Blocks
1360 //===----------------------------------------------------------------------===//
1361
1362 ConstValueRef : ESINT64VAL {    // A reference to a direct constant
1363     $$ = ValID::create($1);
1364   }
1365   | EUINT64VAL {
1366     $$ = ValID::create($1);
1367   }
1368   | FPVAL {                     // Perhaps it's an FP constant?
1369     $$ = ValID::create($1);
1370   }
1371   | TRUE {
1372     $$ = ValID::create(ConstantBool::True);
1373   } 
1374   | FALSE {
1375     $$ = ValID::create(ConstantBool::False);
1376   }
1377   | NULL_TOK {
1378     $$ = ValID::createNull();
1379   }
1380   | ConstExpr {
1381     $$ = ValID::create($1);
1382   };
1383
1384 // SymbolicValueRef - Reference to one of two ways of symbolically refering to
1385 // another value.
1386 //
1387 SymbolicValueRef : INTVAL {  // Is it an integer reference...?
1388     $$ = ValID::create($1);
1389   }
1390   | VAR_ID {                 // Is it a named reference...?
1391     $$ = ValID::create($1);
1392   };
1393
1394 // ValueRef - A reference to a definition... either constant or symbolic
1395 ValueRef : SymbolicValueRef | ConstValueRef;
1396
1397
1398 // ResolvedVal - a <type> <value> pair.  This is used only in cases where the
1399 // type immediately preceeds the value reference, and allows complex constant
1400 // pool references (for things like: 'ret [2 x int] [ int 12, int 42]')
1401 ResolvedVal : Types ValueRef {
1402     $$ = getVal(*$1, $2); delete $1;
1403   };
1404
1405 BasicBlockList : BasicBlockList BasicBlock {
1406     ($$ = $1)->getBasicBlockList().push_back($2);
1407   }
1408   | FunctionHeader BasicBlock { // Do not allow functions with 0 basic blocks   
1409     ($$ = $1)->getBasicBlockList().push_back($2);
1410   };
1411
1412
1413 // Basic blocks are terminated by branching instructions: 
1414 // br, br/cc, switch, ret
1415 //
1416 BasicBlock : InstructionList OptAssign BBTerminatorInst  {
1417     if (setValueName($3, $2)) { assert(0 && "No redefn allowed!"); }
1418     InsertValue($3);
1419
1420     $1->getInstList().push_back($3);
1421     InsertValue($1);
1422     $$ = $1;
1423   }
1424   | LABELSTR InstructionList OptAssign BBTerminatorInst  {
1425     if (setValueName($4, $3)) { assert(0 && "No redefn allowed!"); }
1426     InsertValue($4);
1427
1428     $2->getInstList().push_back($4);
1429     if (setValueName($2, $1)) { assert(0 && "No label redef allowed!"); }
1430
1431     InsertValue($2);
1432     $$ = $2;
1433   };
1434
1435 InstructionList : InstructionList Inst {
1436     $1->getInstList().push_back($2);
1437     $$ = $1;
1438   }
1439   | /* empty */ {
1440     $$ = CurBB = new BasicBlock();
1441   };
1442
1443 BBTerminatorInst : RET ResolvedVal {              // Return with a result...
1444     $$ = new ReturnInst($2);
1445   }
1446   | RET VOID {                                       // Return with no result...
1447     $$ = new ReturnInst();
1448   }
1449   | BR LABEL ValueRef {                         // Unconditional Branch...
1450     $$ = new BranchInst(cast<BasicBlock>(getVal(Type::LabelTy, $3)));
1451   }                                                  // Conditional Branch...
1452   | BR BOOL ValueRef ',' LABEL ValueRef ',' LABEL ValueRef {  
1453     $$ = new BranchInst(cast<BasicBlock>(getVal(Type::LabelTy, $6)), 
1454                         cast<BasicBlock>(getVal(Type::LabelTy, $9)),
1455                         getVal(Type::BoolTy, $3));
1456   }
1457   | SWITCH IntType ValueRef ',' LABEL ValueRef '[' JumpTable ']' {
1458     SwitchInst *S = new SwitchInst(getVal($2, $3), 
1459                                    cast<BasicBlock>(getVal(Type::LabelTy, $6)));
1460     $$ = S;
1461
1462     std::vector<std::pair<Constant*,BasicBlock*> >::iterator I = $8->begin(),
1463       E = $8->end();
1464     for (; I != E; ++I)
1465       S->dest_push_back(I->first, I->second);
1466   }
1467   | INVOKE TypesV ValueRef '(' ValueRefListE ')' TO ResolvedVal 
1468     EXCEPT ResolvedVal {
1469     const PointerType *PFTy;
1470     const FunctionType *Ty;
1471
1472     if (!(PFTy = dyn_cast<PointerType>($2->get())) ||
1473         !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
1474       // Pull out the types of all of the arguments...
1475       std::vector<const Type*> ParamTypes;
1476       if ($5) {
1477         for (std::vector<Value*>::iterator I = $5->begin(), E = $5->end();
1478              I != E; ++I)
1479           ParamTypes.push_back((*I)->getType());
1480       }
1481
1482       bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
1483       if (isVarArg) ParamTypes.pop_back();
1484
1485       Ty = FunctionType::get($2->get(), ParamTypes, isVarArg);
1486       PFTy = PointerType::get(Ty);
1487     }
1488     delete $2;
1489
1490     Value *V = getVal(PFTy, $3);   // Get the function we're calling...
1491
1492     BasicBlock *Normal = dyn_cast<BasicBlock>($8);
1493     BasicBlock *Except = dyn_cast<BasicBlock>($10);
1494
1495     if (Normal == 0 || Except == 0)
1496       ThrowException("Invoke instruction without label destinations!");
1497
1498     // Create the call node...
1499     if (!$5) {                                   // Has no arguments?
1500       $$ = new InvokeInst(V, Normal, Except, std::vector<Value*>());
1501     } else {                                     // Has arguments?
1502       // Loop through FunctionType's arguments and ensure they are specified
1503       // correctly!
1504       //
1505       FunctionType::ParamTypes::const_iterator I = Ty->getParamTypes().begin();
1506       FunctionType::ParamTypes::const_iterator E = Ty->getParamTypes().end();
1507       std::vector<Value*>::iterator ArgI = $5->begin(), ArgE = $5->end();
1508
1509       for (; ArgI != ArgE && I != E; ++ArgI, ++I)
1510         if ((*ArgI)->getType() != *I)
1511           ThrowException("Parameter " +(*ArgI)->getName()+ " is not of type '" +
1512                          (*I)->getDescription() + "'!");
1513
1514       if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
1515         ThrowException("Invalid number of parameters detected!");
1516
1517       $$ = new InvokeInst(V, Normal, Except, *$5);
1518     }
1519     delete $5;
1520   };
1521
1522
1523
1524 JumpTable : JumpTable IntType ConstValueRef ',' LABEL ValueRef {
1525     $$ = $1;
1526     Constant *V = cast<Constant>(getValNonImprovising($2, $3));
1527     if (V == 0)
1528       ThrowException("May only switch on a constant pool value!");
1529
1530     $$->push_back(std::make_pair(V, cast<BasicBlock>(getVal($5, $6))));
1531   }
1532   | IntType ConstValueRef ',' LABEL ValueRef {
1533     $$ = new std::vector<std::pair<Constant*, BasicBlock*> >();
1534     Constant *V = cast<Constant>(getValNonImprovising($1, $2));
1535
1536     if (V == 0)
1537       ThrowException("May only switch on a constant pool value!");
1538
1539     $$->push_back(std::make_pair(V, cast<BasicBlock>(getVal($4, $5))));
1540   };
1541
1542 Inst : OptAssign InstVal {
1543   // Is this definition named?? if so, assign the name...
1544   if (setValueName($2, $1)) { assert(0 && "No redefin allowed!"); }
1545   InsertValue($2);
1546   $$ = $2;
1547 };
1548
1549 PHIList : Types '[' ValueRef ',' ValueRef ']' {    // Used for PHI nodes
1550     $$ = new std::list<std::pair<Value*, BasicBlock*> >();
1551     $$->push_back(std::make_pair(getVal(*$1, $3), 
1552                                  cast<BasicBlock>(getVal(Type::LabelTy, $5))));
1553     delete $1;
1554   }
1555   | PHIList ',' '[' ValueRef ',' ValueRef ']' {
1556     $$ = $1;
1557     $1->push_back(std::make_pair(getVal($1->front().first->getType(), $4),
1558                                  cast<BasicBlock>(getVal(Type::LabelTy, $6))));
1559   };
1560
1561
1562 ValueRefList : ResolvedVal {    // Used for call statements, and memory insts...
1563     $$ = new std::vector<Value*>();
1564     $$->push_back($1);
1565   }
1566   | ValueRefList ',' ResolvedVal {
1567     $$ = $1;
1568     $1->push_back($3);
1569   };
1570
1571 // ValueRefListE - Just like ValueRefList, except that it may also be empty!
1572 ValueRefListE : ValueRefList | /*empty*/ { $$ = 0; };
1573
1574 InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
1575     if (!(*$2)->isInteger() && !(*$2)->isFloatingPoint())
1576       ThrowException("Arithmetic operator requires integer or FP operands!");
1577     $$ = BinaryOperator::create($1, getVal(*$2, $3), getVal(*$2, $5));
1578     if ($$ == 0)
1579       ThrowException("binary operator returned null!");
1580     delete $2;
1581   }
1582   | LogicalOps Types ValueRef ',' ValueRef {
1583     if (!(*$2)->isIntegral())
1584       ThrowException("Logical operator requires integral operands!");
1585     $$ = BinaryOperator::create($1, getVal(*$2, $3), getVal(*$2, $5));
1586     if ($$ == 0)
1587       ThrowException("binary operator returned null!");
1588     delete $2;
1589   }
1590   | SetCondOps Types ValueRef ',' ValueRef {
1591     $$ = new SetCondInst($1, getVal(*$2, $3), getVal(*$2, $5));
1592     if ($$ == 0)
1593       ThrowException("binary operator returned null!");
1594     delete $2;
1595   }
1596   | NOT ResolvedVal {
1597     std::cerr << "WARNING: Use of eliminated 'not' instruction:"
1598               << " Replacing with 'xor'.\n";
1599
1600     Value *Ones = ConstantIntegral::getAllOnesValue($2->getType());
1601     if (Ones == 0)
1602       ThrowException("Expected integral type for not instruction!");
1603
1604     $$ = BinaryOperator::create(Instruction::Xor, $2, Ones);
1605     if ($$ == 0)
1606       ThrowException("Could not create a xor instruction!");
1607   }
1608   | ShiftOps ResolvedVal ',' ResolvedVal {
1609     if ($4->getType() != Type::UByteTy)
1610       ThrowException("Shift amount must be ubyte!");
1611     $$ = new ShiftInst($1, $2, $4);
1612   }
1613   | CAST ResolvedVal TO Types {
1614     $$ = new CastInst($2, *$4);
1615     delete $4;
1616   }
1617   | VA_ARG ResolvedVal ',' Types {
1618     $$ = new VarArgInst($2, *$4);
1619     delete $4;
1620   }
1621   | PHI PHIList {
1622     const Type *Ty = $2->front().first->getType();
1623     $$ = new PHINode(Ty);
1624     while ($2->begin() != $2->end()) {
1625       if ($2->front().first->getType() != Ty) 
1626         ThrowException("All elements of a PHI node must be of the same type!");
1627       cast<PHINode>($$)->addIncoming($2->front().first, $2->front().second);
1628       $2->pop_front();
1629     }
1630     delete $2;  // Free the list...
1631   } 
1632   | CALL TypesV ValueRef '(' ValueRefListE ')' {
1633     const PointerType *PFTy;
1634     const FunctionType *Ty;
1635
1636     if (!(PFTy = dyn_cast<PointerType>($2->get())) ||
1637         !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
1638       // Pull out the types of all of the arguments...
1639       std::vector<const Type*> ParamTypes;
1640       if ($5) {
1641         for (std::vector<Value*>::iterator I = $5->begin(), E = $5->end();
1642              I != E; ++I)
1643           ParamTypes.push_back((*I)->getType());
1644       }
1645
1646       bool isVarArg = ParamTypes.size() && ParamTypes.back() == Type::VoidTy;
1647       if (isVarArg) ParamTypes.pop_back();
1648
1649       Ty = FunctionType::get($2->get(), ParamTypes, isVarArg);
1650       PFTy = PointerType::get(Ty);
1651     }
1652     delete $2;
1653
1654     Value *V = getVal(PFTy, $3);   // Get the function we're calling...
1655
1656     // Create the call node...
1657     if (!$5) {                                   // Has no arguments?
1658       // Make sure no arguments is a good thing!
1659       if (Ty->getNumParams() != 0)
1660         ThrowException("No arguments passed to a function that "
1661                        "expects arguments!");
1662
1663       $$ = new CallInst(V, std::vector<Value*>());
1664     } else {                                     // Has arguments?
1665       // Loop through FunctionType's arguments and ensure they are specified
1666       // correctly!
1667       //
1668       FunctionType::ParamTypes::const_iterator I = Ty->getParamTypes().begin();
1669       FunctionType::ParamTypes::const_iterator E = Ty->getParamTypes().end();
1670       std::vector<Value*>::iterator ArgI = $5->begin(), ArgE = $5->end();
1671
1672       for (; ArgI != ArgE && I != E; ++ArgI, ++I)
1673         if ((*ArgI)->getType() != *I)
1674           ThrowException("Parameter " +(*ArgI)->getName()+ " is not of type '" +
1675                          (*I)->getDescription() + "'!");
1676
1677       if (I != E || (ArgI != ArgE && !Ty->isVarArg()))
1678         ThrowException("Invalid number of parameters detected!");
1679
1680       $$ = new CallInst(V, *$5);
1681     }
1682     delete $5;
1683   }
1684   | MemoryInst {
1685     $$ = $1;
1686   };
1687
1688
1689 // IndexList - List of indices for GEP based instructions...
1690 IndexList : ',' ValueRefList { 
1691   $$ = $2; 
1692 } | /* empty */ { 
1693   $$ = new std::vector<Value*>(); 
1694 };
1695
1696 MemoryInst : MALLOC Types {
1697     $$ = new MallocInst(*$2);
1698     delete $2;
1699   }
1700   | MALLOC Types ',' UINT ValueRef {
1701     $$ = new MallocInst(*$2, getVal($4, $5));
1702     delete $2;
1703   }
1704   | ALLOCA Types {
1705     $$ = new AllocaInst(*$2);
1706     delete $2;
1707   }
1708   | ALLOCA Types ',' UINT ValueRef {
1709     $$ = new AllocaInst(*$2, getVal($4, $5));
1710     delete $2;
1711   }
1712   | FREE ResolvedVal {
1713     if (!isa<PointerType>($2->getType()))
1714       ThrowException("Trying to free nonpointer type " + 
1715                      $2->getType()->getDescription() + "!");
1716     $$ = new FreeInst($2);
1717   }
1718
1719   | LOAD Types ValueRef IndexList {
1720     if (!isa<PointerType>($2->get()))
1721       ThrowException("Can't load from nonpointer type: " +
1722                      (*$2)->getDescription());
1723     if (GetElementPtrInst::getIndexedType(*$2, *$4) == 0)
1724       ThrowException("Invalid indices for load instruction!");
1725
1726     Value *Src = getVal(*$2, $3);
1727     if (!$4->empty()) {
1728       std::cerr << "WARNING: Use of index load instruction:"
1729                 << " replacing with getelementptr/load pair.\n";
1730       // Create a getelementptr hack instruction to do the right thing for
1731       // compatibility.
1732       //
1733       Instruction *I = new GetElementPtrInst(Src, *$4);
1734       CurBB->getInstList().push_back(I);
1735       Src = I;
1736     }
1737
1738     $$ = new LoadInst(Src);
1739     delete $4;   // Free the vector...
1740     delete $2;
1741   }
1742   | STORE ResolvedVal ',' Types ValueRef IndexList {
1743     if (!isa<PointerType>($4->get()))
1744       ThrowException("Can't store to a nonpointer type: " +
1745                      (*$4)->getDescription());
1746     const Type *ElTy = GetElementPtrInst::getIndexedType(*$4, *$6);
1747     if (ElTy == 0)
1748       ThrowException("Can't store into that field list!");
1749     if (ElTy != $2->getType())
1750       ThrowException("Can't store '" + $2->getType()->getDescription() +
1751                      "' into space of type '" + ElTy->getDescription() + "'!");
1752
1753     Value *Ptr = getVal(*$4, $5);
1754     if (!$6->empty()) {
1755       std::cerr << "WARNING: Use of index store instruction:"
1756                 << " replacing with getelementptr/store pair.\n";
1757       // Create a getelementptr hack instruction to do the right thing for
1758       // compatibility.
1759       //
1760       Instruction *I = new GetElementPtrInst(Ptr, *$6);
1761       CurBB->getInstList().push_back(I);
1762       Ptr = I;
1763     }
1764
1765     $$ = new StoreInst($2, Ptr);
1766     delete $4; delete $6;
1767   }
1768   | GETELEMENTPTR Types ValueRef IndexList {
1769     for (unsigned i = 0, e = $4->size(); i != e; ++i) {
1770       if ((*$4)[i]->getType() == Type::UIntTy) {
1771         std::cerr << "WARNING: Use of uint type indexes to getelementptr "
1772                   << "instruction: replacing with casts to long type.\n";
1773         Instruction *I = new CastInst((*$4)[i], Type::LongTy);
1774         CurBB->getInstList().push_back(I);
1775         (*$4)[i] = I;
1776       }
1777     }
1778
1779     if (!isa<PointerType>($2->get()))
1780       ThrowException("getelementptr insn requires pointer operand!");
1781     if (!GetElementPtrInst::getIndexedType(*$2, *$4, true))
1782       ThrowException("Can't get element ptr '" + (*$2)->getDescription()+ "'!");
1783     $$ = new GetElementPtrInst(getVal(*$2, $3), *$4);
1784     delete $2; delete $4;
1785   };
1786
1787 %%
1788 int yyerror(const char *ErrorMsg) {
1789   std::string where 
1790     = std::string((CurFilename == "-") ? std::string("<stdin>") : CurFilename)
1791                   + ":" + utostr((unsigned) llvmAsmlineno) + ": ";
1792   std::string errMsg = std::string(ErrorMsg) + "\n" + where + " while reading ";
1793   if (yychar == YYEMPTY)
1794     errMsg += "end-of-file.";
1795   else
1796     errMsg += "token: '" + std::string(llvmAsmtext, llvmAsmleng) + "'";
1797   ThrowException(errMsg);
1798   return 0;
1799 }