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