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