now that instruction metadata is only parsed in one place, eliminate the
[oota-llvm.git] / lib / AsmParser / LLParser.cpp
1 //===-- LLParser.cpp - Parser Class ---------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file defines the parser class for .ll files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "LLParser.h"
15 #include "llvm/AutoUpgrade.h"
16 #include "llvm/CallingConv.h"
17 #include "llvm/Constants.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/InlineAsm.h"
20 #include "llvm/Instructions.h"
21 #include "llvm/Module.h"
22 #include "llvm/Operator.h"
23 #include "llvm/ValueSymbolTable.h"
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/raw_ostream.h"
28 using namespace llvm;
29
30 /// Run: module ::= toplevelentity*
31 bool LLParser::Run() {
32   // Prime the lexer.
33   Lex.Lex();
34
35   return ParseTopLevelEntities() ||
36          ValidateEndOfModule();
37 }
38
39 /// ValidateEndOfModule - Do final validity and sanity checks at the end of the
40 /// module.
41 bool LLParser::ValidateEndOfModule() {
42   // Update auto-upgraded malloc calls to "malloc".
43   // FIXME: Remove in LLVM 3.0.
44   if (MallocF) {
45     MallocF->setName("malloc");
46     // If setName() does not set the name to "malloc", then there is already a 
47     // declaration of "malloc".  In that case, iterate over all calls to MallocF
48     // and get them to call the declared "malloc" instead.
49     if (MallocF->getName() != "malloc") {
50       Constant *RealMallocF = M->getFunction("malloc");
51       if (RealMallocF->getType() != MallocF->getType())
52         RealMallocF = ConstantExpr::getBitCast(RealMallocF, MallocF->getType());
53       MallocF->replaceAllUsesWith(RealMallocF);
54       MallocF->eraseFromParent();
55       MallocF = NULL;
56     }
57   }
58   
59   
60   // If there are entries in ForwardRefBlockAddresses at this point, they are
61   // references after the function was defined.  Resolve those now.
62   while (!ForwardRefBlockAddresses.empty()) {
63     // Okay, we are referencing an already-parsed function, resolve them now.
64     Function *TheFn = 0;
65     const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
66     if (Fn.Kind == ValID::t_GlobalName)
67       TheFn = M->getFunction(Fn.StrVal);
68     else if (Fn.UIntVal < NumberedVals.size())
69       TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
70     
71     if (TheFn == 0)
72       return Error(Fn.Loc, "unknown function referenced by blockaddress");
73     
74     // Resolve all these references.
75     if (ResolveForwardRefBlockAddresses(TheFn, 
76                                       ForwardRefBlockAddresses.begin()->second,
77                                         0))
78       return true;
79     
80     ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
81   }
82   
83   
84   if (!ForwardRefTypes.empty())
85     return Error(ForwardRefTypes.begin()->second.second,
86                  "use of undefined type named '" +
87                  ForwardRefTypes.begin()->first + "'");
88   if (!ForwardRefTypeIDs.empty())
89     return Error(ForwardRefTypeIDs.begin()->second.second,
90                  "use of undefined type '%" +
91                  utostr(ForwardRefTypeIDs.begin()->first) + "'");
92
93   if (!ForwardRefVals.empty())
94     return Error(ForwardRefVals.begin()->second.second,
95                  "use of undefined value '@" + ForwardRefVals.begin()->first +
96                  "'");
97
98   if (!ForwardRefValIDs.empty())
99     return Error(ForwardRefValIDs.begin()->second.second,
100                  "use of undefined value '@" +
101                  utostr(ForwardRefValIDs.begin()->first) + "'");
102
103   if (!ForwardRefMDNodes.empty())
104     return Error(ForwardRefMDNodes.begin()->second.second,
105                  "use of undefined metadata '!" +
106                  utostr(ForwardRefMDNodes.begin()->first) + "'");
107
108
109   // Look for intrinsic functions and CallInst that need to be upgraded
110   for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
111     UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
112
113   // Check debug info intrinsics.
114   CheckDebugInfoIntrinsics(M);
115   return false;
116 }
117
118 bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn, 
119                              std::vector<std::pair<ValID, GlobalValue*> > &Refs,
120                                                PerFunctionState *PFS) {
121   // Loop over all the references, resolving them.
122   for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
123     BasicBlock *Res;
124     if (PFS) {
125       if (Refs[i].first.Kind == ValID::t_LocalName)
126         Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
127       else
128         Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
129     } else if (Refs[i].first.Kind == ValID::t_LocalID) {
130       return Error(Refs[i].first.Loc,
131        "cannot take address of numeric label after the function is defined");
132     } else {
133       Res = dyn_cast_or_null<BasicBlock>(
134                      TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
135     }
136     
137     if (Res == 0)
138       return Error(Refs[i].first.Loc,
139                    "referenced value is not a basic block");
140     
141     // Get the BlockAddress for this and update references to use it.
142     BlockAddress *BA = BlockAddress::get(TheFn, Res);
143     Refs[i].second->replaceAllUsesWith(BA);
144     Refs[i].second->eraseFromParent();
145   }
146   return false;
147 }
148
149
150 //===----------------------------------------------------------------------===//
151 // Top-Level Entities
152 //===----------------------------------------------------------------------===//
153
154 bool LLParser::ParseTopLevelEntities() {
155   while (1) {
156     switch (Lex.getKind()) {
157     default:         return TokError("expected top-level entity");
158     case lltok::Eof: return false;
159     //case lltok::kw_define:
160     case lltok::kw_declare: if (ParseDeclare()) return true; break;
161     case lltok::kw_define:  if (ParseDefine()) return true; break;
162     case lltok::kw_module:  if (ParseModuleAsm()) return true; break;
163     case lltok::kw_target:  if (ParseTargetDefinition()) return true; break;
164     case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
165     case lltok::kw_type:    if (ParseUnnamedType()) return true; break;
166     case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
167     case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
168     case lltok::LocalVar:   if (ParseNamedType()) return true; break;
169     case lltok::GlobalID:   if (ParseUnnamedGlobal()) return true; break;
170     case lltok::GlobalVar:  if (ParseNamedGlobal()) return true; break;
171     case lltok::exclaim:    if (ParseStandaloneMetadata()) return true; break;
172     case lltok::MetadataVar: if (ParseNamedMetadata()) return true; break;
173
174     // The Global variable production with no name can have many different
175     // optional leading prefixes, the production is:
176     // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
177     //               OptionalAddrSpace ('constant'|'global') ...
178     case lltok::kw_private :       // OptionalLinkage
179     case lltok::kw_linker_private: // OptionalLinkage
180     case lltok::kw_internal:       // OptionalLinkage
181     case lltok::kw_weak:           // OptionalLinkage
182     case lltok::kw_weak_odr:       // OptionalLinkage
183     case lltok::kw_linkonce:       // OptionalLinkage
184     case lltok::kw_linkonce_odr:   // OptionalLinkage
185     case lltok::kw_appending:      // OptionalLinkage
186     case lltok::kw_dllexport:      // OptionalLinkage
187     case lltok::kw_common:         // OptionalLinkage
188     case lltok::kw_dllimport:      // OptionalLinkage
189     case lltok::kw_extern_weak:    // OptionalLinkage
190     case lltok::kw_external: {     // OptionalLinkage
191       unsigned Linkage, Visibility;
192       if (ParseOptionalLinkage(Linkage) ||
193           ParseOptionalVisibility(Visibility) ||
194           ParseGlobal("", SMLoc(), Linkage, true, Visibility))
195         return true;
196       break;
197     }
198     case lltok::kw_default:       // OptionalVisibility
199     case lltok::kw_hidden:        // OptionalVisibility
200     case lltok::kw_protected: {   // OptionalVisibility
201       unsigned Visibility;
202       if (ParseOptionalVisibility(Visibility) ||
203           ParseGlobal("", SMLoc(), 0, false, Visibility))
204         return true;
205       break;
206     }
207
208     case lltok::kw_thread_local:  // OptionalThreadLocal
209     case lltok::kw_addrspace:     // OptionalAddrSpace
210     case lltok::kw_constant:      // GlobalType
211     case lltok::kw_global:        // GlobalType
212       if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
213       break;
214     }
215   }
216 }
217
218
219 /// toplevelentity
220 ///   ::= 'module' 'asm' STRINGCONSTANT
221 bool LLParser::ParseModuleAsm() {
222   assert(Lex.getKind() == lltok::kw_module);
223   Lex.Lex();
224
225   std::string AsmStr;
226   if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
227       ParseStringConstant(AsmStr)) return true;
228
229   const std::string &AsmSoFar = M->getModuleInlineAsm();
230   if (AsmSoFar.empty())
231     M->setModuleInlineAsm(AsmStr);
232   else
233     M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
234   return false;
235 }
236
237 /// toplevelentity
238 ///   ::= 'target' 'triple' '=' STRINGCONSTANT
239 ///   ::= 'target' 'datalayout' '=' STRINGCONSTANT
240 bool LLParser::ParseTargetDefinition() {
241   assert(Lex.getKind() == lltok::kw_target);
242   std::string Str;
243   switch (Lex.Lex()) {
244   default: return TokError("unknown target property");
245   case lltok::kw_triple:
246     Lex.Lex();
247     if (ParseToken(lltok::equal, "expected '=' after target triple") ||
248         ParseStringConstant(Str))
249       return true;
250     M->setTargetTriple(Str);
251     return false;
252   case lltok::kw_datalayout:
253     Lex.Lex();
254     if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
255         ParseStringConstant(Str))
256       return true;
257     M->setDataLayout(Str);
258     return false;
259   }
260 }
261
262 /// toplevelentity
263 ///   ::= 'deplibs' '=' '[' ']'
264 ///   ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
265 bool LLParser::ParseDepLibs() {
266   assert(Lex.getKind() == lltok::kw_deplibs);
267   Lex.Lex();
268   if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
269       ParseToken(lltok::lsquare, "expected '=' after deplibs"))
270     return true;
271
272   if (EatIfPresent(lltok::rsquare))
273     return false;
274
275   std::string Str;
276   if (ParseStringConstant(Str)) return true;
277   M->addLibrary(Str);
278
279   while (EatIfPresent(lltok::comma)) {
280     if (ParseStringConstant(Str)) return true;
281     M->addLibrary(Str);
282   }
283
284   return ParseToken(lltok::rsquare, "expected ']' at end of list");
285 }
286
287 /// ParseUnnamedType:
288 ///   ::= 'type' type
289 ///   ::= LocalVarID '=' 'type' type
290 bool LLParser::ParseUnnamedType() {
291   unsigned TypeID = NumberedTypes.size();
292
293   // Handle the LocalVarID form.
294   if (Lex.getKind() == lltok::LocalVarID) {
295     if (Lex.getUIntVal() != TypeID)
296       return Error(Lex.getLoc(), "type expected to be numbered '%" +
297                    utostr(TypeID) + "'");
298     Lex.Lex(); // eat LocalVarID;
299
300     if (ParseToken(lltok::equal, "expected '=' after name"))
301       return true;
302   }
303
304   assert(Lex.getKind() == lltok::kw_type);
305   LocTy TypeLoc = Lex.getLoc();
306   Lex.Lex(); // eat kw_type
307
308   PATypeHolder Ty(Type::getVoidTy(Context));
309   if (ParseType(Ty)) return true;
310
311   // See if this type was previously referenced.
312   std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
313     FI = ForwardRefTypeIDs.find(TypeID);
314   if (FI != ForwardRefTypeIDs.end()) {
315     if (FI->second.first.get() == Ty)
316       return Error(TypeLoc, "self referential type is invalid");
317
318     cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
319     Ty = FI->second.first.get();
320     ForwardRefTypeIDs.erase(FI);
321   }
322
323   NumberedTypes.push_back(Ty);
324
325   return false;
326 }
327
328 /// toplevelentity
329 ///   ::= LocalVar '=' 'type' type
330 bool LLParser::ParseNamedType() {
331   std::string Name = Lex.getStrVal();
332   LocTy NameLoc = Lex.getLoc();
333   Lex.Lex();  // eat LocalVar.
334
335   PATypeHolder Ty(Type::getVoidTy(Context));
336
337   if (ParseToken(lltok::equal, "expected '=' after name") ||
338       ParseToken(lltok::kw_type, "expected 'type' after name") ||
339       ParseType(Ty))
340     return true;
341
342   // Set the type name, checking for conflicts as we do so.
343   bool AlreadyExists = M->addTypeName(Name, Ty);
344   if (!AlreadyExists) return false;
345
346   // See if this type is a forward reference.  We need to eagerly resolve
347   // types to allow recursive type redefinitions below.
348   std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
349   FI = ForwardRefTypes.find(Name);
350   if (FI != ForwardRefTypes.end()) {
351     if (FI->second.first.get() == Ty)
352       return Error(NameLoc, "self referential type is invalid");
353
354     cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
355     Ty = FI->second.first.get();
356     ForwardRefTypes.erase(FI);
357   }
358
359   // Inserting a name that is already defined, get the existing name.
360   const Type *Existing = M->getTypeByName(Name);
361   assert(Existing && "Conflict but no matching type?!");
362
363   // Otherwise, this is an attempt to redefine a type. That's okay if
364   // the redefinition is identical to the original.
365   // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
366   if (Existing == Ty) return false;
367
368   // Any other kind of (non-equivalent) redefinition is an error.
369   return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
370                Ty->getDescription() + "'");
371 }
372
373
374 /// toplevelentity
375 ///   ::= 'declare' FunctionHeader
376 bool LLParser::ParseDeclare() {
377   assert(Lex.getKind() == lltok::kw_declare);
378   Lex.Lex();
379
380   Function *F;
381   return ParseFunctionHeader(F, false);
382 }
383
384 /// toplevelentity
385 ///   ::= 'define' FunctionHeader '{' ...
386 bool LLParser::ParseDefine() {
387   assert(Lex.getKind() == lltok::kw_define);
388   Lex.Lex();
389
390   Function *F;
391   return ParseFunctionHeader(F, true) ||
392          ParseFunctionBody(*F);
393 }
394
395 /// ParseGlobalType
396 ///   ::= 'constant'
397 ///   ::= 'global'
398 bool LLParser::ParseGlobalType(bool &IsConstant) {
399   if (Lex.getKind() == lltok::kw_constant)
400     IsConstant = true;
401   else if (Lex.getKind() == lltok::kw_global)
402     IsConstant = false;
403   else {
404     IsConstant = false;
405     return TokError("expected 'global' or 'constant'");
406   }
407   Lex.Lex();
408   return false;
409 }
410
411 /// ParseUnnamedGlobal:
412 ///   OptionalVisibility ALIAS ...
413 ///   OptionalLinkage OptionalVisibility ...   -> global variable
414 ///   GlobalID '=' OptionalVisibility ALIAS ...
415 ///   GlobalID '=' OptionalLinkage OptionalVisibility ...   -> global variable
416 bool LLParser::ParseUnnamedGlobal() {
417   unsigned VarID = NumberedVals.size();
418   std::string Name;
419   LocTy NameLoc = Lex.getLoc();
420
421   // Handle the GlobalID form.
422   if (Lex.getKind() == lltok::GlobalID) {
423     if (Lex.getUIntVal() != VarID)
424       return Error(Lex.getLoc(), "variable expected to be numbered '%" +
425                    utostr(VarID) + "'");
426     Lex.Lex(); // eat GlobalID;
427
428     if (ParseToken(lltok::equal, "expected '=' after name"))
429       return true;
430   }
431
432   bool HasLinkage;
433   unsigned Linkage, Visibility;
434   if (ParseOptionalLinkage(Linkage, HasLinkage) ||
435       ParseOptionalVisibility(Visibility))
436     return true;
437
438   if (HasLinkage || Lex.getKind() != lltok::kw_alias)
439     return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
440   return ParseAlias(Name, NameLoc, Visibility);
441 }
442
443 /// ParseNamedGlobal:
444 ///   GlobalVar '=' OptionalVisibility ALIAS ...
445 ///   GlobalVar '=' OptionalLinkage OptionalVisibility ...   -> global variable
446 bool LLParser::ParseNamedGlobal() {
447   assert(Lex.getKind() == lltok::GlobalVar);
448   LocTy NameLoc = Lex.getLoc();
449   std::string Name = Lex.getStrVal();
450   Lex.Lex();
451
452   bool HasLinkage;
453   unsigned Linkage, Visibility;
454   if (ParseToken(lltok::equal, "expected '=' in global variable") ||
455       ParseOptionalLinkage(Linkage, HasLinkage) ||
456       ParseOptionalVisibility(Visibility))
457     return true;
458
459   if (HasLinkage || Lex.getKind() != lltok::kw_alias)
460     return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
461   return ParseAlias(Name, NameLoc, Visibility);
462 }
463
464 // MDString:
465 //   ::= '!' STRINGCONSTANT
466 bool LLParser::ParseMDString(MDString *&Result) {
467   std::string Str;
468   if (ParseStringConstant(Str)) return true;
469   Result = MDString::get(Context, Str);
470   return false;
471 }
472
473 // MDNode:
474 //   ::= '!' MDNodeNumber
475 bool LLParser::ParseMDNodeID(MDNode *&Result) {
476   // !{ ..., !42, ... }
477   unsigned MID = 0;
478   if (ParseUInt32(MID)) return true;
479
480   // Check existing MDNode.
481   if (MID < NumberedMetadata.size() && NumberedMetadata[MID] != 0) {
482     Result = NumberedMetadata[MID];
483     return false;
484   }
485
486   // Create MDNode forward reference.
487
488   // FIXME: This is not unique enough!
489   std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
490   Value *V = MDString::get(Context, FwdRefName);
491   MDNode *FwdNode = MDNode::get(Context, &V, 1);
492   ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
493   
494   if (NumberedMetadata.size() <= MID)
495     NumberedMetadata.resize(MID+1);
496   NumberedMetadata[MID] = FwdNode;
497   Result = FwdNode;
498   return false;
499 }
500
501 /// ParseNamedMetadata:
502 ///   !foo = !{ !1, !2 }
503 bool LLParser::ParseNamedMetadata() {
504   assert(Lex.getKind() == lltok::MetadataVar);
505   std::string Name = Lex.getStrVal();
506   Lex.Lex();
507
508   if (ParseToken(lltok::equal, "expected '=' here") ||
509       ParseToken(lltok::exclaim, "Expected '!' here") ||
510       ParseToken(lltok::lbrace, "Expected '{' here"))
511     return true;
512
513   SmallVector<MetadataBase *, 8> Elts;
514   do {
515     if (ParseToken(lltok::exclaim, "Expected '!' here"))
516       return true;
517     
518     // FIXME: This rejects MDStrings.  Are they legal in an named MDNode or not?
519     MDNode *N = 0;
520     if (ParseMDNodeID(N)) return true;
521     Elts.push_back(N);
522   } while (EatIfPresent(lltok::comma));
523
524   if (ParseToken(lltok::rbrace, "expected end of metadata node"))
525     return true;
526
527   NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
528   return false;
529 }
530
531 /// ParseStandaloneMetadata:
532 ///   !42 = !{...}
533 bool LLParser::ParseStandaloneMetadata() {
534   assert(Lex.getKind() == lltok::exclaim);
535   Lex.Lex();
536   unsigned MetadataID = 0;
537
538   LocTy TyLoc;
539   PATypeHolder Ty(Type::getVoidTy(Context));
540   SmallVector<Value *, 16> Elts;
541   // FIXME: This doesn't make sense here.  Pull braced MD stuff parsing out!
542   if (ParseUInt32(MetadataID) ||
543       ParseToken(lltok::equal, "expected '=' here") ||
544       ParseType(Ty, TyLoc) ||
545       ParseToken(lltok::exclaim, "Expected '!' here") ||
546       ParseToken(lltok::lbrace, "Expected '{' here") ||
547       ParseMDNodeVector(Elts) ||
548       ParseToken(lltok::rbrace, "expected end of metadata node"))
549     return true;
550
551   MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
552   
553   // See if this was forward referenced, if so, handle it.
554   std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
555     FI = ForwardRefMDNodes.find(MetadataID);
556   if (FI != ForwardRefMDNodes.end()) {
557     FI->second.first->replaceAllUsesWith(Init);
558     ForwardRefMDNodes.erase(FI);
559     
560     assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
561   } else {
562     if (MetadataID >= NumberedMetadata.size())
563       NumberedMetadata.resize(MetadataID+1);
564
565     if (NumberedMetadata[MetadataID] != 0)
566       return TokError("Metadata id is already used");
567     NumberedMetadata[MetadataID] = Init;
568   }
569
570   return false;
571 }
572
573 /// ParseAlias:
574 ///   ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
575 /// Aliasee
576 ///   ::= TypeAndValue
577 ///   ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
578 ///   ::= 'getelementptr' 'inbounds'? '(' ... ')'
579 ///
580 /// Everything through visibility has already been parsed.
581 ///
582 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
583                           unsigned Visibility) {
584   assert(Lex.getKind() == lltok::kw_alias);
585   Lex.Lex();
586   unsigned Linkage;
587   LocTy LinkageLoc = Lex.getLoc();
588   if (ParseOptionalLinkage(Linkage))
589     return true;
590
591   if (Linkage != GlobalValue::ExternalLinkage &&
592       Linkage != GlobalValue::WeakAnyLinkage &&
593       Linkage != GlobalValue::WeakODRLinkage &&
594       Linkage != GlobalValue::InternalLinkage &&
595       Linkage != GlobalValue::PrivateLinkage &&
596       Linkage != GlobalValue::LinkerPrivateLinkage)
597     return Error(LinkageLoc, "invalid linkage type for alias");
598
599   Constant *Aliasee;
600   LocTy AliaseeLoc = Lex.getLoc();
601   if (Lex.getKind() != lltok::kw_bitcast &&
602       Lex.getKind() != lltok::kw_getelementptr) {
603     if (ParseGlobalTypeAndValue(Aliasee)) return true;
604   } else {
605     // The bitcast dest type is not present, it is implied by the dest type.
606     ValID ID;
607     if (ParseValID(ID)) return true;
608     if (ID.Kind != ValID::t_Constant)
609       return Error(AliaseeLoc, "invalid aliasee");
610     Aliasee = ID.ConstantVal;
611   }
612
613   if (!isa<PointerType>(Aliasee->getType()))
614     return Error(AliaseeLoc, "alias must have pointer type");
615
616   // Okay, create the alias but do not insert it into the module yet.
617   GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
618                                     (GlobalValue::LinkageTypes)Linkage, Name,
619                                     Aliasee);
620   GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
621
622   // See if this value already exists in the symbol table.  If so, it is either
623   // a redefinition or a definition of a forward reference.
624   if (GlobalValue *Val = M->getNamedValue(Name)) {
625     // See if this was a redefinition.  If so, there is no entry in
626     // ForwardRefVals.
627     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
628       I = ForwardRefVals.find(Name);
629     if (I == ForwardRefVals.end())
630       return Error(NameLoc, "redefinition of global named '@" + Name + "'");
631
632     // Otherwise, this was a definition of forward ref.  Verify that types
633     // agree.
634     if (Val->getType() != GA->getType())
635       return Error(NameLoc,
636               "forward reference and definition of alias have different types");
637
638     // If they agree, just RAUW the old value with the alias and remove the
639     // forward ref info.
640     Val->replaceAllUsesWith(GA);
641     Val->eraseFromParent();
642     ForwardRefVals.erase(I);
643   }
644
645   // Insert into the module, we know its name won't collide now.
646   M->getAliasList().push_back(GA);
647   assert(GA->getNameStr() == Name && "Should not be a name conflict!");
648
649   return false;
650 }
651
652 /// ParseGlobal
653 ///   ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
654 ///       OptionalAddrSpace GlobalType Type Const
655 ///   ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
656 ///       OptionalAddrSpace GlobalType Type Const
657 ///
658 /// Everything through visibility has been parsed already.
659 ///
660 bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
661                            unsigned Linkage, bool HasLinkage,
662                            unsigned Visibility) {
663   unsigned AddrSpace;
664   bool ThreadLocal, IsConstant;
665   LocTy TyLoc;
666
667   PATypeHolder Ty(Type::getVoidTy(Context));
668   if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
669       ParseOptionalAddrSpace(AddrSpace) ||
670       ParseGlobalType(IsConstant) ||
671       ParseType(Ty, TyLoc))
672     return true;
673
674   // If the linkage is specified and is external, then no initializer is
675   // present.
676   Constant *Init = 0;
677   if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
678                       Linkage != GlobalValue::ExternalWeakLinkage &&
679                       Linkage != GlobalValue::ExternalLinkage)) {
680     if (ParseGlobalValue(Ty, Init))
681       return true;
682   }
683
684   if (isa<FunctionType>(Ty) || Ty->isLabelTy())
685     return Error(TyLoc, "invalid type for global variable");
686
687   GlobalVariable *GV = 0;
688
689   // See if the global was forward referenced, if so, use the global.
690   if (!Name.empty()) {
691     if (GlobalValue *GVal = M->getNamedValue(Name)) {
692       if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
693         return Error(NameLoc, "redefinition of global '@" + Name + "'");
694       GV = cast<GlobalVariable>(GVal);
695     }
696   } else {
697     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
698       I = ForwardRefValIDs.find(NumberedVals.size());
699     if (I != ForwardRefValIDs.end()) {
700       GV = cast<GlobalVariable>(I->second.first);
701       ForwardRefValIDs.erase(I);
702     }
703   }
704
705   if (GV == 0) {
706     GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
707                             Name, 0, false, AddrSpace);
708   } else {
709     if (GV->getType()->getElementType() != Ty)
710       return Error(TyLoc,
711             "forward reference and definition of global have different types");
712
713     // Move the forward-reference to the correct spot in the module.
714     M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
715   }
716
717   if (Name.empty())
718     NumberedVals.push_back(GV);
719
720   // Set the parsed properties on the global.
721   if (Init)
722     GV->setInitializer(Init);
723   GV->setConstant(IsConstant);
724   GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
725   GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
726   GV->setThreadLocal(ThreadLocal);
727
728   // Parse attributes on the global.
729   while (Lex.getKind() == lltok::comma) {
730     Lex.Lex();
731
732     if (Lex.getKind() == lltok::kw_section) {
733       Lex.Lex();
734       GV->setSection(Lex.getStrVal());
735       if (ParseToken(lltok::StringConstant, "expected global section string"))
736         return true;
737     } else if (Lex.getKind() == lltok::kw_align) {
738       unsigned Alignment;
739       if (ParseOptionalAlignment(Alignment)) return true;
740       GV->setAlignment(Alignment);
741     } else {
742       TokError("unknown global variable property!");
743     }
744   }
745
746   return false;
747 }
748
749
750 //===----------------------------------------------------------------------===//
751 // GlobalValue Reference/Resolution Routines.
752 //===----------------------------------------------------------------------===//
753
754 /// GetGlobalVal - Get a value with the specified name or ID, creating a
755 /// forward reference record if needed.  This can return null if the value
756 /// exists but does not have the right type.
757 GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
758                                     LocTy Loc) {
759   const PointerType *PTy = dyn_cast<PointerType>(Ty);
760   if (PTy == 0) {
761     Error(Loc, "global variable reference must have pointer type");
762     return 0;
763   }
764
765   // Look this name up in the normal function symbol table.
766   GlobalValue *Val =
767     cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
768
769   // If this is a forward reference for the value, see if we already created a
770   // forward ref record.
771   if (Val == 0) {
772     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
773       I = ForwardRefVals.find(Name);
774     if (I != ForwardRefVals.end())
775       Val = I->second.first;
776   }
777
778   // If we have the value in the symbol table or fwd-ref table, return it.
779   if (Val) {
780     if (Val->getType() == Ty) return Val;
781     Error(Loc, "'@" + Name + "' defined with type '" +
782           Val->getType()->getDescription() + "'");
783     return 0;
784   }
785
786   // Otherwise, create a new forward reference for this value and remember it.
787   GlobalValue *FwdVal;
788   if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
789     // Function types can return opaque but functions can't.
790     if (isa<OpaqueType>(FT->getReturnType())) {
791       Error(Loc, "function may not return opaque type");
792       return 0;
793     }
794
795     FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
796   } else {
797     FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
798                                 GlobalValue::ExternalWeakLinkage, 0, Name);
799   }
800
801   ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
802   return FwdVal;
803 }
804
805 GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
806   const PointerType *PTy = dyn_cast<PointerType>(Ty);
807   if (PTy == 0) {
808     Error(Loc, "global variable reference must have pointer type");
809     return 0;
810   }
811
812   GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
813
814   // If this is a forward reference for the value, see if we already created a
815   // forward ref record.
816   if (Val == 0) {
817     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
818       I = ForwardRefValIDs.find(ID);
819     if (I != ForwardRefValIDs.end())
820       Val = I->second.first;
821   }
822
823   // If we have the value in the symbol table or fwd-ref table, return it.
824   if (Val) {
825     if (Val->getType() == Ty) return Val;
826     Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
827           Val->getType()->getDescription() + "'");
828     return 0;
829   }
830
831   // Otherwise, create a new forward reference for this value and remember it.
832   GlobalValue *FwdVal;
833   if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
834     // Function types can return opaque but functions can't.
835     if (isa<OpaqueType>(FT->getReturnType())) {
836       Error(Loc, "function may not return opaque type");
837       return 0;
838     }
839     FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
840   } else {
841     FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
842                                 GlobalValue::ExternalWeakLinkage, 0, "");
843   }
844
845   ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
846   return FwdVal;
847 }
848
849
850 //===----------------------------------------------------------------------===//
851 // Helper Routines.
852 //===----------------------------------------------------------------------===//
853
854 /// ParseToken - If the current token has the specified kind, eat it and return
855 /// success.  Otherwise, emit the specified error and return failure.
856 bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
857   if (Lex.getKind() != T)
858     return TokError(ErrMsg);
859   Lex.Lex();
860   return false;
861 }
862
863 /// ParseStringConstant
864 ///   ::= StringConstant
865 bool LLParser::ParseStringConstant(std::string &Result) {
866   if (Lex.getKind() != lltok::StringConstant)
867     return TokError("expected string constant");
868   Result = Lex.getStrVal();
869   Lex.Lex();
870   return false;
871 }
872
873 /// ParseUInt32
874 ///   ::= uint32
875 bool LLParser::ParseUInt32(unsigned &Val) {
876   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
877     return TokError("expected integer");
878   uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
879   if (Val64 != unsigned(Val64))
880     return TokError("expected 32-bit integer (too large)");
881   Val = Val64;
882   Lex.Lex();
883   return false;
884 }
885
886
887 /// ParseOptionalAddrSpace
888 ///   := /*empty*/
889 ///   := 'addrspace' '(' uint32 ')'
890 bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
891   AddrSpace = 0;
892   if (!EatIfPresent(lltok::kw_addrspace))
893     return false;
894   return ParseToken(lltok::lparen, "expected '(' in address space") ||
895          ParseUInt32(AddrSpace) ||
896          ParseToken(lltok::rparen, "expected ')' in address space");
897 }
898
899 /// ParseOptionalAttrs - Parse a potentially empty attribute list.  AttrKind
900 /// indicates what kind of attribute list this is: 0: function arg, 1: result,
901 /// 2: function attr.
902 /// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
903 bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
904   Attrs = Attribute::None;
905   LocTy AttrLoc = Lex.getLoc();
906
907   while (1) {
908     switch (Lex.getKind()) {
909     case lltok::kw_sext:
910     case lltok::kw_zext:
911       // Treat these as signext/zeroext if they occur in the argument list after
912       // the value, as in "call i8 @foo(i8 10 sext)".  If they occur before the
913       // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
914       // expr.
915       // FIXME: REMOVE THIS IN LLVM 3.0
916       if (AttrKind == 3) {
917         if (Lex.getKind() == lltok::kw_sext)
918           Attrs |= Attribute::SExt;
919         else
920           Attrs |= Attribute::ZExt;
921         break;
922       }
923       // FALL THROUGH.
924     default:  // End of attributes.
925       if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
926         return Error(AttrLoc, "invalid use of function-only attribute");
927
928       if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
929         return Error(AttrLoc, "invalid use of parameter-only attribute");
930
931       return false;
932     case lltok::kw_zeroext:         Attrs |= Attribute::ZExt; break;
933     case lltok::kw_signext:         Attrs |= Attribute::SExt; break;
934     case lltok::kw_inreg:           Attrs |= Attribute::InReg; break;
935     case lltok::kw_sret:            Attrs |= Attribute::StructRet; break;
936     case lltok::kw_noalias:         Attrs |= Attribute::NoAlias; break;
937     case lltok::kw_nocapture:       Attrs |= Attribute::NoCapture; break;
938     case lltok::kw_byval:           Attrs |= Attribute::ByVal; break;
939     case lltok::kw_nest:            Attrs |= Attribute::Nest; break;
940
941     case lltok::kw_noreturn:        Attrs |= Attribute::NoReturn; break;
942     case lltok::kw_nounwind:        Attrs |= Attribute::NoUnwind; break;
943     case lltok::kw_noinline:        Attrs |= Attribute::NoInline; break;
944     case lltok::kw_readnone:        Attrs |= Attribute::ReadNone; break;
945     case lltok::kw_readonly:        Attrs |= Attribute::ReadOnly; break;
946     case lltok::kw_inlinehint:      Attrs |= Attribute::InlineHint; break;
947     case lltok::kw_alwaysinline:    Attrs |= Attribute::AlwaysInline; break;
948     case lltok::kw_optsize:         Attrs |= Attribute::OptimizeForSize; break;
949     case lltok::kw_ssp:             Attrs |= Attribute::StackProtect; break;
950     case lltok::kw_sspreq:          Attrs |= Attribute::StackProtectReq; break;
951     case lltok::kw_noredzone:       Attrs |= Attribute::NoRedZone; break;
952     case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
953     case lltok::kw_naked:           Attrs |= Attribute::Naked; break;
954
955     case lltok::kw_align: {
956       unsigned Alignment;
957       if (ParseOptionalAlignment(Alignment))
958         return true;
959       Attrs |= Attribute::constructAlignmentFromInt(Alignment);
960       continue;
961     }
962     }
963     Lex.Lex();
964   }
965 }
966
967 /// ParseOptionalLinkage
968 ///   ::= /*empty*/
969 ///   ::= 'private'
970 ///   ::= 'linker_private'
971 ///   ::= 'internal'
972 ///   ::= 'weak'
973 ///   ::= 'weak_odr'
974 ///   ::= 'linkonce'
975 ///   ::= 'linkonce_odr'
976 ///   ::= 'appending'
977 ///   ::= 'dllexport'
978 ///   ::= 'common'
979 ///   ::= 'dllimport'
980 ///   ::= 'extern_weak'
981 ///   ::= 'external'
982 bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
983   HasLinkage = false;
984   switch (Lex.getKind()) {
985   default:                       Res=GlobalValue::ExternalLinkage; return false;
986   case lltok::kw_private:        Res = GlobalValue::PrivateLinkage;       break;
987   case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
988   case lltok::kw_internal:       Res = GlobalValue::InternalLinkage;      break;
989   case lltok::kw_weak:           Res = GlobalValue::WeakAnyLinkage;       break;
990   case lltok::kw_weak_odr:       Res = GlobalValue::WeakODRLinkage;       break;
991   case lltok::kw_linkonce:       Res = GlobalValue::LinkOnceAnyLinkage;   break;
992   case lltok::kw_linkonce_odr:   Res = GlobalValue::LinkOnceODRLinkage;   break;
993   case lltok::kw_available_externally:
994     Res = GlobalValue::AvailableExternallyLinkage;
995     break;
996   case lltok::kw_appending:      Res = GlobalValue::AppendingLinkage;     break;
997   case lltok::kw_dllexport:      Res = GlobalValue::DLLExportLinkage;     break;
998   case lltok::kw_common:         Res = GlobalValue::CommonLinkage;        break;
999   case lltok::kw_dllimport:      Res = GlobalValue::DLLImportLinkage;     break;
1000   case lltok::kw_extern_weak:    Res = GlobalValue::ExternalWeakLinkage;  break;
1001   case lltok::kw_external:       Res = GlobalValue::ExternalLinkage;      break;
1002   }
1003   Lex.Lex();
1004   HasLinkage = true;
1005   return false;
1006 }
1007
1008 /// ParseOptionalVisibility
1009 ///   ::= /*empty*/
1010 ///   ::= 'default'
1011 ///   ::= 'hidden'
1012 ///   ::= 'protected'
1013 ///
1014 bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1015   switch (Lex.getKind()) {
1016   default:                  Res = GlobalValue::DefaultVisibility; return false;
1017   case lltok::kw_default:   Res = GlobalValue::DefaultVisibility; break;
1018   case lltok::kw_hidden:    Res = GlobalValue::HiddenVisibility; break;
1019   case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1020   }
1021   Lex.Lex();
1022   return false;
1023 }
1024
1025 /// ParseOptionalCallingConv
1026 ///   ::= /*empty*/
1027 ///   ::= 'ccc'
1028 ///   ::= 'fastcc'
1029 ///   ::= 'coldcc'
1030 ///   ::= 'x86_stdcallcc'
1031 ///   ::= 'x86_fastcallcc'
1032 ///   ::= 'arm_apcscc'
1033 ///   ::= 'arm_aapcscc'
1034 ///   ::= 'arm_aapcs_vfpcc'
1035 ///   ::= 'msp430_intrcc'
1036 ///   ::= 'cc' UINT
1037 ///
1038 bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
1039   switch (Lex.getKind()) {
1040   default:                       CC = CallingConv::C; return false;
1041   case lltok::kw_ccc:            CC = CallingConv::C; break;
1042   case lltok::kw_fastcc:         CC = CallingConv::Fast; break;
1043   case lltok::kw_coldcc:         CC = CallingConv::Cold; break;
1044   case lltok::kw_x86_stdcallcc:  CC = CallingConv::X86_StdCall; break;
1045   case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
1046   case lltok::kw_arm_apcscc:     CC = CallingConv::ARM_APCS; break;
1047   case lltok::kw_arm_aapcscc:    CC = CallingConv::ARM_AAPCS; break;
1048   case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
1049   case lltok::kw_msp430_intrcc:  CC = CallingConv::MSP430_INTR; break;
1050   case lltok::kw_cc: {
1051       unsigned ArbitraryCC;
1052       Lex.Lex();
1053       if (ParseUInt32(ArbitraryCC)) {
1054         return true;
1055       } else
1056         CC = static_cast<CallingConv::ID>(ArbitraryCC);
1057         return false;
1058     }
1059     break;
1060   }
1061
1062   Lex.Lex();
1063   return false;
1064 }
1065
1066 /// ParseInstructionMetadata
1067 ///   ::= !dbg !42 (',' !dbg !57)*
1068 bool LLParser::
1069 ParseInstructionMetadata(SmallVectorImpl<std::pair<unsigned,
1070                                                  MDNode *> > &Result){
1071   do {
1072     if (Lex.getKind() != lltok::MetadataVar)
1073       return TokError("expected metadata after comma");
1074
1075     std::string Name = Lex.getStrVal();
1076     Lex.Lex();
1077
1078     MDNode *Node;
1079     if (ParseToken(lltok::exclaim, "expected '!' here") ||
1080         ParseMDNodeID(Node))
1081       return true;
1082
1083     unsigned MDK = M->getMDKindID(Name.c_str());
1084     Result.push_back(std::make_pair(MDK, Node));
1085
1086     // If this is the end of the list, we're done.
1087   } while (EatIfPresent(lltok::comma));
1088   return false;
1089 }
1090
1091 /// ParseOptionalAlignment
1092 ///   ::= /* empty */
1093 ///   ::= 'align' 4
1094 bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1095   Alignment = 0;
1096   if (!EatIfPresent(lltok::kw_align))
1097     return false;
1098   LocTy AlignLoc = Lex.getLoc();
1099   if (ParseUInt32(Alignment)) return true;
1100   if (!isPowerOf2_32(Alignment))
1101     return Error(AlignLoc, "alignment is not a power of two");
1102   return false;
1103 }
1104
1105 /// ParseOptionalCommaAlign
1106 ///   ::= 
1107 ///   ::= ',' align 4
1108 ///
1109 /// This returns with AteExtraComma set to true if it ate an excess comma at the
1110 /// end.
1111 bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1112                                        bool &AteExtraComma) {
1113   AteExtraComma = false;
1114   while (EatIfPresent(lltok::comma)) {
1115     // Metadata at the end is an early exit.
1116     if (Lex.getKind() == lltok::MetadataVar) {
1117       AteExtraComma = true;
1118       return false;
1119     }
1120     
1121     if (Lex.getKind() == lltok::kw_align) {
1122       if (ParseOptionalAlignment(Alignment)) return true;
1123     } else
1124       return true;
1125   }
1126
1127   return false;
1128 }
1129
1130
1131 /// ParseIndexList - This parses the index list for an insert/extractvalue
1132 /// instruction.  This sets AteExtraComma in the case where we eat an extra
1133 /// comma at the end of the line and find that it is followed by metadata.
1134 /// Clients that don't allow metadata can call the version of this function that
1135 /// only takes one argument.
1136 ///
1137 /// ParseIndexList
1138 ///    ::=  (',' uint32)+
1139 ///
1140 bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1141                               bool &AteExtraComma) {
1142   AteExtraComma = false;
1143   
1144   if (Lex.getKind() != lltok::comma)
1145     return TokError("expected ',' as start of index list");
1146
1147   while (EatIfPresent(lltok::comma)) {
1148     if (Lex.getKind() == lltok::MetadataVar) {
1149       AteExtraComma = true;
1150       return false;
1151     }
1152     unsigned Idx;
1153     if (ParseUInt32(Idx)) return true;
1154     Indices.push_back(Idx);
1155   }
1156
1157   return false;
1158 }
1159
1160 //===----------------------------------------------------------------------===//
1161 // Type Parsing.
1162 //===----------------------------------------------------------------------===//
1163
1164 /// ParseType - Parse and resolve a full type.
1165 bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1166   LocTy TypeLoc = Lex.getLoc();
1167   if (ParseTypeRec(Result)) return true;
1168
1169   // Verify no unresolved uprefs.
1170   if (!UpRefs.empty())
1171     return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
1172
1173   if (!AllowVoid && Result.get()->isVoidTy())
1174     return Error(TypeLoc, "void type only allowed for function results");
1175
1176   return false;
1177 }
1178
1179 /// HandleUpRefs - Every time we finish a new layer of types, this function is
1180 /// called.  It loops through the UpRefs vector, which is a list of the
1181 /// currently active types.  For each type, if the up-reference is contained in
1182 /// the newly completed type, we decrement the level count.  When the level
1183 /// count reaches zero, the up-referenced type is the type that is passed in:
1184 /// thus we can complete the cycle.
1185 ///
1186 PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1187   // If Ty isn't abstract, or if there are no up-references in it, then there is
1188   // nothing to resolve here.
1189   if (!ty->isAbstract() || UpRefs.empty()) return ty;
1190
1191   PATypeHolder Ty(ty);
1192 #if 0
1193   dbgs() << "Type '" << Ty->getDescription()
1194          << "' newly formed.  Resolving upreferences.\n"
1195          << UpRefs.size() << " upreferences active!\n";
1196 #endif
1197
1198   // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1199   // to zero), we resolve them all together before we resolve them to Ty.  At
1200   // the end of the loop, if there is anything to resolve to Ty, it will be in
1201   // this variable.
1202   OpaqueType *TypeToResolve = 0;
1203
1204   for (unsigned i = 0; i != UpRefs.size(); ++i) {
1205     // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1206     bool ContainsType =
1207       std::find(Ty->subtype_begin(), Ty->subtype_end(),
1208                 UpRefs[i].LastContainedTy) != Ty->subtype_end();
1209
1210 #if 0
1211     dbgs() << "  UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
1212            << UpRefs[i].LastContainedTy->getDescription() << ") = "
1213            << (ContainsType ? "true" : "false")
1214            << " level=" << UpRefs[i].NestingLevel << "\n";
1215 #endif
1216     if (!ContainsType)
1217       continue;
1218
1219     // Decrement level of upreference
1220     unsigned Level = --UpRefs[i].NestingLevel;
1221     UpRefs[i].LastContainedTy = Ty;
1222
1223     // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1224     if (Level != 0)
1225       continue;
1226
1227 #if 0
1228     dbgs() << "  * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
1229 #endif
1230     if (!TypeToResolve)
1231       TypeToResolve = UpRefs[i].UpRefTy;
1232     else
1233       UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1234     UpRefs.erase(UpRefs.begin()+i);     // Remove from upreference list.
1235     --i;                                // Do not skip the next element.
1236   }
1237
1238   if (TypeToResolve)
1239     TypeToResolve->refineAbstractTypeTo(Ty);
1240
1241   return Ty;
1242 }
1243
1244
1245 /// ParseTypeRec - The recursive function used to process the internal
1246 /// implementation details of types.
1247 bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1248   switch (Lex.getKind()) {
1249   default:
1250     return TokError("expected type");
1251   case lltok::Type:
1252     // TypeRec ::= 'float' | 'void' (etc)
1253     Result = Lex.getTyVal();
1254     Lex.Lex();
1255     break;
1256   case lltok::kw_opaque:
1257     // TypeRec ::= 'opaque'
1258     Result = OpaqueType::get(Context);
1259     Lex.Lex();
1260     break;
1261   case lltok::lbrace:
1262     // TypeRec ::= '{' ... '}'
1263     if (ParseStructType(Result, false))
1264       return true;
1265     break;
1266   case lltok::lsquare:
1267     // TypeRec ::= '[' ... ']'
1268     Lex.Lex(); // eat the lsquare.
1269     if (ParseArrayVectorType(Result, false))
1270       return true;
1271     break;
1272   case lltok::less: // Either vector or packed struct.
1273     // TypeRec ::= '<' ... '>'
1274     Lex.Lex();
1275     if (Lex.getKind() == lltok::lbrace) {
1276       if (ParseStructType(Result, true) ||
1277           ParseToken(lltok::greater, "expected '>' at end of packed struct"))
1278         return true;
1279     } else if (ParseArrayVectorType(Result, true))
1280       return true;
1281     break;
1282   case lltok::LocalVar:
1283   case lltok::StringConstant:  // FIXME: REMOVE IN LLVM 3.0
1284     // TypeRec ::= %foo
1285     if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1286       Result = T;
1287     } else {
1288       Result = OpaqueType::get(Context);
1289       ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1290                                             std::make_pair(Result,
1291                                                            Lex.getLoc())));
1292       M->addTypeName(Lex.getStrVal(), Result.get());
1293     }
1294     Lex.Lex();
1295     break;
1296
1297   case lltok::LocalVarID:
1298     // TypeRec ::= %4
1299     if (Lex.getUIntVal() < NumberedTypes.size())
1300       Result = NumberedTypes[Lex.getUIntVal()];
1301     else {
1302       std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1303         I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1304       if (I != ForwardRefTypeIDs.end())
1305         Result = I->second.first;
1306       else {
1307         Result = OpaqueType::get(Context);
1308         ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1309                                                 std::make_pair(Result,
1310                                                                Lex.getLoc())));
1311       }
1312     }
1313     Lex.Lex();
1314     break;
1315   case lltok::backslash: {
1316     // TypeRec ::= '\' 4
1317     Lex.Lex();
1318     unsigned Val;
1319     if (ParseUInt32(Val)) return true;
1320     OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
1321     UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1322     Result = OT;
1323     break;
1324   }
1325   }
1326
1327   // Parse the type suffixes.
1328   while (1) {
1329     switch (Lex.getKind()) {
1330     // End of type.
1331     default: return false;
1332
1333     // TypeRec ::= TypeRec '*'
1334     case lltok::star:
1335       if (Result.get()->isLabelTy())
1336         return TokError("basic block pointers are invalid");
1337       if (Result.get()->isVoidTy())
1338         return TokError("pointers to void are invalid; use i8* instead");
1339       if (!PointerType::isValidElementType(Result.get()))
1340         return TokError("pointer to this type is invalid");
1341       Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
1342       Lex.Lex();
1343       break;
1344
1345     // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1346     case lltok::kw_addrspace: {
1347       if (Result.get()->isLabelTy())
1348         return TokError("basic block pointers are invalid");
1349       if (Result.get()->isVoidTy())
1350         return TokError("pointers to void are invalid; use i8* instead");
1351       if (!PointerType::isValidElementType(Result.get()))
1352         return TokError("pointer to this type is invalid");
1353       unsigned AddrSpace;
1354       if (ParseOptionalAddrSpace(AddrSpace) ||
1355           ParseToken(lltok::star, "expected '*' in address space"))
1356         return true;
1357
1358       Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
1359       break;
1360     }
1361
1362     /// Types '(' ArgTypeListI ')' OptFuncAttrs
1363     case lltok::lparen:
1364       if (ParseFunctionType(Result))
1365         return true;
1366       break;
1367     }
1368   }
1369 }
1370
1371 /// ParseParameterList
1372 ///    ::= '(' ')'
1373 ///    ::= '(' Arg (',' Arg)* ')'
1374 ///  Arg
1375 ///    ::= Type OptionalAttributes Value OptionalAttributes
1376 bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1377                                   PerFunctionState &PFS) {
1378   if (ParseToken(lltok::lparen, "expected '(' in call"))
1379     return true;
1380
1381   while (Lex.getKind() != lltok::rparen) {
1382     // If this isn't the first argument, we need a comma.
1383     if (!ArgList.empty() &&
1384         ParseToken(lltok::comma, "expected ',' in argument list"))
1385       return true;
1386
1387     // Parse the argument.
1388     LocTy ArgLoc;
1389     PATypeHolder ArgTy(Type::getVoidTy(Context));
1390     unsigned ArgAttrs1 = Attribute::None;
1391     unsigned ArgAttrs2 = Attribute::None;
1392     Value *V;
1393     if (ParseType(ArgTy, ArgLoc))
1394       return true;
1395
1396     // Otherwise, handle normal operands.
1397     if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1398         ParseValue(ArgTy, V, PFS) ||
1399         // FIXME: Should not allow attributes after the argument, remove this
1400         // in LLVM 3.0.
1401         ParseOptionalAttrs(ArgAttrs2, 3))
1402       return true;
1403     ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1404   }
1405
1406   Lex.Lex();  // Lex the ')'.
1407   return false;
1408 }
1409
1410
1411
1412 /// ParseArgumentList - Parse the argument list for a function type or function
1413 /// prototype.  If 'inType' is true then we are parsing a FunctionType.
1414 ///   ::= '(' ArgTypeListI ')'
1415 /// ArgTypeListI
1416 ///   ::= /*empty*/
1417 ///   ::= '...'
1418 ///   ::= ArgTypeList ',' '...'
1419 ///   ::= ArgType (',' ArgType)*
1420 ///
1421 bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
1422                                  bool &isVarArg, bool inType) {
1423   isVarArg = false;
1424   assert(Lex.getKind() == lltok::lparen);
1425   Lex.Lex(); // eat the (.
1426
1427   if (Lex.getKind() == lltok::rparen) {
1428     // empty
1429   } else if (Lex.getKind() == lltok::dotdotdot) {
1430     isVarArg = true;
1431     Lex.Lex();
1432   } else {
1433     LocTy TypeLoc = Lex.getLoc();
1434     PATypeHolder ArgTy(Type::getVoidTy(Context));
1435     unsigned Attrs;
1436     std::string Name;
1437
1438     // If we're parsing a type, use ParseTypeRec, because we allow recursive
1439     // types (such as a function returning a pointer to itself).  If parsing a
1440     // function prototype, we require fully resolved types.
1441     if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
1442         ParseOptionalAttrs(Attrs, 0)) return true;
1443
1444     if (ArgTy->isVoidTy())
1445       return Error(TypeLoc, "argument can not have void type");
1446
1447     if (Lex.getKind() == lltok::LocalVar ||
1448         Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1449       Name = Lex.getStrVal();
1450       Lex.Lex();
1451     }
1452
1453     if (!FunctionType::isValidArgumentType(ArgTy))
1454       return Error(TypeLoc, "invalid type for function argument");
1455
1456     ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1457
1458     while (EatIfPresent(lltok::comma)) {
1459       // Handle ... at end of arg list.
1460       if (EatIfPresent(lltok::dotdotdot)) {
1461         isVarArg = true;
1462         break;
1463       }
1464
1465       // Otherwise must be an argument type.
1466       TypeLoc = Lex.getLoc();
1467       if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
1468           ParseOptionalAttrs(Attrs, 0)) return true;
1469
1470       if (ArgTy->isVoidTy())
1471         return Error(TypeLoc, "argument can not have void type");
1472
1473       if (Lex.getKind() == lltok::LocalVar ||
1474           Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1475         Name = Lex.getStrVal();
1476         Lex.Lex();
1477       } else {
1478         Name = "";
1479       }
1480
1481       if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1482         return Error(TypeLoc, "invalid type for function argument");
1483
1484       ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1485     }
1486   }
1487
1488   return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1489 }
1490
1491 /// ParseFunctionType
1492 ///  ::= Type ArgumentList OptionalAttrs
1493 bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1494   assert(Lex.getKind() == lltok::lparen);
1495
1496   if (!FunctionType::isValidReturnType(Result))
1497     return TokError("invalid function return type");
1498
1499   std::vector<ArgInfo> ArgList;
1500   bool isVarArg;
1501   unsigned Attrs;
1502   if (ParseArgumentList(ArgList, isVarArg, true) ||
1503       // FIXME: Allow, but ignore attributes on function types!
1504       // FIXME: Remove in LLVM 3.0
1505       ParseOptionalAttrs(Attrs, 2))
1506     return true;
1507
1508   // Reject names on the arguments lists.
1509   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1510     if (!ArgList[i].Name.empty())
1511       return Error(ArgList[i].Loc, "argument name invalid in function type");
1512     if (!ArgList[i].Attrs != 0) {
1513       // Allow but ignore attributes on function types; this permits
1514       // auto-upgrade.
1515       // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1516     }
1517   }
1518
1519   std::vector<const Type*> ArgListTy;
1520   for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1521     ArgListTy.push_back(ArgList[i].Type);
1522
1523   Result = HandleUpRefs(FunctionType::get(Result.get(),
1524                                                 ArgListTy, isVarArg));
1525   return false;
1526 }
1527
1528 /// ParseStructType: Handles packed and unpacked types.  </> parsed elsewhere.
1529 ///   TypeRec
1530 ///     ::= '{' '}'
1531 ///     ::= '{' TypeRec (',' TypeRec)* '}'
1532 ///     ::= '<' '{' '}' '>'
1533 ///     ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1534 bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1535   assert(Lex.getKind() == lltok::lbrace);
1536   Lex.Lex(); // Consume the '{'
1537
1538   if (EatIfPresent(lltok::rbrace)) {
1539     Result = StructType::get(Context, Packed);
1540     return false;
1541   }
1542
1543   std::vector<PATypeHolder> ParamsList;
1544   LocTy EltTyLoc = Lex.getLoc();
1545   if (ParseTypeRec(Result)) return true;
1546   ParamsList.push_back(Result);
1547
1548   if (Result->isVoidTy())
1549     return Error(EltTyLoc, "struct element can not have void type");
1550   if (!StructType::isValidElementType(Result))
1551     return Error(EltTyLoc, "invalid element type for struct");
1552
1553   while (EatIfPresent(lltok::comma)) {
1554     EltTyLoc = Lex.getLoc();
1555     if (ParseTypeRec(Result)) return true;
1556
1557     if (Result->isVoidTy())
1558       return Error(EltTyLoc, "struct element can not have void type");
1559     if (!StructType::isValidElementType(Result))
1560       return Error(EltTyLoc, "invalid element type for struct");
1561
1562     ParamsList.push_back(Result);
1563   }
1564
1565   if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1566     return true;
1567
1568   std::vector<const Type*> ParamsListTy;
1569   for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1570     ParamsListTy.push_back(ParamsList[i].get());
1571   Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
1572   return false;
1573 }
1574
1575 /// ParseArrayVectorType - Parse an array or vector type, assuming the first
1576 /// token has already been consumed.
1577 ///   TypeRec
1578 ///     ::= '[' APSINTVAL 'x' Types ']'
1579 ///     ::= '<' APSINTVAL 'x' Types '>'
1580 bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1581   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1582       Lex.getAPSIntVal().getBitWidth() > 64)
1583     return TokError("expected number in address space");
1584
1585   LocTy SizeLoc = Lex.getLoc();
1586   uint64_t Size = Lex.getAPSIntVal().getZExtValue();
1587   Lex.Lex();
1588
1589   if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1590       return true;
1591
1592   LocTy TypeLoc = Lex.getLoc();
1593   PATypeHolder EltTy(Type::getVoidTy(Context));
1594   if (ParseTypeRec(EltTy)) return true;
1595
1596   if (EltTy->isVoidTy())
1597     return Error(TypeLoc, "array and vector element type cannot be void");
1598
1599   if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1600                  "expected end of sequential type"))
1601     return true;
1602
1603   if (isVector) {
1604     if (Size == 0)
1605       return Error(SizeLoc, "zero element vector is illegal");
1606     if ((unsigned)Size != Size)
1607       return Error(SizeLoc, "size too large for vector");
1608     if (!VectorType::isValidElementType(EltTy))
1609       return Error(TypeLoc, "vector element type must be fp or integer");
1610     Result = VectorType::get(EltTy, unsigned(Size));
1611   } else {
1612     if (!ArrayType::isValidElementType(EltTy))
1613       return Error(TypeLoc, "invalid array element type");
1614     Result = HandleUpRefs(ArrayType::get(EltTy, Size));
1615   }
1616   return false;
1617 }
1618
1619 //===----------------------------------------------------------------------===//
1620 // Function Semantic Analysis.
1621 //===----------------------------------------------------------------------===//
1622
1623 LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1624                                              int functionNumber)
1625   : P(p), F(f), FunctionNumber(functionNumber) {
1626
1627   // Insert unnamed arguments into the NumberedVals list.
1628   for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1629        AI != E; ++AI)
1630     if (!AI->hasName())
1631       NumberedVals.push_back(AI);
1632 }
1633
1634 LLParser::PerFunctionState::~PerFunctionState() {
1635   // If there were any forward referenced non-basicblock values, delete them.
1636   for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1637        I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1638     if (!isa<BasicBlock>(I->second.first)) {
1639       I->second.first->replaceAllUsesWith(
1640                            UndefValue::get(I->second.first->getType()));
1641       delete I->second.first;
1642       I->second.first = 0;
1643     }
1644
1645   for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1646        I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1647     if (!isa<BasicBlock>(I->second.first)) {
1648       I->second.first->replaceAllUsesWith(
1649                            UndefValue::get(I->second.first->getType()));
1650       delete I->second.first;
1651       I->second.first = 0;
1652     }
1653 }
1654
1655 bool LLParser::PerFunctionState::FinishFunction() {
1656   // Check to see if someone took the address of labels in this block.
1657   if (!P.ForwardRefBlockAddresses.empty()) {
1658     ValID FunctionID;
1659     if (!F.getName().empty()) {
1660       FunctionID.Kind = ValID::t_GlobalName;
1661       FunctionID.StrVal = F.getName();
1662     } else {
1663       FunctionID.Kind = ValID::t_GlobalID;
1664       FunctionID.UIntVal = FunctionNumber;
1665     }
1666   
1667     std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1668       FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1669     if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1670       // Resolve all these references.
1671       if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1672         return true;
1673       
1674       P.ForwardRefBlockAddresses.erase(FRBAI);
1675     }
1676   }
1677   
1678   if (!ForwardRefVals.empty())
1679     return P.Error(ForwardRefVals.begin()->second.second,
1680                    "use of undefined value '%" + ForwardRefVals.begin()->first +
1681                    "'");
1682   if (!ForwardRefValIDs.empty())
1683     return P.Error(ForwardRefValIDs.begin()->second.second,
1684                    "use of undefined value '%" +
1685                    utostr(ForwardRefValIDs.begin()->first) + "'");
1686   return false;
1687 }
1688
1689
1690 /// GetVal - Get a value with the specified name or ID, creating a
1691 /// forward reference record if needed.  This can return null if the value
1692 /// exists but does not have the right type.
1693 Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1694                                           const Type *Ty, LocTy Loc) {
1695   // Look this name up in the normal function symbol table.
1696   Value *Val = F.getValueSymbolTable().lookup(Name);
1697
1698   // If this is a forward reference for the value, see if we already created a
1699   // forward ref record.
1700   if (Val == 0) {
1701     std::map<std::string, std::pair<Value*, LocTy> >::iterator
1702       I = ForwardRefVals.find(Name);
1703     if (I != ForwardRefVals.end())
1704       Val = I->second.first;
1705   }
1706
1707   // If we have the value in the symbol table or fwd-ref table, return it.
1708   if (Val) {
1709     if (Val->getType() == Ty) return Val;
1710     if (Ty->isLabelTy())
1711       P.Error(Loc, "'%" + Name + "' is not a basic block");
1712     else
1713       P.Error(Loc, "'%" + Name + "' defined with type '" +
1714               Val->getType()->getDescription() + "'");
1715     return 0;
1716   }
1717
1718   // Don't make placeholders with invalid type.
1719   if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1720       Ty != Type::getLabelTy(F.getContext())) {
1721     P.Error(Loc, "invalid use of a non-first-class type");
1722     return 0;
1723   }
1724
1725   // Otherwise, create a new forward reference for this value and remember it.
1726   Value *FwdVal;
1727   if (Ty->isLabelTy())
1728     FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
1729   else
1730     FwdVal = new Argument(Ty, Name);
1731
1732   ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1733   return FwdVal;
1734 }
1735
1736 Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1737                                           LocTy Loc) {
1738   // Look this name up in the normal function symbol table.
1739   Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
1740
1741   // If this is a forward reference for the value, see if we already created a
1742   // forward ref record.
1743   if (Val == 0) {
1744     std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1745       I = ForwardRefValIDs.find(ID);
1746     if (I != ForwardRefValIDs.end())
1747       Val = I->second.first;
1748   }
1749
1750   // If we have the value in the symbol table or fwd-ref table, return it.
1751   if (Val) {
1752     if (Val->getType() == Ty) return Val;
1753     if (Ty->isLabelTy())
1754       P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1755     else
1756       P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1757               Val->getType()->getDescription() + "'");
1758     return 0;
1759   }
1760
1761   if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1762       Ty != Type::getLabelTy(F.getContext())) {
1763     P.Error(Loc, "invalid use of a non-first-class type");
1764     return 0;
1765   }
1766
1767   // Otherwise, create a new forward reference for this value and remember it.
1768   Value *FwdVal;
1769   if (Ty->isLabelTy())
1770     FwdVal = BasicBlock::Create(F.getContext(), "", &F);
1771   else
1772     FwdVal = new Argument(Ty);
1773
1774   ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1775   return FwdVal;
1776 }
1777
1778 /// SetInstName - After an instruction is parsed and inserted into its
1779 /// basic block, this installs its name.
1780 bool LLParser::PerFunctionState::SetInstName(int NameID,
1781                                              const std::string &NameStr,
1782                                              LocTy NameLoc, Instruction *Inst) {
1783   // If this instruction has void type, it cannot have a name or ID specified.
1784   if (Inst->getType()->isVoidTy()) {
1785     if (NameID != -1 || !NameStr.empty())
1786       return P.Error(NameLoc, "instructions returning void cannot have a name");
1787     return false;
1788   }
1789
1790   // If this was a numbered instruction, verify that the instruction is the
1791   // expected value and resolve any forward references.
1792   if (NameStr.empty()) {
1793     // If neither a name nor an ID was specified, just use the next ID.
1794     if (NameID == -1)
1795       NameID = NumberedVals.size();
1796
1797     if (unsigned(NameID) != NumberedVals.size())
1798       return P.Error(NameLoc, "instruction expected to be numbered '%" +
1799                      utostr(NumberedVals.size()) + "'");
1800
1801     std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1802       ForwardRefValIDs.find(NameID);
1803     if (FI != ForwardRefValIDs.end()) {
1804       if (FI->second.first->getType() != Inst->getType())
1805         return P.Error(NameLoc, "instruction forward referenced with type '" +
1806                        FI->second.first->getType()->getDescription() + "'");
1807       FI->second.first->replaceAllUsesWith(Inst);
1808       delete FI->second.first;
1809       ForwardRefValIDs.erase(FI);
1810     }
1811
1812     NumberedVals.push_back(Inst);
1813     return false;
1814   }
1815
1816   // Otherwise, the instruction had a name.  Resolve forward refs and set it.
1817   std::map<std::string, std::pair<Value*, LocTy> >::iterator
1818     FI = ForwardRefVals.find(NameStr);
1819   if (FI != ForwardRefVals.end()) {
1820     if (FI->second.first->getType() != Inst->getType())
1821       return P.Error(NameLoc, "instruction forward referenced with type '" +
1822                      FI->second.first->getType()->getDescription() + "'");
1823     FI->second.first->replaceAllUsesWith(Inst);
1824     delete FI->second.first;
1825     ForwardRefVals.erase(FI);
1826   }
1827
1828   // Set the name on the instruction.
1829   Inst->setName(NameStr);
1830
1831   if (Inst->getNameStr() != NameStr)
1832     return P.Error(NameLoc, "multiple definition of local value named '" +
1833                    NameStr + "'");
1834   return false;
1835 }
1836
1837 /// GetBB - Get a basic block with the specified name or ID, creating a
1838 /// forward reference record if needed.
1839 BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1840                                               LocTy Loc) {
1841   return cast_or_null<BasicBlock>(GetVal(Name,
1842                                         Type::getLabelTy(F.getContext()), Loc));
1843 }
1844
1845 BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
1846   return cast_or_null<BasicBlock>(GetVal(ID,
1847                                         Type::getLabelTy(F.getContext()), Loc));
1848 }
1849
1850 /// DefineBB - Define the specified basic block, which is either named or
1851 /// unnamed.  If there is an error, this returns null otherwise it returns
1852 /// the block being defined.
1853 BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1854                                                  LocTy Loc) {
1855   BasicBlock *BB;
1856   if (Name.empty())
1857     BB = GetBB(NumberedVals.size(), Loc);
1858   else
1859     BB = GetBB(Name, Loc);
1860   if (BB == 0) return 0; // Already diagnosed error.
1861
1862   // Move the block to the end of the function.  Forward ref'd blocks are
1863   // inserted wherever they happen to be referenced.
1864   F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
1865
1866   // Remove the block from forward ref sets.
1867   if (Name.empty()) {
1868     ForwardRefValIDs.erase(NumberedVals.size());
1869     NumberedVals.push_back(BB);
1870   } else {
1871     // BB forward references are already in the function symbol table.
1872     ForwardRefVals.erase(Name);
1873   }
1874
1875   return BB;
1876 }
1877
1878 //===----------------------------------------------------------------------===//
1879 // Constants.
1880 //===----------------------------------------------------------------------===//
1881
1882 /// ParseValID - Parse an abstract value that doesn't necessarily have a
1883 /// type implied.  For example, if we parse "4" we don't know what integer type
1884 /// it has.  The value will later be combined with its type and checked for
1885 /// sanity.
1886 bool LLParser::ParseValID(ValID &ID) {
1887   ID.Loc = Lex.getLoc();
1888   switch (Lex.getKind()) {
1889   default: return TokError("expected value token");
1890   case lltok::GlobalID:  // @42
1891     ID.UIntVal = Lex.getUIntVal();
1892     ID.Kind = ValID::t_GlobalID;
1893     break;
1894   case lltok::GlobalVar:  // @foo
1895     ID.StrVal = Lex.getStrVal();
1896     ID.Kind = ValID::t_GlobalName;
1897     break;
1898   case lltok::LocalVarID:  // %42
1899     ID.UIntVal = Lex.getUIntVal();
1900     ID.Kind = ValID::t_LocalID;
1901     break;
1902   case lltok::LocalVar:  // %foo
1903   case lltok::StringConstant:  // "foo" - FIXME: REMOVE IN LLVM 3.0
1904     ID.StrVal = Lex.getStrVal();
1905     ID.Kind = ValID::t_LocalName;
1906     break;
1907   case lltok::exclaim:   // !{...} MDNode, !"foo" MDString
1908     Lex.Lex();
1909     
1910     // FIXME: This doesn't belong here.
1911     if (EatIfPresent(lltok::lbrace)) {
1912       SmallVector<Value*, 16> Elts;
1913       if (ParseMDNodeVector(Elts) ||
1914           ParseToken(lltok::rbrace, "expected end of metadata node"))
1915         return true;
1916
1917       ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
1918       ID.Kind = ValID::t_MDNode;
1919       return false;
1920     }
1921
1922     // Standalone metadata reference
1923     // !{ ..., !42, ... }
1924     if (Lex.getKind() == lltok::APSInt) {
1925       if (ParseMDNodeID(ID.MDNodeVal)) return true;
1926       ID.Kind = ValID::t_MDNode;
1927       return false;
1928     }
1929     
1930     // MDString:
1931     //   ::= '!' STRINGCONSTANT
1932     if (ParseMDString(ID.MDStringVal)) return true;
1933     ID.Kind = ValID::t_MDString;
1934     return false;
1935   case lltok::APSInt:
1936     ID.APSIntVal = Lex.getAPSIntVal();
1937     ID.Kind = ValID::t_APSInt;
1938     break;
1939   case lltok::APFloat:
1940     ID.APFloatVal = Lex.getAPFloatVal();
1941     ID.Kind = ValID::t_APFloat;
1942     break;
1943   case lltok::kw_true:
1944     ID.ConstantVal = ConstantInt::getTrue(Context);
1945     ID.Kind = ValID::t_Constant;
1946     break;
1947   case lltok::kw_false:
1948     ID.ConstantVal = ConstantInt::getFalse(Context);
1949     ID.Kind = ValID::t_Constant;
1950     break;
1951   case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1952   case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1953   case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
1954
1955   case lltok::lbrace: {
1956     // ValID ::= '{' ConstVector '}'
1957     Lex.Lex();
1958     SmallVector<Constant*, 16> Elts;
1959     if (ParseGlobalValueVector(Elts) ||
1960         ParseToken(lltok::rbrace, "expected end of struct constant"))
1961       return true;
1962
1963     ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1964                                          Elts.size(), false);
1965     ID.Kind = ValID::t_Constant;
1966     return false;
1967   }
1968   case lltok::less: {
1969     // ValID ::= '<' ConstVector '>'         --> Vector.
1970     // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1971     Lex.Lex();
1972     bool isPackedStruct = EatIfPresent(lltok::lbrace);
1973
1974     SmallVector<Constant*, 16> Elts;
1975     LocTy FirstEltLoc = Lex.getLoc();
1976     if (ParseGlobalValueVector(Elts) ||
1977         (isPackedStruct &&
1978          ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1979         ParseToken(lltok::greater, "expected end of constant"))
1980       return true;
1981
1982     if (isPackedStruct) {
1983       ID.ConstantVal =
1984         ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
1985       ID.Kind = ValID::t_Constant;
1986       return false;
1987     }
1988
1989     if (Elts.empty())
1990       return Error(ID.Loc, "constant vector must not be empty");
1991
1992     if (!Elts[0]->getType()->isInteger() &&
1993         !Elts[0]->getType()->isFloatingPoint())
1994       return Error(FirstEltLoc,
1995                    "vector elements must have integer or floating point type");
1996
1997     // Verify that all the vector elements have the same type.
1998     for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1999       if (Elts[i]->getType() != Elts[0]->getType())
2000         return Error(FirstEltLoc,
2001                      "vector element #" + utostr(i) +
2002                     " is not of type '" + Elts[0]->getType()->getDescription());
2003
2004     ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
2005     ID.Kind = ValID::t_Constant;
2006     return false;
2007   }
2008   case lltok::lsquare: {   // Array Constant
2009     Lex.Lex();
2010     SmallVector<Constant*, 16> Elts;
2011     LocTy FirstEltLoc = Lex.getLoc();
2012     if (ParseGlobalValueVector(Elts) ||
2013         ParseToken(lltok::rsquare, "expected end of array constant"))
2014       return true;
2015
2016     // Handle empty element.
2017     if (Elts.empty()) {
2018       // Use undef instead of an array because it's inconvenient to determine
2019       // the element type at this point, there being no elements to examine.
2020       ID.Kind = ValID::t_EmptyArray;
2021       return false;
2022     }
2023
2024     if (!Elts[0]->getType()->isFirstClassType())
2025       return Error(FirstEltLoc, "invalid array element type: " +
2026                    Elts[0]->getType()->getDescription());
2027
2028     ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
2029
2030     // Verify all elements are correct type!
2031     for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
2032       if (Elts[i]->getType() != Elts[0]->getType())
2033         return Error(FirstEltLoc,
2034                      "array element #" + utostr(i) +
2035                      " is not of type '" +Elts[0]->getType()->getDescription());
2036     }
2037
2038     ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
2039     ID.Kind = ValID::t_Constant;
2040     return false;
2041   }
2042   case lltok::kw_c:  // c "foo"
2043     Lex.Lex();
2044     ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
2045     if (ParseToken(lltok::StringConstant, "expected string")) return true;
2046     ID.Kind = ValID::t_Constant;
2047     return false;
2048
2049   case lltok::kw_asm: {
2050     // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2051     bool HasSideEffect, AlignStack;
2052     Lex.Lex();
2053     if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
2054         ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
2055         ParseStringConstant(ID.StrVal) ||
2056         ParseToken(lltok::comma, "expected comma in inline asm expression") ||
2057         ParseToken(lltok::StringConstant, "expected constraint string"))
2058       return true;
2059     ID.StrVal2 = Lex.getStrVal();
2060     ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
2061     ID.Kind = ValID::t_InlineAsm;
2062     return false;
2063   }
2064
2065   case lltok::kw_blockaddress: {
2066     // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2067     Lex.Lex();
2068
2069     ValID Fn, Label;
2070     LocTy FnLoc, LabelLoc;
2071     
2072     if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2073         ParseValID(Fn) ||
2074         ParseToken(lltok::comma, "expected comma in block address expression")||
2075         ParseValID(Label) ||
2076         ParseToken(lltok::rparen, "expected ')' in block address expression"))
2077       return true;
2078     
2079     if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2080       return Error(Fn.Loc, "expected function name in blockaddress");
2081     if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
2082       return Error(Label.Loc, "expected basic block name in blockaddress");
2083     
2084     // Make a global variable as a placeholder for this reference.
2085     GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2086                                            false, GlobalValue::InternalLinkage,
2087                                                 0, "");
2088     ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2089     ID.ConstantVal = FwdRef;
2090     ID.Kind = ValID::t_Constant;
2091     return false;
2092   }
2093       
2094   case lltok::kw_trunc:
2095   case lltok::kw_zext:
2096   case lltok::kw_sext:
2097   case lltok::kw_fptrunc:
2098   case lltok::kw_fpext:
2099   case lltok::kw_bitcast:
2100   case lltok::kw_uitofp:
2101   case lltok::kw_sitofp:
2102   case lltok::kw_fptoui:
2103   case lltok::kw_fptosi:
2104   case lltok::kw_inttoptr:
2105   case lltok::kw_ptrtoint: {
2106     unsigned Opc = Lex.getUIntVal();
2107     PATypeHolder DestTy(Type::getVoidTy(Context));
2108     Constant *SrcVal;
2109     Lex.Lex();
2110     if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2111         ParseGlobalTypeAndValue(SrcVal) ||
2112         ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
2113         ParseType(DestTy) ||
2114         ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2115       return true;
2116     if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2117       return Error(ID.Loc, "invalid cast opcode for cast from '" +
2118                    SrcVal->getType()->getDescription() + "' to '" +
2119                    DestTy->getDescription() + "'");
2120     ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
2121                                                  SrcVal, DestTy);
2122     ID.Kind = ValID::t_Constant;
2123     return false;
2124   }
2125   case lltok::kw_extractvalue: {
2126     Lex.Lex();
2127     Constant *Val;
2128     SmallVector<unsigned, 4> Indices;
2129     if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2130         ParseGlobalTypeAndValue(Val) ||
2131         ParseIndexList(Indices) ||
2132         ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2133       return true;
2134
2135     if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2136       return Error(ID.Loc, "extractvalue operand must be array or struct");
2137     if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2138                                           Indices.end()))
2139       return Error(ID.Loc, "invalid indices for extractvalue");
2140     ID.ConstantVal =
2141       ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
2142     ID.Kind = ValID::t_Constant;
2143     return false;
2144   }
2145   case lltok::kw_insertvalue: {
2146     Lex.Lex();
2147     Constant *Val0, *Val1;
2148     SmallVector<unsigned, 4> Indices;
2149     if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2150         ParseGlobalTypeAndValue(Val0) ||
2151         ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2152         ParseGlobalTypeAndValue(Val1) ||
2153         ParseIndexList(Indices) ||
2154         ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2155       return true;
2156     if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2157       return Error(ID.Loc, "extractvalue operand must be array or struct");
2158     if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2159                                           Indices.end()))
2160       return Error(ID.Loc, "invalid indices for insertvalue");
2161     ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
2162                        Indices.data(), Indices.size());
2163     ID.Kind = ValID::t_Constant;
2164     return false;
2165   }
2166   case lltok::kw_icmp:
2167   case lltok::kw_fcmp: {
2168     unsigned PredVal, Opc = Lex.getUIntVal();
2169     Constant *Val0, *Val1;
2170     Lex.Lex();
2171     if (ParseCmpPredicate(PredVal, Opc) ||
2172         ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2173         ParseGlobalTypeAndValue(Val0) ||
2174         ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2175         ParseGlobalTypeAndValue(Val1) ||
2176         ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2177       return true;
2178
2179     if (Val0->getType() != Val1->getType())
2180       return Error(ID.Loc, "compare operands must have the same type");
2181
2182     CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
2183
2184     if (Opc == Instruction::FCmp) {
2185       if (!Val0->getType()->isFPOrFPVector())
2186         return Error(ID.Loc, "fcmp requires floating point operands");
2187       ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
2188     } else {
2189       assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
2190       if (!Val0->getType()->isIntOrIntVector() &&
2191           !isa<PointerType>(Val0->getType()))
2192         return Error(ID.Loc, "icmp requires pointer or integer operands");
2193       ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
2194     }
2195     ID.Kind = ValID::t_Constant;
2196     return false;
2197   }
2198
2199   // Binary Operators.
2200   case lltok::kw_add:
2201   case lltok::kw_fadd:
2202   case lltok::kw_sub:
2203   case lltok::kw_fsub:
2204   case lltok::kw_mul:
2205   case lltok::kw_fmul:
2206   case lltok::kw_udiv:
2207   case lltok::kw_sdiv:
2208   case lltok::kw_fdiv:
2209   case lltok::kw_urem:
2210   case lltok::kw_srem:
2211   case lltok::kw_frem: {
2212     bool NUW = false;
2213     bool NSW = false;
2214     bool Exact = false;
2215     unsigned Opc = Lex.getUIntVal();
2216     Constant *Val0, *Val1;
2217     Lex.Lex();
2218     LocTy ModifierLoc = Lex.getLoc();
2219     if (Opc == Instruction::Add ||
2220         Opc == Instruction::Sub ||
2221         Opc == Instruction::Mul) {
2222       if (EatIfPresent(lltok::kw_nuw))
2223         NUW = true;
2224       if (EatIfPresent(lltok::kw_nsw)) {
2225         NSW = true;
2226         if (EatIfPresent(lltok::kw_nuw))
2227           NUW = true;
2228       }
2229     } else if (Opc == Instruction::SDiv) {
2230       if (EatIfPresent(lltok::kw_exact))
2231         Exact = true;
2232     }
2233     if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2234         ParseGlobalTypeAndValue(Val0) ||
2235         ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2236         ParseGlobalTypeAndValue(Val1) ||
2237         ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2238       return true;
2239     if (Val0->getType() != Val1->getType())
2240       return Error(ID.Loc, "operands of constexpr must have same type");
2241     if (!Val0->getType()->isIntOrIntVector()) {
2242       if (NUW)
2243         return Error(ModifierLoc, "nuw only applies to integer operations");
2244       if (NSW)
2245         return Error(ModifierLoc, "nsw only applies to integer operations");
2246     }
2247     // API compatibility: Accept either integer or floating-point types with
2248     // add, sub, and mul.
2249     if (!Val0->getType()->isIntOrIntVector() &&
2250         !Val0->getType()->isFPOrFPVector())
2251       return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
2252     unsigned Flags = 0;
2253     if (NUW)   Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2254     if (NSW)   Flags |= OverflowingBinaryOperator::NoSignedWrap;
2255     if (Exact) Flags |= SDivOperator::IsExact;
2256     Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
2257     ID.ConstantVal = C;
2258     ID.Kind = ValID::t_Constant;
2259     return false;
2260   }
2261
2262   // Logical Operations
2263   case lltok::kw_shl:
2264   case lltok::kw_lshr:
2265   case lltok::kw_ashr:
2266   case lltok::kw_and:
2267   case lltok::kw_or:
2268   case lltok::kw_xor: {
2269     unsigned Opc = Lex.getUIntVal();
2270     Constant *Val0, *Val1;
2271     Lex.Lex();
2272     if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2273         ParseGlobalTypeAndValue(Val0) ||
2274         ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2275         ParseGlobalTypeAndValue(Val1) ||
2276         ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2277       return true;
2278     if (Val0->getType() != Val1->getType())
2279       return Error(ID.Loc, "operands of constexpr must have same type");
2280     if (!Val0->getType()->isIntOrIntVector())
2281       return Error(ID.Loc,
2282                    "constexpr requires integer or integer vector operands");
2283     ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
2284     ID.Kind = ValID::t_Constant;
2285     return false;
2286   }
2287
2288   case lltok::kw_getelementptr:
2289   case lltok::kw_shufflevector:
2290   case lltok::kw_insertelement:
2291   case lltok::kw_extractelement:
2292   case lltok::kw_select: {
2293     unsigned Opc = Lex.getUIntVal();
2294     SmallVector<Constant*, 16> Elts;
2295     bool InBounds = false;
2296     Lex.Lex();
2297     if (Opc == Instruction::GetElementPtr)
2298       InBounds = EatIfPresent(lltok::kw_inbounds);
2299     if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2300         ParseGlobalValueVector(Elts) ||
2301         ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2302       return true;
2303
2304     if (Opc == Instruction::GetElementPtr) {
2305       if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2306         return Error(ID.Loc, "getelementptr requires pointer operand");
2307
2308       if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
2309                                              (Value**)(Elts.data() + 1),
2310                                              Elts.size() - 1))
2311         return Error(ID.Loc, "invalid indices for getelementptr");
2312       ID.ConstantVal = InBounds ?
2313         ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2314                                                Elts.data() + 1,
2315                                                Elts.size() - 1) :
2316         ConstantExpr::getGetElementPtr(Elts[0],
2317                                        Elts.data() + 1, Elts.size() - 1);
2318     } else if (Opc == Instruction::Select) {
2319       if (Elts.size() != 3)
2320         return Error(ID.Loc, "expected three operands to select");
2321       if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2322                                                               Elts[2]))
2323         return Error(ID.Loc, Reason);
2324       ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
2325     } else if (Opc == Instruction::ShuffleVector) {
2326       if (Elts.size() != 3)
2327         return Error(ID.Loc, "expected three operands to shufflevector");
2328       if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2329         return Error(ID.Loc, "invalid operands to shufflevector");
2330       ID.ConstantVal =
2331                  ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
2332     } else if (Opc == Instruction::ExtractElement) {
2333       if (Elts.size() != 2)
2334         return Error(ID.Loc, "expected two operands to extractelement");
2335       if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2336         return Error(ID.Loc, "invalid extractelement operands");
2337       ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
2338     } else {
2339       assert(Opc == Instruction::InsertElement && "Unknown opcode");
2340       if (Elts.size() != 3)
2341       return Error(ID.Loc, "expected three operands to insertelement");
2342       if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2343         return Error(ID.Loc, "invalid insertelement operands");
2344       ID.ConstantVal =
2345                  ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
2346     }
2347
2348     ID.Kind = ValID::t_Constant;
2349     return false;
2350   }
2351   }
2352
2353   Lex.Lex();
2354   return false;
2355 }
2356
2357 /// ParseGlobalValue - Parse a global value with the specified type.
2358 bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2359   V = 0;
2360   ValID ID;
2361   return ParseValID(ID) ||
2362          ConvertGlobalValIDToValue(Ty, ID, V);
2363 }
2364
2365 /// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2366 /// constant.
2367 bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2368                                          Constant *&V) {
2369   if (isa<FunctionType>(Ty))
2370     return Error(ID.Loc, "functions are not values, refer to them as pointers");
2371
2372   switch (ID.Kind) {
2373   default: llvm_unreachable("Unknown ValID!");
2374   case ValID::t_MDNode:
2375   case ValID::t_MDString:
2376     return Error(ID.Loc, "invalid use of metadata");
2377   case ValID::t_LocalID:
2378   case ValID::t_LocalName:
2379     return Error(ID.Loc, "invalid use of function-local name");
2380   case ValID::t_InlineAsm:
2381     return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2382   case ValID::t_GlobalName:
2383     V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2384     return V == 0;
2385   case ValID::t_GlobalID:
2386     V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2387     return V == 0;
2388   case ValID::t_APSInt:
2389     if (!isa<IntegerType>(Ty))
2390       return Error(ID.Loc, "integer constant must have integer type");
2391     ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
2392     V = ConstantInt::get(Context, ID.APSIntVal);
2393     return false;
2394   case ValID::t_APFloat:
2395     if (!Ty->isFloatingPoint() ||
2396         !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2397       return Error(ID.Loc, "floating point constant invalid for type");
2398
2399     // The lexer has no type info, so builds all float and double FP constants
2400     // as double.  Fix this here.  Long double does not need this.
2401     if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
2402         Ty->isFloatTy()) {
2403       bool Ignored;
2404       ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2405                             &Ignored);
2406     }
2407     V = ConstantFP::get(Context, ID.APFloatVal);
2408
2409     if (V->getType() != Ty)
2410       return Error(ID.Loc, "floating point constant does not have type '" +
2411                    Ty->getDescription() + "'");
2412
2413     return false;
2414   case ValID::t_Null:
2415     if (!isa<PointerType>(Ty))
2416       return Error(ID.Loc, "null must be a pointer type");
2417     V = ConstantPointerNull::get(cast<PointerType>(Ty));
2418     return false;
2419   case ValID::t_Undef:
2420     // FIXME: LabelTy should not be a first-class type.
2421     if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
2422         !isa<OpaqueType>(Ty))
2423       return Error(ID.Loc, "invalid type for undef constant");
2424     V = UndefValue::get(Ty);
2425     return false;
2426   case ValID::t_EmptyArray:
2427     if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2428       return Error(ID.Loc, "invalid empty array initializer");
2429     V = UndefValue::get(Ty);
2430     return false;
2431   case ValID::t_Zero:
2432     // FIXME: LabelTy should not be a first-class type.
2433     if (!Ty->isFirstClassType() || Ty->isLabelTy())
2434       return Error(ID.Loc, "invalid type for null constant");
2435     V = Constant::getNullValue(Ty);
2436     return false;
2437   case ValID::t_Constant:
2438     if (ID.ConstantVal->getType() != Ty)
2439       return Error(ID.Loc, "constant expression type mismatch");
2440     V = ID.ConstantVal;
2441     return false;
2442   }
2443 }
2444
2445 /// ConvertGlobalOrMetadataValIDToValue - Apply a type to a ValID to get a fully
2446 /// resolved constant or metadata value.
2447 bool LLParser::ConvertGlobalOrMetadataValIDToValue(const Type *Ty, ValID &ID,
2448                                                    Value *&V) {
2449   switch (ID.Kind) {
2450   case ValID::t_MDNode:
2451     if (!Ty->isMetadataTy())
2452       return Error(ID.Loc, "metadata value must have metadata type");
2453     V = ID.MDNodeVal;
2454     return false;
2455   case ValID::t_MDString:
2456     if (!Ty->isMetadataTy())
2457       return Error(ID.Loc, "metadata value must have metadata type");
2458     V = ID.MDStringVal;
2459     return false;
2460   default:
2461     Constant *C;
2462     if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2463     V = C;
2464     return false;
2465   }
2466 }
2467   
2468
2469 bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
2470   PATypeHolder Type(Type::getVoidTy(Context));
2471   return ParseType(Type) ||
2472          ParseGlobalValue(Type, V);
2473 }
2474
2475 /// ParseGlobalValueVector
2476 ///   ::= /*empty*/
2477 ///   ::= TypeAndValue (',' TypeAndValue)*
2478 bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2479   // Empty list.
2480   if (Lex.getKind() == lltok::rbrace ||
2481       Lex.getKind() == lltok::rsquare ||
2482       Lex.getKind() == lltok::greater ||
2483       Lex.getKind() == lltok::rparen)
2484     return false;
2485
2486   Constant *C;
2487   if (ParseGlobalTypeAndValue(C)) return true;
2488   Elts.push_back(C);
2489
2490   while (EatIfPresent(lltok::comma)) {
2491     if (ParseGlobalTypeAndValue(C)) return true;
2492     Elts.push_back(C);
2493   }
2494
2495   return false;
2496 }
2497
2498
2499 //===----------------------------------------------------------------------===//
2500 // Function Parsing.
2501 //===----------------------------------------------------------------------===//
2502
2503 bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2504                                    PerFunctionState &PFS) {
2505   switch (ID.Kind) {
2506   case ValID::t_LocalID: V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc); break;
2507   case ValID::t_LocalName: V = PFS.GetVal(ID.StrVal, Ty, ID.Loc); break;
2508   case ValID::t_InlineAsm: {
2509     const PointerType *PTy = dyn_cast<PointerType>(Ty);
2510     const FunctionType *FTy = 
2511       PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2512     if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2513       return Error(ID.Loc, "invalid type for inline asm constraint string");
2514     V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
2515     return false;
2516   }
2517   default:
2518     return ConvertGlobalOrMetadataValIDToValue(Ty, ID, V);
2519   }
2520
2521   return V == 0;
2522 }
2523
2524 bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2525   V = 0;
2526   ValID ID;
2527   return ParseValID(ID) ||
2528          ConvertValIDToValue(Ty, ID, V, PFS);
2529 }
2530
2531 bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
2532   PATypeHolder T(Type::getVoidTy(Context));
2533   return ParseType(T) ||
2534          ParseValue(T, V, PFS);
2535 }
2536
2537 bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2538                                       PerFunctionState &PFS) {
2539   Value *V;
2540   Loc = Lex.getLoc();
2541   if (ParseTypeAndValue(V, PFS)) return true;
2542   if (!isa<BasicBlock>(V))
2543     return Error(Loc, "expected a basic block");
2544   BB = cast<BasicBlock>(V);
2545   return false;
2546 }
2547
2548
2549 /// FunctionHeader
2550 ///   ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2551 ///       Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2552 ///       OptionalAlign OptGC
2553 bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2554   // Parse the linkage.
2555   LocTy LinkageLoc = Lex.getLoc();
2556   unsigned Linkage;
2557
2558   unsigned Visibility, RetAttrs;
2559   CallingConv::ID CC;
2560   PATypeHolder RetType(Type::getVoidTy(Context));
2561   LocTy RetTypeLoc = Lex.getLoc();
2562   if (ParseOptionalLinkage(Linkage) ||
2563       ParseOptionalVisibility(Visibility) ||
2564       ParseOptionalCallingConv(CC) ||
2565       ParseOptionalAttrs(RetAttrs, 1) ||
2566       ParseType(RetType, RetTypeLoc, true /*void allowed*/))
2567     return true;
2568
2569   // Verify that the linkage is ok.
2570   switch ((GlobalValue::LinkageTypes)Linkage) {
2571   case GlobalValue::ExternalLinkage:
2572     break; // always ok.
2573   case GlobalValue::DLLImportLinkage:
2574   case GlobalValue::ExternalWeakLinkage:
2575     if (isDefine)
2576       return Error(LinkageLoc, "invalid linkage for function definition");
2577     break;
2578   case GlobalValue::PrivateLinkage:
2579   case GlobalValue::LinkerPrivateLinkage:
2580   case GlobalValue::InternalLinkage:
2581   case GlobalValue::AvailableExternallyLinkage:
2582   case GlobalValue::LinkOnceAnyLinkage:
2583   case GlobalValue::LinkOnceODRLinkage:
2584   case GlobalValue::WeakAnyLinkage:
2585   case GlobalValue::WeakODRLinkage:
2586   case GlobalValue::DLLExportLinkage:
2587     if (!isDefine)
2588       return Error(LinkageLoc, "invalid linkage for function declaration");
2589     break;
2590   case GlobalValue::AppendingLinkage:
2591   case GlobalValue::GhostLinkage:
2592   case GlobalValue::CommonLinkage:
2593     return Error(LinkageLoc, "invalid function linkage type");
2594   }
2595
2596   if (!FunctionType::isValidReturnType(RetType) ||
2597       isa<OpaqueType>(RetType))
2598     return Error(RetTypeLoc, "invalid function return type");
2599
2600   LocTy NameLoc = Lex.getLoc();
2601
2602   std::string FunctionName;
2603   if (Lex.getKind() == lltok::GlobalVar) {
2604     FunctionName = Lex.getStrVal();
2605   } else if (Lex.getKind() == lltok::GlobalID) {     // @42 is ok.
2606     unsigned NameID = Lex.getUIntVal();
2607
2608     if (NameID != NumberedVals.size())
2609       return TokError("function expected to be numbered '%" +
2610                       utostr(NumberedVals.size()) + "'");
2611   } else {
2612     return TokError("expected function name");
2613   }
2614
2615   Lex.Lex();
2616
2617   if (Lex.getKind() != lltok::lparen)
2618     return TokError("expected '(' in function argument list");
2619
2620   std::vector<ArgInfo> ArgList;
2621   bool isVarArg;
2622   unsigned FuncAttrs;
2623   std::string Section;
2624   unsigned Alignment;
2625   std::string GC;
2626
2627   if (ParseArgumentList(ArgList, isVarArg, false) ||
2628       ParseOptionalAttrs(FuncAttrs, 2) ||
2629       (EatIfPresent(lltok::kw_section) &&
2630        ParseStringConstant(Section)) ||
2631       ParseOptionalAlignment(Alignment) ||
2632       (EatIfPresent(lltok::kw_gc) &&
2633        ParseStringConstant(GC)))
2634     return true;
2635
2636   // If the alignment was parsed as an attribute, move to the alignment field.
2637   if (FuncAttrs & Attribute::Alignment) {
2638     Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2639     FuncAttrs &= ~Attribute::Alignment;
2640   }
2641
2642   // Okay, if we got here, the function is syntactically valid.  Convert types
2643   // and do semantic checks.
2644   std::vector<const Type*> ParamTypeList;
2645   SmallVector<AttributeWithIndex, 8> Attrs;
2646   // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
2647   // attributes.
2648   unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2649   if (FuncAttrs & ObsoleteFuncAttrs) {
2650     RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2651     FuncAttrs &= ~ObsoleteFuncAttrs;
2652   }
2653
2654   if (RetAttrs != Attribute::None)
2655     Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
2656
2657   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2658     ParamTypeList.push_back(ArgList[i].Type);
2659     if (ArgList[i].Attrs != Attribute::None)
2660       Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2661   }
2662
2663   if (FuncAttrs != Attribute::None)
2664     Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2665
2666   AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
2667
2668   if (PAL.paramHasAttr(1, Attribute::StructRet) &&
2669       RetType != Type::getVoidTy(Context))
2670     return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2671
2672   const FunctionType *FT =
2673     FunctionType::get(RetType, ParamTypeList, isVarArg);
2674   const PointerType *PFT = PointerType::getUnqual(FT);
2675
2676   Fn = 0;
2677   if (!FunctionName.empty()) {
2678     // If this was a definition of a forward reference, remove the definition
2679     // from the forward reference table and fill in the forward ref.
2680     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2681       ForwardRefVals.find(FunctionName);
2682     if (FRVI != ForwardRefVals.end()) {
2683       Fn = M->getFunction(FunctionName);
2684       ForwardRefVals.erase(FRVI);
2685     } else if ((Fn = M->getFunction(FunctionName))) {
2686       // If this function already exists in the symbol table, then it is
2687       // multiply defined.  We accept a few cases for old backwards compat.
2688       // FIXME: Remove this stuff for LLVM 3.0.
2689       if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2690           (!Fn->isDeclaration() && isDefine)) {
2691         // If the redefinition has different type or different attributes,
2692         // reject it.  If both have bodies, reject it.
2693         return Error(NameLoc, "invalid redefinition of function '" +
2694                      FunctionName + "'");
2695       } else if (Fn->isDeclaration()) {
2696         // Make sure to strip off any argument names so we can't get conflicts.
2697         for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2698              AI != AE; ++AI)
2699           AI->setName("");
2700       }
2701     } else if (M->getNamedValue(FunctionName)) {
2702       return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
2703     }
2704
2705   } else {
2706     // If this is a definition of a forward referenced function, make sure the
2707     // types agree.
2708     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2709       = ForwardRefValIDs.find(NumberedVals.size());
2710     if (I != ForwardRefValIDs.end()) {
2711       Fn = cast<Function>(I->second.first);
2712       if (Fn->getType() != PFT)
2713         return Error(NameLoc, "type of definition and forward reference of '@" +
2714                      utostr(NumberedVals.size()) +"' disagree");
2715       ForwardRefValIDs.erase(I);
2716     }
2717   }
2718
2719   if (Fn == 0)
2720     Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2721   else // Move the forward-reference to the correct spot in the module.
2722     M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2723
2724   if (FunctionName.empty())
2725     NumberedVals.push_back(Fn);
2726
2727   Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2728   Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2729   Fn->setCallingConv(CC);
2730   Fn->setAttributes(PAL);
2731   Fn->setAlignment(Alignment);
2732   Fn->setSection(Section);
2733   if (!GC.empty()) Fn->setGC(GC.c_str());
2734
2735   // Add all of the arguments we parsed to the function.
2736   Function::arg_iterator ArgIt = Fn->arg_begin();
2737   for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
2738     // If we run out of arguments in the Function prototype, exit early.
2739     // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2740     if (ArgIt == Fn->arg_end()) break;
2741     
2742     // If the argument has a name, insert it into the argument symbol table.
2743     if (ArgList[i].Name.empty()) continue;
2744
2745     // Set the name, if it conflicted, it will be auto-renamed.
2746     ArgIt->setName(ArgList[i].Name);
2747
2748     if (ArgIt->getNameStr() != ArgList[i].Name)
2749       return Error(ArgList[i].Loc, "redefinition of argument '%" +
2750                    ArgList[i].Name + "'");
2751   }
2752
2753   return false;
2754 }
2755
2756
2757 /// ParseFunctionBody
2758 ///   ::= '{' BasicBlock+ '}'
2759 ///   ::= 'begin' BasicBlock+ 'end'  // FIXME: remove in LLVM 3.0
2760 ///
2761 bool LLParser::ParseFunctionBody(Function &Fn) {
2762   if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2763     return TokError("expected '{' in function body");
2764   Lex.Lex();  // eat the {.
2765
2766   int FunctionNumber = -1;
2767   if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2768   
2769   PerFunctionState PFS(*this, Fn, FunctionNumber);
2770
2771   while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2772     if (ParseBasicBlock(PFS)) return true;
2773
2774   // Eat the }.
2775   Lex.Lex();
2776
2777   // Verify function is ok.
2778   return PFS.FinishFunction();
2779 }
2780
2781 /// ParseBasicBlock
2782 ///   ::= LabelStr? Instruction*
2783 bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2784   // If this basic block starts out with a name, remember it.
2785   std::string Name;
2786   LocTy NameLoc = Lex.getLoc();
2787   if (Lex.getKind() == lltok::LabelStr) {
2788     Name = Lex.getStrVal();
2789     Lex.Lex();
2790   }
2791
2792   BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2793   if (BB == 0) return true;
2794
2795   std::string NameStr;
2796
2797   // Parse the instructions in this block until we get a terminator.
2798   Instruction *Inst;
2799   SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
2800   do {
2801     // This instruction may have three possibilities for a name: a) none
2802     // specified, b) name specified "%foo =", c) number specified: "%4 =".
2803     LocTy NameLoc = Lex.getLoc();
2804     int NameID = -1;
2805     NameStr = "";
2806
2807     if (Lex.getKind() == lltok::LocalVarID) {
2808       NameID = Lex.getUIntVal();
2809       Lex.Lex();
2810       if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2811         return true;
2812     } else if (Lex.getKind() == lltok::LocalVar ||
2813                // FIXME: REMOVE IN LLVM 3.0
2814                Lex.getKind() == lltok::StringConstant) {
2815       NameStr = Lex.getStrVal();
2816       Lex.Lex();
2817       if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2818         return true;
2819     }
2820
2821     switch (ParseInstruction(Inst, BB, PFS)) {
2822     default: assert(0 && "Unknown ParseInstruction result!");
2823     case InstError: return true;
2824     case InstNormal:
2825       // With a normal result, we check to see if the instruction is followed by
2826       // a comma and metadata.
2827       if (EatIfPresent(lltok::comma))
2828         if (ParseInstructionMetadata(MetadataOnInst))
2829           return true;
2830       break;
2831     case InstExtraComma:
2832       // If the instruction parser ate an extra comma at the end of it, it
2833       // *must* be followed by metadata.
2834       if (ParseInstructionMetadata(MetadataOnInst))
2835         return true;
2836       break;        
2837     }
2838
2839     // Set metadata attached with this instruction.
2840     for (unsigned i = 0, e = MetadataOnInst.size(); i != e; ++i)
2841       Inst->setMetadata(MetadataOnInst[i].first, MetadataOnInst[i].second);
2842     MetadataOnInst.clear();
2843
2844     BB->getInstList().push_back(Inst);
2845
2846     // Set the name on the instruction.
2847     if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2848   } while (!isa<TerminatorInst>(Inst));
2849
2850   return false;
2851 }
2852
2853 //===----------------------------------------------------------------------===//
2854 // Instruction Parsing.
2855 //===----------------------------------------------------------------------===//
2856
2857 /// ParseInstruction - Parse one of the many different instructions.
2858 ///
2859 int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2860                                PerFunctionState &PFS) {
2861   lltok::Kind Token = Lex.getKind();
2862   if (Token == lltok::Eof)
2863     return TokError("found end of file when expecting more instructions");
2864   LocTy Loc = Lex.getLoc();
2865   unsigned KeywordVal = Lex.getUIntVal();
2866   Lex.Lex();  // Eat the keyword.
2867
2868   switch (Token) {
2869   default:                    return Error(Loc, "expected instruction opcode");
2870   // Terminator Instructions.
2871   case lltok::kw_unwind:      Inst = new UnwindInst(Context); return false;
2872   case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
2873   case lltok::kw_ret:         return ParseRet(Inst, BB, PFS);
2874   case lltok::kw_br:          return ParseBr(Inst, PFS);
2875   case lltok::kw_switch:      return ParseSwitch(Inst, PFS);
2876   case lltok::kw_indirectbr:  return ParseIndirectBr(Inst, PFS);
2877   case lltok::kw_invoke:      return ParseInvoke(Inst, PFS);
2878   // Binary Operators.
2879   case lltok::kw_add:
2880   case lltok::kw_sub:
2881   case lltok::kw_mul: {
2882     bool NUW = false;
2883     bool NSW = false;
2884     LocTy ModifierLoc = Lex.getLoc();
2885     if (EatIfPresent(lltok::kw_nuw))
2886       NUW = true;
2887     if (EatIfPresent(lltok::kw_nsw)) {
2888       NSW = true;
2889       if (EatIfPresent(lltok::kw_nuw))
2890         NUW = true;
2891     }
2892     // API compatibility: Accept either integer or floating-point types.
2893     bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2894     if (!Result) {
2895       if (!Inst->getType()->isIntOrIntVector()) {
2896         if (NUW)
2897           return Error(ModifierLoc, "nuw only applies to integer operations");
2898         if (NSW)
2899           return Error(ModifierLoc, "nsw only applies to integer operations");
2900       }
2901       if (NUW)
2902         cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
2903       if (NSW)
2904         cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
2905     }
2906     return Result;
2907   }
2908   case lltok::kw_fadd:
2909   case lltok::kw_fsub:
2910   case lltok::kw_fmul:    return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2911
2912   case lltok::kw_sdiv: {
2913     bool Exact = false;
2914     if (EatIfPresent(lltok::kw_exact))
2915       Exact = true;
2916     bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2917     if (!Result)
2918       if (Exact)
2919         cast<BinaryOperator>(Inst)->setIsExact(true);
2920     return Result;
2921   }
2922
2923   case lltok::kw_udiv:
2924   case lltok::kw_urem:
2925   case lltok::kw_srem:   return ParseArithmetic(Inst, PFS, KeywordVal, 1);
2926   case lltok::kw_fdiv:
2927   case lltok::kw_frem:   return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2928   case lltok::kw_shl:
2929   case lltok::kw_lshr:
2930   case lltok::kw_ashr:
2931   case lltok::kw_and:
2932   case lltok::kw_or:
2933   case lltok::kw_xor:    return ParseLogical(Inst, PFS, KeywordVal);
2934   case lltok::kw_icmp:
2935   case lltok::kw_fcmp:   return ParseCompare(Inst, PFS, KeywordVal);
2936   // Casts.
2937   case lltok::kw_trunc:
2938   case lltok::kw_zext:
2939   case lltok::kw_sext:
2940   case lltok::kw_fptrunc:
2941   case lltok::kw_fpext:
2942   case lltok::kw_bitcast:
2943   case lltok::kw_uitofp:
2944   case lltok::kw_sitofp:
2945   case lltok::kw_fptoui:
2946   case lltok::kw_fptosi:
2947   case lltok::kw_inttoptr:
2948   case lltok::kw_ptrtoint:       return ParseCast(Inst, PFS, KeywordVal);
2949   // Other.
2950   case lltok::kw_select:         return ParseSelect(Inst, PFS);
2951   case lltok::kw_va_arg:         return ParseVA_Arg(Inst, PFS);
2952   case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2953   case lltok::kw_insertelement:  return ParseInsertElement(Inst, PFS);
2954   case lltok::kw_shufflevector:  return ParseShuffleVector(Inst, PFS);
2955   case lltok::kw_phi:            return ParsePHI(Inst, PFS);
2956   case lltok::kw_call:           return ParseCall(Inst, PFS, false);
2957   case lltok::kw_tail:           return ParseCall(Inst, PFS, true);
2958   // Memory.
2959   case lltok::kw_alloca:         return ParseAlloc(Inst, PFS);
2960   case lltok::kw_malloc:         return ParseAlloc(Inst, PFS, BB, false);
2961   case lltok::kw_free:           return ParseFree(Inst, PFS, BB);
2962   case lltok::kw_load:           return ParseLoad(Inst, PFS, false);
2963   case lltok::kw_store:          return ParseStore(Inst, PFS, false);
2964   case lltok::kw_volatile:
2965     if (EatIfPresent(lltok::kw_load))
2966       return ParseLoad(Inst, PFS, true);
2967     else if (EatIfPresent(lltok::kw_store))
2968       return ParseStore(Inst, PFS, true);
2969     else
2970       return TokError("expected 'load' or 'store'");
2971   case lltok::kw_getresult:     return ParseGetResult(Inst, PFS);
2972   case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2973   case lltok::kw_extractvalue:  return ParseExtractValue(Inst, PFS);
2974   case lltok::kw_insertvalue:   return ParseInsertValue(Inst, PFS);
2975   }
2976 }
2977
2978 /// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2979 bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
2980   if (Opc == Instruction::FCmp) {
2981     switch (Lex.getKind()) {
2982     default: TokError("expected fcmp predicate (e.g. 'oeq')");
2983     case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2984     case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2985     case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2986     case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2987     case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2988     case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2989     case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2990     case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2991     case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2992     case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2993     case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2994     case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2995     case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2996     case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2997     case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2998     case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2999     }
3000   } else {
3001     switch (Lex.getKind()) {
3002     default: TokError("expected icmp predicate (e.g. 'eq')");
3003     case lltok::kw_eq:  P = CmpInst::ICMP_EQ; break;
3004     case lltok::kw_ne:  P = CmpInst::ICMP_NE; break;
3005     case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3006     case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3007     case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3008     case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3009     case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3010     case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3011     case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3012     case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3013     }
3014   }
3015   Lex.Lex();
3016   return false;
3017 }
3018
3019 //===----------------------------------------------------------------------===//
3020 // Terminator Instructions.
3021 //===----------------------------------------------------------------------===//
3022
3023 /// ParseRet - Parse a return instruction.
3024 ///   ::= 'ret' void (',' !dbg, !1)*
3025 ///   ::= 'ret' TypeAndValue (',' !dbg, !1)*
3026 ///   ::= 'ret' TypeAndValue (',' TypeAndValue)+  (',' !dbg, !1)*
3027 ///         [[obsolete: LLVM 3.0]]
3028 int LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3029                        PerFunctionState &PFS) {
3030   PATypeHolder Ty(Type::getVoidTy(Context));
3031   if (ParseType(Ty, true /*void allowed*/)) return true;
3032
3033   if (Ty->isVoidTy()) {
3034     Inst = ReturnInst::Create(Context);
3035     return false;
3036   }
3037
3038   Value *RV;
3039   if (ParseValue(Ty, RV, PFS)) return true;
3040
3041   bool ExtraComma = false;
3042   if (EatIfPresent(lltok::comma)) {
3043     // Parse optional custom metadata, e.g. !dbg
3044     if (Lex.getKind() == lltok::MetadataVar) {
3045       ExtraComma = true;
3046     } else {
3047       // The normal case is one return value.
3048       // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3049       // use of 'ret {i32,i32} {i32 1, i32 2}'
3050       SmallVector<Value*, 8> RVs;
3051       RVs.push_back(RV);
3052
3053       do {
3054         // If optional custom metadata, e.g. !dbg is seen then this is the 
3055         // end of MRV.
3056         if (Lex.getKind() == lltok::MetadataVar)
3057           break;
3058         if (ParseTypeAndValue(RV, PFS)) return true;
3059         RVs.push_back(RV);
3060       } while (EatIfPresent(lltok::comma));
3061
3062       RV = UndefValue::get(PFS.getFunction().getReturnType());
3063       for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
3064         Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3065         BB->getInstList().push_back(I);
3066         RV = I;
3067       }
3068     }
3069   }
3070
3071   Inst = ReturnInst::Create(Context, RV);
3072   return ExtraComma ? InstExtraComma : InstNormal;
3073 }
3074
3075
3076 /// ParseBr
3077 ///   ::= 'br' TypeAndValue
3078 ///   ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3079 bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3080   LocTy Loc, Loc2;
3081   Value *Op0;
3082   BasicBlock *Op1, *Op2;
3083   if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
3084
3085   if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3086     Inst = BranchInst::Create(BB);
3087     return false;
3088   }
3089
3090   if (Op0->getType() != Type::getInt1Ty(Context))
3091     return Error(Loc, "branch condition must have 'i1' type");
3092
3093   if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
3094       ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
3095       ParseToken(lltok::comma, "expected ',' after true destination") ||
3096       ParseTypeAndBasicBlock(Op2, Loc2, PFS))
3097     return true;
3098
3099   Inst = BranchInst::Create(Op1, Op2, Op0);
3100   return false;
3101 }
3102
3103 /// ParseSwitch
3104 ///  Instruction
3105 ///    ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3106 ///  JumpTable
3107 ///    ::= (TypeAndValue ',' TypeAndValue)*
3108 bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3109   LocTy CondLoc, BBLoc;
3110   Value *Cond;
3111   BasicBlock *DefaultBB;
3112   if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3113       ParseToken(lltok::comma, "expected ',' after switch condition") ||
3114       ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
3115       ParseToken(lltok::lsquare, "expected '[' with switch table"))
3116     return true;
3117
3118   if (!isa<IntegerType>(Cond->getType()))
3119     return Error(CondLoc, "switch condition must have integer type");
3120
3121   // Parse the jump table pairs.
3122   SmallPtrSet<Value*, 32> SeenCases;
3123   SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3124   while (Lex.getKind() != lltok::rsquare) {
3125     Value *Constant;
3126     BasicBlock *DestBB;
3127
3128     if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3129         ParseToken(lltok::comma, "expected ',' after case value") ||
3130         ParseTypeAndBasicBlock(DestBB, PFS))
3131       return true;
3132     
3133     if (!SeenCases.insert(Constant))
3134       return Error(CondLoc, "duplicate case value in switch");
3135     if (!isa<ConstantInt>(Constant))
3136       return Error(CondLoc, "case value is not a constant integer");
3137
3138     Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
3139   }
3140
3141   Lex.Lex();  // Eat the ']'.
3142
3143   SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
3144   for (unsigned i = 0, e = Table.size(); i != e; ++i)
3145     SI->addCase(Table[i].first, Table[i].second);
3146   Inst = SI;
3147   return false;
3148 }
3149
3150 /// ParseIndirectBr
3151 ///  Instruction
3152 ///    ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3153 bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
3154   LocTy AddrLoc;
3155   Value *Address;
3156   if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
3157       ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3158       ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
3159     return true;
3160   
3161   if (!isa<PointerType>(Address->getType()))
3162     return Error(AddrLoc, "indirectbr address must have pointer type");
3163   
3164   // Parse the destination list.
3165   SmallVector<BasicBlock*, 16> DestList;
3166   
3167   if (Lex.getKind() != lltok::rsquare) {
3168     BasicBlock *DestBB;
3169     if (ParseTypeAndBasicBlock(DestBB, PFS))
3170       return true;
3171     DestList.push_back(DestBB);
3172     
3173     while (EatIfPresent(lltok::comma)) {
3174       if (ParseTypeAndBasicBlock(DestBB, PFS))
3175         return true;
3176       DestList.push_back(DestBB);
3177     }
3178   }
3179   
3180   if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3181     return true;
3182
3183   IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
3184   for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3185     IBI->addDestination(DestList[i]);
3186   Inst = IBI;
3187   return false;
3188 }
3189
3190
3191 /// ParseInvoke
3192 ///   ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3193 ///       OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3194 bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3195   LocTy CallLoc = Lex.getLoc();
3196   unsigned RetAttrs, FnAttrs;
3197   CallingConv::ID CC;
3198   PATypeHolder RetType(Type::getVoidTy(Context));
3199   LocTy RetTypeLoc;
3200   ValID CalleeID;
3201   SmallVector<ParamInfo, 16> ArgList;
3202
3203   BasicBlock *NormalBB, *UnwindBB;
3204   if (ParseOptionalCallingConv(CC) ||
3205       ParseOptionalAttrs(RetAttrs, 1) ||
3206       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
3207       ParseValID(CalleeID) ||
3208       ParseParameterList(ArgList, PFS) ||
3209       ParseOptionalAttrs(FnAttrs, 2) ||
3210       ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
3211       ParseTypeAndBasicBlock(NormalBB, PFS) ||
3212       ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
3213       ParseTypeAndBasicBlock(UnwindBB, PFS))
3214     return true;
3215
3216   // If RetType is a non-function pointer type, then this is the short syntax
3217   // for the call, which means that RetType is just the return type.  Infer the
3218   // rest of the function argument types from the arguments that are present.
3219   const PointerType *PFTy = 0;
3220   const FunctionType *Ty = 0;
3221   if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3222       !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3223     // Pull out the types of all of the arguments...
3224     std::vector<const Type*> ParamTypes;
3225     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3226       ParamTypes.push_back(ArgList[i].V->getType());
3227
3228     if (!FunctionType::isValidReturnType(RetType))
3229       return Error(RetTypeLoc, "Invalid result type for LLVM function");
3230
3231     Ty = FunctionType::get(RetType, ParamTypes, false);
3232     PFTy = PointerType::getUnqual(Ty);
3233   }
3234
3235   // Look up the callee.
3236   Value *Callee;
3237   if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
3238
3239   // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3240   // function attributes.
3241   unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3242   if (FnAttrs & ObsoleteFuncAttrs) {
3243     RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3244     FnAttrs &= ~ObsoleteFuncAttrs;
3245   }
3246
3247   // Set up the Attributes for the function.
3248   SmallVector<AttributeWithIndex, 8> Attrs;
3249   if (RetAttrs != Attribute::None)
3250     Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
3251
3252   SmallVector<Value*, 8> Args;
3253
3254   // Loop through FunctionType's arguments and ensure they are specified
3255   // correctly.  Also, gather any parameter attributes.
3256   FunctionType::param_iterator I = Ty->param_begin();
3257   FunctionType::param_iterator E = Ty->param_end();
3258   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3259     const Type *ExpectedTy = 0;
3260     if (I != E) {
3261       ExpectedTy = *I++;
3262     } else if (!Ty->isVarArg()) {
3263       return Error(ArgList[i].Loc, "too many arguments specified");
3264     }
3265
3266     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3267       return Error(ArgList[i].Loc, "argument is not of expected type '" +
3268                    ExpectedTy->getDescription() + "'");
3269     Args.push_back(ArgList[i].V);
3270     if (ArgList[i].Attrs != Attribute::None)
3271       Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3272   }
3273
3274   if (I != E)
3275     return Error(CallLoc, "not enough parameters specified for call");
3276
3277   if (FnAttrs != Attribute::None)
3278     Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3279
3280   // Finish off the Attributes and check them
3281   AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
3282
3283   InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
3284                                       Args.begin(), Args.end());
3285   II->setCallingConv(CC);
3286   II->setAttributes(PAL);
3287   Inst = II;
3288   return false;
3289 }
3290
3291
3292
3293 //===----------------------------------------------------------------------===//
3294 // Binary Operators.
3295 //===----------------------------------------------------------------------===//
3296
3297 /// ParseArithmetic
3298 ///  ::= ArithmeticOps TypeAndValue ',' Value
3299 ///
3300 /// If OperandType is 0, then any FP or integer operand is allowed.  If it is 1,
3301 /// then any integer operand is allowed, if it is 2, any fp operand is allowed.
3302 bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
3303                                unsigned Opc, unsigned OperandType) {
3304   LocTy Loc; Value *LHS, *RHS;
3305   if (ParseTypeAndValue(LHS, Loc, PFS) ||
3306       ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3307       ParseValue(LHS->getType(), RHS, PFS))
3308     return true;
3309
3310   bool Valid;
3311   switch (OperandType) {
3312   default: llvm_unreachable("Unknown operand type!");
3313   case 0: // int or FP.
3314     Valid = LHS->getType()->isIntOrIntVector() ||
3315             LHS->getType()->isFPOrFPVector();
3316     break;
3317   case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3318   case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3319   }
3320
3321   if (!Valid)
3322     return Error(Loc, "invalid operand type for instruction");
3323
3324   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3325   return false;
3326 }
3327
3328 /// ParseLogical
3329 ///  ::= ArithmeticOps TypeAndValue ',' Value {
3330 bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3331                             unsigned Opc) {
3332   LocTy Loc; Value *LHS, *RHS;
3333   if (ParseTypeAndValue(LHS, Loc, PFS) ||
3334       ParseToken(lltok::comma, "expected ',' in logical operation") ||
3335       ParseValue(LHS->getType(), RHS, PFS))
3336     return true;
3337
3338   if (!LHS->getType()->isIntOrIntVector())
3339     return Error(Loc,"instruction requires integer or integer vector operands");
3340
3341   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3342   return false;
3343 }
3344
3345
3346 /// ParseCompare
3347 ///  ::= 'icmp' IPredicates TypeAndValue ',' Value
3348 ///  ::= 'fcmp' FPredicates TypeAndValue ',' Value
3349 bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3350                             unsigned Opc) {
3351   // Parse the integer/fp comparison predicate.
3352   LocTy Loc;
3353   unsigned Pred;
3354   Value *LHS, *RHS;
3355   if (ParseCmpPredicate(Pred, Opc) ||
3356       ParseTypeAndValue(LHS, Loc, PFS) ||
3357       ParseToken(lltok::comma, "expected ',' after compare value") ||
3358       ParseValue(LHS->getType(), RHS, PFS))
3359     return true;
3360
3361   if (Opc == Instruction::FCmp) {
3362     if (!LHS->getType()->isFPOrFPVector())
3363       return Error(Loc, "fcmp requires floating point operands");
3364     Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
3365   } else {
3366     assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
3367     if (!LHS->getType()->isIntOrIntVector() &&
3368         !isa<PointerType>(LHS->getType()))
3369       return Error(Loc, "icmp requires integer operands");
3370     Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
3371   }
3372   return false;
3373 }
3374
3375 //===----------------------------------------------------------------------===//
3376 // Other Instructions.
3377 //===----------------------------------------------------------------------===//
3378
3379
3380 /// ParseCast
3381 ///   ::= CastOpc TypeAndValue 'to' Type
3382 bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3383                          unsigned Opc) {
3384   LocTy Loc;  Value *Op;
3385   PATypeHolder DestTy(Type::getVoidTy(Context));
3386   if (ParseTypeAndValue(Op, Loc, PFS) ||
3387       ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3388       ParseType(DestTy))
3389     return true;
3390
3391   if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3392     CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
3393     return Error(Loc, "invalid cast opcode for cast from '" +
3394                  Op->getType()->getDescription() + "' to '" +
3395                  DestTy->getDescription() + "'");
3396   }
3397   Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3398   return false;
3399 }
3400
3401 /// ParseSelect
3402 ///   ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3403 bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3404   LocTy Loc;
3405   Value *Op0, *Op1, *Op2;
3406   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3407       ParseToken(lltok::comma, "expected ',' after select condition") ||
3408       ParseTypeAndValue(Op1, PFS) ||
3409       ParseToken(lltok::comma, "expected ',' after select value") ||
3410       ParseTypeAndValue(Op2, PFS))
3411     return true;
3412
3413   if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3414     return Error(Loc, Reason);
3415
3416   Inst = SelectInst::Create(Op0, Op1, Op2);
3417   return false;
3418 }
3419
3420 /// ParseVA_Arg
3421 ///   ::= 'va_arg' TypeAndValue ',' Type
3422 bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
3423   Value *Op;
3424   PATypeHolder EltTy(Type::getVoidTy(Context));
3425   LocTy TypeLoc;
3426   if (ParseTypeAndValue(Op, PFS) ||
3427       ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
3428       ParseType(EltTy, TypeLoc))
3429     return true;
3430
3431   if (!EltTy->isFirstClassType())
3432     return Error(TypeLoc, "va_arg requires operand with first class type");
3433
3434   Inst = new VAArgInst(Op, EltTy);
3435   return false;
3436 }
3437
3438 /// ParseExtractElement
3439 ///   ::= 'extractelement' TypeAndValue ',' TypeAndValue
3440 bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3441   LocTy Loc;
3442   Value *Op0, *Op1;
3443   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3444       ParseToken(lltok::comma, "expected ',' after extract value") ||
3445       ParseTypeAndValue(Op1, PFS))
3446     return true;
3447
3448   if (!ExtractElementInst::isValidOperands(Op0, Op1))
3449     return Error(Loc, "invalid extractelement operands");
3450
3451   Inst = ExtractElementInst::Create(Op0, Op1);
3452   return false;
3453 }
3454
3455 /// ParseInsertElement
3456 ///   ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3457 bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3458   LocTy Loc;
3459   Value *Op0, *Op1, *Op2;
3460   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3461       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3462       ParseTypeAndValue(Op1, PFS) ||
3463       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3464       ParseTypeAndValue(Op2, PFS))
3465     return true;
3466
3467   if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
3468     return Error(Loc, "invalid insertelement operands");
3469
3470   Inst = InsertElementInst::Create(Op0, Op1, Op2);
3471   return false;
3472 }
3473
3474 /// ParseShuffleVector
3475 ///   ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3476 bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3477   LocTy Loc;
3478   Value *Op0, *Op1, *Op2;
3479   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3480       ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3481       ParseTypeAndValue(Op1, PFS) ||
3482       ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3483       ParseTypeAndValue(Op2, PFS))
3484     return true;
3485
3486   if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3487     return Error(Loc, "invalid extractelement operands");
3488
3489   Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3490   return false;
3491 }
3492
3493 /// ParsePHI
3494 ///   ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
3495 int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
3496   PATypeHolder Ty(Type::getVoidTy(Context));
3497   Value *Op0, *Op1;
3498   LocTy TypeLoc = Lex.getLoc();
3499
3500   if (ParseType(Ty) ||
3501       ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3502       ParseValue(Ty, Op0, PFS) ||
3503       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3504       ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
3505       ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3506     return true;
3507
3508   bool AteExtraComma = false;
3509   SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3510   while (1) {
3511     PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
3512
3513     if (!EatIfPresent(lltok::comma))
3514       break;
3515
3516     if (Lex.getKind() == lltok::MetadataVar) {
3517       AteExtraComma = true;
3518       break;
3519     }
3520
3521     if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3522         ParseValue(Ty, Op0, PFS) ||
3523         ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3524         ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
3525         ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3526       return true;
3527   }
3528
3529   if (!Ty->isFirstClassType())
3530     return Error(TypeLoc, "phi node must have first class type");
3531
3532   PHINode *PN = PHINode::Create(Ty);
3533   PN->reserveOperandSpace(PHIVals.size());
3534   for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3535     PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3536   Inst = PN;
3537   return AteExtraComma ? InstExtraComma : InstNormal;
3538 }
3539
3540 /// ParseCall
3541 ///   ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3542 ///       ParameterList OptionalAttrs
3543 bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3544                          bool isTail) {
3545   unsigned RetAttrs, FnAttrs;
3546   CallingConv::ID CC;
3547   PATypeHolder RetType(Type::getVoidTy(Context));
3548   LocTy RetTypeLoc;
3549   ValID CalleeID;
3550   SmallVector<ParamInfo, 16> ArgList;
3551   LocTy CallLoc = Lex.getLoc();
3552
3553   if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3554       ParseOptionalCallingConv(CC) ||
3555       ParseOptionalAttrs(RetAttrs, 1) ||
3556       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
3557       ParseValID(CalleeID) ||
3558       ParseParameterList(ArgList, PFS) ||
3559       ParseOptionalAttrs(FnAttrs, 2))
3560     return true;
3561
3562   // If RetType is a non-function pointer type, then this is the short syntax
3563   // for the call, which means that RetType is just the return type.  Infer the
3564   // rest of the function argument types from the arguments that are present.
3565   const PointerType *PFTy = 0;
3566   const FunctionType *Ty = 0;
3567   if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3568       !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3569     // Pull out the types of all of the arguments...
3570     std::vector<const Type*> ParamTypes;
3571     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3572       ParamTypes.push_back(ArgList[i].V->getType());
3573
3574     if (!FunctionType::isValidReturnType(RetType))
3575       return Error(RetTypeLoc, "Invalid result type for LLVM function");
3576
3577     Ty = FunctionType::get(RetType, ParamTypes, false);
3578     PFTy = PointerType::getUnqual(Ty);
3579   }
3580
3581   // Look up the callee.
3582   Value *Callee;
3583   if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
3584
3585   // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3586   // function attributes.
3587   unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3588   if (FnAttrs & ObsoleteFuncAttrs) {
3589     RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3590     FnAttrs &= ~ObsoleteFuncAttrs;
3591   }
3592
3593   // Set up the Attributes for the function.
3594   SmallVector<AttributeWithIndex, 8> Attrs;
3595   if (RetAttrs != Attribute::None)
3596     Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
3597
3598   SmallVector<Value*, 8> Args;
3599
3600   // Loop through FunctionType's arguments and ensure they are specified
3601   // correctly.  Also, gather any parameter attributes.
3602   FunctionType::param_iterator I = Ty->param_begin();
3603   FunctionType::param_iterator E = Ty->param_end();
3604   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3605     const Type *ExpectedTy = 0;
3606     if (I != E) {
3607       ExpectedTy = *I++;
3608     } else if (!Ty->isVarArg()) {
3609       return Error(ArgList[i].Loc, "too many arguments specified");
3610     }
3611
3612     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3613       return Error(ArgList[i].Loc, "argument is not of expected type '" +
3614                    ExpectedTy->getDescription() + "'");
3615     Args.push_back(ArgList[i].V);
3616     if (ArgList[i].Attrs != Attribute::None)
3617       Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3618   }
3619
3620   if (I != E)
3621     return Error(CallLoc, "not enough parameters specified for call");
3622
3623   if (FnAttrs != Attribute::None)
3624     Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3625
3626   // Finish off the Attributes and check them
3627   AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
3628
3629   CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3630   CI->setTailCall(isTail);
3631   CI->setCallingConv(CC);
3632   CI->setAttributes(PAL);
3633   Inst = CI;
3634   return false;
3635 }
3636
3637 //===----------------------------------------------------------------------===//
3638 // Memory Instructions.
3639 //===----------------------------------------------------------------------===//
3640
3641 /// ParseAlloc
3642 ///   ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3643 ///   ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
3644 int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
3645                          BasicBlock* BB, bool isAlloca) {
3646   PATypeHolder Ty(Type::getVoidTy(Context));
3647   Value *Size = 0;
3648   LocTy SizeLoc;
3649   unsigned Alignment = 0;
3650   if (ParseType(Ty)) return true;
3651
3652   bool AteExtraComma = false;
3653   if (EatIfPresent(lltok::comma)) {
3654     if (Lex.getKind() == lltok::kw_align) {
3655       if (ParseOptionalAlignment(Alignment)) return true;
3656     } else if (Lex.getKind() == lltok::MetadataVar) {
3657       AteExtraComma = true;
3658     } else {
3659       if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3660           ParseOptionalCommaAlign(Alignment, AteExtraComma))
3661         return true;
3662     }
3663   }
3664
3665   if (Size && Size->getType() != Type::getInt32Ty(Context))
3666     return Error(SizeLoc, "element count must be i32");
3667
3668   if (isAlloca) {
3669     Inst = new AllocaInst(Ty, Size, Alignment);
3670     return AteExtraComma ? InstExtraComma : InstNormal;
3671   }
3672
3673   // Autoupgrade old malloc instruction to malloc call.
3674   // FIXME: Remove in LLVM 3.0.
3675   const Type *IntPtrTy = Type::getInt32Ty(Context);
3676   Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3677   AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
3678   if (!MallocF)
3679     // Prototype malloc as "void *(int32)".
3680     // This function is renamed as "malloc" in ValidateEndOfModule().
3681     MallocF = cast<Function>(
3682        M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
3683   Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
3684 return AteExtraComma ? InstExtraComma : InstNormal;
3685 }
3686
3687 /// ParseFree
3688 ///   ::= 'free' TypeAndValue
3689 bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3690                          BasicBlock* BB) {
3691   Value *Val; LocTy Loc;
3692   if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3693   if (!isa<PointerType>(Val->getType()))
3694     return Error(Loc, "operand to free must be a pointer");
3695   Inst = CallInst::CreateFree(Val, BB);
3696   return false;
3697 }
3698
3699 /// ParseLoad
3700 ///   ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
3701 int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3702                         bool isVolatile) {
3703   Value *Val; LocTy Loc;
3704   unsigned Alignment = 0;
3705   bool AteExtraComma = false;
3706   if (ParseTypeAndValue(Val, Loc, PFS) ||
3707       ParseOptionalCommaAlign(Alignment, AteExtraComma))
3708     return true;
3709
3710   if (!isa<PointerType>(Val->getType()) ||
3711       !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3712     return Error(Loc, "load operand must be a pointer to a first class type");
3713
3714   Inst = new LoadInst(Val, "", isVolatile, Alignment);
3715   return AteExtraComma ? InstExtraComma : InstNormal;
3716 }
3717
3718 /// ParseStore
3719 ///   ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
3720 int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3721                          bool isVolatile) {
3722   Value *Val, *Ptr; LocTy Loc, PtrLoc;
3723   unsigned Alignment = 0;
3724   bool AteExtraComma = false;
3725   if (ParseTypeAndValue(Val, Loc, PFS) ||
3726       ParseToken(lltok::comma, "expected ',' after store operand") ||
3727       ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3728       ParseOptionalCommaAlign(Alignment, AteExtraComma))
3729     return true;
3730
3731   if (!isa<PointerType>(Ptr->getType()))
3732     return Error(PtrLoc, "store operand must be a pointer");
3733   if (!Val->getType()->isFirstClassType())
3734     return Error(Loc, "store operand must be a first class value");
3735   if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3736     return Error(Loc, "stored value and pointer type do not match");
3737
3738   Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3739   return AteExtraComma ? InstExtraComma : InstNormal;
3740 }
3741
3742 /// ParseGetResult
3743 ///   ::= 'getresult' TypeAndValue ',' i32
3744 /// FIXME: Remove support for getresult in LLVM 3.0
3745 bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3746   Value *Val; LocTy ValLoc, EltLoc;
3747   unsigned Element;
3748   if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3749       ParseToken(lltok::comma, "expected ',' after getresult operand") ||
3750       ParseUInt32(Element, EltLoc))
3751     return true;
3752
3753   if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3754     return Error(ValLoc, "getresult inst requires an aggregate operand");
3755   if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3756     return Error(EltLoc, "invalid getresult index for value");
3757   Inst = ExtractValueInst::Create(Val, Element);
3758   return false;
3759 }
3760
3761 /// ParseGetElementPtr
3762 ///   ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
3763 int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3764   Value *Ptr, *Val; LocTy Loc, EltLoc;
3765
3766   bool InBounds = EatIfPresent(lltok::kw_inbounds);
3767
3768   if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
3769
3770   if (!isa<PointerType>(Ptr->getType()))
3771     return Error(Loc, "base of getelementptr must be a pointer");
3772
3773   SmallVector<Value*, 16> Indices;
3774   bool AteExtraComma = false;
3775   while (EatIfPresent(lltok::comma)) {
3776     if (Lex.getKind() == lltok::MetadataVar) {
3777       AteExtraComma = true;
3778       break;
3779     }
3780     if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
3781     if (!isa<IntegerType>(Val->getType()))
3782       return Error(EltLoc, "getelementptr index must be an integer");
3783     Indices.push_back(Val);
3784   }
3785
3786   if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3787                                          Indices.begin(), Indices.end()))
3788     return Error(Loc, "invalid getelementptr indices");
3789   Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
3790   if (InBounds)
3791     cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
3792   return AteExtraComma ? InstExtraComma : InstNormal;
3793 }
3794
3795 /// ParseExtractValue
3796 ///   ::= 'extractvalue' TypeAndValue (',' uint32)+
3797 int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3798   Value *Val; LocTy Loc;
3799   SmallVector<unsigned, 4> Indices;
3800   bool AteExtraComma;
3801   if (ParseTypeAndValue(Val, Loc, PFS) ||
3802       ParseIndexList(Indices, AteExtraComma))
3803     return true;
3804
3805   if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3806     return Error(Loc, "extractvalue operand must be array or struct");
3807
3808   if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3809                                         Indices.end()))
3810     return Error(Loc, "invalid indices for extractvalue");
3811   Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3812   return AteExtraComma ? InstExtraComma : InstNormal;
3813 }
3814
3815 /// ParseInsertValue
3816 ///   ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3817 int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3818   Value *Val0, *Val1; LocTy Loc0, Loc1;
3819   SmallVector<unsigned, 4> Indices;
3820   bool AteExtraComma;
3821   if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3822       ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3823       ParseTypeAndValue(Val1, Loc1, PFS) ||
3824       ParseIndexList(Indices, AteExtraComma))
3825     return true;
3826   
3827   if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3828     return Error(Loc0, "extractvalue operand must be array or struct");
3829
3830   if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3831                                         Indices.end()))
3832     return Error(Loc0, "invalid indices for insertvalue");
3833   Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3834   return AteExtraComma ? InstExtraComma : InstNormal;
3835 }
3836
3837 //===----------------------------------------------------------------------===//
3838 // Embedded metadata.
3839 //===----------------------------------------------------------------------===//
3840
3841 /// ParseMDNodeVector
3842 ///   ::= Element (',' Element)*
3843 /// Element
3844 ///   ::= 'null' | TypeAndValue
3845 bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
3846   do {
3847     // Null is a special case since it is typeless.
3848     if (EatIfPresent(lltok::kw_null)) {
3849       Elts.push_back(0);
3850       continue;
3851     }
3852     
3853     Value *V = 0;
3854     PATypeHolder Ty(Type::getVoidTy(Context));
3855     ValID ID;
3856     if (ParseType(Ty) || ParseValID(ID) ||
3857         ConvertGlobalOrMetadataValIDToValue(Ty, ID, V))
3858       return true;
3859     
3860     Elts.push_back(V);
3861   } while (EatIfPresent(lltok::comma));
3862
3863   return false;
3864 }