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