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