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