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