DI: Require subprogram definitions to be distinct
[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/ADT/STLExtras.h"
17 #include "llvm/AsmParser/SlotMapping.h"
18 #include "llvm/IR/AutoUpgrade.h"
19 #include "llvm/IR/CallingConv.h"
20 #include "llvm/IR/Constants.h"
21 #include "llvm/IR/DebugInfo.h"
22 #include "llvm/IR/DebugInfoMetadata.h"
23 #include "llvm/IR/DerivedTypes.h"
24 #include "llvm/IR/InlineAsm.h"
25 #include "llvm/IR/Instructions.h"
26 #include "llvm/IR/LLVMContext.h"
27 #include "llvm/IR/Module.h"
28 #include "llvm/IR/Operator.h"
29 #include "llvm/IR/ValueSymbolTable.h"
30 #include "llvm/Support/Dwarf.h"
31 #include "llvm/Support/ErrorHandling.h"
32 #include "llvm/Support/SaveAndRestore.h"
33 #include "llvm/Support/raw_ostream.h"
34 using namespace llvm;
35
36 static std::string getTypeString(Type *T) {
37   std::string Result;
38   raw_string_ostream Tmp(Result);
39   Tmp << *T;
40   return Tmp.str();
41 }
42
43 /// Run: module ::= toplevelentity*
44 bool LLParser::Run() {
45   // Prime the lexer.
46   Lex.Lex();
47
48   return ParseTopLevelEntities() ||
49          ValidateEndOfModule();
50 }
51
52 bool LLParser::parseStandaloneConstantValue(Constant *&C,
53                                             const SlotMapping *Slots) {
54   restoreParsingState(Slots);
55   Lex.Lex();
56
57   Type *Ty = nullptr;
58   if (ParseType(Ty) || parseConstantValue(Ty, C))
59     return true;
60   if (Lex.getKind() != lltok::Eof)
61     return Error(Lex.getLoc(), "expected end of string");
62   return false;
63 }
64
65 void LLParser::restoreParsingState(const SlotMapping *Slots) {
66   if (!Slots)
67     return;
68   NumberedVals = Slots->GlobalValues;
69   NumberedMetadata = Slots->MetadataNodes;
70   for (const auto &I : Slots->NamedTypes)
71     NamedTypes.insert(
72         std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
73   for (const auto &I : Slots->Types)
74     NumberedTypes.insert(
75         std::make_pair(I.first, std::make_pair(I.second, LocTy())));
76 }
77
78 /// ValidateEndOfModule - Do final validity and sanity checks at the end of the
79 /// module.
80 bool LLParser::ValidateEndOfModule() {
81   for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
82     UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
83
84   // Handle any function attribute group forward references.
85   for (std::map<Value*, std::vector<unsigned> >::iterator
86          I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
87          I != E; ++I) {
88     Value *V = I->first;
89     std::vector<unsigned> &Vec = I->second;
90     AttrBuilder B;
91
92     for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
93          VI != VE; ++VI)
94       B.merge(NumberedAttrBuilders[*VI]);
95
96     if (Function *Fn = dyn_cast<Function>(V)) {
97       AttributeSet AS = Fn->getAttributes();
98       AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
99       AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
100                                AS.getFnAttributes());
101
102       FnAttrs.merge(B);
103
104       // If the alignment was parsed as an attribute, move to the alignment
105       // field.
106       if (FnAttrs.hasAlignmentAttr()) {
107         Fn->setAlignment(FnAttrs.getAlignment());
108         FnAttrs.removeAttribute(Attribute::Alignment);
109       }
110
111       AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
112                             AttributeSet::get(Context,
113                                               AttributeSet::FunctionIndex,
114                                               FnAttrs));
115       Fn->setAttributes(AS);
116     } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
117       AttributeSet AS = CI->getAttributes();
118       AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
119       AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
120                                AS.getFnAttributes());
121       FnAttrs.merge(B);
122       AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
123                             AttributeSet::get(Context,
124                                               AttributeSet::FunctionIndex,
125                                               FnAttrs));
126       CI->setAttributes(AS);
127     } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
128       AttributeSet AS = II->getAttributes();
129       AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
130       AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
131                                AS.getFnAttributes());
132       FnAttrs.merge(B);
133       AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
134                             AttributeSet::get(Context,
135                                               AttributeSet::FunctionIndex,
136                                               FnAttrs));
137       II->setAttributes(AS);
138     } else {
139       llvm_unreachable("invalid object with forward attribute group reference");
140     }
141   }
142
143   // If there are entries in ForwardRefBlockAddresses at this point, the
144   // function was never defined.
145   if (!ForwardRefBlockAddresses.empty())
146     return Error(ForwardRefBlockAddresses.begin()->first.Loc,
147                  "expected function name in blockaddress");
148
149   for (const auto &NT : NumberedTypes)
150     if (NT.second.second.isValid())
151       return Error(NT.second.second,
152                    "use of undefined type '%" + Twine(NT.first) + "'");
153
154   for (StringMap<std::pair<Type*, LocTy> >::iterator I =
155        NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
156     if (I->second.second.isValid())
157       return Error(I->second.second,
158                    "use of undefined type named '" + I->getKey() + "'");
159
160   if (!ForwardRefComdats.empty())
161     return Error(ForwardRefComdats.begin()->second,
162                  "use of undefined comdat '$" +
163                      ForwardRefComdats.begin()->first + "'");
164
165   if (!ForwardRefVals.empty())
166     return Error(ForwardRefVals.begin()->second.second,
167                  "use of undefined value '@" + ForwardRefVals.begin()->first +
168                  "'");
169
170   if (!ForwardRefValIDs.empty())
171     return Error(ForwardRefValIDs.begin()->second.second,
172                  "use of undefined value '@" +
173                  Twine(ForwardRefValIDs.begin()->first) + "'");
174
175   if (!ForwardRefMDNodes.empty())
176     return Error(ForwardRefMDNodes.begin()->second.second,
177                  "use of undefined metadata '!" +
178                  Twine(ForwardRefMDNodes.begin()->first) + "'");
179
180   // Resolve metadata cycles.
181   for (auto &N : NumberedMetadata) {
182     if (N.second && !N.second->isResolved())
183       N.second->resolveCycles();
184   }
185
186   // Look for intrinsic functions and CallInst that need to be upgraded
187   for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
188     UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
189
190   UpgradeDebugInfo(*M);
191
192   if (!Slots)
193     return false;
194   // Initialize the slot mapping.
195   // Because by this point we've parsed and validated everything, we can "steal"
196   // the mapping from LLParser as it doesn't need it anymore.
197   Slots->GlobalValues = std::move(NumberedVals);
198   Slots->MetadataNodes = std::move(NumberedMetadata);
199   for (const auto &I : NamedTypes)
200     Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
201   for (const auto &I : NumberedTypes)
202     Slots->Types.insert(std::make_pair(I.first, I.second.first));
203
204   return false;
205 }
206
207 //===----------------------------------------------------------------------===//
208 // Top-Level Entities
209 //===----------------------------------------------------------------------===//
210
211 bool LLParser::ParseTopLevelEntities() {
212   while (1) {
213     switch (Lex.getKind()) {
214     default:         return TokError("expected top-level entity");
215     case lltok::Eof: return false;
216     case lltok::kw_declare: if (ParseDeclare()) return true; break;
217     case lltok::kw_define:  if (ParseDefine()) return true; break;
218     case lltok::kw_module:  if (ParseModuleAsm()) return true; break;
219     case lltok::kw_target:  if (ParseTargetDefinition()) return true; break;
220     case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
221     case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
222     case lltok::LocalVar:   if (ParseNamedType()) return true; break;
223     case lltok::GlobalID:   if (ParseUnnamedGlobal()) return true; break;
224     case lltok::GlobalVar:  if (ParseNamedGlobal()) return true; break;
225     case lltok::ComdatVar:  if (parseComdat()) return true; break;
226     case lltok::exclaim:    if (ParseStandaloneMetadata()) return true; break;
227     case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
228
229     // The Global variable production with no name can have many different
230     // optional leading prefixes, the production is:
231     // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
232     //               OptionalThreadLocal OptionalAddrSpace OptionalUnnamedAddr
233     //               ('constant'|'global') ...
234     case lltok::kw_private:             // OptionalLinkage
235     case lltok::kw_internal:            // OptionalLinkage
236     case lltok::kw_weak:                // OptionalLinkage
237     case lltok::kw_weak_odr:            // OptionalLinkage
238     case lltok::kw_linkonce:            // OptionalLinkage
239     case lltok::kw_linkonce_odr:        // OptionalLinkage
240     case lltok::kw_appending:           // OptionalLinkage
241     case lltok::kw_common:              // OptionalLinkage
242     case lltok::kw_extern_weak:         // OptionalLinkage
243     case lltok::kw_external:            // OptionalLinkage
244     case lltok::kw_default:             // OptionalVisibility
245     case lltok::kw_hidden:              // OptionalVisibility
246     case lltok::kw_protected:           // OptionalVisibility
247     case lltok::kw_dllimport:           // OptionalDLLStorageClass
248     case lltok::kw_dllexport:           // OptionalDLLStorageClass
249     case lltok::kw_thread_local:        // OptionalThreadLocal
250     case lltok::kw_addrspace:           // OptionalAddrSpace
251     case lltok::kw_constant:            // GlobalType
252     case lltok::kw_global: {            // GlobalType
253       unsigned Linkage, Visibility, DLLStorageClass;
254       bool UnnamedAddr;
255       GlobalVariable::ThreadLocalMode TLM;
256       bool HasLinkage;
257       if (ParseOptionalLinkage(Linkage, HasLinkage) ||
258           ParseOptionalVisibility(Visibility) ||
259           ParseOptionalDLLStorageClass(DLLStorageClass) ||
260           ParseOptionalThreadLocal(TLM) ||
261           parseOptionalUnnamedAddr(UnnamedAddr) ||
262           ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
263                       DLLStorageClass, TLM, UnnamedAddr))
264         return true;
265       break;
266     }
267
268     case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
269     case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
270     case lltok::kw_uselistorder_bb:
271                                  if (ParseUseListOrderBB()) return true; break;
272     }
273   }
274 }
275
276
277 /// toplevelentity
278 ///   ::= 'module' 'asm' STRINGCONSTANT
279 bool LLParser::ParseModuleAsm() {
280   assert(Lex.getKind() == lltok::kw_module);
281   Lex.Lex();
282
283   std::string AsmStr;
284   if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
285       ParseStringConstant(AsmStr)) return true;
286
287   M->appendModuleInlineAsm(AsmStr);
288   return false;
289 }
290
291 /// toplevelentity
292 ///   ::= 'target' 'triple' '=' STRINGCONSTANT
293 ///   ::= 'target' 'datalayout' '=' STRINGCONSTANT
294 bool LLParser::ParseTargetDefinition() {
295   assert(Lex.getKind() == lltok::kw_target);
296   std::string Str;
297   switch (Lex.Lex()) {
298   default: return TokError("unknown target property");
299   case lltok::kw_triple:
300     Lex.Lex();
301     if (ParseToken(lltok::equal, "expected '=' after target triple") ||
302         ParseStringConstant(Str))
303       return true;
304     M->setTargetTriple(Str);
305     return false;
306   case lltok::kw_datalayout:
307     Lex.Lex();
308     if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
309         ParseStringConstant(Str))
310       return true;
311     M->setDataLayout(Str);
312     return false;
313   }
314 }
315
316 /// toplevelentity
317 ///   ::= 'deplibs' '=' '[' ']'
318 ///   ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
319 /// FIXME: Remove in 4.0. Currently parse, but ignore.
320 bool LLParser::ParseDepLibs() {
321   assert(Lex.getKind() == lltok::kw_deplibs);
322   Lex.Lex();
323   if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
324       ParseToken(lltok::lsquare, "expected '=' after deplibs"))
325     return true;
326
327   if (EatIfPresent(lltok::rsquare))
328     return false;
329
330   do {
331     std::string Str;
332     if (ParseStringConstant(Str)) return true;
333   } while (EatIfPresent(lltok::comma));
334
335   return ParseToken(lltok::rsquare, "expected ']' at end of list");
336 }
337
338 /// ParseUnnamedType:
339 ///   ::= LocalVarID '=' 'type' type
340 bool LLParser::ParseUnnamedType() {
341   LocTy TypeLoc = Lex.getLoc();
342   unsigned TypeID = Lex.getUIntVal();
343   Lex.Lex(); // eat LocalVarID;
344
345   if (ParseToken(lltok::equal, "expected '=' after name") ||
346       ParseToken(lltok::kw_type, "expected 'type' after '='"))
347     return true;
348
349   Type *Result = nullptr;
350   if (ParseStructDefinition(TypeLoc, "",
351                             NumberedTypes[TypeID], Result)) return true;
352
353   if (!isa<StructType>(Result)) {
354     std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
355     if (Entry.first)
356       return Error(TypeLoc, "non-struct types may not be recursive");
357     Entry.first = Result;
358     Entry.second = SMLoc();
359   }
360
361   return false;
362 }
363
364
365 /// toplevelentity
366 ///   ::= LocalVar '=' 'type' type
367 bool LLParser::ParseNamedType() {
368   std::string Name = Lex.getStrVal();
369   LocTy NameLoc = Lex.getLoc();
370   Lex.Lex();  // eat LocalVar.
371
372   if (ParseToken(lltok::equal, "expected '=' after name") ||
373       ParseToken(lltok::kw_type, "expected 'type' after name"))
374     return true;
375
376   Type *Result = nullptr;
377   if (ParseStructDefinition(NameLoc, Name,
378                             NamedTypes[Name], Result)) return true;
379
380   if (!isa<StructType>(Result)) {
381     std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
382     if (Entry.first)
383       return Error(NameLoc, "non-struct types may not be recursive");
384     Entry.first = Result;
385     Entry.second = SMLoc();
386   }
387
388   return false;
389 }
390
391
392 /// toplevelentity
393 ///   ::= 'declare' FunctionHeader
394 bool LLParser::ParseDeclare() {
395   assert(Lex.getKind() == lltok::kw_declare);
396   Lex.Lex();
397
398   Function *F;
399   return ParseFunctionHeader(F, false);
400 }
401
402 /// toplevelentity
403 ///   ::= 'define' FunctionHeader (!dbg !56)* '{' ...
404 bool LLParser::ParseDefine() {
405   assert(Lex.getKind() == lltok::kw_define);
406   Lex.Lex();
407
408   Function *F;
409   return ParseFunctionHeader(F, true) ||
410          ParseOptionalFunctionMetadata(*F) ||
411          ParseFunctionBody(*F);
412 }
413
414 /// ParseGlobalType
415 ///   ::= 'constant'
416 ///   ::= 'global'
417 bool LLParser::ParseGlobalType(bool &IsConstant) {
418   if (Lex.getKind() == lltok::kw_constant)
419     IsConstant = true;
420   else if (Lex.getKind() == lltok::kw_global)
421     IsConstant = false;
422   else {
423     IsConstant = false;
424     return TokError("expected 'global' or 'constant'");
425   }
426   Lex.Lex();
427   return false;
428 }
429
430 /// ParseUnnamedGlobal:
431 ///   OptionalVisibility ALIAS ...
432 ///   OptionalLinkage OptionalVisibility OptionalDLLStorageClass
433 ///                                                     ...   -> global variable
434 ///   GlobalID '=' OptionalVisibility ALIAS ...
435 ///   GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
436 ///                                                     ...   -> global variable
437 bool LLParser::ParseUnnamedGlobal() {
438   unsigned VarID = NumberedVals.size();
439   std::string Name;
440   LocTy NameLoc = Lex.getLoc();
441
442   // Handle the GlobalID form.
443   if (Lex.getKind() == lltok::GlobalID) {
444     if (Lex.getUIntVal() != VarID)
445       return Error(Lex.getLoc(), "variable expected to be numbered '%" +
446                    Twine(VarID) + "'");
447     Lex.Lex(); // eat GlobalID;
448
449     if (ParseToken(lltok::equal, "expected '=' after name"))
450       return true;
451   }
452
453   bool HasLinkage;
454   unsigned Linkage, Visibility, DLLStorageClass;
455   GlobalVariable::ThreadLocalMode TLM;
456   bool UnnamedAddr;
457   if (ParseOptionalLinkage(Linkage, HasLinkage) ||
458       ParseOptionalVisibility(Visibility) ||
459       ParseOptionalDLLStorageClass(DLLStorageClass) ||
460       ParseOptionalThreadLocal(TLM) ||
461       parseOptionalUnnamedAddr(UnnamedAddr))
462     return true;
463
464   if (Lex.getKind() != lltok::kw_alias)
465     return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
466                        DLLStorageClass, TLM, UnnamedAddr);
467   return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
468                     UnnamedAddr);
469 }
470
471 /// ParseNamedGlobal:
472 ///   GlobalVar '=' OptionalVisibility ALIAS ...
473 ///   GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
474 ///                                                     ...   -> global variable
475 bool LLParser::ParseNamedGlobal() {
476   assert(Lex.getKind() == lltok::GlobalVar);
477   LocTy NameLoc = Lex.getLoc();
478   std::string Name = Lex.getStrVal();
479   Lex.Lex();
480
481   bool HasLinkage;
482   unsigned Linkage, Visibility, DLLStorageClass;
483   GlobalVariable::ThreadLocalMode TLM;
484   bool UnnamedAddr;
485   if (ParseToken(lltok::equal, "expected '=' in global variable") ||
486       ParseOptionalLinkage(Linkage, HasLinkage) ||
487       ParseOptionalVisibility(Visibility) ||
488       ParseOptionalDLLStorageClass(DLLStorageClass) ||
489       ParseOptionalThreadLocal(TLM) ||
490       parseOptionalUnnamedAddr(UnnamedAddr))
491     return true;
492
493   if (Lex.getKind() != lltok::kw_alias)
494     return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
495                        DLLStorageClass, TLM, UnnamedAddr);
496
497   return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
498                     UnnamedAddr);
499 }
500
501 bool LLParser::parseComdat() {
502   assert(Lex.getKind() == lltok::ComdatVar);
503   std::string Name = Lex.getStrVal();
504   LocTy NameLoc = Lex.getLoc();
505   Lex.Lex();
506
507   if (ParseToken(lltok::equal, "expected '=' here"))
508     return true;
509
510   if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
511     return TokError("expected comdat type");
512
513   Comdat::SelectionKind SK;
514   switch (Lex.getKind()) {
515   default:
516     return TokError("unknown selection kind");
517   case lltok::kw_any:
518     SK = Comdat::Any;
519     break;
520   case lltok::kw_exactmatch:
521     SK = Comdat::ExactMatch;
522     break;
523   case lltok::kw_largest:
524     SK = Comdat::Largest;
525     break;
526   case lltok::kw_noduplicates:
527     SK = Comdat::NoDuplicates;
528     break;
529   case lltok::kw_samesize:
530     SK = Comdat::SameSize;
531     break;
532   }
533   Lex.Lex();
534
535   // See if the comdat was forward referenced, if so, use the comdat.
536   Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
537   Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
538   if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
539     return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
540
541   Comdat *C;
542   if (I != ComdatSymTab.end())
543     C = &I->second;
544   else
545     C = M->getOrInsertComdat(Name);
546   C->setSelectionKind(SK);
547
548   return false;
549 }
550
551 // MDString:
552 //   ::= '!' STRINGCONSTANT
553 bool LLParser::ParseMDString(MDString *&Result) {
554   std::string Str;
555   if (ParseStringConstant(Str)) return true;
556   llvm::UpgradeMDStringConstant(Str);
557   Result = MDString::get(Context, Str);
558   return false;
559 }
560
561 // MDNode:
562 //   ::= '!' MDNodeNumber
563 bool LLParser::ParseMDNodeID(MDNode *&Result) {
564   // !{ ..., !42, ... }
565   unsigned MID = 0;
566   if (ParseUInt32(MID))
567     return true;
568
569   // If not a forward reference, just return it now.
570   if (NumberedMetadata.count(MID)) {
571     Result = NumberedMetadata[MID];
572     return false;
573   }
574
575   // Otherwise, create MDNode forward reference.
576   auto &FwdRef = ForwardRefMDNodes[MID];
577   FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
578
579   Result = FwdRef.first.get();
580   NumberedMetadata[MID].reset(Result);
581   return false;
582 }
583
584 /// ParseNamedMetadata:
585 ///   !foo = !{ !1, !2 }
586 bool LLParser::ParseNamedMetadata() {
587   assert(Lex.getKind() == lltok::MetadataVar);
588   std::string Name = Lex.getStrVal();
589   Lex.Lex();
590
591   if (ParseToken(lltok::equal, "expected '=' here") ||
592       ParseToken(lltok::exclaim, "Expected '!' here") ||
593       ParseToken(lltok::lbrace, "Expected '{' here"))
594     return true;
595
596   NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
597   if (Lex.getKind() != lltok::rbrace)
598     do {
599       if (ParseToken(lltok::exclaim, "Expected '!' here"))
600         return true;
601
602       MDNode *N = nullptr;
603       if (ParseMDNodeID(N)) return true;
604       NMD->addOperand(N);
605     } while (EatIfPresent(lltok::comma));
606
607   return ParseToken(lltok::rbrace, "expected end of metadata node");
608 }
609
610 /// ParseStandaloneMetadata:
611 ///   !42 = !{...}
612 bool LLParser::ParseStandaloneMetadata() {
613   assert(Lex.getKind() == lltok::exclaim);
614   Lex.Lex();
615   unsigned MetadataID = 0;
616
617   MDNode *Init;
618   if (ParseUInt32(MetadataID) ||
619       ParseToken(lltok::equal, "expected '=' here"))
620     return true;
621
622   // Detect common error, from old metadata syntax.
623   if (Lex.getKind() == lltok::Type)
624     return TokError("unexpected type in metadata definition");
625
626   bool IsDistinct = EatIfPresent(lltok::kw_distinct);
627   if (Lex.getKind() == lltok::MetadataVar) {
628     if (ParseSpecializedMDNode(Init, IsDistinct))
629       return true;
630   } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
631              ParseMDTuple(Init, IsDistinct))
632     return true;
633
634   // See if this was forward referenced, if so, handle it.
635   auto FI = ForwardRefMDNodes.find(MetadataID);
636   if (FI != ForwardRefMDNodes.end()) {
637     FI->second.first->replaceAllUsesWith(Init);
638     ForwardRefMDNodes.erase(FI);
639
640     assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
641   } else {
642     if (NumberedMetadata.count(MetadataID))
643       return TokError("Metadata id is already used");
644     NumberedMetadata[MetadataID].reset(Init);
645   }
646
647   return false;
648 }
649
650 static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
651   return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
652          (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
653 }
654
655 /// ParseAlias:
656 ///   ::= GlobalVar '=' OptionalLinkage OptionalVisibility
657 ///                     OptionalDLLStorageClass OptionalThreadLocal
658 ///                     OptionalUnnamedAddr 'alias' Aliasee
659 ///
660 /// Aliasee
661 ///   ::= TypeAndValue
662 ///
663 /// Everything through OptionalUnnamedAddr has already been parsed.
664 ///
665 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
666                           unsigned Visibility, unsigned DLLStorageClass,
667                           GlobalVariable::ThreadLocalMode TLM,
668                           bool UnnamedAddr) {
669   assert(Lex.getKind() == lltok::kw_alias);
670   Lex.Lex();
671
672   GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
673
674   if(!GlobalAlias::isValidLinkage(Linkage))
675     return Error(NameLoc, "invalid linkage type for alias");
676
677   if (!isValidVisibilityForLinkage(Visibility, L))
678     return Error(NameLoc,
679                  "symbol with local linkage must have default visibility");
680
681   Constant *Aliasee;
682   LocTy AliaseeLoc = Lex.getLoc();
683   if (Lex.getKind() != lltok::kw_bitcast &&
684       Lex.getKind() != lltok::kw_getelementptr &&
685       Lex.getKind() != lltok::kw_addrspacecast &&
686       Lex.getKind() != lltok::kw_inttoptr) {
687     if (ParseGlobalTypeAndValue(Aliasee))
688       return true;
689   } else {
690     // The bitcast dest type is not present, it is implied by the dest type.
691     ValID ID;
692     if (ParseValID(ID))
693       return true;
694     if (ID.Kind != ValID::t_Constant)
695       return Error(AliaseeLoc, "invalid aliasee");
696     Aliasee = ID.ConstantVal;
697   }
698
699   Type *AliaseeType = Aliasee->getType();
700   auto *PTy = dyn_cast<PointerType>(AliaseeType);
701   if (!PTy)
702     return Error(AliaseeLoc, "An alias must have pointer type");
703
704   // Okay, create the alias but do not insert it into the module yet.
705   std::unique_ptr<GlobalAlias> GA(
706       GlobalAlias::create(PTy, (GlobalValue::LinkageTypes)Linkage, Name,
707                           Aliasee, /*Parent*/ nullptr));
708   GA->setThreadLocalMode(TLM);
709   GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
710   GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
711   GA->setUnnamedAddr(UnnamedAddr);
712
713   if (Name.empty())
714     NumberedVals.push_back(GA.get());
715
716   // See if this value already exists in the symbol table.  If so, it is either
717   // a redefinition or a definition of a forward reference.
718   if (GlobalValue *Val = M->getNamedValue(Name)) {
719     // See if this was a redefinition.  If so, there is no entry in
720     // ForwardRefVals.
721     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
722       I = ForwardRefVals.find(Name);
723     if (I == ForwardRefVals.end())
724       return Error(NameLoc, "redefinition of global named '@" + Name + "'");
725
726     // Otherwise, this was a definition of forward ref.  Verify that types
727     // agree.
728     if (Val->getType() != GA->getType())
729       return Error(NameLoc,
730               "forward reference and definition of alias have different types");
731
732     // If they agree, just RAUW the old value with the alias and remove the
733     // forward ref info.
734     Val->replaceAllUsesWith(GA.get());
735     Val->eraseFromParent();
736     ForwardRefVals.erase(I);
737   }
738
739   // Insert into the module, we know its name won't collide now.
740   M->getAliasList().push_back(GA.get());
741   assert(GA->getName() == Name && "Should not be a name conflict!");
742
743   // The module owns this now
744   GA.release();
745
746   return false;
747 }
748
749 /// ParseGlobal
750 ///   ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
751 ///       OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
752 ///       OptionalExternallyInitialized GlobalType Type Const
753 ///   ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
754 ///       OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
755 ///       OptionalExternallyInitialized GlobalType Type Const
756 ///
757 /// Everything up to and including OptionalUnnamedAddr has been parsed
758 /// already.
759 ///
760 bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
761                            unsigned Linkage, bool HasLinkage,
762                            unsigned Visibility, unsigned DLLStorageClass,
763                            GlobalVariable::ThreadLocalMode TLM,
764                            bool UnnamedAddr) {
765   if (!isValidVisibilityForLinkage(Visibility, Linkage))
766     return Error(NameLoc,
767                  "symbol with local linkage must have default visibility");
768
769   unsigned AddrSpace;
770   bool IsConstant, IsExternallyInitialized;
771   LocTy IsExternallyInitializedLoc;
772   LocTy TyLoc;
773
774   Type *Ty = nullptr;
775   if (ParseOptionalAddrSpace(AddrSpace) ||
776       ParseOptionalToken(lltok::kw_externally_initialized,
777                          IsExternallyInitialized,
778                          &IsExternallyInitializedLoc) ||
779       ParseGlobalType(IsConstant) ||
780       ParseType(Ty, TyLoc))
781     return true;
782
783   // If the linkage is specified and is external, then no initializer is
784   // present.
785   Constant *Init = nullptr;
786   if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
787                       Linkage != GlobalValue::ExternalLinkage)) {
788     if (ParseGlobalValue(Ty, Init))
789       return true;
790   }
791
792   if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
793     return Error(TyLoc, "invalid type for global variable");
794
795   GlobalValue *GVal = nullptr;
796
797   // See if the global was forward referenced, if so, use the global.
798   if (!Name.empty()) {
799     GVal = M->getNamedValue(Name);
800     if (GVal) {
801       if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
802         return Error(NameLoc, "redefinition of global '@" + Name + "'");
803     }
804   } else {
805     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
806       I = ForwardRefValIDs.find(NumberedVals.size());
807     if (I != ForwardRefValIDs.end()) {
808       GVal = I->second.first;
809       ForwardRefValIDs.erase(I);
810     }
811   }
812
813   GlobalVariable *GV;
814   if (!GVal) {
815     GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
816                             Name, nullptr, GlobalVariable::NotThreadLocal,
817                             AddrSpace);
818   } else {
819     if (GVal->getValueType() != Ty)
820       return Error(TyLoc,
821             "forward reference and definition of global have different types");
822
823     GV = cast<GlobalVariable>(GVal);
824
825     // Move the forward-reference to the correct spot in the module.
826     M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
827   }
828
829   if (Name.empty())
830     NumberedVals.push_back(GV);
831
832   // Set the parsed properties on the global.
833   if (Init)
834     GV->setInitializer(Init);
835   GV->setConstant(IsConstant);
836   GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
837   GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
838   GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
839   GV->setExternallyInitialized(IsExternallyInitialized);
840   GV->setThreadLocalMode(TLM);
841   GV->setUnnamedAddr(UnnamedAddr);
842
843   // Parse attributes on the global.
844   while (Lex.getKind() == lltok::comma) {
845     Lex.Lex();
846
847     if (Lex.getKind() == lltok::kw_section) {
848       Lex.Lex();
849       GV->setSection(Lex.getStrVal());
850       if (ParseToken(lltok::StringConstant, "expected global section string"))
851         return true;
852     } else if (Lex.getKind() == lltok::kw_align) {
853       unsigned Alignment;
854       if (ParseOptionalAlignment(Alignment)) return true;
855       GV->setAlignment(Alignment);
856     } else {
857       Comdat *C;
858       if (parseOptionalComdat(Name, C))
859         return true;
860       if (C)
861         GV->setComdat(C);
862       else
863         return TokError("unknown global variable property!");
864     }
865   }
866
867   return false;
868 }
869
870 /// ParseUnnamedAttrGrp
871 ///   ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
872 bool LLParser::ParseUnnamedAttrGrp() {
873   assert(Lex.getKind() == lltok::kw_attributes);
874   LocTy AttrGrpLoc = Lex.getLoc();
875   Lex.Lex();
876
877   if (Lex.getKind() != lltok::AttrGrpID)
878     return TokError("expected attribute group id");
879
880   unsigned VarID = Lex.getUIntVal();
881   std::vector<unsigned> unused;
882   LocTy BuiltinLoc;
883   Lex.Lex();
884
885   if (ParseToken(lltok::equal, "expected '=' here") ||
886       ParseToken(lltok::lbrace, "expected '{' here") ||
887       ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
888                                  BuiltinLoc) ||
889       ParseToken(lltok::rbrace, "expected end of attribute group"))
890     return true;
891
892   if (!NumberedAttrBuilders[VarID].hasAttributes())
893     return Error(AttrGrpLoc, "attribute group has no attributes");
894
895   return false;
896 }
897
898 /// ParseFnAttributeValuePairs
899 ///   ::= <attr> | <attr> '=' <value>
900 bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
901                                           std::vector<unsigned> &FwdRefAttrGrps,
902                                           bool inAttrGrp, LocTy &BuiltinLoc) {
903   bool HaveError = false;
904
905   B.clear();
906
907   while (true) {
908     lltok::Kind Token = Lex.getKind();
909     if (Token == lltok::kw_builtin)
910       BuiltinLoc = Lex.getLoc();
911     switch (Token) {
912     default:
913       if (!inAttrGrp) return HaveError;
914       return Error(Lex.getLoc(), "unterminated attribute group");
915     case lltok::rbrace:
916       // Finished.
917       return false;
918
919     case lltok::AttrGrpID: {
920       // Allow a function to reference an attribute group:
921       //
922       //   define void @foo() #1 { ... }
923       if (inAttrGrp)
924         HaveError |=
925           Error(Lex.getLoc(),
926               "cannot have an attribute group reference in an attribute group");
927
928       unsigned AttrGrpNum = Lex.getUIntVal();
929       if (inAttrGrp) break;
930
931       // Save the reference to the attribute group. We'll fill it in later.
932       FwdRefAttrGrps.push_back(AttrGrpNum);
933       break;
934     }
935     // Target-dependent attributes:
936     case lltok::StringConstant: {
937       if (ParseStringAttribute(B))
938         return true;
939       continue;
940     }
941
942     // Target-independent attributes:
943     case lltok::kw_align: {
944       // As a hack, we allow function alignment to be initially parsed as an
945       // attribute on a function declaration/definition or added to an attribute
946       // group and later moved to the alignment field.
947       unsigned Alignment;
948       if (inAttrGrp) {
949         Lex.Lex();
950         if (ParseToken(lltok::equal, "expected '=' here") ||
951             ParseUInt32(Alignment))
952           return true;
953       } else {
954         if (ParseOptionalAlignment(Alignment))
955           return true;
956       }
957       B.addAlignmentAttr(Alignment);
958       continue;
959     }
960     case lltok::kw_alignstack: {
961       unsigned Alignment;
962       if (inAttrGrp) {
963         Lex.Lex();
964         if (ParseToken(lltok::equal, "expected '=' here") ||
965             ParseUInt32(Alignment))
966           return true;
967       } else {
968         if (ParseOptionalStackAlignment(Alignment))
969           return true;
970       }
971       B.addStackAlignmentAttr(Alignment);
972       continue;
973     }
974     case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
975     case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
976     case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
977     case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
978     case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
979     case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
980     case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
981     case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
982     case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
983     case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
984     case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
985     case lltok::kw_noimplicitfloat:
986       B.addAttribute(Attribute::NoImplicitFloat); break;
987     case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
988     case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
989     case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
990     case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
991     case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
992     case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
993     case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
994     case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
995     case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
996     case lltok::kw_returns_twice:
997       B.addAttribute(Attribute::ReturnsTwice); break;
998     case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
999     case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1000     case lltok::kw_sspstrong:
1001       B.addAttribute(Attribute::StackProtectStrong); break;
1002     case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1003     case lltok::kw_sanitize_address:
1004       B.addAttribute(Attribute::SanitizeAddress); break;
1005     case lltok::kw_sanitize_thread:
1006       B.addAttribute(Attribute::SanitizeThread); break;
1007     case lltok::kw_sanitize_memory:
1008       B.addAttribute(Attribute::SanitizeMemory); break;
1009     case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
1010
1011     // Error handling.
1012     case lltok::kw_inreg:
1013     case lltok::kw_signext:
1014     case lltok::kw_zeroext:
1015       HaveError |=
1016         Error(Lex.getLoc(),
1017               "invalid use of attribute on a function");
1018       break;
1019     case lltok::kw_byval:
1020     case lltok::kw_dereferenceable:
1021     case lltok::kw_dereferenceable_or_null:
1022     case lltok::kw_inalloca:
1023     case lltok::kw_nest:
1024     case lltok::kw_noalias:
1025     case lltok::kw_nocapture:
1026     case lltok::kw_nonnull:
1027     case lltok::kw_returned:
1028     case lltok::kw_sret:
1029       HaveError |=
1030         Error(Lex.getLoc(),
1031               "invalid use of parameter-only attribute on a function");
1032       break;
1033     }
1034
1035     Lex.Lex();
1036   }
1037 }
1038
1039 //===----------------------------------------------------------------------===//
1040 // GlobalValue Reference/Resolution Routines.
1041 //===----------------------------------------------------------------------===//
1042
1043 /// GetGlobalVal - Get a value with the specified name or ID, creating a
1044 /// forward reference record if needed.  This can return null if the value
1045 /// exists but does not have the right type.
1046 GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
1047                                     LocTy Loc) {
1048   PointerType *PTy = dyn_cast<PointerType>(Ty);
1049   if (!PTy) {
1050     Error(Loc, "global variable reference must have pointer type");
1051     return nullptr;
1052   }
1053
1054   // Look this name up in the normal function symbol table.
1055   GlobalValue *Val =
1056     cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
1057
1058   // If this is a forward reference for the value, see if we already created a
1059   // forward ref record.
1060   if (!Val) {
1061     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
1062       I = ForwardRefVals.find(Name);
1063     if (I != ForwardRefVals.end())
1064       Val = I->second.first;
1065   }
1066
1067   // If we have the value in the symbol table or fwd-ref table, return it.
1068   if (Val) {
1069     if (Val->getType() == Ty) return Val;
1070     Error(Loc, "'@" + Name + "' defined with type '" +
1071           getTypeString(Val->getType()) + "'");
1072     return nullptr;
1073   }
1074
1075   // Otherwise, create a new forward reference for this value and remember it.
1076   GlobalValue *FwdVal;
1077   if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1078     FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1079   else
1080     FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1081                                 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1082                                 nullptr, GlobalVariable::NotThreadLocal,
1083                                 PTy->getAddressSpace());
1084
1085   ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1086   return FwdVal;
1087 }
1088
1089 GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1090   PointerType *PTy = dyn_cast<PointerType>(Ty);
1091   if (!PTy) {
1092     Error(Loc, "global variable reference must have pointer type");
1093     return nullptr;
1094   }
1095
1096   GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
1097
1098   // If this is a forward reference for the value, see if we already created a
1099   // forward ref record.
1100   if (!Val) {
1101     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1102       I = ForwardRefValIDs.find(ID);
1103     if (I != ForwardRefValIDs.end())
1104       Val = I->second.first;
1105   }
1106
1107   // If we have the value in the symbol table or fwd-ref table, return it.
1108   if (Val) {
1109     if (Val->getType() == Ty) return Val;
1110     Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
1111           getTypeString(Val->getType()) + "'");
1112     return nullptr;
1113   }
1114
1115   // Otherwise, create a new forward reference for this value and remember it.
1116   GlobalValue *FwdVal;
1117   if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1118     FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
1119   else
1120     FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1121                                 GlobalValue::ExternalWeakLinkage, nullptr, "");
1122
1123   ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1124   return FwdVal;
1125 }
1126
1127
1128 //===----------------------------------------------------------------------===//
1129 // Comdat Reference/Resolution Routines.
1130 //===----------------------------------------------------------------------===//
1131
1132 Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1133   // Look this name up in the comdat symbol table.
1134   Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1135   Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1136   if (I != ComdatSymTab.end())
1137     return &I->second;
1138
1139   // Otherwise, create a new forward reference for this value and remember it.
1140   Comdat *C = M->getOrInsertComdat(Name);
1141   ForwardRefComdats[Name] = Loc;
1142   return C;
1143 }
1144
1145
1146 //===----------------------------------------------------------------------===//
1147 // Helper Routines.
1148 //===----------------------------------------------------------------------===//
1149
1150 /// ParseToken - If the current token has the specified kind, eat it and return
1151 /// success.  Otherwise, emit the specified error and return failure.
1152 bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1153   if (Lex.getKind() != T)
1154     return TokError(ErrMsg);
1155   Lex.Lex();
1156   return false;
1157 }
1158
1159 /// ParseStringConstant
1160 ///   ::= StringConstant
1161 bool LLParser::ParseStringConstant(std::string &Result) {
1162   if (Lex.getKind() != lltok::StringConstant)
1163     return TokError("expected string constant");
1164   Result = Lex.getStrVal();
1165   Lex.Lex();
1166   return false;
1167 }
1168
1169 /// ParseUInt32
1170 ///   ::= uint32
1171 bool LLParser::ParseUInt32(unsigned &Val) {
1172   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1173     return TokError("expected integer");
1174   uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1175   if (Val64 != unsigned(Val64))
1176     return TokError("expected 32-bit integer (too large)");
1177   Val = Val64;
1178   Lex.Lex();
1179   return false;
1180 }
1181
1182 /// ParseUInt64
1183 ///   ::= uint64
1184 bool LLParser::ParseUInt64(uint64_t &Val) {
1185   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1186     return TokError("expected integer");
1187   Val = Lex.getAPSIntVal().getLimitedValue();
1188   Lex.Lex();
1189   return false;
1190 }
1191
1192 /// ParseTLSModel
1193 ///   := 'localdynamic'
1194 ///   := 'initialexec'
1195 ///   := 'localexec'
1196 bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1197   switch (Lex.getKind()) {
1198     default:
1199       return TokError("expected localdynamic, initialexec or localexec");
1200     case lltok::kw_localdynamic:
1201       TLM = GlobalVariable::LocalDynamicTLSModel;
1202       break;
1203     case lltok::kw_initialexec:
1204       TLM = GlobalVariable::InitialExecTLSModel;
1205       break;
1206     case lltok::kw_localexec:
1207       TLM = GlobalVariable::LocalExecTLSModel;
1208       break;
1209   }
1210
1211   Lex.Lex();
1212   return false;
1213 }
1214
1215 /// ParseOptionalThreadLocal
1216 ///   := /*empty*/
1217 ///   := 'thread_local'
1218 ///   := 'thread_local' '(' tlsmodel ')'
1219 bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1220   TLM = GlobalVariable::NotThreadLocal;
1221   if (!EatIfPresent(lltok::kw_thread_local))
1222     return false;
1223
1224   TLM = GlobalVariable::GeneralDynamicTLSModel;
1225   if (Lex.getKind() == lltok::lparen) {
1226     Lex.Lex();
1227     return ParseTLSModel(TLM) ||
1228       ParseToken(lltok::rparen, "expected ')' after thread local model");
1229   }
1230   return false;
1231 }
1232
1233 /// ParseOptionalAddrSpace
1234 ///   := /*empty*/
1235 ///   := 'addrspace' '(' uint32 ')'
1236 bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1237   AddrSpace = 0;
1238   if (!EatIfPresent(lltok::kw_addrspace))
1239     return false;
1240   return ParseToken(lltok::lparen, "expected '(' in address space") ||
1241          ParseUInt32(AddrSpace) ||
1242          ParseToken(lltok::rparen, "expected ')' in address space");
1243 }
1244
1245 /// ParseStringAttribute
1246 ///   := StringConstant
1247 ///   := StringConstant '=' StringConstant
1248 bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1249   std::string Attr = Lex.getStrVal();
1250   Lex.Lex();
1251   std::string Val;
1252   if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1253     return true;
1254   B.addAttribute(Attr, Val);
1255   return false;
1256 }
1257
1258 /// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1259 bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1260   bool HaveError = false;
1261
1262   B.clear();
1263
1264   while (1) {
1265     lltok::Kind Token = Lex.getKind();
1266     switch (Token) {
1267     default:  // End of attributes.
1268       return HaveError;
1269     case lltok::StringConstant: {
1270       if (ParseStringAttribute(B))
1271         return true;
1272       continue;
1273     }
1274     case lltok::kw_align: {
1275       unsigned Alignment;
1276       if (ParseOptionalAlignment(Alignment))
1277         return true;
1278       B.addAlignmentAttr(Alignment);
1279       continue;
1280     }
1281     case lltok::kw_byval:           B.addAttribute(Attribute::ByVal); break;
1282     case lltok::kw_dereferenceable: {
1283       uint64_t Bytes;
1284       if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
1285         return true;
1286       B.addDereferenceableAttr(Bytes);
1287       continue;
1288     }
1289     case lltok::kw_dereferenceable_or_null: {
1290       uint64_t Bytes;
1291       if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1292         return true;
1293       B.addDereferenceableOrNullAttr(Bytes);
1294       continue;
1295     }
1296     case lltok::kw_inalloca:        B.addAttribute(Attribute::InAlloca); break;
1297     case lltok::kw_inreg:           B.addAttribute(Attribute::InReg); break;
1298     case lltok::kw_nest:            B.addAttribute(Attribute::Nest); break;
1299     case lltok::kw_noalias:         B.addAttribute(Attribute::NoAlias); break;
1300     case lltok::kw_nocapture:       B.addAttribute(Attribute::NoCapture); break;
1301     case lltok::kw_nonnull:         B.addAttribute(Attribute::NonNull); break;
1302     case lltok::kw_readnone:        B.addAttribute(Attribute::ReadNone); break;
1303     case lltok::kw_readonly:        B.addAttribute(Attribute::ReadOnly); break;
1304     case lltok::kw_returned:        B.addAttribute(Attribute::Returned); break;
1305     case lltok::kw_signext:         B.addAttribute(Attribute::SExt); break;
1306     case lltok::kw_sret:            B.addAttribute(Attribute::StructRet); break;
1307     case lltok::kw_zeroext:         B.addAttribute(Attribute::ZExt); break;
1308
1309     case lltok::kw_alignstack:
1310     case lltok::kw_alwaysinline:
1311     case lltok::kw_argmemonly:
1312     case lltok::kw_builtin:
1313     case lltok::kw_inlinehint:
1314     case lltok::kw_jumptable:
1315     case lltok::kw_minsize:
1316     case lltok::kw_naked:
1317     case lltok::kw_nobuiltin:
1318     case lltok::kw_noduplicate:
1319     case lltok::kw_noimplicitfloat:
1320     case lltok::kw_noinline:
1321     case lltok::kw_nonlazybind:
1322     case lltok::kw_noredzone:
1323     case lltok::kw_noreturn:
1324     case lltok::kw_nounwind:
1325     case lltok::kw_optnone:
1326     case lltok::kw_optsize:
1327     case lltok::kw_returns_twice:
1328     case lltok::kw_sanitize_address:
1329     case lltok::kw_sanitize_memory:
1330     case lltok::kw_sanitize_thread:
1331     case lltok::kw_ssp:
1332     case lltok::kw_sspreq:
1333     case lltok::kw_sspstrong:
1334     case lltok::kw_safestack:
1335     case lltok::kw_uwtable:
1336       HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1337       break;
1338     }
1339
1340     Lex.Lex();
1341   }
1342 }
1343
1344 /// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1345 bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1346   bool HaveError = false;
1347
1348   B.clear();
1349
1350   while (1) {
1351     lltok::Kind Token = Lex.getKind();
1352     switch (Token) {
1353     default:  // End of attributes.
1354       return HaveError;
1355     case lltok::StringConstant: {
1356       if (ParseStringAttribute(B))
1357         return true;
1358       continue;
1359     }
1360     case lltok::kw_dereferenceable: {
1361       uint64_t Bytes;
1362       if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
1363         return true;
1364       B.addDereferenceableAttr(Bytes);
1365       continue;
1366     }
1367     case lltok::kw_dereferenceable_or_null: {
1368       uint64_t Bytes;
1369       if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1370         return true;
1371       B.addDereferenceableOrNullAttr(Bytes);
1372       continue;
1373     }
1374     case lltok::kw_inreg:           B.addAttribute(Attribute::InReg); break;
1375     case lltok::kw_noalias:         B.addAttribute(Attribute::NoAlias); break;
1376     case lltok::kw_nonnull:         B.addAttribute(Attribute::NonNull); break;
1377     case lltok::kw_signext:         B.addAttribute(Attribute::SExt); break;
1378     case lltok::kw_zeroext:         B.addAttribute(Attribute::ZExt); break;
1379
1380     // Error handling.
1381     case lltok::kw_align:
1382     case lltok::kw_byval:
1383     case lltok::kw_inalloca:
1384     case lltok::kw_nest:
1385     case lltok::kw_nocapture:
1386     case lltok::kw_returned:
1387     case lltok::kw_sret:
1388       HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
1389       break;
1390
1391     case lltok::kw_alignstack:
1392     case lltok::kw_alwaysinline:
1393     case lltok::kw_argmemonly:
1394     case lltok::kw_builtin:
1395     case lltok::kw_cold:
1396     case lltok::kw_inlinehint:
1397     case lltok::kw_jumptable:
1398     case lltok::kw_minsize:
1399     case lltok::kw_naked:
1400     case lltok::kw_nobuiltin:
1401     case lltok::kw_noduplicate:
1402     case lltok::kw_noimplicitfloat:
1403     case lltok::kw_noinline:
1404     case lltok::kw_nonlazybind:
1405     case lltok::kw_noredzone:
1406     case lltok::kw_noreturn:
1407     case lltok::kw_nounwind:
1408     case lltok::kw_optnone:
1409     case lltok::kw_optsize:
1410     case lltok::kw_returns_twice:
1411     case lltok::kw_sanitize_address:
1412     case lltok::kw_sanitize_memory:
1413     case lltok::kw_sanitize_thread:
1414     case lltok::kw_ssp:
1415     case lltok::kw_sspreq:
1416     case lltok::kw_sspstrong:
1417     case lltok::kw_safestack:
1418     case lltok::kw_uwtable:
1419       HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1420       break;
1421
1422     case lltok::kw_readnone:
1423     case lltok::kw_readonly:
1424       HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
1425     }
1426
1427     Lex.Lex();
1428   }
1429 }
1430
1431 /// ParseOptionalLinkage
1432 ///   ::= /*empty*/
1433 ///   ::= 'private'
1434 ///   ::= 'internal'
1435 ///   ::= 'weak'
1436 ///   ::= 'weak_odr'
1437 ///   ::= 'linkonce'
1438 ///   ::= 'linkonce_odr'
1439 ///   ::= 'available_externally'
1440 ///   ::= 'appending'
1441 ///   ::= 'common'
1442 ///   ::= 'extern_weak'
1443 ///   ::= 'external'
1444 bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1445   HasLinkage = false;
1446   switch (Lex.getKind()) {
1447   default:                       Res=GlobalValue::ExternalLinkage; return false;
1448   case lltok::kw_private:        Res = GlobalValue::PrivateLinkage;       break;
1449   case lltok::kw_internal:       Res = GlobalValue::InternalLinkage;      break;
1450   case lltok::kw_weak:           Res = GlobalValue::WeakAnyLinkage;       break;
1451   case lltok::kw_weak_odr:       Res = GlobalValue::WeakODRLinkage;       break;
1452   case lltok::kw_linkonce:       Res = GlobalValue::LinkOnceAnyLinkage;   break;
1453   case lltok::kw_linkonce_odr:   Res = GlobalValue::LinkOnceODRLinkage;   break;
1454   case lltok::kw_available_externally:
1455     Res = GlobalValue::AvailableExternallyLinkage;
1456     break;
1457   case lltok::kw_appending:      Res = GlobalValue::AppendingLinkage;     break;
1458   case lltok::kw_common:         Res = GlobalValue::CommonLinkage;        break;
1459   case lltok::kw_extern_weak:    Res = GlobalValue::ExternalWeakLinkage;  break;
1460   case lltok::kw_external:       Res = GlobalValue::ExternalLinkage;      break;
1461   }
1462   Lex.Lex();
1463   HasLinkage = true;
1464   return false;
1465 }
1466
1467 /// ParseOptionalVisibility
1468 ///   ::= /*empty*/
1469 ///   ::= 'default'
1470 ///   ::= 'hidden'
1471 ///   ::= 'protected'
1472 ///
1473 bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1474   switch (Lex.getKind()) {
1475   default:                  Res = GlobalValue::DefaultVisibility; return false;
1476   case lltok::kw_default:   Res = GlobalValue::DefaultVisibility; break;
1477   case lltok::kw_hidden:    Res = GlobalValue::HiddenVisibility; break;
1478   case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1479   }
1480   Lex.Lex();
1481   return false;
1482 }
1483
1484 /// ParseOptionalDLLStorageClass
1485 ///   ::= /*empty*/
1486 ///   ::= 'dllimport'
1487 ///   ::= 'dllexport'
1488 ///
1489 bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1490   switch (Lex.getKind()) {
1491   default:                  Res = GlobalValue::DefaultStorageClass; return false;
1492   case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1493   case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1494   }
1495   Lex.Lex();
1496   return false;
1497 }
1498
1499 /// ParseOptionalCallingConv
1500 ///   ::= /*empty*/
1501 ///   ::= 'ccc'
1502 ///   ::= 'fastcc'
1503 ///   ::= 'intel_ocl_bicc'
1504 ///   ::= 'coldcc'
1505 ///   ::= 'x86_stdcallcc'
1506 ///   ::= 'x86_fastcallcc'
1507 ///   ::= 'x86_thiscallcc'
1508 ///   ::= 'x86_vectorcallcc'
1509 ///   ::= 'arm_apcscc'
1510 ///   ::= 'arm_aapcscc'
1511 ///   ::= 'arm_aapcs_vfpcc'
1512 ///   ::= 'msp430_intrcc'
1513 ///   ::= 'ptx_kernel'
1514 ///   ::= 'ptx_device'
1515 ///   ::= 'spir_func'
1516 ///   ::= 'spir_kernel'
1517 ///   ::= 'x86_64_sysvcc'
1518 ///   ::= 'x86_64_win64cc'
1519 ///   ::= 'webkit_jscc'
1520 ///   ::= 'anyregcc'
1521 ///   ::= 'preserve_mostcc'
1522 ///   ::= 'preserve_allcc'
1523 ///   ::= 'ghccc'
1524 ///   ::= 'cc' UINT
1525 ///
1526 bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
1527   switch (Lex.getKind()) {
1528   default:                       CC = CallingConv::C; return false;
1529   case lltok::kw_ccc:            CC = CallingConv::C; break;
1530   case lltok::kw_fastcc:         CC = CallingConv::Fast; break;
1531   case lltok::kw_coldcc:         CC = CallingConv::Cold; break;
1532   case lltok::kw_x86_stdcallcc:  CC = CallingConv::X86_StdCall; break;
1533   case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
1534   case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
1535   case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
1536   case lltok::kw_arm_apcscc:     CC = CallingConv::ARM_APCS; break;
1537   case lltok::kw_arm_aapcscc:    CC = CallingConv::ARM_AAPCS; break;
1538   case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
1539   case lltok::kw_msp430_intrcc:  CC = CallingConv::MSP430_INTR; break;
1540   case lltok::kw_ptx_kernel:     CC = CallingConv::PTX_Kernel; break;
1541   case lltok::kw_ptx_device:     CC = CallingConv::PTX_Device; break;
1542   case lltok::kw_spir_kernel:    CC = CallingConv::SPIR_KERNEL; break;
1543   case lltok::kw_spir_func:      CC = CallingConv::SPIR_FUNC; break;
1544   case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
1545   case lltok::kw_x86_64_sysvcc:  CC = CallingConv::X86_64_SysV; break;
1546   case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
1547   case lltok::kw_webkit_jscc:    CC = CallingConv::WebKit_JS; break;
1548   case lltok::kw_anyregcc:       CC = CallingConv::AnyReg; break;
1549   case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1550   case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
1551   case lltok::kw_ghccc:          CC = CallingConv::GHC; break;
1552   case lltok::kw_cc: {
1553       Lex.Lex();
1554       return ParseUInt32(CC);
1555     }
1556   }
1557
1558   Lex.Lex();
1559   return false;
1560 }
1561
1562 /// ParseMetadataAttachment
1563 ///   ::= !dbg !42
1564 bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1565   assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1566
1567   std::string Name = Lex.getStrVal();
1568   Kind = M->getMDKindID(Name);
1569   Lex.Lex();
1570
1571   return ParseMDNode(MD);
1572 }
1573
1574 /// ParseInstructionMetadata
1575 ///   ::= !dbg !42 (',' !dbg !57)*
1576 bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
1577   do {
1578     if (Lex.getKind() != lltok::MetadataVar)
1579       return TokError("expected metadata after comma");
1580
1581     unsigned MDK;
1582     MDNode *N;
1583     if (ParseMetadataAttachment(MDK, N))
1584       return true;
1585
1586     Inst.setMetadata(MDK, N);
1587     if (MDK == LLVMContext::MD_tbaa)
1588       InstsWithTBAATag.push_back(&Inst);
1589
1590     // If this is the end of the list, we're done.
1591   } while (EatIfPresent(lltok::comma));
1592   return false;
1593 }
1594
1595 /// ParseOptionalFunctionMetadata
1596 ///   ::= (!dbg !57)*
1597 bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1598   while (Lex.getKind() == lltok::MetadataVar) {
1599     unsigned MDK;
1600     MDNode *N;
1601     if (ParseMetadataAttachment(MDK, N))
1602       return true;
1603
1604     F.setMetadata(MDK, N);
1605   }
1606   return false;
1607 }
1608
1609 /// ParseOptionalAlignment
1610 ///   ::= /* empty */
1611 ///   ::= 'align' 4
1612 bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1613   Alignment = 0;
1614   if (!EatIfPresent(lltok::kw_align))
1615     return false;
1616   LocTy AlignLoc = Lex.getLoc();
1617   if (ParseUInt32(Alignment)) return true;
1618   if (!isPowerOf2_32(Alignment))
1619     return Error(AlignLoc, "alignment is not a power of two");
1620   if (Alignment > Value::MaximumAlignment)
1621     return Error(AlignLoc, "huge alignments are not supported yet");
1622   return false;
1623 }
1624
1625 /// ParseOptionalDerefAttrBytes
1626 ///   ::= /* empty */
1627 ///   ::= AttrKind '(' 4 ')'
1628 ///
1629 /// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1630 bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1631                                            uint64_t &Bytes) {
1632   assert((AttrKind == lltok::kw_dereferenceable ||
1633           AttrKind == lltok::kw_dereferenceable_or_null) &&
1634          "contract!");
1635
1636   Bytes = 0;
1637   if (!EatIfPresent(AttrKind))
1638     return false;
1639   LocTy ParenLoc = Lex.getLoc();
1640   if (!EatIfPresent(lltok::lparen))
1641     return Error(ParenLoc, "expected '('");
1642   LocTy DerefLoc = Lex.getLoc();
1643   if (ParseUInt64(Bytes)) return true;
1644   ParenLoc = Lex.getLoc();
1645   if (!EatIfPresent(lltok::rparen))
1646     return Error(ParenLoc, "expected ')'");
1647   if (!Bytes)
1648     return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1649   return false;
1650 }
1651
1652 /// ParseOptionalCommaAlign
1653 ///   ::=
1654 ///   ::= ',' align 4
1655 ///
1656 /// This returns with AteExtraComma set to true if it ate an excess comma at the
1657 /// end.
1658 bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1659                                        bool &AteExtraComma) {
1660   AteExtraComma = false;
1661   while (EatIfPresent(lltok::comma)) {
1662     // Metadata at the end is an early exit.
1663     if (Lex.getKind() == lltok::MetadataVar) {
1664       AteExtraComma = true;
1665       return false;
1666     }
1667
1668     if (Lex.getKind() != lltok::kw_align)
1669       return Error(Lex.getLoc(), "expected metadata or 'align'");
1670
1671     if (ParseOptionalAlignment(Alignment)) return true;
1672   }
1673
1674   return false;
1675 }
1676
1677 /// ParseScopeAndOrdering
1678 ///   if isAtomic: ::= 'singlethread'? AtomicOrdering
1679 ///   else: ::=
1680 ///
1681 /// This sets Scope and Ordering to the parsed values.
1682 bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1683                                      AtomicOrdering &Ordering) {
1684   if (!isAtomic)
1685     return false;
1686
1687   Scope = CrossThread;
1688   if (EatIfPresent(lltok::kw_singlethread))
1689     Scope = SingleThread;
1690
1691   return ParseOrdering(Ordering);
1692 }
1693
1694 /// ParseOrdering
1695 ///   ::= AtomicOrdering
1696 ///
1697 /// This sets Ordering to the parsed value.
1698 bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
1699   switch (Lex.getKind()) {
1700   default: return TokError("Expected ordering on atomic instruction");
1701   case lltok::kw_unordered: Ordering = Unordered; break;
1702   case lltok::kw_monotonic: Ordering = Monotonic; break;
1703   case lltok::kw_acquire: Ordering = Acquire; break;
1704   case lltok::kw_release: Ordering = Release; break;
1705   case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1706   case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1707   }
1708   Lex.Lex();
1709   return false;
1710 }
1711
1712 /// ParseOptionalStackAlignment
1713 ///   ::= /* empty */
1714 ///   ::= 'alignstack' '(' 4 ')'
1715 bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1716   Alignment = 0;
1717   if (!EatIfPresent(lltok::kw_alignstack))
1718     return false;
1719   LocTy ParenLoc = Lex.getLoc();
1720   if (!EatIfPresent(lltok::lparen))
1721     return Error(ParenLoc, "expected '('");
1722   LocTy AlignLoc = Lex.getLoc();
1723   if (ParseUInt32(Alignment)) return true;
1724   ParenLoc = Lex.getLoc();
1725   if (!EatIfPresent(lltok::rparen))
1726     return Error(ParenLoc, "expected ')'");
1727   if (!isPowerOf2_32(Alignment))
1728     return Error(AlignLoc, "stack alignment is not a power of two");
1729   return false;
1730 }
1731
1732 /// ParseIndexList - This parses the index list for an insert/extractvalue
1733 /// instruction.  This sets AteExtraComma in the case where we eat an extra
1734 /// comma at the end of the line and find that it is followed by metadata.
1735 /// Clients that don't allow metadata can call the version of this function that
1736 /// only takes one argument.
1737 ///
1738 /// ParseIndexList
1739 ///    ::=  (',' uint32)+
1740 ///
1741 bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1742                               bool &AteExtraComma) {
1743   AteExtraComma = false;
1744
1745   if (Lex.getKind() != lltok::comma)
1746     return TokError("expected ',' as start of index list");
1747
1748   while (EatIfPresent(lltok::comma)) {
1749     if (Lex.getKind() == lltok::MetadataVar) {
1750       if (Indices.empty()) return TokError("expected index");
1751       AteExtraComma = true;
1752       return false;
1753     }
1754     unsigned Idx = 0;
1755     if (ParseUInt32(Idx)) return true;
1756     Indices.push_back(Idx);
1757   }
1758
1759   return false;
1760 }
1761
1762 //===----------------------------------------------------------------------===//
1763 // Type Parsing.
1764 //===----------------------------------------------------------------------===//
1765
1766 /// ParseType - Parse a type.
1767 bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
1768   SMLoc TypeLoc = Lex.getLoc();
1769   switch (Lex.getKind()) {
1770   default:
1771     return TokError(Msg);
1772   case lltok::Type:
1773     // Type ::= 'float' | 'void' (etc)
1774     Result = Lex.getTyVal();
1775     Lex.Lex();
1776     break;
1777   case lltok::lbrace:
1778     // Type ::= StructType
1779     if (ParseAnonStructType(Result, false))
1780       return true;
1781     break;
1782   case lltok::lsquare:
1783     // Type ::= '[' ... ']'
1784     Lex.Lex(); // eat the lsquare.
1785     if (ParseArrayVectorType(Result, false))
1786       return true;
1787     break;
1788   case lltok::less: // Either vector or packed struct.
1789     // Type ::= '<' ... '>'
1790     Lex.Lex();
1791     if (Lex.getKind() == lltok::lbrace) {
1792       if (ParseAnonStructType(Result, true) ||
1793           ParseToken(lltok::greater, "expected '>' at end of packed struct"))
1794         return true;
1795     } else if (ParseArrayVectorType(Result, true))
1796       return true;
1797     break;
1798   case lltok::LocalVar: {
1799     // Type ::= %foo
1800     std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
1801
1802     // If the type hasn't been defined yet, create a forward definition and
1803     // remember where that forward def'n was seen (in case it never is defined).
1804     if (!Entry.first) {
1805       Entry.first = StructType::create(Context, Lex.getStrVal());
1806       Entry.second = Lex.getLoc();
1807     }
1808     Result = Entry.first;
1809     Lex.Lex();
1810     break;
1811   }
1812
1813   case lltok::LocalVarID: {
1814     // Type ::= %4
1815     std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
1816
1817     // If the type hasn't been defined yet, create a forward definition and
1818     // remember where that forward def'n was seen (in case it never is defined).
1819     if (!Entry.first) {
1820       Entry.first = StructType::create(Context);
1821       Entry.second = Lex.getLoc();
1822     }
1823     Result = Entry.first;
1824     Lex.Lex();
1825     break;
1826   }
1827   }
1828
1829   // Parse the type suffixes.
1830   while (1) {
1831     switch (Lex.getKind()) {
1832     // End of type.
1833     default:
1834       if (!AllowVoid && Result->isVoidTy())
1835         return Error(TypeLoc, "void type only allowed for function results");
1836       return false;
1837
1838     // Type ::= Type '*'
1839     case lltok::star:
1840       if (Result->isLabelTy())
1841         return TokError("basic block pointers are invalid");
1842       if (Result->isVoidTy())
1843         return TokError("pointers to void are invalid - use i8* instead");
1844       if (!PointerType::isValidElementType(Result))
1845         return TokError("pointer to this type is invalid");
1846       Result = PointerType::getUnqual(Result);
1847       Lex.Lex();
1848       break;
1849
1850     // Type ::= Type 'addrspace' '(' uint32 ')' '*'
1851     case lltok::kw_addrspace: {
1852       if (Result->isLabelTy())
1853         return TokError("basic block pointers are invalid");
1854       if (Result->isVoidTy())
1855         return TokError("pointers to void are invalid; use i8* instead");
1856       if (!PointerType::isValidElementType(Result))
1857         return TokError("pointer to this type is invalid");
1858       unsigned AddrSpace;
1859       if (ParseOptionalAddrSpace(AddrSpace) ||
1860           ParseToken(lltok::star, "expected '*' in address space"))
1861         return true;
1862
1863       Result = PointerType::get(Result, AddrSpace);
1864       break;
1865     }
1866
1867     /// Types '(' ArgTypeListI ')' OptFuncAttrs
1868     case lltok::lparen:
1869       if (ParseFunctionType(Result))
1870         return true;
1871       break;
1872     }
1873   }
1874 }
1875
1876 /// ParseParameterList
1877 ///    ::= '(' ')'
1878 ///    ::= '(' Arg (',' Arg)* ')'
1879 ///  Arg
1880 ///    ::= Type OptionalAttributes Value OptionalAttributes
1881 bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1882                                   PerFunctionState &PFS, bool IsMustTailCall,
1883                                   bool InVarArgsFunc) {
1884   if (ParseToken(lltok::lparen, "expected '(' in call"))
1885     return true;
1886
1887   unsigned AttrIndex = 1;
1888   while (Lex.getKind() != lltok::rparen) {
1889     // If this isn't the first argument, we need a comma.
1890     if (!ArgList.empty() &&
1891         ParseToken(lltok::comma, "expected ',' in argument list"))
1892       return true;
1893
1894     // Parse an ellipsis if this is a musttail call in a variadic function.
1895     if (Lex.getKind() == lltok::dotdotdot) {
1896       const char *Msg = "unexpected ellipsis in argument list for ";
1897       if (!IsMustTailCall)
1898         return TokError(Twine(Msg) + "non-musttail call");
1899       if (!InVarArgsFunc)
1900         return TokError(Twine(Msg) + "musttail call in non-varargs function");
1901       Lex.Lex();  // Lex the '...', it is purely for readability.
1902       return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1903     }
1904
1905     // Parse the argument.
1906     LocTy ArgLoc;
1907     Type *ArgTy = nullptr;
1908     AttrBuilder ArgAttrs;
1909     Value *V;
1910     if (ParseType(ArgTy, ArgLoc))
1911       return true;
1912
1913     if (ArgTy->isMetadataTy()) {
1914       if (ParseMetadataAsValue(V, PFS))
1915         return true;
1916     } else {
1917       // Otherwise, handle normal operands.
1918       if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1919         return true;
1920     }
1921     ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1922                                                              AttrIndex++,
1923                                                              ArgAttrs)));
1924   }
1925
1926   if (IsMustTailCall && InVarArgsFunc)
1927     return TokError("expected '...' at end of argument list for musttail call "
1928                     "in varargs function");
1929
1930   Lex.Lex();  // Lex the ')'.
1931   return false;
1932 }
1933
1934
1935
1936 /// ParseArgumentList - Parse the argument list for a function type or function
1937 /// prototype.
1938 ///   ::= '(' ArgTypeListI ')'
1939 /// ArgTypeListI
1940 ///   ::= /*empty*/
1941 ///   ::= '...'
1942 ///   ::= ArgTypeList ',' '...'
1943 ///   ::= ArgType (',' ArgType)*
1944 ///
1945 bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1946                                  bool &isVarArg){
1947   isVarArg = false;
1948   assert(Lex.getKind() == lltok::lparen);
1949   Lex.Lex(); // eat the (.
1950
1951   if (Lex.getKind() == lltok::rparen) {
1952     // empty
1953   } else if (Lex.getKind() == lltok::dotdotdot) {
1954     isVarArg = true;
1955     Lex.Lex();
1956   } else {
1957     LocTy TypeLoc = Lex.getLoc();
1958     Type *ArgTy = nullptr;
1959     AttrBuilder Attrs;
1960     std::string Name;
1961
1962     if (ParseType(ArgTy) ||
1963         ParseOptionalParamAttrs(Attrs)) return true;
1964
1965     if (ArgTy->isVoidTy())
1966       return Error(TypeLoc, "argument can not have void type");
1967
1968     if (Lex.getKind() == lltok::LocalVar) {
1969       Name = Lex.getStrVal();
1970       Lex.Lex();
1971     }
1972
1973     if (!FunctionType::isValidArgumentType(ArgTy))
1974       return Error(TypeLoc, "invalid type for function argument");
1975
1976     unsigned AttrIndex = 1;
1977     ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
1978                                                            AttrIndex++, Attrs),
1979                          std::move(Name));
1980
1981     while (EatIfPresent(lltok::comma)) {
1982       // Handle ... at end of arg list.
1983       if (EatIfPresent(lltok::dotdotdot)) {
1984         isVarArg = true;
1985         break;
1986       }
1987
1988       // Otherwise must be an argument type.
1989       TypeLoc = Lex.getLoc();
1990       if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
1991
1992       if (ArgTy->isVoidTy())
1993         return Error(TypeLoc, "argument can not have void type");
1994
1995       if (Lex.getKind() == lltok::LocalVar) {
1996         Name = Lex.getStrVal();
1997         Lex.Lex();
1998       } else {
1999         Name = "";
2000       }
2001
2002       if (!ArgTy->isFirstClassType())
2003         return Error(TypeLoc, "invalid type for function argument");
2004
2005       ArgList.emplace_back(
2006           TypeLoc, ArgTy,
2007           AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2008           std::move(Name));
2009     }
2010   }
2011
2012   return ParseToken(lltok::rparen, "expected ')' at end of argument list");
2013 }
2014
2015 /// ParseFunctionType
2016 ///  ::= Type ArgumentList OptionalAttrs
2017 bool LLParser::ParseFunctionType(Type *&Result) {
2018   assert(Lex.getKind() == lltok::lparen);
2019
2020   if (!FunctionType::isValidReturnType(Result))
2021     return TokError("invalid function return type");
2022
2023   SmallVector<ArgInfo, 8> ArgList;
2024   bool isVarArg;
2025   if (ParseArgumentList(ArgList, isVarArg))
2026     return true;
2027
2028   // Reject names on the arguments lists.
2029   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2030     if (!ArgList[i].Name.empty())
2031       return Error(ArgList[i].Loc, "argument name invalid in function type");
2032     if (ArgList[i].Attrs.hasAttributes(i + 1))
2033       return Error(ArgList[i].Loc,
2034                    "argument attributes invalid in function type");
2035   }
2036
2037   SmallVector<Type*, 16> ArgListTy;
2038   for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
2039     ArgListTy.push_back(ArgList[i].Ty);
2040
2041   Result = FunctionType::get(Result, ArgListTy, isVarArg);
2042   return false;
2043 }
2044
2045 /// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2046 /// other structs.
2047 bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2048   SmallVector<Type*, 8> Elts;
2049   if (ParseStructBody(Elts)) return true;
2050
2051   Result = StructType::get(Context, Elts, Packed);
2052   return false;
2053 }
2054
2055 /// ParseStructDefinition - Parse a struct in a 'type' definition.
2056 bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2057                                      std::pair<Type*, LocTy> &Entry,
2058                                      Type *&ResultTy) {
2059   // If the type was already defined, diagnose the redefinition.
2060   if (Entry.first && !Entry.second.isValid())
2061     return Error(TypeLoc, "redefinition of type");
2062
2063   // If we have opaque, just return without filling in the definition for the
2064   // struct.  This counts as a definition as far as the .ll file goes.
2065   if (EatIfPresent(lltok::kw_opaque)) {
2066     // This type is being defined, so clear the location to indicate this.
2067     Entry.second = SMLoc();
2068
2069     // If this type number has never been uttered, create it.
2070     if (!Entry.first)
2071       Entry.first = StructType::create(Context, Name);
2072     ResultTy = Entry.first;
2073     return false;
2074   }
2075
2076   // If the type starts with '<', then it is either a packed struct or a vector.
2077   bool isPacked = EatIfPresent(lltok::less);
2078
2079   // If we don't have a struct, then we have a random type alias, which we
2080   // accept for compatibility with old files.  These types are not allowed to be
2081   // forward referenced and not allowed to be recursive.
2082   if (Lex.getKind() != lltok::lbrace) {
2083     if (Entry.first)
2084       return Error(TypeLoc, "forward references to non-struct type");
2085
2086     ResultTy = nullptr;
2087     if (isPacked)
2088       return ParseArrayVectorType(ResultTy, true);
2089     return ParseType(ResultTy);
2090   }
2091
2092   // This type is being defined, so clear the location to indicate this.
2093   Entry.second = SMLoc();
2094
2095   // If this type number has never been uttered, create it.
2096   if (!Entry.first)
2097     Entry.first = StructType::create(Context, Name);
2098
2099   StructType *STy = cast<StructType>(Entry.first);
2100
2101   SmallVector<Type*, 8> Body;
2102   if (ParseStructBody(Body) ||
2103       (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2104     return true;
2105
2106   STy->setBody(Body, isPacked);
2107   ResultTy = STy;
2108   return false;
2109 }
2110
2111
2112 /// ParseStructType: Handles packed and unpacked types.  </> parsed elsewhere.
2113 ///   StructType
2114 ///     ::= '{' '}'
2115 ///     ::= '{' Type (',' Type)* '}'
2116 ///     ::= '<' '{' '}' '>'
2117 ///     ::= '<' '{' Type (',' Type)* '}' '>'
2118 bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
2119   assert(Lex.getKind() == lltok::lbrace);
2120   Lex.Lex(); // Consume the '{'
2121
2122   // Handle the empty struct.
2123   if (EatIfPresent(lltok::rbrace))
2124     return false;
2125
2126   LocTy EltTyLoc = Lex.getLoc();
2127   Type *Ty = nullptr;
2128   if (ParseType(Ty)) return true;
2129   Body.push_back(Ty);
2130
2131   if (!StructType::isValidElementType(Ty))
2132     return Error(EltTyLoc, "invalid element type for struct");
2133
2134   while (EatIfPresent(lltok::comma)) {
2135     EltTyLoc = Lex.getLoc();
2136     if (ParseType(Ty)) return true;
2137
2138     if (!StructType::isValidElementType(Ty))
2139       return Error(EltTyLoc, "invalid element type for struct");
2140
2141     Body.push_back(Ty);
2142   }
2143
2144   return ParseToken(lltok::rbrace, "expected '}' at end of struct");
2145 }
2146
2147 /// ParseArrayVectorType - Parse an array or vector type, assuming the first
2148 /// token has already been consumed.
2149 ///   Type
2150 ///     ::= '[' APSINTVAL 'x' Types ']'
2151 ///     ::= '<' APSINTVAL 'x' Types '>'
2152 bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
2153   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2154       Lex.getAPSIntVal().getBitWidth() > 64)
2155     return TokError("expected number in address space");
2156
2157   LocTy SizeLoc = Lex.getLoc();
2158   uint64_t Size = Lex.getAPSIntVal().getZExtValue();
2159   Lex.Lex();
2160
2161   if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2162       return true;
2163
2164   LocTy TypeLoc = Lex.getLoc();
2165   Type *EltTy = nullptr;
2166   if (ParseType(EltTy)) return true;
2167
2168   if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2169                  "expected end of sequential type"))
2170     return true;
2171
2172   if (isVector) {
2173     if (Size == 0)
2174       return Error(SizeLoc, "zero element vector is illegal");
2175     if ((unsigned)Size != Size)
2176       return Error(SizeLoc, "size too large for vector");
2177     if (!VectorType::isValidElementType(EltTy))
2178       return Error(TypeLoc, "invalid vector element type");
2179     Result = VectorType::get(EltTy, unsigned(Size));
2180   } else {
2181     if (!ArrayType::isValidElementType(EltTy))
2182       return Error(TypeLoc, "invalid array element type");
2183     Result = ArrayType::get(EltTy, Size);
2184   }
2185   return false;
2186 }
2187
2188 //===----------------------------------------------------------------------===//
2189 // Function Semantic Analysis.
2190 //===----------------------------------------------------------------------===//
2191
2192 LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2193                                              int functionNumber)
2194   : P(p), F(f), FunctionNumber(functionNumber) {
2195
2196   // Insert unnamed arguments into the NumberedVals list.
2197   for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2198        AI != E; ++AI)
2199     if (!AI->hasName())
2200       NumberedVals.push_back(AI);
2201 }
2202
2203 LLParser::PerFunctionState::~PerFunctionState() {
2204   // If there were any forward referenced non-basicblock values, delete them.
2205   for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
2206        I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
2207     if (!isa<BasicBlock>(I->second.first)) {
2208       I->second.first->replaceAllUsesWith(
2209                            UndefValue::get(I->second.first->getType()));
2210       delete I->second.first;
2211       I->second.first = nullptr;
2212     }
2213
2214   for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2215        I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
2216     if (!isa<BasicBlock>(I->second.first)) {
2217       I->second.first->replaceAllUsesWith(
2218                            UndefValue::get(I->second.first->getType()));
2219       delete I->second.first;
2220       I->second.first = nullptr;
2221     }
2222 }
2223
2224 bool LLParser::PerFunctionState::FinishFunction() {
2225   if (!ForwardRefVals.empty())
2226     return P.Error(ForwardRefVals.begin()->second.second,
2227                    "use of undefined value '%" + ForwardRefVals.begin()->first +
2228                    "'");
2229   if (!ForwardRefValIDs.empty())
2230     return P.Error(ForwardRefValIDs.begin()->second.second,
2231                    "use of undefined value '%" +
2232                    Twine(ForwardRefValIDs.begin()->first) + "'");
2233   return false;
2234 }
2235
2236
2237 /// GetVal - Get a value with the specified name or ID, creating a
2238 /// forward reference record if needed.  This can return null if the value
2239 /// exists but does not have the right type.
2240 Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
2241                                           LocTy Loc, OperatorConstraint OC) {
2242   // Look this name up in the normal function symbol table.
2243   Value *Val = F.getValueSymbolTable().lookup(Name);
2244
2245   // If this is a forward reference for the value, see if we already created a
2246   // forward ref record.
2247   if (!Val) {
2248     std::map<std::string, std::pair<Value*, LocTy> >::iterator
2249       I = ForwardRefVals.find(Name);
2250     if (I != ForwardRefVals.end())
2251       Val = I->second.first;
2252   }
2253
2254   // If we have the value in the symbol table or fwd-ref table, return it.
2255   if (Val) {
2256     // Check operator constraints.
2257     switch (OC) {
2258     case OC_None:
2259       // no constraint
2260       break;
2261     case OC_CatchPad:
2262       if (!isa<CatchPadInst>(Val)) {
2263         P.Error(Loc, "'%" + Name + "' is not a catchpad");
2264         return nullptr;
2265       }
2266       break;
2267     case OC_CleanupPad:
2268       if (!isa<CleanupPadInst>(Val)) {
2269         P.Error(Loc, "'%" + Name + "' is not a cleanuppad");
2270         return nullptr;
2271       }
2272       break;
2273     }
2274     if (Val->getType() == Ty) return Val;
2275     if (Ty->isLabelTy())
2276       P.Error(Loc, "'%" + Name + "' is not a basic block");
2277     else
2278       P.Error(Loc, "'%" + Name + "' defined with type '" +
2279               getTypeString(Val->getType()) + "'");
2280     return nullptr;
2281   }
2282
2283   // Don't make placeholders with invalid type.
2284   if (!Ty->isFirstClassType()) {
2285     P.Error(Loc, "invalid use of a non-first-class type");
2286     return nullptr;
2287   }
2288
2289   // Otherwise, create a new forward reference for this value and remember it.
2290   Value *FwdVal;
2291   if (Ty->isLabelTy()) {
2292     assert(!OC);
2293     FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
2294   } else if (!OC) {
2295     FwdVal = new Argument(Ty, Name);
2296   } else {
2297     switch (OC) {
2298     case OC_CatchPad:
2299       FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {},
2300                                     Name);
2301       break;
2302     case OC_CleanupPad:
2303       FwdVal = CleanupPadInst::Create(F.getContext(), {}, Name);
2304       break;
2305     default:
2306       llvm_unreachable("unexpected constraint");
2307     }
2308   }
2309
2310   ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2311   return FwdVal;
2312 }
2313
2314 Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc,
2315                                           OperatorConstraint OC) {
2316   // Look this name up in the normal function symbol table.
2317   Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
2318
2319   // If this is a forward reference for the value, see if we already created a
2320   // forward ref record.
2321   if (!Val) {
2322     std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2323       I = ForwardRefValIDs.find(ID);
2324     if (I != ForwardRefValIDs.end())
2325       Val = I->second.first;
2326   }
2327
2328   // If we have the value in the symbol table or fwd-ref table, return it.
2329   if (Val) {
2330     // Check operator constraint.
2331     switch (OC) {
2332     case OC_None:
2333       // no constraint
2334       break;
2335     case OC_CatchPad:
2336       if (!isa<CatchPadInst>(Val)) {
2337         P.Error(Loc, "'%" + Twine(ID) + "' is not a catchpad");
2338         return nullptr;
2339       }
2340       break;
2341     case OC_CleanupPad:
2342       if (!isa<CleanupPadInst>(Val)) {
2343         P.Error(Loc, "'%" + Twine(ID) + "' is not a cleanuppad");
2344         return nullptr;
2345       }
2346       break;
2347     }
2348     if (Val->getType() == Ty) return Val;
2349     if (Ty->isLabelTy())
2350       P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
2351     else
2352       P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
2353               getTypeString(Val->getType()) + "'");
2354     return nullptr;
2355   }
2356
2357   if (!Ty->isFirstClassType()) {
2358     P.Error(Loc, "invalid use of a non-first-class type");
2359     return nullptr;
2360   }
2361
2362   // Otherwise, create a new forward reference for this value and remember it.
2363   Value *FwdVal;
2364   if (Ty->isLabelTy()) {
2365     assert(!OC);
2366     FwdVal = BasicBlock::Create(F.getContext(), "", &F);
2367   } else if (!OC) {
2368     FwdVal = new Argument(Ty);
2369   } else {
2370     switch (OC) {
2371     case OC_CatchPad:
2372       FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {});
2373       break;
2374     case OC_CleanupPad:
2375       FwdVal = CleanupPadInst::Create(F.getContext(), {});
2376       break;
2377     default:
2378       llvm_unreachable("unexpected constraint");
2379     }
2380   }
2381
2382   ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2383   return FwdVal;
2384 }
2385
2386 /// SetInstName - After an instruction is parsed and inserted into its
2387 /// basic block, this installs its name.
2388 bool LLParser::PerFunctionState::SetInstName(int NameID,
2389                                              const std::string &NameStr,
2390                                              LocTy NameLoc, Instruction *Inst) {
2391   // If this instruction has void type, it cannot have a name or ID specified.
2392   if (Inst->getType()->isVoidTy()) {
2393     if (NameID != -1 || !NameStr.empty())
2394       return P.Error(NameLoc, "instructions returning void cannot have a name");
2395     return false;
2396   }
2397
2398   // If this was a numbered instruction, verify that the instruction is the
2399   // expected value and resolve any forward references.
2400   if (NameStr.empty()) {
2401     // If neither a name nor an ID was specified, just use the next ID.
2402     if (NameID == -1)
2403       NameID = NumberedVals.size();
2404
2405     if (unsigned(NameID) != NumberedVals.size())
2406       return P.Error(NameLoc, "instruction expected to be numbered '%" +
2407                      Twine(NumberedVals.size()) + "'");
2408
2409     std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2410       ForwardRefValIDs.find(NameID);
2411     if (FI != ForwardRefValIDs.end()) {
2412       Value *Sentinel = FI->second.first;
2413       if (Sentinel->getType() != Inst->getType())
2414         return P.Error(NameLoc, "instruction forward referenced with type '" +
2415                        getTypeString(FI->second.first->getType()) + "'");
2416       // Check operator constraints.  We only put cleanuppads or catchpads in
2417       // the forward value map if the value is constrained to match.
2418       if (isa<CatchPadInst>(Sentinel)) {
2419         if (!isa<CatchPadInst>(Inst))
2420           return P.Error(FI->second.second,
2421                          "'%" + Twine(NameID) + "' is not a catchpad");
2422       } else if (isa<CleanupPadInst>(Sentinel)) {
2423         if (!isa<CleanupPadInst>(Inst))
2424           return P.Error(FI->second.second,
2425                          "'%" + Twine(NameID) + "' is not a cleanuppad");
2426       }
2427
2428       Sentinel->replaceAllUsesWith(Inst);
2429       delete Sentinel;
2430       ForwardRefValIDs.erase(FI);
2431     }
2432
2433     NumberedVals.push_back(Inst);
2434     return false;
2435   }
2436
2437   // Otherwise, the instruction had a name.  Resolve forward refs and set it.
2438   std::map<std::string, std::pair<Value*, LocTy> >::iterator
2439     FI = ForwardRefVals.find(NameStr);
2440   if (FI != ForwardRefVals.end()) {
2441     Value *Sentinel = FI->second.first;
2442     if (Sentinel->getType() != Inst->getType())
2443       return P.Error(NameLoc, "instruction forward referenced with type '" +
2444                      getTypeString(FI->second.first->getType()) + "'");
2445     // Check operator constraints.  We only put cleanuppads or catchpads in
2446     // the forward value map if the value is constrained to match.
2447     if (isa<CatchPadInst>(Sentinel)) {
2448       if (!isa<CatchPadInst>(Inst))
2449         return P.Error(FI->second.second,
2450                        "'%" + NameStr + "' is not a catchpad");
2451     } else if (isa<CleanupPadInst>(Sentinel)) {
2452       if (!isa<CleanupPadInst>(Inst))
2453         return P.Error(FI->second.second,
2454                        "'%" + NameStr + "' is not a cleanuppad");
2455     }
2456
2457     Sentinel->replaceAllUsesWith(Inst);
2458     delete Sentinel;
2459     ForwardRefVals.erase(FI);
2460   }
2461
2462   // Set the name on the instruction.
2463   Inst->setName(NameStr);
2464
2465   if (Inst->getName() != NameStr)
2466     return P.Error(NameLoc, "multiple definition of local value named '" +
2467                    NameStr + "'");
2468   return false;
2469 }
2470
2471 /// GetBB - Get a basic block with the specified name or ID, creating a
2472 /// forward reference record if needed.
2473 BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2474                                               LocTy Loc) {
2475   return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2476                                       Type::getLabelTy(F.getContext()), Loc));
2477 }
2478
2479 BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
2480   return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2481                                       Type::getLabelTy(F.getContext()), Loc));
2482 }
2483
2484 /// DefineBB - Define the specified basic block, which is either named or
2485 /// unnamed.  If there is an error, this returns null otherwise it returns
2486 /// the block being defined.
2487 BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2488                                                  LocTy Loc) {
2489   BasicBlock *BB;
2490   if (Name.empty())
2491     BB = GetBB(NumberedVals.size(), Loc);
2492   else
2493     BB = GetBB(Name, Loc);
2494   if (!BB) return nullptr; // Already diagnosed error.
2495
2496   // Move the block to the end of the function.  Forward ref'd blocks are
2497   // inserted wherever they happen to be referenced.
2498   F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
2499
2500   // Remove the block from forward ref sets.
2501   if (Name.empty()) {
2502     ForwardRefValIDs.erase(NumberedVals.size());
2503     NumberedVals.push_back(BB);
2504   } else {
2505     // BB forward references are already in the function symbol table.
2506     ForwardRefVals.erase(Name);
2507   }
2508
2509   return BB;
2510 }
2511
2512 //===----------------------------------------------------------------------===//
2513 // Constants.
2514 //===----------------------------------------------------------------------===//
2515
2516 /// ParseValID - Parse an abstract value that doesn't necessarily have a
2517 /// type implied.  For example, if we parse "4" we don't know what integer type
2518 /// it has.  The value will later be combined with its type and checked for
2519 /// sanity.  PFS is used to convert function-local operands of metadata (since
2520 /// metadata operands are not just parsed here but also converted to values).
2521 /// PFS can be null when we are not parsing metadata values inside a function.
2522 bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
2523   ID.Loc = Lex.getLoc();
2524   switch (Lex.getKind()) {
2525   default: return TokError("expected value token");
2526   case lltok::GlobalID:  // @42
2527     ID.UIntVal = Lex.getUIntVal();
2528     ID.Kind = ValID::t_GlobalID;
2529     break;
2530   case lltok::GlobalVar:  // @foo
2531     ID.StrVal = Lex.getStrVal();
2532     ID.Kind = ValID::t_GlobalName;
2533     break;
2534   case lltok::LocalVarID:  // %42
2535     ID.UIntVal = Lex.getUIntVal();
2536     ID.Kind = ValID::t_LocalID;
2537     break;
2538   case lltok::LocalVar:  // %foo
2539     ID.StrVal = Lex.getStrVal();
2540     ID.Kind = ValID::t_LocalName;
2541     break;
2542   case lltok::APSInt:
2543     ID.APSIntVal = Lex.getAPSIntVal();
2544     ID.Kind = ValID::t_APSInt;
2545     break;
2546   case lltok::APFloat:
2547     ID.APFloatVal = Lex.getAPFloatVal();
2548     ID.Kind = ValID::t_APFloat;
2549     break;
2550   case lltok::kw_true:
2551     ID.ConstantVal = ConstantInt::getTrue(Context);
2552     ID.Kind = ValID::t_Constant;
2553     break;
2554   case lltok::kw_false:
2555     ID.ConstantVal = ConstantInt::getFalse(Context);
2556     ID.Kind = ValID::t_Constant;
2557     break;
2558   case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2559   case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2560   case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
2561
2562   case lltok::lbrace: {
2563     // ValID ::= '{' ConstVector '}'
2564     Lex.Lex();
2565     SmallVector<Constant*, 16> Elts;
2566     if (ParseGlobalValueVector(Elts) ||
2567         ParseToken(lltok::rbrace, "expected end of struct constant"))
2568       return true;
2569
2570     ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2571     ID.UIntVal = Elts.size();
2572     memcpy(ID.ConstantStructElts.get(), Elts.data(),
2573            Elts.size() * sizeof(Elts[0]));
2574     ID.Kind = ValID::t_ConstantStruct;
2575     return false;
2576   }
2577   case lltok::less: {
2578     // ValID ::= '<' ConstVector '>'         --> Vector.
2579     // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2580     Lex.Lex();
2581     bool isPackedStruct = EatIfPresent(lltok::lbrace);
2582
2583     SmallVector<Constant*, 16> Elts;
2584     LocTy FirstEltLoc = Lex.getLoc();
2585     if (ParseGlobalValueVector(Elts) ||
2586         (isPackedStruct &&
2587          ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2588         ParseToken(lltok::greater, "expected end of constant"))
2589       return true;
2590
2591     if (isPackedStruct) {
2592       ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2593       memcpy(ID.ConstantStructElts.get(), Elts.data(),
2594              Elts.size() * sizeof(Elts[0]));
2595       ID.UIntVal = Elts.size();
2596       ID.Kind = ValID::t_PackedConstantStruct;
2597       return false;
2598     }
2599
2600     if (Elts.empty())
2601       return Error(ID.Loc, "constant vector must not be empty");
2602
2603     if (!Elts[0]->getType()->isIntegerTy() &&
2604         !Elts[0]->getType()->isFloatingPointTy() &&
2605         !Elts[0]->getType()->isPointerTy())
2606       return Error(FirstEltLoc,
2607             "vector elements must have integer, pointer or floating point type");
2608
2609     // Verify that all the vector elements have the same type.
2610     for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2611       if (Elts[i]->getType() != Elts[0]->getType())
2612         return Error(FirstEltLoc,
2613                      "vector element #" + Twine(i) +
2614                     " is not of type '" + getTypeString(Elts[0]->getType()));
2615
2616     ID.ConstantVal = ConstantVector::get(Elts);
2617     ID.Kind = ValID::t_Constant;
2618     return false;
2619   }
2620   case lltok::lsquare: {   // Array Constant
2621     Lex.Lex();
2622     SmallVector<Constant*, 16> Elts;
2623     LocTy FirstEltLoc = Lex.getLoc();
2624     if (ParseGlobalValueVector(Elts) ||
2625         ParseToken(lltok::rsquare, "expected end of array constant"))
2626       return true;
2627
2628     // Handle empty element.
2629     if (Elts.empty()) {
2630       // Use undef instead of an array because it's inconvenient to determine
2631       // the element type at this point, there being no elements to examine.
2632       ID.Kind = ValID::t_EmptyArray;
2633       return false;
2634     }
2635
2636     if (!Elts[0]->getType()->isFirstClassType())
2637       return Error(FirstEltLoc, "invalid array element type: " +
2638                    getTypeString(Elts[0]->getType()));
2639
2640     ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
2641
2642     // Verify all elements are correct type!
2643     for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
2644       if (Elts[i]->getType() != Elts[0]->getType())
2645         return Error(FirstEltLoc,
2646                      "array element #" + Twine(i) +
2647                      " is not of type '" + getTypeString(Elts[0]->getType()));
2648     }
2649
2650     ID.ConstantVal = ConstantArray::get(ATy, Elts);
2651     ID.Kind = ValID::t_Constant;
2652     return false;
2653   }
2654   case lltok::kw_c:  // c "foo"
2655     Lex.Lex();
2656     ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2657                                                   false);
2658     if (ParseToken(lltok::StringConstant, "expected string")) return true;
2659     ID.Kind = ValID::t_Constant;
2660     return false;
2661
2662   case lltok::kw_asm: {
2663     // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2664     //             STRINGCONSTANT
2665     bool HasSideEffect, AlignStack, AsmDialect;
2666     Lex.Lex();
2667     if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
2668         ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
2669         ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
2670         ParseStringConstant(ID.StrVal) ||
2671         ParseToken(lltok::comma, "expected comma in inline asm expression") ||
2672         ParseToken(lltok::StringConstant, "expected constraint string"))
2673       return true;
2674     ID.StrVal2 = Lex.getStrVal();
2675     ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
2676       (unsigned(AsmDialect)<<2);
2677     ID.Kind = ValID::t_InlineAsm;
2678     return false;
2679   }
2680
2681   case lltok::kw_blockaddress: {
2682     // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2683     Lex.Lex();
2684
2685     ValID Fn, Label;
2686
2687     if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2688         ParseValID(Fn) ||
2689         ParseToken(lltok::comma, "expected comma in block address expression")||
2690         ParseValID(Label) ||
2691         ParseToken(lltok::rparen, "expected ')' in block address expression"))
2692       return true;
2693
2694     if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2695       return Error(Fn.Loc, "expected function name in blockaddress");
2696     if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
2697       return Error(Label.Loc, "expected basic block name in blockaddress");
2698
2699     // Try to find the function (but skip it if it's forward-referenced).
2700     GlobalValue *GV = nullptr;
2701     if (Fn.Kind == ValID::t_GlobalID) {
2702       if (Fn.UIntVal < NumberedVals.size())
2703         GV = NumberedVals[Fn.UIntVal];
2704     } else if (!ForwardRefVals.count(Fn.StrVal)) {
2705       GV = M->getNamedValue(Fn.StrVal);
2706     }
2707     Function *F = nullptr;
2708     if (GV) {
2709       // Confirm that it's actually a function with a definition.
2710       if (!isa<Function>(GV))
2711         return Error(Fn.Loc, "expected function name in blockaddress");
2712       F = cast<Function>(GV);
2713       if (F->isDeclaration())
2714         return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2715     }
2716
2717     if (!F) {
2718       // Make a global variable as a placeholder for this reference.
2719       GlobalValue *&FwdRef =
2720           ForwardRefBlockAddresses.insert(std::make_pair(
2721                                               std::move(Fn),
2722                                               std::map<ValID, GlobalValue *>()))
2723               .first->second.insert(std::make_pair(std::move(Label), nullptr))
2724               .first->second;
2725       if (!FwdRef)
2726         FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2727                                     GlobalValue::InternalLinkage, nullptr, "");
2728       ID.ConstantVal = FwdRef;
2729       ID.Kind = ValID::t_Constant;
2730       return false;
2731     }
2732
2733     // We found the function; now find the basic block.  Don't use PFS, since we
2734     // might be inside a constant expression.
2735     BasicBlock *BB;
2736     if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2737       if (Label.Kind == ValID::t_LocalID)
2738         BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2739       else
2740         BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2741       if (!BB)
2742         return Error(Label.Loc, "referenced value is not a basic block");
2743     } else {
2744       if (Label.Kind == ValID::t_LocalID)
2745         return Error(Label.Loc, "cannot take address of numeric label after "
2746                                 "the function is defined");
2747       BB = dyn_cast_or_null<BasicBlock>(
2748           F->getValueSymbolTable().lookup(Label.StrVal));
2749       if (!BB)
2750         return Error(Label.Loc, "referenced value is not a basic block");
2751     }
2752
2753     ID.ConstantVal = BlockAddress::get(F, BB);
2754     ID.Kind = ValID::t_Constant;
2755     return false;
2756   }
2757
2758   case lltok::kw_trunc:
2759   case lltok::kw_zext:
2760   case lltok::kw_sext:
2761   case lltok::kw_fptrunc:
2762   case lltok::kw_fpext:
2763   case lltok::kw_bitcast:
2764   case lltok::kw_addrspacecast:
2765   case lltok::kw_uitofp:
2766   case lltok::kw_sitofp:
2767   case lltok::kw_fptoui:
2768   case lltok::kw_fptosi:
2769   case lltok::kw_inttoptr:
2770   case lltok::kw_ptrtoint: {
2771     unsigned Opc = Lex.getUIntVal();
2772     Type *DestTy = nullptr;
2773     Constant *SrcVal;
2774     Lex.Lex();
2775     if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2776         ParseGlobalTypeAndValue(SrcVal) ||
2777         ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
2778         ParseType(DestTy) ||
2779         ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2780       return true;
2781     if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2782       return Error(ID.Loc, "invalid cast opcode for cast from '" +
2783                    getTypeString(SrcVal->getType()) + "' to '" +
2784                    getTypeString(DestTy) + "'");
2785     ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
2786                                                  SrcVal, DestTy);
2787     ID.Kind = ValID::t_Constant;
2788     return false;
2789   }
2790   case lltok::kw_extractvalue: {
2791     Lex.Lex();
2792     Constant *Val;
2793     SmallVector<unsigned, 4> Indices;
2794     if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2795         ParseGlobalTypeAndValue(Val) ||
2796         ParseIndexList(Indices) ||
2797         ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2798       return true;
2799
2800     if (!Val->getType()->isAggregateType())
2801       return Error(ID.Loc, "extractvalue operand must be aggregate type");
2802     if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
2803       return Error(ID.Loc, "invalid indices for extractvalue");
2804     ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
2805     ID.Kind = ValID::t_Constant;
2806     return false;
2807   }
2808   case lltok::kw_insertvalue: {
2809     Lex.Lex();
2810     Constant *Val0, *Val1;
2811     SmallVector<unsigned, 4> Indices;
2812     if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2813         ParseGlobalTypeAndValue(Val0) ||
2814         ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2815         ParseGlobalTypeAndValue(Val1) ||
2816         ParseIndexList(Indices) ||
2817         ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2818       return true;
2819     if (!Val0->getType()->isAggregateType())
2820       return Error(ID.Loc, "insertvalue operand must be aggregate type");
2821     Type *IndexedType =
2822         ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2823     if (!IndexedType)
2824       return Error(ID.Loc, "invalid indices for insertvalue");
2825     if (IndexedType != Val1->getType())
2826       return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2827                                getTypeString(Val1->getType()) +
2828                                "' instead of '" + getTypeString(IndexedType) +
2829                                "'");
2830     ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
2831     ID.Kind = ValID::t_Constant;
2832     return false;
2833   }
2834   case lltok::kw_icmp:
2835   case lltok::kw_fcmp: {
2836     unsigned PredVal, Opc = Lex.getUIntVal();
2837     Constant *Val0, *Val1;
2838     Lex.Lex();
2839     if (ParseCmpPredicate(PredVal, Opc) ||
2840         ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2841         ParseGlobalTypeAndValue(Val0) ||
2842         ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2843         ParseGlobalTypeAndValue(Val1) ||
2844         ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2845       return true;
2846
2847     if (Val0->getType() != Val1->getType())
2848       return Error(ID.Loc, "compare operands must have the same type");
2849
2850     CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
2851
2852     if (Opc == Instruction::FCmp) {
2853       if (!Val0->getType()->isFPOrFPVectorTy())
2854         return Error(ID.Loc, "fcmp requires floating point operands");
2855       ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
2856     } else {
2857       assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
2858       if (!Val0->getType()->isIntOrIntVectorTy() &&
2859           !Val0->getType()->getScalarType()->isPointerTy())
2860         return Error(ID.Loc, "icmp requires pointer or integer operands");
2861       ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
2862     }
2863     ID.Kind = ValID::t_Constant;
2864     return false;
2865   }
2866
2867   // Binary Operators.
2868   case lltok::kw_add:
2869   case lltok::kw_fadd:
2870   case lltok::kw_sub:
2871   case lltok::kw_fsub:
2872   case lltok::kw_mul:
2873   case lltok::kw_fmul:
2874   case lltok::kw_udiv:
2875   case lltok::kw_sdiv:
2876   case lltok::kw_fdiv:
2877   case lltok::kw_urem:
2878   case lltok::kw_srem:
2879   case lltok::kw_frem:
2880   case lltok::kw_shl:
2881   case lltok::kw_lshr:
2882   case lltok::kw_ashr: {
2883     bool NUW = false;
2884     bool NSW = false;
2885     bool Exact = false;
2886     unsigned Opc = Lex.getUIntVal();
2887     Constant *Val0, *Val1;
2888     Lex.Lex();
2889     LocTy ModifierLoc = Lex.getLoc();
2890     if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2891         Opc == Instruction::Mul || Opc == Instruction::Shl) {
2892       if (EatIfPresent(lltok::kw_nuw))
2893         NUW = true;
2894       if (EatIfPresent(lltok::kw_nsw)) {
2895         NSW = true;
2896         if (EatIfPresent(lltok::kw_nuw))
2897           NUW = true;
2898       }
2899     } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2900                Opc == Instruction::LShr || Opc == Instruction::AShr) {
2901       if (EatIfPresent(lltok::kw_exact))
2902         Exact = true;
2903     }
2904     if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2905         ParseGlobalTypeAndValue(Val0) ||
2906         ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2907         ParseGlobalTypeAndValue(Val1) ||
2908         ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2909       return true;
2910     if (Val0->getType() != Val1->getType())
2911       return Error(ID.Loc, "operands of constexpr must have same type");
2912     if (!Val0->getType()->isIntOrIntVectorTy()) {
2913       if (NUW)
2914         return Error(ModifierLoc, "nuw only applies to integer operations");
2915       if (NSW)
2916         return Error(ModifierLoc, "nsw only applies to integer operations");
2917     }
2918     // Check that the type is valid for the operator.
2919     switch (Opc) {
2920     case Instruction::Add:
2921     case Instruction::Sub:
2922     case Instruction::Mul:
2923     case Instruction::UDiv:
2924     case Instruction::SDiv:
2925     case Instruction::URem:
2926     case Instruction::SRem:
2927     case Instruction::Shl:
2928     case Instruction::AShr:
2929     case Instruction::LShr:
2930       if (!Val0->getType()->isIntOrIntVectorTy())
2931         return Error(ID.Loc, "constexpr requires integer operands");
2932       break;
2933     case Instruction::FAdd:
2934     case Instruction::FSub:
2935     case Instruction::FMul:
2936     case Instruction::FDiv:
2937     case Instruction::FRem:
2938       if (!Val0->getType()->isFPOrFPVectorTy())
2939         return Error(ID.Loc, "constexpr requires fp operands");
2940       break;
2941     default: llvm_unreachable("Unknown binary operator!");
2942     }
2943     unsigned Flags = 0;
2944     if (NUW)   Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2945     if (NSW)   Flags |= OverflowingBinaryOperator::NoSignedWrap;
2946     if (Exact) Flags |= PossiblyExactOperator::IsExact;
2947     Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
2948     ID.ConstantVal = C;
2949     ID.Kind = ValID::t_Constant;
2950     return false;
2951   }
2952
2953   // Logical Operations
2954   case lltok::kw_and:
2955   case lltok::kw_or:
2956   case lltok::kw_xor: {
2957     unsigned Opc = Lex.getUIntVal();
2958     Constant *Val0, *Val1;
2959     Lex.Lex();
2960     if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2961         ParseGlobalTypeAndValue(Val0) ||
2962         ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2963         ParseGlobalTypeAndValue(Val1) ||
2964         ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2965       return true;
2966     if (Val0->getType() != Val1->getType())
2967       return Error(ID.Loc, "operands of constexpr must have same type");
2968     if (!Val0->getType()->isIntOrIntVectorTy())
2969       return Error(ID.Loc,
2970                    "constexpr requires integer or integer vector operands");
2971     ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
2972     ID.Kind = ValID::t_Constant;
2973     return false;
2974   }
2975
2976   case lltok::kw_getelementptr:
2977   case lltok::kw_shufflevector:
2978   case lltok::kw_insertelement:
2979   case lltok::kw_extractelement:
2980   case lltok::kw_select: {
2981     unsigned Opc = Lex.getUIntVal();
2982     SmallVector<Constant*, 16> Elts;
2983     bool InBounds = false;
2984     Type *Ty;
2985     Lex.Lex();
2986
2987     if (Opc == Instruction::GetElementPtr)
2988       InBounds = EatIfPresent(lltok::kw_inbounds);
2989
2990     if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2991       return true;
2992
2993     LocTy ExplicitTypeLoc = Lex.getLoc();
2994     if (Opc == Instruction::GetElementPtr) {
2995       if (ParseType(Ty) ||
2996           ParseToken(lltok::comma, "expected comma after getelementptr's type"))
2997         return true;
2998     }
2999
3000     if (ParseGlobalValueVector(Elts) ||
3001         ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3002       return true;
3003
3004     if (Opc == Instruction::GetElementPtr) {
3005       if (Elts.size() == 0 ||
3006           !Elts[0]->getType()->getScalarType()->isPointerTy())
3007         return Error(ID.Loc, "base of getelementptr must be a pointer");
3008
3009       Type *BaseType = Elts[0]->getType();
3010       auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
3011       if (Ty != BasePointerType->getElementType())
3012         return Error(
3013             ExplicitTypeLoc,
3014             "explicit pointee type doesn't match operand's pointee type");
3015
3016       ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
3017       for (Constant *Val : Indices) {
3018         Type *ValTy = Val->getType();
3019         if (!ValTy->getScalarType()->isIntegerTy())
3020           return Error(ID.Loc, "getelementptr index must be an integer");
3021         if (ValTy->isVectorTy() != BaseType->isVectorTy())
3022           return Error(ID.Loc, "getelementptr index type missmatch");
3023         if (ValTy->isVectorTy()) {
3024           unsigned ValNumEl = ValTy->getVectorNumElements();
3025           unsigned PtrNumEl = BaseType->getVectorNumElements();
3026           if (ValNumEl != PtrNumEl)
3027             return Error(
3028                 ID.Loc,
3029                 "getelementptr vector index has a wrong number of elements");
3030         }
3031       }
3032
3033       SmallPtrSet<Type*, 4> Visited;
3034       if (!Indices.empty() && !Ty->isSized(&Visited))
3035         return Error(ID.Loc, "base element of getelementptr must be sized");
3036
3037       if (!GetElementPtrInst::getIndexedType(Ty, Indices))
3038         return Error(ID.Loc, "invalid getelementptr indices");
3039       ID.ConstantVal =
3040           ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
3041     } else if (Opc == Instruction::Select) {
3042       if (Elts.size() != 3)
3043         return Error(ID.Loc, "expected three operands to select");
3044       if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3045                                                               Elts[2]))
3046         return Error(ID.Loc, Reason);
3047       ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
3048     } else if (Opc == Instruction::ShuffleVector) {
3049       if (Elts.size() != 3)
3050         return Error(ID.Loc, "expected three operands to shufflevector");
3051       if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3052         return Error(ID.Loc, "invalid operands to shufflevector");
3053       ID.ConstantVal =
3054                  ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
3055     } else if (Opc == Instruction::ExtractElement) {
3056       if (Elts.size() != 2)
3057         return Error(ID.Loc, "expected two operands to extractelement");
3058       if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3059         return Error(ID.Loc, "invalid extractelement operands");
3060       ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
3061     } else {
3062       assert(Opc == Instruction::InsertElement && "Unknown opcode");
3063       if (Elts.size() != 3)
3064       return Error(ID.Loc, "expected three operands to insertelement");
3065       if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3066         return Error(ID.Loc, "invalid insertelement operands");
3067       ID.ConstantVal =
3068                  ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
3069     }
3070
3071     ID.Kind = ValID::t_Constant;
3072     return false;
3073   }
3074   }
3075
3076   Lex.Lex();
3077   return false;
3078 }
3079
3080 /// ParseGlobalValue - Parse a global value with the specified type.
3081 bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
3082   C = nullptr;
3083   ValID ID;
3084   Value *V = nullptr;
3085   bool Parsed = ParseValID(ID) ||
3086                 ConvertValIDToValue(Ty, ID, V, nullptr);
3087   if (V && !(C = dyn_cast<Constant>(V)))
3088     return Error(ID.Loc, "global values must be constants");
3089   return Parsed;
3090 }
3091
3092 bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
3093   Type *Ty = nullptr;
3094   return ParseType(Ty) ||
3095          ParseGlobalValue(Ty, V);
3096 }
3097
3098 bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
3099   C = nullptr;
3100
3101   LocTy KwLoc = Lex.getLoc();
3102   if (!EatIfPresent(lltok::kw_comdat))
3103     return false;
3104
3105   if (EatIfPresent(lltok::lparen)) {
3106     if (Lex.getKind() != lltok::ComdatVar)
3107       return TokError("expected comdat variable");
3108     C = getComdat(Lex.getStrVal(), Lex.getLoc());
3109     Lex.Lex();
3110     if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3111       return true;
3112   } else {
3113     if (GlobalName.empty())
3114       return TokError("comdat cannot be unnamed");
3115     C = getComdat(GlobalName, KwLoc);
3116   }
3117
3118   return false;
3119 }
3120
3121 /// ParseGlobalValueVector
3122 ///   ::= /*empty*/
3123 ///   ::= TypeAndValue (',' TypeAndValue)*
3124 bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
3125   // Empty list.
3126   if (Lex.getKind() == lltok::rbrace ||
3127       Lex.getKind() == lltok::rsquare ||
3128       Lex.getKind() == lltok::greater ||
3129       Lex.getKind() == lltok::rparen)
3130     return false;
3131
3132   Constant *C;
3133   if (ParseGlobalTypeAndValue(C)) return true;
3134   Elts.push_back(C);
3135
3136   while (EatIfPresent(lltok::comma)) {
3137     if (ParseGlobalTypeAndValue(C)) return true;
3138     Elts.push_back(C);
3139   }
3140
3141   return false;
3142 }
3143
3144 bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
3145   SmallVector<Metadata *, 16> Elts;
3146   if (ParseMDNodeVector(Elts))
3147     return true;
3148
3149   MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
3150   return false;
3151 }
3152
3153 /// MDNode:
3154 ///  ::= !{ ... }
3155 ///  ::= !7
3156 ///  ::= !DILocation(...)
3157 bool LLParser::ParseMDNode(MDNode *&N) {
3158   if (Lex.getKind() == lltok::MetadataVar)
3159     return ParseSpecializedMDNode(N);
3160
3161   return ParseToken(lltok::exclaim, "expected '!' here") ||
3162          ParseMDNodeTail(N);
3163 }
3164
3165 bool LLParser::ParseMDNodeTail(MDNode *&N) {
3166   // !{ ... }
3167   if (Lex.getKind() == lltok::lbrace)
3168     return ParseMDTuple(N);
3169
3170   // !42
3171   return ParseMDNodeID(N);
3172 }
3173
3174 namespace {
3175
3176 /// Structure to represent an optional metadata field.
3177 template <class FieldTy> struct MDFieldImpl {
3178   typedef MDFieldImpl ImplTy;
3179   FieldTy Val;
3180   bool Seen;
3181
3182   void assign(FieldTy Val) {
3183     Seen = true;
3184     this->Val = std::move(Val);
3185   }
3186
3187   explicit MDFieldImpl(FieldTy Default)
3188       : Val(std::move(Default)), Seen(false) {}
3189 };
3190
3191 struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3192   uint64_t Max;
3193
3194   MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3195       : ImplTy(Default), Max(Max) {}
3196 };
3197 struct LineField : public MDUnsignedField {
3198   LineField() : MDUnsignedField(0, UINT32_MAX) {}
3199 };
3200 struct ColumnField : public MDUnsignedField {
3201   ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3202 };
3203 struct DwarfTagField : public MDUnsignedField {
3204   DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
3205   DwarfTagField(dwarf::Tag DefaultTag)
3206       : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
3207 };
3208 struct DwarfAttEncodingField : public MDUnsignedField {
3209   DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3210 };
3211 struct DwarfVirtualityField : public MDUnsignedField {
3212   DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3213 };
3214 struct DwarfLangField : public MDUnsignedField {
3215   DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3216 };
3217
3218 struct DIFlagField : public MDUnsignedField {
3219   DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3220 };
3221
3222 struct MDSignedField : public MDFieldImpl<int64_t> {
3223   int64_t Min;
3224   int64_t Max;
3225
3226   MDSignedField(int64_t Default = 0)
3227       : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3228   MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3229       : ImplTy(Default), Min(Min), Max(Max) {}
3230 };
3231
3232 struct MDBoolField : public MDFieldImpl<bool> {
3233   MDBoolField(bool Default = false) : ImplTy(Default) {}
3234 };
3235 struct MDField : public MDFieldImpl<Metadata *> {
3236   bool AllowNull;
3237
3238   MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
3239 };
3240 struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3241   MDConstant() : ImplTy(nullptr) {}
3242 };
3243 struct MDStringField : public MDFieldImpl<MDString *> {
3244   bool AllowEmpty;
3245   MDStringField(bool AllowEmpty = true)
3246       : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
3247 };
3248 struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3249   MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3250 };
3251
3252 } // end namespace
3253
3254 namespace llvm {
3255
3256 template <>
3257 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3258                             MDUnsignedField &Result) {
3259   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3260     return TokError("expected unsigned integer");
3261
3262   auto &U = Lex.getAPSIntVal();
3263   if (U.ugt(Result.Max))
3264     return TokError("value for '" + Name + "' too large, limit is " +
3265                     Twine(Result.Max));
3266   Result.assign(U.getZExtValue());
3267   assert(Result.Val <= Result.Max && "Expected value in range");
3268   Lex.Lex();
3269   return false;
3270 }
3271
3272 template <>
3273 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3274   return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3275 }
3276 template <>
3277 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3278   return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3279 }
3280
3281 template <>
3282 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3283   if (Lex.getKind() == lltok::APSInt)
3284     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3285
3286   if (Lex.getKind() != lltok::DwarfTag)
3287     return TokError("expected DWARF tag");
3288
3289   unsigned Tag = dwarf::getTag(Lex.getStrVal());
3290   if (Tag == dwarf::DW_TAG_invalid)
3291     return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
3292   assert(Tag <= Result.Max && "Expected valid DWARF tag");
3293
3294   Result.assign(Tag);
3295   Lex.Lex();
3296   return false;
3297 }
3298
3299 template <>
3300 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3301                             DwarfVirtualityField &Result) {
3302   if (Lex.getKind() == lltok::APSInt)
3303     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3304
3305   if (Lex.getKind() != lltok::DwarfVirtuality)
3306     return TokError("expected DWARF virtuality code");
3307
3308   unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3309   if (!Virtuality)
3310     return TokError("invalid DWARF virtuality code" + Twine(" '") +
3311                     Lex.getStrVal() + "'");
3312   assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3313   Result.assign(Virtuality);
3314   Lex.Lex();
3315   return false;
3316 }
3317
3318 template <>
3319 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3320   if (Lex.getKind() == lltok::APSInt)
3321     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3322
3323   if (Lex.getKind() != lltok::DwarfLang)
3324     return TokError("expected DWARF language");
3325
3326   unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3327   if (!Lang)
3328     return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3329                     "'");
3330   assert(Lang <= Result.Max && "Expected valid DWARF language");
3331   Result.assign(Lang);
3332   Lex.Lex();
3333   return false;
3334 }
3335
3336 template <>
3337 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3338                             DwarfAttEncodingField &Result) {
3339   if (Lex.getKind() == lltok::APSInt)
3340     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3341
3342   if (Lex.getKind() != lltok::DwarfAttEncoding)
3343     return TokError("expected DWARF type attribute encoding");
3344
3345   unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3346   if (!Encoding)
3347     return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3348                     Lex.getStrVal() + "'");
3349   assert(Encoding <= Result.Max && "Expected valid DWARF language");
3350   Result.assign(Encoding);
3351   Lex.Lex();
3352   return false;
3353 }
3354
3355 /// DIFlagField
3356 ///  ::= uint32
3357 ///  ::= DIFlagVector
3358 ///  ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3359 template <>
3360 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3361   assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3362
3363   // Parser for a single flag.
3364   auto parseFlag = [&](unsigned &Val) {
3365     if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3366       return ParseUInt32(Val);
3367
3368     if (Lex.getKind() != lltok::DIFlag)
3369       return TokError("expected debug info flag");
3370
3371     Val = DINode::getFlag(Lex.getStrVal());
3372     if (!Val)
3373       return TokError(Twine("invalid debug info flag flag '") +
3374                       Lex.getStrVal() + "'");
3375     Lex.Lex();
3376     return false;
3377   };
3378
3379   // Parse the flags and combine them together.
3380   unsigned Combined = 0;
3381   do {
3382     unsigned Val;
3383     if (parseFlag(Val))
3384       return true;
3385     Combined |= Val;
3386   } while (EatIfPresent(lltok::bar));
3387
3388   Result.assign(Combined);
3389   return false;
3390 }
3391
3392 template <>
3393 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3394                             MDSignedField &Result) {
3395   if (Lex.getKind() != lltok::APSInt)
3396     return TokError("expected signed integer");
3397
3398   auto &S = Lex.getAPSIntVal();
3399   if (S < Result.Min)
3400     return TokError("value for '" + Name + "' too small, limit is " +
3401                     Twine(Result.Min));
3402   if (S > Result.Max)
3403     return TokError("value for '" + Name + "' too large, limit is " +
3404                     Twine(Result.Max));
3405   Result.assign(S.getExtValue());
3406   assert(Result.Val >= Result.Min && "Expected value in range");
3407   assert(Result.Val <= Result.Max && "Expected value in range");
3408   Lex.Lex();
3409   return false;
3410 }
3411
3412 template <>
3413 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3414   switch (Lex.getKind()) {
3415   default:
3416     return TokError("expected 'true' or 'false'");
3417   case lltok::kw_true:
3418     Result.assign(true);
3419     break;
3420   case lltok::kw_false:
3421     Result.assign(false);
3422     break;
3423   }
3424   Lex.Lex();
3425   return false;
3426 }
3427
3428 template <>
3429 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
3430   if (Lex.getKind() == lltok::kw_null) {
3431     if (!Result.AllowNull)
3432       return TokError("'" + Name + "' cannot be null");
3433     Lex.Lex();
3434     Result.assign(nullptr);
3435     return false;
3436   }
3437
3438   Metadata *MD;
3439   if (ParseMetadata(MD, nullptr))
3440     return true;
3441
3442   Result.assign(MD);
3443   return false;
3444 }
3445
3446 template <>
3447 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3448   Metadata *MD;
3449   if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3450     return true;
3451
3452   Result.assign(cast<ConstantAsMetadata>(MD));
3453   return false;
3454 }
3455
3456 template <>
3457 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
3458   LocTy ValueLoc = Lex.getLoc();
3459   std::string S;
3460   if (ParseStringConstant(S))
3461     return true;
3462
3463   if (!Result.AllowEmpty && S.empty())
3464     return Error(ValueLoc, "'" + Name + "' cannot be empty");
3465
3466   Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
3467   return false;
3468 }
3469
3470 template <>
3471 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3472   SmallVector<Metadata *, 4> MDs;
3473   if (ParseMDNodeVector(MDs))
3474     return true;
3475
3476   Result.assign(std::move(MDs));
3477   return false;
3478 }
3479
3480 } // end namespace llvm
3481
3482 template <class ParserTy>
3483 bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
3484   do {
3485     if (Lex.getKind() != lltok::LabelStr)
3486       return TokError("expected field label here");
3487
3488     if (parseField())
3489       return true;
3490   } while (EatIfPresent(lltok::comma));
3491
3492   return false;
3493 }
3494
3495 template <class ParserTy>
3496 bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3497   assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3498   Lex.Lex();
3499
3500   if (ParseToken(lltok::lparen, "expected '(' here"))
3501     return true;
3502   if (Lex.getKind() != lltok::rparen)
3503     if (ParseMDFieldsImplBody(parseField))
3504       return true;
3505
3506   ClosingLoc = Lex.getLoc();
3507   return ParseToken(lltok::rparen, "expected ')' here");
3508 }
3509
3510 template <class FieldTy>
3511 bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3512   if (Result.Seen)
3513     return TokError("field '" + Name + "' cannot be specified more than once");
3514
3515   LocTy Loc = Lex.getLoc();
3516   Lex.Lex();
3517   return ParseMDField(Loc, Name, Result);
3518 }
3519
3520 bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3521   assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3522
3523 #define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS)                                  \
3524   if (Lex.getStrVal() == #CLASS)                                               \
3525     return Parse##CLASS(N, IsDistinct);
3526 #include "llvm/IR/Metadata.def"
3527
3528   return TokError("expected metadata type");
3529 }
3530
3531 #define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3532 #define NOP_FIELD(NAME, TYPE, INIT)
3533 #define REQUIRE_FIELD(NAME, TYPE, INIT)                                        \
3534   if (!NAME.Seen)                                                              \
3535     return Error(ClosingLoc, "missing required field '" #NAME "'");
3536 #define PARSE_MD_FIELD(NAME, TYPE, DEFAULT)                                    \
3537   if (Lex.getStrVal() == #NAME)                                                \
3538     return ParseMDField(#NAME, NAME);
3539 #define PARSE_MD_FIELDS()                                                      \
3540   VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD)                                \
3541   do {                                                                         \
3542     LocTy ClosingLoc;                                                          \
3543     if (ParseMDFieldsImpl([&]() -> bool {                                      \
3544       VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD)                          \
3545       return TokError(Twine("invalid field '") + Lex.getStrVal() + "'");       \
3546     }, ClosingLoc))                                                            \
3547       return true;                                                             \
3548     VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD)                                  \
3549   } while (false)
3550 #define GET_OR_DISTINCT(CLASS, ARGS)                                           \
3551   (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
3552
3553 /// ParseDILocationFields:
3554 ///   ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3555 bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
3556 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3557   OPTIONAL(line, LineField, );                                                 \
3558   OPTIONAL(column, ColumnField, );                                             \
3559   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3560   OPTIONAL(inlinedAt, MDField, );
3561   PARSE_MD_FIELDS();
3562 #undef VISIT_MD_FIELDS
3563
3564   Result = GET_OR_DISTINCT(
3565       DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
3566   return false;
3567 }
3568
3569 /// ParseGenericDINode:
3570 ///   ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3571 bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
3572 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3573   REQUIRED(tag, DwarfTagField, );                                              \
3574   OPTIONAL(header, MDStringField, );                                           \
3575   OPTIONAL(operands, MDFieldList, );
3576   PARSE_MD_FIELDS();
3577 #undef VISIT_MD_FIELDS
3578
3579   Result = GET_OR_DISTINCT(GenericDINode,
3580                            (Context, tag.Val, header.Val, operands.Val));
3581   return false;
3582 }
3583
3584 /// ParseDISubrange:
3585 ///   ::= !DISubrange(count: 30, lowerBound: 2)
3586 bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
3587 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3588   REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX));                         \
3589   OPTIONAL(lowerBound, MDSignedField, );
3590   PARSE_MD_FIELDS();
3591 #undef VISIT_MD_FIELDS
3592
3593   Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
3594   return false;
3595 }
3596
3597 /// ParseDIEnumerator:
3598 ///   ::= !DIEnumerator(value: 30, name: "SomeKind")
3599 bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
3600 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3601   REQUIRED(name, MDStringField, );                                             \
3602   REQUIRED(value, MDSignedField, );
3603   PARSE_MD_FIELDS();
3604 #undef VISIT_MD_FIELDS
3605
3606   Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
3607   return false;
3608 }
3609
3610 /// ParseDIBasicType:
3611 ///   ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3612 bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
3613 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3614   OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type));                     \
3615   OPTIONAL(name, MDStringField, );                                             \
3616   OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX));                            \
3617   OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX));                           \
3618   OPTIONAL(encoding, DwarfAttEncodingField, );
3619   PARSE_MD_FIELDS();
3620 #undef VISIT_MD_FIELDS
3621
3622   Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
3623                                          align.Val, encoding.Val));
3624   return false;
3625 }
3626
3627 /// ParseDIDerivedType:
3628 ///   ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
3629 ///                      line: 7, scope: !1, baseType: !2, size: 32,
3630 ///                      align: 32, offset: 0, flags: 0, extraData: !3)
3631 bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
3632 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3633   REQUIRED(tag, DwarfTagField, );                                              \
3634   OPTIONAL(name, MDStringField, );                                             \
3635   OPTIONAL(file, MDField, );                                                   \
3636   OPTIONAL(line, LineField, );                                                 \
3637   OPTIONAL(scope, MDField, );                                                  \
3638   REQUIRED(baseType, MDField, );                                               \
3639   OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX));                            \
3640   OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX));                           \
3641   OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX));                          \
3642   OPTIONAL(flags, DIFlagField, );                                              \
3643   OPTIONAL(extraData, MDField, );
3644   PARSE_MD_FIELDS();
3645 #undef VISIT_MD_FIELDS
3646
3647   Result = GET_OR_DISTINCT(DIDerivedType,
3648                            (Context, tag.Val, name.Val, file.Val, line.Val,
3649                             scope.Val, baseType.Val, size.Val, align.Val,
3650                             offset.Val, flags.Val, extraData.Val));
3651   return false;
3652 }
3653
3654 bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
3655 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3656   REQUIRED(tag, DwarfTagField, );                                              \
3657   OPTIONAL(name, MDStringField, );                                             \
3658   OPTIONAL(file, MDField, );                                                   \
3659   OPTIONAL(line, LineField, );                                                 \
3660   OPTIONAL(scope, MDField, );                                                  \
3661   OPTIONAL(baseType, MDField, );                                               \
3662   OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX));                            \
3663   OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX));                           \
3664   OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX));                          \
3665   OPTIONAL(flags, DIFlagField, );                                              \
3666   OPTIONAL(elements, MDField, );                                               \
3667   OPTIONAL(runtimeLang, DwarfLangField, );                                     \
3668   OPTIONAL(vtableHolder, MDField, );                                           \
3669   OPTIONAL(templateParams, MDField, );                                         \
3670   OPTIONAL(identifier, MDStringField, );
3671   PARSE_MD_FIELDS();
3672 #undef VISIT_MD_FIELDS
3673
3674   Result = GET_OR_DISTINCT(
3675       DICompositeType,
3676       (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3677        size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3678        runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3679   return false;
3680 }
3681
3682 bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
3683 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3684   OPTIONAL(flags, DIFlagField, );                                              \
3685   REQUIRED(types, MDField, );
3686   PARSE_MD_FIELDS();
3687 #undef VISIT_MD_FIELDS
3688
3689   Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
3690   return false;
3691 }
3692
3693 /// ParseDIFileType:
3694 ///   ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3695 bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
3696 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3697   REQUIRED(filename, MDStringField, );                                         \
3698   REQUIRED(directory, MDStringField, );
3699   PARSE_MD_FIELDS();
3700 #undef VISIT_MD_FIELDS
3701
3702   Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
3703   return false;
3704 }
3705
3706 /// ParseDICompileUnit:
3707 ///   ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
3708 ///                      isOptimized: true, flags: "-O2", runtimeVersion: 1,
3709 ///                      splitDebugFilename: "abc.debug", emissionKind: 1,
3710 ///                      enums: !1, retainedTypes: !2, subprograms: !3,
3711 ///                      globals: !4, imports: !5, dwoId: 0x0abcd)
3712 bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
3713   if (!IsDistinct)
3714     return Lex.Error("missing 'distinct', required for !DICompileUnit");
3715
3716 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3717   REQUIRED(language, DwarfLangField, );                                        \
3718   REQUIRED(file, MDField, (/* AllowNull */ false));                            \
3719   OPTIONAL(producer, MDStringField, );                                         \
3720   OPTIONAL(isOptimized, MDBoolField, );                                        \
3721   OPTIONAL(flags, MDStringField, );                                            \
3722   OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX));                  \
3723   OPTIONAL(splitDebugFilename, MDStringField, );                               \
3724   OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX));                    \
3725   OPTIONAL(enums, MDField, );                                                  \
3726   OPTIONAL(retainedTypes, MDField, );                                          \
3727   OPTIONAL(subprograms, MDField, );                                            \
3728   OPTIONAL(globals, MDField, );                                                \
3729   OPTIONAL(imports, MDField, );                                                \
3730   OPTIONAL(dwoId, MDUnsignedField, );
3731   PARSE_MD_FIELDS();
3732 #undef VISIT_MD_FIELDS
3733
3734   Result = DICompileUnit::getDistinct(
3735       Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3736       runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
3737       retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, dwoId.Val);
3738   return false;
3739 }
3740
3741 /// ParseDISubprogram:
3742 ///   ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
3743 ///                     file: !1, line: 7, type: !2, isLocal: false,
3744 ///                     isDefinition: true, scopeLine: 8, containingType: !3,
3745 ///                     virtuality: DW_VIRTUALTIY_pure_virtual,
3746 ///                     virtualIndex: 10, flags: 11,
3747 ///                     isOptimized: false, function: void ()* @_Z3foov,
3748 ///                     templateParams: !4, declaration: !5, variables: !6)
3749 bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
3750   auto Loc = Lex.getLoc();
3751 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3752   OPTIONAL(scope, MDField, );                                                  \
3753   OPTIONAL(name, MDStringField, );                                             \
3754   OPTIONAL(linkageName, MDStringField, );                                      \
3755   OPTIONAL(file, MDField, );                                                   \
3756   OPTIONAL(line, LineField, );                                                 \
3757   OPTIONAL(type, MDField, );                                                   \
3758   OPTIONAL(isLocal, MDBoolField, );                                            \
3759   OPTIONAL(isDefinition, MDBoolField, (true));                                 \
3760   OPTIONAL(scopeLine, LineField, );                                            \
3761   OPTIONAL(containingType, MDField, );                                         \
3762   OPTIONAL(virtuality, DwarfVirtualityField, );                                \
3763   OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX));                    \
3764   OPTIONAL(flags, DIFlagField, );                                              \
3765   OPTIONAL(isOptimized, MDBoolField, );                                        \
3766   OPTIONAL(function, MDConstant, );                                            \
3767   OPTIONAL(templateParams, MDField, );                                         \
3768   OPTIONAL(declaration, MDField, );                                            \
3769   OPTIONAL(variables, MDField, );
3770   PARSE_MD_FIELDS();
3771 #undef VISIT_MD_FIELDS
3772
3773   if (isDefinition.Val && !IsDistinct)
3774     return Lex.Error(
3775         Loc,
3776         "missing 'distinct', required for !DISubprogram when 'isDefinition'");
3777
3778   Result = GET_OR_DISTINCT(
3779       DISubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
3780                      line.Val, type.Val, isLocal.Val, isDefinition.Val,
3781                      scopeLine.Val, containingType.Val, virtuality.Val,
3782                      virtualIndex.Val, flags.Val, isOptimized.Val, function.Val,
3783                      templateParams.Val, declaration.Val, variables.Val));
3784   return false;
3785 }
3786
3787 /// ParseDILexicalBlock:
3788 ///   ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3789 bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
3790 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3791   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3792   OPTIONAL(file, MDField, );                                                   \
3793   OPTIONAL(line, LineField, );                                                 \
3794   OPTIONAL(column, ColumnField, );
3795   PARSE_MD_FIELDS();
3796 #undef VISIT_MD_FIELDS
3797
3798   Result = GET_OR_DISTINCT(
3799       DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
3800   return false;
3801 }
3802
3803 /// ParseDILexicalBlockFile:
3804 ///   ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3805 bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
3806 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3807   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3808   OPTIONAL(file, MDField, );                                                   \
3809   REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3810   PARSE_MD_FIELDS();
3811 #undef VISIT_MD_FIELDS
3812
3813   Result = GET_OR_DISTINCT(DILexicalBlockFile,
3814                            (Context, scope.Val, file.Val, discriminator.Val));
3815   return false;
3816 }
3817
3818 /// ParseDINamespace:
3819 ///   ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3820 bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
3821 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3822   REQUIRED(scope, MDField, );                                                  \
3823   OPTIONAL(file, MDField, );                                                   \
3824   OPTIONAL(name, MDStringField, );                                             \
3825   OPTIONAL(line, LineField, );
3826   PARSE_MD_FIELDS();
3827 #undef VISIT_MD_FIELDS
3828
3829   Result = GET_OR_DISTINCT(DINamespace,
3830                            (Context, scope.Val, file.Val, name.Val, line.Val));
3831   return false;
3832 }
3833
3834 /// ParseDIModule:
3835 ///   ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3836 ///                 includePath: "/usr/include", isysroot: "/")
3837 bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3838 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3839   REQUIRED(scope, MDField, );                                                  \
3840   REQUIRED(name, MDStringField, );                                             \
3841   OPTIONAL(configMacros, MDStringField, );                                     \
3842   OPTIONAL(includePath, MDStringField, );                                      \
3843   OPTIONAL(isysroot, MDStringField, );
3844   PARSE_MD_FIELDS();
3845 #undef VISIT_MD_FIELDS
3846
3847   Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3848                            configMacros.Val, includePath.Val, isysroot.Val));
3849   return false;
3850 }
3851
3852 /// ParseDITemplateTypeParameter:
3853 ///   ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3854 bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
3855 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3856   OPTIONAL(name, MDStringField, );                                             \
3857   REQUIRED(type, MDField, );
3858   PARSE_MD_FIELDS();
3859 #undef VISIT_MD_FIELDS
3860
3861   Result =
3862       GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
3863   return false;
3864 }
3865
3866 /// ParseDITemplateValueParameter:
3867 ///   ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
3868 ///                                 name: "V", type: !1, value: i32 7)
3869 bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
3870 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3871   OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter));      \
3872   OPTIONAL(name, MDStringField, );                                             \
3873   OPTIONAL(type, MDField, );                                                   \
3874   REQUIRED(value, MDField, );
3875   PARSE_MD_FIELDS();
3876 #undef VISIT_MD_FIELDS
3877
3878   Result = GET_OR_DISTINCT(DITemplateValueParameter,
3879                            (Context, tag.Val, name.Val, type.Val, value.Val));
3880   return false;
3881 }
3882
3883 /// ParseDIGlobalVariable:
3884 ///   ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
3885 ///                         file: !1, line: 7, type: !2, isLocal: false,
3886 ///                         isDefinition: true, variable: i32* @foo,
3887 ///                         declaration: !3)
3888 bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
3889 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3890   REQUIRED(name, MDStringField, (/* AllowEmpty */ false));                     \
3891   OPTIONAL(scope, MDField, );                                                  \
3892   OPTIONAL(linkageName, MDStringField, );                                      \
3893   OPTIONAL(file, MDField, );                                                   \
3894   OPTIONAL(line, LineField, );                                                 \
3895   OPTIONAL(type, MDField, );                                                   \
3896   OPTIONAL(isLocal, MDBoolField, );                                            \
3897   OPTIONAL(isDefinition, MDBoolField, (true));                                 \
3898   OPTIONAL(variable, MDConstant, );                                            \
3899   OPTIONAL(declaration, MDField, );
3900   PARSE_MD_FIELDS();
3901 #undef VISIT_MD_FIELDS
3902
3903   Result = GET_OR_DISTINCT(DIGlobalVariable,
3904                            (Context, scope.Val, name.Val, linkageName.Val,
3905                             file.Val, line.Val, type.Val, isLocal.Val,
3906                             isDefinition.Val, variable.Val, declaration.Val));
3907   return false;
3908 }
3909
3910 /// ParseDILocalVariable:
3911 ///   ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3912 ///                        file: !1, line: 7, type: !2, arg: 2, flags: 7)
3913 ///   ::= !DILocalVariable(scope: !0, name: "foo",
3914 ///                        file: !1, line: 7, type: !2, arg: 2, flags: 7)
3915 bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
3916 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3917   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3918   OPTIONAL(name, MDStringField, );                                             \
3919   OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX));                             \
3920   OPTIONAL(file, MDField, );                                                   \
3921   OPTIONAL(line, LineField, );                                                 \
3922   OPTIONAL(type, MDField, );                                                   \
3923   OPTIONAL(flags, DIFlagField, );
3924   PARSE_MD_FIELDS();
3925 #undef VISIT_MD_FIELDS
3926
3927   Result = GET_OR_DISTINCT(DILocalVariable,
3928                            (Context, scope.Val, name.Val, file.Val, line.Val,
3929                             type.Val, arg.Val, flags.Val));
3930   return false;
3931 }
3932
3933 /// ParseDIExpression:
3934 ///   ::= !DIExpression(0, 7, -1)
3935 bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
3936   assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3937   Lex.Lex();
3938
3939   if (ParseToken(lltok::lparen, "expected '(' here"))
3940     return true;
3941
3942   SmallVector<uint64_t, 8> Elements;
3943   if (Lex.getKind() != lltok::rparen)
3944     do {
3945       if (Lex.getKind() == lltok::DwarfOp) {
3946         if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
3947           Lex.Lex();
3948           Elements.push_back(Op);
3949           continue;
3950         }
3951         return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
3952       }
3953
3954       if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3955         return TokError("expected unsigned integer");
3956
3957       auto &U = Lex.getAPSIntVal();
3958       if (U.ugt(UINT64_MAX))
3959         return TokError("element too large, limit is " + Twine(UINT64_MAX));
3960       Elements.push_back(U.getZExtValue());
3961       Lex.Lex();
3962     } while (EatIfPresent(lltok::comma));
3963
3964   if (ParseToken(lltok::rparen, "expected ')' here"))
3965     return true;
3966
3967   Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
3968   return false;
3969 }
3970
3971 /// ParseDIObjCProperty:
3972 ///   ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
3973 ///                       getter: "getFoo", attributes: 7, type: !2)
3974 bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
3975 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3976   OPTIONAL(name, MDStringField, );                                             \
3977   OPTIONAL(file, MDField, );                                                   \
3978   OPTIONAL(line, LineField, );                                                 \
3979   OPTIONAL(setter, MDStringField, );                                           \
3980   OPTIONAL(getter, MDStringField, );                                           \
3981   OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX));                      \
3982   OPTIONAL(type, MDField, );
3983   PARSE_MD_FIELDS();
3984 #undef VISIT_MD_FIELDS
3985
3986   Result = GET_OR_DISTINCT(DIObjCProperty,
3987                            (Context, name.Val, file.Val, line.Val, setter.Val,
3988                             getter.Val, attributes.Val, type.Val));
3989   return false;
3990 }
3991
3992 /// ParseDIImportedEntity:
3993 ///   ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
3994 ///                         line: 7, name: "foo")
3995 bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
3996 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3997   REQUIRED(tag, DwarfTagField, );                                              \
3998   REQUIRED(scope, MDField, );                                                  \
3999   OPTIONAL(entity, MDField, );                                                 \
4000   OPTIONAL(line, LineField, );                                                 \
4001   OPTIONAL(name, MDStringField, );
4002   PARSE_MD_FIELDS();
4003 #undef VISIT_MD_FIELDS
4004
4005   Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
4006                                               entity.Val, line.Val, name.Val));
4007   return false;
4008 }
4009
4010 #undef PARSE_MD_FIELD
4011 #undef NOP_FIELD
4012 #undef REQUIRE_FIELD
4013 #undef DECLARE_FIELD
4014
4015 /// ParseMetadataAsValue
4016 ///  ::= metadata i32 %local
4017 ///  ::= metadata i32 @global
4018 ///  ::= metadata i32 7
4019 ///  ::= metadata !0
4020 ///  ::= metadata !{...}
4021 ///  ::= metadata !"string"
4022 bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4023   // Note: the type 'metadata' has already been parsed.
4024   Metadata *MD;
4025   if (ParseMetadata(MD, &PFS))
4026     return true;
4027
4028   V = MetadataAsValue::get(Context, MD);
4029   return false;
4030 }
4031
4032 /// ParseValueAsMetadata
4033 ///  ::= i32 %local
4034 ///  ::= i32 @global
4035 ///  ::= i32 7
4036 bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4037                                     PerFunctionState *PFS) {
4038   Type *Ty;
4039   LocTy Loc;
4040   if (ParseType(Ty, TypeMsg, Loc))
4041     return true;
4042   if (Ty->isMetadataTy())
4043     return Error(Loc, "invalid metadata-value-metadata roundtrip");
4044
4045   Value *V;
4046   if (ParseValue(Ty, V, PFS))
4047     return true;
4048
4049   MD = ValueAsMetadata::get(V);
4050   return false;
4051 }
4052
4053 /// ParseMetadata
4054 ///  ::= i32 %local
4055 ///  ::= i32 @global
4056 ///  ::= i32 7
4057 ///  ::= !42
4058 ///  ::= !{...}
4059 ///  ::= !"string"
4060 ///  ::= !DILocation(...)
4061 bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
4062   if (Lex.getKind() == lltok::MetadataVar) {
4063     MDNode *N;
4064     if (ParseSpecializedMDNode(N))
4065       return true;
4066     MD = N;
4067     return false;
4068   }
4069
4070   // ValueAsMetadata:
4071   // <type> <value>
4072   if (Lex.getKind() != lltok::exclaim)
4073     return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
4074
4075   // '!'.
4076   assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4077   Lex.Lex();
4078
4079   // MDString:
4080   //   ::= '!' STRINGCONSTANT
4081   if (Lex.getKind() == lltok::StringConstant) {
4082     MDString *S;
4083     if (ParseMDString(S))
4084       return true;
4085     MD = S;
4086     return false;
4087   }
4088
4089   // MDNode:
4090   // !{ ... }
4091   // !7
4092   MDNode *N;
4093   if (ParseMDNodeTail(N))
4094     return true;
4095   MD = N;
4096   return false;
4097 }
4098
4099
4100 //===----------------------------------------------------------------------===//
4101 // Function Parsing.
4102 //===----------------------------------------------------------------------===//
4103
4104 bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
4105                                    PerFunctionState *PFS,
4106                                    OperatorConstraint OC) {
4107   if (Ty->isFunctionTy())
4108     return Error(ID.Loc, "functions are not values, refer to them as pointers");
4109
4110   if (OC && ID.Kind != ValID::t_LocalID && ID.Kind != ValID::t_LocalName) {
4111     switch (OC) {
4112     case OC_CatchPad:
4113       return Error(ID.Loc, "Catchpad value required in this position");
4114     case OC_CleanupPad:
4115       return Error(ID.Loc, "Cleanuppad value required in this position");
4116     default:
4117       llvm_unreachable("Unexpected constraint kind");
4118     }
4119   }
4120
4121   switch (ID.Kind) {
4122   case ValID::t_LocalID:
4123     if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
4124     V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc, OC);
4125     return V == nullptr;
4126   case ValID::t_LocalName:
4127     if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
4128     V = PFS->GetVal(ID.StrVal, Ty, ID.Loc, OC);
4129     return V == nullptr;
4130   case ValID::t_InlineAsm: {
4131     assert(ID.FTy);
4132     if (!InlineAsm::Verify(ID.FTy, ID.StrVal2))
4133       return Error(ID.Loc, "invalid type for inline asm constraint string");
4134     V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4135                        (ID.UIntVal >> 1) & 1,
4136                        (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
4137     return false;
4138   }
4139   case ValID::t_GlobalName:
4140     V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
4141     return V == nullptr;
4142   case ValID::t_GlobalID:
4143     V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
4144     return V == nullptr;
4145   case ValID::t_APSInt:
4146     if (!Ty->isIntegerTy())
4147       return Error(ID.Loc, "integer constant must have integer type");
4148     ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
4149     V = ConstantInt::get(Context, ID.APSIntVal);
4150     return false;
4151   case ValID::t_APFloat:
4152     if (!Ty->isFloatingPointTy() ||
4153         !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4154       return Error(ID.Loc, "floating point constant invalid for type");
4155
4156     // The lexer has no type info, so builds all half, float, and double FP
4157     // constants as double.  Fix this here.  Long double does not need this.
4158     if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
4159       bool Ignored;
4160       if (Ty->isHalfTy())
4161         ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4162                               &Ignored);
4163       else if (Ty->isFloatTy())
4164         ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4165                               &Ignored);
4166     }
4167     V = ConstantFP::get(Context, ID.APFloatVal);
4168
4169     if (V->getType() != Ty)
4170       return Error(ID.Loc, "floating point constant does not have type '" +
4171                    getTypeString(Ty) + "'");
4172
4173     return false;
4174   case ValID::t_Null:
4175     if (!Ty->isPointerTy())
4176       return Error(ID.Loc, "null must be a pointer type");
4177     V = ConstantPointerNull::get(cast<PointerType>(Ty));
4178     return false;
4179   case ValID::t_Undef:
4180     // FIXME: LabelTy should not be a first-class type.
4181     if (!Ty->isFirstClassType() || Ty->isLabelTy())
4182       return Error(ID.Loc, "invalid type for undef constant");
4183     V = UndefValue::get(Ty);
4184     return false;
4185   case ValID::t_EmptyArray:
4186     if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
4187       return Error(ID.Loc, "invalid empty array initializer");
4188     V = UndefValue::get(Ty);
4189     return false;
4190   case ValID::t_Zero:
4191     // FIXME: LabelTy should not be a first-class type.
4192     if (!Ty->isFirstClassType() || Ty->isLabelTy())
4193       return Error(ID.Loc, "invalid type for null constant");
4194     V = Constant::getNullValue(Ty);
4195     return false;
4196   case ValID::t_Constant:
4197     if (ID.ConstantVal->getType() != Ty)
4198       return Error(ID.Loc, "constant expression type mismatch");
4199
4200     V = ID.ConstantVal;
4201     return false;
4202   case ValID::t_ConstantStruct:
4203   case ValID::t_PackedConstantStruct:
4204     if (StructType *ST = dyn_cast<StructType>(Ty)) {
4205       if (ST->getNumElements() != ID.UIntVal)
4206         return Error(ID.Loc,
4207                      "initializer with struct type has wrong # elements");
4208       if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4209         return Error(ID.Loc, "packed'ness of initializer and type don't match");
4210
4211       // Verify that the elements are compatible with the structtype.
4212       for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4213         if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4214           return Error(ID.Loc, "element " + Twine(i) +
4215                     " of struct initializer doesn't match struct element type");
4216
4217       V = ConstantStruct::get(
4218           ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
4219     } else
4220       return Error(ID.Loc, "constant expression type mismatch");
4221     return false;
4222   }
4223   llvm_unreachable("Invalid ValID");
4224 }
4225
4226 bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4227   C = nullptr;
4228   ValID ID;
4229   auto Loc = Lex.getLoc();
4230   if (ParseValID(ID, /*PFS=*/nullptr))
4231     return true;
4232   switch (ID.Kind) {
4233   case ValID::t_APSInt:
4234   case ValID::t_APFloat:
4235   case ValID::t_Constant:
4236   case ValID::t_ConstantStruct:
4237   case ValID::t_PackedConstantStruct: {
4238     Value *V;
4239     if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4240       return true;
4241     assert(isa<Constant>(V) && "Expected a constant value");
4242     C = cast<Constant>(V);
4243     return false;
4244   }
4245   default:
4246     return Error(Loc, "expected a constant value");
4247   }
4248 }
4249
4250 bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS,
4251                           OperatorConstraint OC) {
4252   V = nullptr;
4253   ValID ID;
4254   return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS, OC);
4255 }
4256
4257 bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
4258   Type *Ty = nullptr;
4259   return ParseType(Ty) ||
4260          ParseValue(Ty, V, PFS);
4261 }
4262
4263 bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4264                                       PerFunctionState &PFS) {
4265   Value *V;
4266   Loc = Lex.getLoc();
4267   if (ParseTypeAndValue(V, PFS)) return true;
4268   if (!isa<BasicBlock>(V))
4269     return Error(Loc, "expected a basic block");
4270   BB = cast<BasicBlock>(V);
4271   return false;
4272 }
4273
4274
4275 /// FunctionHeader
4276 ///   ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
4277 ///       OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
4278 ///       OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
4279 bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4280   // Parse the linkage.
4281   LocTy LinkageLoc = Lex.getLoc();
4282   unsigned Linkage;
4283
4284   unsigned Visibility;
4285   unsigned DLLStorageClass;
4286   AttrBuilder RetAttrs;
4287   unsigned CC;
4288   Type *RetType = nullptr;
4289   LocTy RetTypeLoc = Lex.getLoc();
4290   if (ParseOptionalLinkage(Linkage) ||
4291       ParseOptionalVisibility(Visibility) ||
4292       ParseOptionalDLLStorageClass(DLLStorageClass) ||
4293       ParseOptionalCallingConv(CC) ||
4294       ParseOptionalReturnAttrs(RetAttrs) ||
4295       ParseType(RetType, RetTypeLoc, true /*void allowed*/))
4296     return true;
4297
4298   // Verify that the linkage is ok.
4299   switch ((GlobalValue::LinkageTypes)Linkage) {
4300   case GlobalValue::ExternalLinkage:
4301     break; // always ok.
4302   case GlobalValue::ExternalWeakLinkage:
4303     if (isDefine)
4304       return Error(LinkageLoc, "invalid linkage for function definition");
4305     break;
4306   case GlobalValue::PrivateLinkage:
4307   case GlobalValue::InternalLinkage:
4308   case GlobalValue::AvailableExternallyLinkage:
4309   case GlobalValue::LinkOnceAnyLinkage:
4310   case GlobalValue::LinkOnceODRLinkage:
4311   case GlobalValue::WeakAnyLinkage:
4312   case GlobalValue::WeakODRLinkage:
4313     if (!isDefine)
4314       return Error(LinkageLoc, "invalid linkage for function declaration");
4315     break;
4316   case GlobalValue::AppendingLinkage:
4317   case GlobalValue::CommonLinkage:
4318     return Error(LinkageLoc, "invalid function linkage type");
4319   }
4320
4321   if (!isValidVisibilityForLinkage(Visibility, Linkage))
4322     return Error(LinkageLoc,
4323                  "symbol with local linkage must have default visibility");
4324
4325   if (!FunctionType::isValidReturnType(RetType))
4326     return Error(RetTypeLoc, "invalid function return type");
4327
4328   LocTy NameLoc = Lex.getLoc();
4329
4330   std::string FunctionName;
4331   if (Lex.getKind() == lltok::GlobalVar) {
4332     FunctionName = Lex.getStrVal();
4333   } else if (Lex.getKind() == lltok::GlobalID) {     // @42 is ok.
4334     unsigned NameID = Lex.getUIntVal();
4335
4336     if (NameID != NumberedVals.size())
4337       return TokError("function expected to be numbered '%" +
4338                       Twine(NumberedVals.size()) + "'");
4339   } else {
4340     return TokError("expected function name");
4341   }
4342
4343   Lex.Lex();
4344
4345   if (Lex.getKind() != lltok::lparen)
4346     return TokError("expected '(' in function argument list");
4347
4348   SmallVector<ArgInfo, 8> ArgList;
4349   bool isVarArg;
4350   AttrBuilder FuncAttrs;
4351   std::vector<unsigned> FwdRefAttrGrps;
4352   LocTy BuiltinLoc;
4353   std::string Section;
4354   unsigned Alignment;
4355   std::string GC;
4356   bool UnnamedAddr;
4357   LocTy UnnamedAddrLoc;
4358   Constant *Prefix = nullptr;
4359   Constant *Prologue = nullptr;
4360   Constant *PersonalityFn = nullptr;
4361   Comdat *C;
4362
4363   if (ParseArgumentList(ArgList, isVarArg) ||
4364       ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4365                          &UnnamedAddrLoc) ||
4366       ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
4367                                  BuiltinLoc) ||
4368       (EatIfPresent(lltok::kw_section) &&
4369        ParseStringConstant(Section)) ||
4370       parseOptionalComdat(FunctionName, C) ||
4371       ParseOptionalAlignment(Alignment) ||
4372       (EatIfPresent(lltok::kw_gc) &&
4373        ParseStringConstant(GC)) ||
4374       (EatIfPresent(lltok::kw_prefix) &&
4375        ParseGlobalTypeAndValue(Prefix)) ||
4376       (EatIfPresent(lltok::kw_prologue) &&
4377        ParseGlobalTypeAndValue(Prologue)) ||
4378       (EatIfPresent(lltok::kw_personality) &&
4379        ParseGlobalTypeAndValue(PersonalityFn)))
4380     return true;
4381
4382   if (FuncAttrs.contains(Attribute::Builtin))
4383     return Error(BuiltinLoc, "'builtin' attribute not valid on function");
4384
4385   // If the alignment was parsed as an attribute, move to the alignment field.
4386   if (FuncAttrs.hasAlignmentAttr()) {
4387     Alignment = FuncAttrs.getAlignment();
4388     FuncAttrs.removeAttribute(Attribute::Alignment);
4389   }
4390
4391   // Okay, if we got here, the function is syntactically valid.  Convert types
4392   // and do semantic checks.
4393   std::vector<Type*> ParamTypeList;
4394   SmallVector<AttributeSet, 8> Attrs;
4395
4396   if (RetAttrs.hasAttributes())
4397     Attrs.push_back(AttributeSet::get(RetType->getContext(),
4398                                       AttributeSet::ReturnIndex,
4399                                       RetAttrs));
4400
4401   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
4402     ParamTypeList.push_back(ArgList[i].Ty);
4403     if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4404       AttrBuilder B(ArgList[i].Attrs, i + 1);
4405       Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4406     }
4407   }
4408
4409   if (FuncAttrs.hasAttributes())
4410     Attrs.push_back(AttributeSet::get(RetType->getContext(),
4411                                       AttributeSet::FunctionIndex,
4412                                       FuncAttrs));
4413
4414   AttributeSet PAL = AttributeSet::get(Context, Attrs);
4415
4416   if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
4417     return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4418
4419   FunctionType *FT =
4420     FunctionType::get(RetType, ParamTypeList, isVarArg);
4421   PointerType *PFT = PointerType::getUnqual(FT);
4422
4423   Fn = nullptr;
4424   if (!FunctionName.empty()) {
4425     // If this was a definition of a forward reference, remove the definition
4426     // from the forward reference table and fill in the forward ref.
4427     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
4428       ForwardRefVals.find(FunctionName);
4429     if (FRVI != ForwardRefVals.end()) {
4430       Fn = M->getFunction(FunctionName);
4431       if (!Fn)
4432         return Error(FRVI->second.second, "invalid forward reference to "
4433                      "function as global value!");
4434       if (Fn->getType() != PFT)
4435         return Error(FRVI->second.second, "invalid forward reference to "
4436                      "function '" + FunctionName + "' with wrong type!");
4437
4438       ForwardRefVals.erase(FRVI);
4439     } else if ((Fn = M->getFunction(FunctionName))) {
4440       // Reject redefinitions.
4441       return Error(NameLoc, "invalid redefinition of function '" +
4442                    FunctionName + "'");
4443     } else if (M->getNamedValue(FunctionName)) {
4444       return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
4445     }
4446
4447   } else {
4448     // If this is a definition of a forward referenced function, make sure the
4449     // types agree.
4450     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
4451       = ForwardRefValIDs.find(NumberedVals.size());
4452     if (I != ForwardRefValIDs.end()) {
4453       Fn = cast<Function>(I->second.first);
4454       if (Fn->getType() != PFT)
4455         return Error(NameLoc, "type of definition and forward reference of '@" +
4456                      Twine(NumberedVals.size()) + "' disagree");
4457       ForwardRefValIDs.erase(I);
4458     }
4459   }
4460
4461   if (!Fn)
4462     Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4463   else // Move the forward-reference to the correct spot in the module.
4464     M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4465
4466   if (FunctionName.empty())
4467     NumberedVals.push_back(Fn);
4468
4469   Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4470   Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
4471   Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
4472   Fn->setCallingConv(CC);
4473   Fn->setAttributes(PAL);
4474   Fn->setUnnamedAddr(UnnamedAddr);
4475   Fn->setAlignment(Alignment);
4476   Fn->setSection(Section);
4477   Fn->setComdat(C);
4478   Fn->setPersonalityFn(PersonalityFn);
4479   if (!GC.empty()) Fn->setGC(GC.c_str());
4480   Fn->setPrefixData(Prefix);
4481   Fn->setPrologueData(Prologue);
4482   ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
4483
4484   // Add all of the arguments we parsed to the function.
4485   Function::arg_iterator ArgIt = Fn->arg_begin();
4486   for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4487     // If the argument has a name, insert it into the argument symbol table.
4488     if (ArgList[i].Name.empty()) continue;
4489
4490     // Set the name, if it conflicted, it will be auto-renamed.
4491     ArgIt->setName(ArgList[i].Name);
4492
4493     if (ArgIt->getName() != ArgList[i].Name)
4494       return Error(ArgList[i].Loc, "redefinition of argument '%" +
4495                    ArgList[i].Name + "'");
4496   }
4497
4498   if (isDefine)
4499     return false;
4500
4501   // Check the declaration has no block address forward references.
4502   ValID ID;
4503   if (FunctionName.empty()) {
4504     ID.Kind = ValID::t_GlobalID;
4505     ID.UIntVal = NumberedVals.size() - 1;
4506   } else {
4507     ID.Kind = ValID::t_GlobalName;
4508     ID.StrVal = FunctionName;
4509   }
4510   auto Blocks = ForwardRefBlockAddresses.find(ID);
4511   if (Blocks != ForwardRefBlockAddresses.end())
4512     return Error(Blocks->first.Loc,
4513                  "cannot take blockaddress inside a declaration");
4514   return false;
4515 }
4516
4517 bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4518   ValID ID;
4519   if (FunctionNumber == -1) {
4520     ID.Kind = ValID::t_GlobalName;
4521     ID.StrVal = F.getName();
4522   } else {
4523     ID.Kind = ValID::t_GlobalID;
4524     ID.UIntVal = FunctionNumber;
4525   }
4526
4527   auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4528   if (Blocks == P.ForwardRefBlockAddresses.end())
4529     return false;
4530
4531   for (const auto &I : Blocks->second) {
4532     const ValID &BBID = I.first;
4533     GlobalValue *GV = I.second;
4534
4535     assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4536            "Expected local id or name");
4537     BasicBlock *BB;
4538     if (BBID.Kind == ValID::t_LocalName)
4539       BB = GetBB(BBID.StrVal, BBID.Loc);
4540     else
4541       BB = GetBB(BBID.UIntVal, BBID.Loc);
4542     if (!BB)
4543       return P.Error(BBID.Loc, "referenced value is not a basic block");
4544
4545     GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4546     GV->eraseFromParent();
4547   }
4548
4549   P.ForwardRefBlockAddresses.erase(Blocks);
4550   return false;
4551 }
4552
4553 /// ParseFunctionBody
4554 ///   ::= '{' BasicBlock+ UseListOrderDirective* '}'
4555 bool LLParser::ParseFunctionBody(Function &Fn) {
4556   if (Lex.getKind() != lltok::lbrace)
4557     return TokError("expected '{' in function body");
4558   Lex.Lex();  // eat the {.
4559
4560   int FunctionNumber = -1;
4561   if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
4562
4563   PerFunctionState PFS(*this, Fn, FunctionNumber);
4564
4565   // Resolve block addresses and allow basic blocks to be forward-declared
4566   // within this function.
4567   if (PFS.resolveForwardRefBlockAddresses())
4568     return true;
4569   SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4570
4571   // We need at least one basic block.
4572   if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
4573     return TokError("function body requires at least one basic block");
4574
4575   while (Lex.getKind() != lltok::rbrace &&
4576          Lex.getKind() != lltok::kw_uselistorder)
4577     if (ParseBasicBlock(PFS)) return true;
4578
4579   while (Lex.getKind() != lltok::rbrace)
4580     if (ParseUseListOrder(&PFS))
4581       return true;
4582
4583   // Eat the }.
4584   Lex.Lex();
4585
4586   // Verify function is ok.
4587   return PFS.FinishFunction();
4588 }
4589
4590 /// ParseBasicBlock
4591 ///   ::= LabelStr? Instruction*
4592 bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4593   // If this basic block starts out with a name, remember it.
4594   std::string Name;
4595   LocTy NameLoc = Lex.getLoc();
4596   if (Lex.getKind() == lltok::LabelStr) {
4597     Name = Lex.getStrVal();
4598     Lex.Lex();
4599   }
4600
4601   BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
4602   if (!BB)
4603     return Error(NameLoc,
4604                  "unable to create block named '" + Name + "'");
4605
4606   std::string NameStr;
4607
4608   // Parse the instructions in this block until we get a terminator.
4609   Instruction *Inst;
4610   do {
4611     // This instruction may have three possibilities for a name: a) none
4612     // specified, b) name specified "%foo =", c) number specified: "%4 =".
4613     LocTy NameLoc = Lex.getLoc();
4614     int NameID = -1;
4615     NameStr = "";
4616
4617     if (Lex.getKind() == lltok::LocalVarID) {
4618       NameID = Lex.getUIntVal();
4619       Lex.Lex();
4620       if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4621         return true;
4622     } else if (Lex.getKind() == lltok::LocalVar) {
4623       NameStr = Lex.getStrVal();
4624       Lex.Lex();
4625       if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4626         return true;
4627     }
4628
4629     switch (ParseInstruction(Inst, BB, PFS)) {
4630     default: llvm_unreachable("Unknown ParseInstruction result!");
4631     case InstError: return true;
4632     case InstNormal:
4633       BB->getInstList().push_back(Inst);
4634
4635       // With a normal result, we check to see if the instruction is followed by
4636       // a comma and metadata.
4637       if (EatIfPresent(lltok::comma))
4638         if (ParseInstructionMetadata(*Inst))
4639           return true;
4640       break;
4641     case InstExtraComma:
4642       BB->getInstList().push_back(Inst);
4643
4644       // If the instruction parser ate an extra comma at the end of it, it
4645       // *must* be followed by metadata.
4646       if (ParseInstructionMetadata(*Inst))
4647         return true;
4648       break;
4649     }
4650
4651     // Set the name on the instruction.
4652     if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4653   } while (!isa<TerminatorInst>(Inst));
4654
4655   return false;
4656 }
4657
4658 //===----------------------------------------------------------------------===//
4659 // Instruction Parsing.
4660 //===----------------------------------------------------------------------===//
4661
4662 /// ParseInstruction - Parse one of the many different instructions.
4663 ///
4664 int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4665                                PerFunctionState &PFS) {
4666   lltok::Kind Token = Lex.getKind();
4667   if (Token == lltok::Eof)
4668     return TokError("found end of file when expecting more instructions");
4669   LocTy Loc = Lex.getLoc();
4670   unsigned KeywordVal = Lex.getUIntVal();
4671   Lex.Lex();  // Eat the keyword.
4672
4673   switch (Token) {
4674   default:                    return Error(Loc, "expected instruction opcode");
4675   // Terminator Instructions.
4676   case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
4677   case lltok::kw_ret:         return ParseRet(Inst, BB, PFS);
4678   case lltok::kw_br:          return ParseBr(Inst, PFS);
4679   case lltok::kw_switch:      return ParseSwitch(Inst, PFS);
4680   case lltok::kw_indirectbr:  return ParseIndirectBr(Inst, PFS);
4681   case lltok::kw_invoke:      return ParseInvoke(Inst, PFS);
4682   case lltok::kw_resume:      return ParseResume(Inst, PFS);
4683   case lltok::kw_cleanupret:  return ParseCleanupRet(Inst, PFS);
4684   case lltok::kw_catchret:    return ParseCatchRet(Inst, PFS);
4685   case lltok::kw_catchpad:  return ParseCatchPad(Inst, PFS);
4686   case lltok::kw_terminatepad: return ParseTerminatePad(Inst, PFS);
4687   case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
4688   case lltok::kw_catchendpad: return ParseCatchEndPad(Inst, PFS);
4689   // Binary Operators.
4690   case lltok::kw_add:
4691   case lltok::kw_sub:
4692   case lltok::kw_mul:
4693   case lltok::kw_shl: {
4694     bool NUW = EatIfPresent(lltok::kw_nuw);
4695     bool NSW = EatIfPresent(lltok::kw_nsw);
4696     if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
4697
4698     if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4699
4700     if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4701     if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4702     return false;
4703   }
4704   case lltok::kw_fadd:
4705   case lltok::kw_fsub:
4706   case lltok::kw_fmul:
4707   case lltok::kw_fdiv:
4708   case lltok::kw_frem: {
4709     FastMathFlags FMF = EatFastMathFlagsIfPresent();
4710     int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4711     if (Res != 0)
4712       return Res;
4713     if (FMF.any())
4714       Inst->setFastMathFlags(FMF);
4715     return 0;
4716   }
4717
4718   case lltok::kw_sdiv:
4719   case lltok::kw_udiv:
4720   case lltok::kw_lshr:
4721   case lltok::kw_ashr: {
4722     bool Exact = EatIfPresent(lltok::kw_exact);
4723
4724     if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4725     if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4726     return false;
4727   }
4728
4729   case lltok::kw_urem:
4730   case lltok::kw_srem:   return ParseArithmetic(Inst, PFS, KeywordVal, 1);
4731   case lltok::kw_and:
4732   case lltok::kw_or:
4733   case lltok::kw_xor:    return ParseLogical(Inst, PFS, KeywordVal);
4734   case lltok::kw_icmp:   return ParseCompare(Inst, PFS, KeywordVal);
4735   case lltok::kw_fcmp: {
4736     FastMathFlags FMF = EatFastMathFlagsIfPresent();
4737     int Res = ParseCompare(Inst, PFS, KeywordVal);
4738     if (Res != 0)
4739       return Res;
4740     if (FMF.any())
4741       Inst->setFastMathFlags(FMF);
4742     return 0;
4743   }
4744
4745   // Casts.
4746   case lltok::kw_trunc:
4747   case lltok::kw_zext:
4748   case lltok::kw_sext:
4749   case lltok::kw_fptrunc:
4750   case lltok::kw_fpext:
4751   case lltok::kw_bitcast:
4752   case lltok::kw_addrspacecast:
4753   case lltok::kw_uitofp:
4754   case lltok::kw_sitofp:
4755   case lltok::kw_fptoui:
4756   case lltok::kw_fptosi:
4757   case lltok::kw_inttoptr:
4758   case lltok::kw_ptrtoint:       return ParseCast(Inst, PFS, KeywordVal);
4759   // Other.
4760   case lltok::kw_select:         return ParseSelect(Inst, PFS);
4761   case lltok::kw_va_arg:         return ParseVA_Arg(Inst, PFS);
4762   case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4763   case lltok::kw_insertelement:  return ParseInsertElement(Inst, PFS);
4764   case lltok::kw_shufflevector:  return ParseShuffleVector(Inst, PFS);
4765   case lltok::kw_phi:            return ParsePHI(Inst, PFS);
4766   case lltok::kw_landingpad:     return ParseLandingPad(Inst, PFS);
4767   // Call.
4768   case lltok::kw_call:     return ParseCall(Inst, PFS, CallInst::TCK_None);
4769   case lltok::kw_tail:     return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4770   case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
4771   // Memory.
4772   case lltok::kw_alloca:         return ParseAlloc(Inst, PFS);
4773   case lltok::kw_load:           return ParseLoad(Inst, PFS);
4774   case lltok::kw_store:          return ParseStore(Inst, PFS);
4775   case lltok::kw_cmpxchg:        return ParseCmpXchg(Inst, PFS);
4776   case lltok::kw_atomicrmw:      return ParseAtomicRMW(Inst, PFS);
4777   case lltok::kw_fence:          return ParseFence(Inst, PFS);
4778   case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4779   case lltok::kw_extractvalue:  return ParseExtractValue(Inst, PFS);
4780   case lltok::kw_insertvalue:   return ParseInsertValue(Inst, PFS);
4781   }
4782 }
4783
4784 /// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4785 bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
4786   if (Opc == Instruction::FCmp) {
4787     switch (Lex.getKind()) {
4788     default: return TokError("expected fcmp predicate (e.g. 'oeq')");
4789     case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4790     case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4791     case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4792     case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4793     case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4794     case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4795     case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4796     case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4797     case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4798     case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4799     case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4800     case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4801     case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4802     case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4803     case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4804     case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4805     }
4806   } else {
4807     switch (Lex.getKind()) {
4808     default: return TokError("expected icmp predicate (e.g. 'eq')");
4809     case lltok::kw_eq:  P = CmpInst::ICMP_EQ; break;
4810     case lltok::kw_ne:  P = CmpInst::ICMP_NE; break;
4811     case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4812     case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4813     case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4814     case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4815     case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4816     case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4817     case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4818     case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4819     }
4820   }
4821   Lex.Lex();
4822   return false;
4823 }
4824
4825 //===----------------------------------------------------------------------===//
4826 // Terminator Instructions.
4827 //===----------------------------------------------------------------------===//
4828
4829 /// ParseRet - Parse a return instruction.
4830 ///   ::= 'ret' void (',' !dbg, !1)*
4831 ///   ::= 'ret' TypeAndValue (',' !dbg, !1)*
4832 bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
4833                         PerFunctionState &PFS) {
4834   SMLoc TypeLoc = Lex.getLoc();
4835   Type *Ty = nullptr;
4836   if (ParseType(Ty, true /*void allowed*/)) return true;
4837
4838   Type *ResType = PFS.getFunction().getReturnType();
4839
4840   if (Ty->isVoidTy()) {
4841     if (!ResType->isVoidTy())
4842       return Error(TypeLoc, "value doesn't match function result type '" +
4843                    getTypeString(ResType) + "'");
4844
4845     Inst = ReturnInst::Create(Context);
4846     return false;
4847   }
4848
4849   Value *RV;
4850   if (ParseValue(Ty, RV, PFS)) return true;
4851
4852   if (ResType != RV->getType())
4853     return Error(TypeLoc, "value doesn't match function result type '" +
4854                  getTypeString(ResType) + "'");
4855
4856   Inst = ReturnInst::Create(Context, RV);
4857   return false;
4858 }
4859
4860
4861 /// ParseBr
4862 ///   ::= 'br' TypeAndValue
4863 ///   ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4864 bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4865   LocTy Loc, Loc2;
4866   Value *Op0;
4867   BasicBlock *Op1, *Op2;
4868   if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
4869
4870   if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4871     Inst = BranchInst::Create(BB);
4872     return false;
4873   }
4874
4875   if (Op0->getType() != Type::getInt1Ty(Context))
4876     return Error(Loc, "branch condition must have 'i1' type");
4877
4878   if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
4879       ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
4880       ParseToken(lltok::comma, "expected ',' after true destination") ||
4881       ParseTypeAndBasicBlock(Op2, Loc2, PFS))
4882     return true;
4883
4884   Inst = BranchInst::Create(Op1, Op2, Op0);
4885   return false;
4886 }
4887
4888 /// ParseSwitch
4889 ///  Instruction
4890 ///    ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4891 ///  JumpTable
4892 ///    ::= (TypeAndValue ',' TypeAndValue)*
4893 bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4894   LocTy CondLoc, BBLoc;
4895   Value *Cond;
4896   BasicBlock *DefaultBB;
4897   if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4898       ParseToken(lltok::comma, "expected ',' after switch condition") ||
4899       ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
4900       ParseToken(lltok::lsquare, "expected '[' with switch table"))
4901     return true;
4902
4903   if (!Cond->getType()->isIntegerTy())
4904     return Error(CondLoc, "switch condition must have integer type");
4905
4906   // Parse the jump table pairs.
4907   SmallPtrSet<Value*, 32> SeenCases;
4908   SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4909   while (Lex.getKind() != lltok::rsquare) {
4910     Value *Constant;
4911     BasicBlock *DestBB;
4912
4913     if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4914         ParseToken(lltok::comma, "expected ',' after case value") ||
4915         ParseTypeAndBasicBlock(DestBB, PFS))
4916       return true;
4917
4918     if (!SeenCases.insert(Constant).second)
4919       return Error(CondLoc, "duplicate case value in switch");
4920     if (!isa<ConstantInt>(Constant))
4921       return Error(CondLoc, "case value is not a constant integer");
4922
4923     Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
4924   }
4925
4926   Lex.Lex();  // Eat the ']'.
4927
4928   SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
4929   for (unsigned i = 0, e = Table.size(); i != e; ++i)
4930     SI->addCase(Table[i].first, Table[i].second);
4931   Inst = SI;
4932   return false;
4933 }
4934
4935 /// ParseIndirectBr
4936 ///  Instruction
4937 ///    ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4938 bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
4939   LocTy AddrLoc;
4940   Value *Address;
4941   if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
4942       ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4943       ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
4944     return true;
4945
4946   if (!Address->getType()->isPointerTy())
4947     return Error(AddrLoc, "indirectbr address must have pointer type");
4948
4949   // Parse the destination list.
4950   SmallVector<BasicBlock*, 16> DestList;
4951
4952   if (Lex.getKind() != lltok::rsquare) {
4953     BasicBlock *DestBB;
4954     if (ParseTypeAndBasicBlock(DestBB, PFS))
4955       return true;
4956     DestList.push_back(DestBB);
4957
4958     while (EatIfPresent(lltok::comma)) {
4959       if (ParseTypeAndBasicBlock(DestBB, PFS))
4960         return true;
4961       DestList.push_back(DestBB);
4962     }
4963   }
4964
4965   if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
4966     return true;
4967
4968   IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
4969   for (unsigned i = 0, e = DestList.size(); i != e; ++i)
4970     IBI->addDestination(DestList[i]);
4971   Inst = IBI;
4972   return false;
4973 }
4974
4975
4976 /// ParseInvoke
4977 ///   ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
4978 ///       OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
4979 bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
4980   LocTy CallLoc = Lex.getLoc();
4981   AttrBuilder RetAttrs, FnAttrs;
4982   std::vector<unsigned> FwdRefAttrGrps;
4983   LocTy NoBuiltinLoc;
4984   unsigned CC;
4985   Type *RetType = nullptr;
4986   LocTy RetTypeLoc;
4987   ValID CalleeID;
4988   SmallVector<ParamInfo, 16> ArgList;
4989
4990   BasicBlock *NormalBB, *UnwindBB;
4991   if (ParseOptionalCallingConv(CC) ||
4992       ParseOptionalReturnAttrs(RetAttrs) ||
4993       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
4994       ParseValID(CalleeID) ||
4995       ParseParameterList(ArgList, PFS) ||
4996       ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
4997                                  NoBuiltinLoc) ||
4998       ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
4999       ParseTypeAndBasicBlock(NormalBB, PFS) ||
5000       ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
5001       ParseTypeAndBasicBlock(UnwindBB, PFS))
5002     return true;
5003
5004   // If RetType is a non-function pointer type, then this is the short syntax
5005   // for the call, which means that RetType is just the return type.  Infer the
5006   // rest of the function argument types from the arguments that are present.
5007   FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5008   if (!Ty) {
5009     // Pull out the types of all of the arguments...
5010     std::vector<Type*> ParamTypes;
5011     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5012       ParamTypes.push_back(ArgList[i].V->getType());
5013
5014     if (!FunctionType::isValidReturnType(RetType))
5015       return Error(RetTypeLoc, "Invalid result type for LLVM function");
5016
5017     Ty = FunctionType::get(RetType, ParamTypes, false);
5018   }
5019
5020   CalleeID.FTy = Ty;
5021
5022   // Look up the callee.
5023   Value *Callee;
5024   if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5025     return true;
5026
5027   // Set up the Attribute for the function.
5028   SmallVector<AttributeSet, 8> Attrs;
5029   if (RetAttrs.hasAttributes())
5030     Attrs.push_back(AttributeSet::get(RetType->getContext(),
5031                                       AttributeSet::ReturnIndex,
5032                                       RetAttrs));
5033
5034   SmallVector<Value*, 8> Args;
5035
5036   // Loop through FunctionType's arguments and ensure they are specified
5037   // correctly.  Also, gather any parameter attributes.
5038   FunctionType::param_iterator I = Ty->param_begin();
5039   FunctionType::param_iterator E = Ty->param_end();
5040   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
5041     Type *ExpectedTy = nullptr;
5042     if (I != E) {
5043       ExpectedTy = *I++;
5044     } else if (!Ty->isVarArg()) {
5045       return Error(ArgList[i].Loc, "too many arguments specified");
5046     }
5047
5048     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5049       return Error(ArgList[i].Loc, "argument is not of expected type '" +
5050                    getTypeString(ExpectedTy) + "'");
5051     Args.push_back(ArgList[i].V);
5052     if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5053       AttrBuilder B(ArgList[i].Attrs, i + 1);
5054       Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5055     }
5056   }
5057
5058   if (I != E)
5059     return Error(CallLoc, "not enough parameters specified for call");
5060
5061   if (FnAttrs.hasAttributes()) {
5062     if (FnAttrs.hasAlignmentAttr())
5063       return Error(CallLoc, "invoke instructions may not have an alignment");
5064
5065     Attrs.push_back(AttributeSet::get(RetType->getContext(),
5066                                       AttributeSet::FunctionIndex,
5067                                       FnAttrs));
5068   }
5069
5070   // Finish off the Attribute and check them
5071   AttributeSet PAL = AttributeSet::get(Context, Attrs);
5072
5073   InvokeInst *II = InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args);
5074   II->setCallingConv(CC);
5075   II->setAttributes(PAL);
5076   ForwardRefAttrGroups[II] = FwdRefAttrGrps;
5077   Inst = II;
5078   return false;
5079 }
5080
5081 /// ParseResume
5082 ///   ::= 'resume' TypeAndValue
5083 bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5084   Value *Exn; LocTy ExnLoc;
5085   if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5086     return true;
5087
5088   ResumeInst *RI = ResumeInst::Create(Exn);
5089   Inst = RI;
5090   return false;
5091 }
5092
5093 bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5094                                   PerFunctionState &PFS) {
5095   if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
5096     return true;
5097
5098   while (Lex.getKind() != lltok::rsquare) {
5099     // If this isn't the first argument, we need a comma.
5100     if (!Args.empty() &&
5101         ParseToken(lltok::comma, "expected ',' in argument list"))
5102       return true;
5103
5104     // Parse the argument.
5105     LocTy ArgLoc;
5106     Type *ArgTy = nullptr;
5107     if (ParseType(ArgTy, ArgLoc))
5108       return true;
5109
5110     Value *V;
5111     if (ArgTy->isMetadataTy()) {
5112       if (ParseMetadataAsValue(V, PFS))
5113         return true;
5114     } else {
5115       if (ParseValue(ArgTy, V, PFS))
5116         return true;
5117     }
5118     Args.push_back(V);
5119   }
5120
5121   Lex.Lex();  // Lex the ']'.
5122   return false;
5123 }
5124
5125 /// ParseCleanupRet
5126 ///   ::= 'cleanupret' Value unwind ('to' 'caller' | TypeAndValue)
5127 bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
5128   Value *CleanupPad = nullptr;
5129
5130   if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS, OC_CleanupPad))
5131     return true;
5132
5133   if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5134     return true;
5135
5136   BasicBlock *UnwindBB = nullptr;
5137   if (Lex.getKind() == lltok::kw_to) {
5138     Lex.Lex();
5139     if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5140       return true;
5141   } else {
5142     if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5143       return true;
5144     }
5145   }
5146
5147   Inst = CleanupReturnInst::Create(cast<CleanupPadInst>(CleanupPad), UnwindBB);
5148   return false;
5149 }
5150
5151 /// ParseCatchRet
5152 ///   ::= 'catchret' Value 'to' TypeAndValue
5153 bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
5154   Value *CatchPad = nullptr;
5155
5156   if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS, OC_CatchPad))
5157     return true;
5158
5159   BasicBlock *BB;
5160   if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5161       ParseTypeAndBasicBlock(BB, PFS))
5162       return true;
5163
5164   Inst = CatchReturnInst::Create(cast<CatchPadInst>(CatchPad), BB);
5165   return false;
5166 }
5167
5168 /// ParseCatchPad
5169 ///   ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
5170 bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
5171   SmallVector<Value *, 8> Args;
5172   if (ParseExceptionArgs(Args, PFS))
5173     return true;
5174
5175   BasicBlock *NormalBB, *UnwindBB;
5176   if (ParseToken(lltok::kw_to, "expected 'to' in catchpad") ||
5177       ParseTypeAndBasicBlock(NormalBB, PFS) ||
5178       ParseToken(lltok::kw_unwind, "expected 'unwind' in catchpad") ||
5179       ParseTypeAndBasicBlock(UnwindBB, PFS))
5180     return true;
5181
5182   Inst = CatchPadInst::Create(NormalBB, UnwindBB, Args);
5183   return false;
5184 }
5185
5186 /// ParseTerminatePad
5187 ///   ::= 'terminatepad' ParamList 'to' TypeAndValue
5188 bool LLParser::ParseTerminatePad(Instruction *&Inst, PerFunctionState &PFS) {
5189   SmallVector<Value *, 8> Args;
5190   if (ParseExceptionArgs(Args, PFS))
5191     return true;
5192
5193   if (ParseToken(lltok::kw_unwind, "expected 'unwind' in terminatepad"))
5194     return true;
5195
5196   BasicBlock *UnwindBB = nullptr;
5197   if (Lex.getKind() == lltok::kw_to) {
5198     Lex.Lex();
5199     if (ParseToken(lltok::kw_caller, "expected 'caller' in terminatepad"))
5200       return true;
5201   } else {
5202     if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5203       return true;
5204     }
5205   }
5206
5207   Inst = TerminatePadInst::Create(Context, UnwindBB, Args);
5208   return false;
5209 }
5210
5211 /// ParseCleanupPad
5212 ///   ::= 'cleanuppad' ParamList
5213 bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
5214   SmallVector<Value *, 8> Args;
5215   if (ParseExceptionArgs(Args, PFS))
5216     return true;
5217
5218   Inst = CleanupPadInst::Create(Context, Args);
5219   return false;
5220 }
5221
5222 /// ParseCatchEndPad
5223 ///   ::= 'catchendpad' unwind ('to' 'caller' | TypeAndValue)
5224 bool LLParser::ParseCatchEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5225   if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5226     return true;
5227
5228   BasicBlock *UnwindBB = nullptr;
5229   if (Lex.getKind() == lltok::kw_to) {
5230     Lex.Lex();
5231     if (Lex.getKind() == lltok::kw_caller) {
5232       Lex.Lex();
5233     } else {
5234       return true;
5235     }
5236   } else {
5237     if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5238       return true;
5239     }
5240   }
5241
5242   Inst = CatchEndPadInst::Create(Context, UnwindBB);
5243   return false;
5244 }
5245
5246 //===----------------------------------------------------------------------===//
5247 // Binary Operators.
5248 //===----------------------------------------------------------------------===//
5249
5250 /// ParseArithmetic
5251 ///  ::= ArithmeticOps TypeAndValue ',' Value
5252 ///
5253 /// If OperandType is 0, then any FP or integer operand is allowed.  If it is 1,
5254 /// then any integer operand is allowed, if it is 2, any fp operand is allowed.
5255 bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
5256                                unsigned Opc, unsigned OperandType) {
5257   LocTy Loc; Value *LHS, *RHS;
5258   if (ParseTypeAndValue(LHS, Loc, PFS) ||
5259       ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5260       ParseValue(LHS->getType(), RHS, PFS))
5261     return true;
5262
5263   bool Valid;
5264   switch (OperandType) {
5265   default: llvm_unreachable("Unknown operand type!");
5266   case 0: // int or FP.
5267     Valid = LHS->getType()->isIntOrIntVectorTy() ||
5268             LHS->getType()->isFPOrFPVectorTy();
5269     break;
5270   case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5271   case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
5272   }
5273
5274   if (!Valid)
5275     return Error(Loc, "invalid operand type for instruction");
5276
5277   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5278   return false;
5279 }
5280
5281 /// ParseLogical
5282 ///  ::= ArithmeticOps TypeAndValue ',' Value {
5283 bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5284                             unsigned Opc) {
5285   LocTy Loc; Value *LHS, *RHS;
5286   if (ParseTypeAndValue(LHS, Loc, PFS) ||
5287       ParseToken(lltok::comma, "expected ',' in logical operation") ||
5288       ParseValue(LHS->getType(), RHS, PFS))
5289     return true;
5290
5291   if (!LHS->getType()->isIntOrIntVectorTy())
5292     return Error(Loc,"instruction requires integer or integer vector operands");
5293
5294   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5295   return false;
5296 }
5297
5298
5299 /// ParseCompare
5300 ///  ::= 'icmp' IPredicates TypeAndValue ',' Value
5301 ///  ::= 'fcmp' FPredicates TypeAndValue ',' Value
5302 bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5303                             unsigned Opc) {
5304   // Parse the integer/fp comparison predicate.
5305   LocTy Loc;
5306   unsigned Pred;
5307   Value *LHS, *RHS;
5308   if (ParseCmpPredicate(Pred, Opc) ||
5309       ParseTypeAndValue(LHS, Loc, PFS) ||
5310       ParseToken(lltok::comma, "expected ',' after compare value") ||
5311       ParseValue(LHS->getType(), RHS, PFS))
5312     return true;
5313
5314   if (Opc == Instruction::FCmp) {
5315     if (!LHS->getType()->isFPOrFPVectorTy())
5316       return Error(Loc, "fcmp requires floating point operands");
5317     Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
5318   } else {
5319     assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
5320     if (!LHS->getType()->isIntOrIntVectorTy() &&
5321         !LHS->getType()->getScalarType()->isPointerTy())
5322       return Error(Loc, "icmp requires integer operands");
5323     Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
5324   }
5325   return false;
5326 }
5327
5328 //===----------------------------------------------------------------------===//
5329 // Other Instructions.
5330 //===----------------------------------------------------------------------===//
5331
5332
5333 /// ParseCast
5334 ///   ::= CastOpc TypeAndValue 'to' Type
5335 bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5336                          unsigned Opc) {
5337   LocTy Loc;
5338   Value *Op;
5339   Type *DestTy = nullptr;
5340   if (ParseTypeAndValue(Op, Loc, PFS) ||
5341       ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5342       ParseType(DestTy))
5343     return true;
5344
5345   if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5346     CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
5347     return Error(Loc, "invalid cast opcode for cast from '" +
5348                  getTypeString(Op->getType()) + "' to '" +
5349                  getTypeString(DestTy) + "'");
5350   }
5351   Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5352   return false;
5353 }
5354
5355 /// ParseSelect
5356 ///   ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5357 bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5358   LocTy Loc;
5359   Value *Op0, *Op1, *Op2;
5360   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5361       ParseToken(lltok::comma, "expected ',' after select condition") ||
5362       ParseTypeAndValue(Op1, PFS) ||
5363       ParseToken(lltok::comma, "expected ',' after select value") ||
5364       ParseTypeAndValue(Op2, PFS))
5365     return true;
5366
5367   if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5368     return Error(Loc, Reason);
5369
5370   Inst = SelectInst::Create(Op0, Op1, Op2);
5371   return false;
5372 }
5373
5374 /// ParseVA_Arg
5375 ///   ::= 'va_arg' TypeAndValue ',' Type
5376 bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
5377   Value *Op;
5378   Type *EltTy = nullptr;
5379   LocTy TypeLoc;
5380   if (ParseTypeAndValue(Op, PFS) ||
5381       ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
5382       ParseType(EltTy, TypeLoc))
5383     return true;
5384
5385   if (!EltTy->isFirstClassType())
5386     return Error(TypeLoc, "va_arg requires operand with first class type");
5387
5388   Inst = new VAArgInst(Op, EltTy);
5389   return false;
5390 }
5391
5392 /// ParseExtractElement
5393 ///   ::= 'extractelement' TypeAndValue ',' TypeAndValue
5394 bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5395   LocTy Loc;
5396   Value *Op0, *Op1;
5397   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5398       ParseToken(lltok::comma, "expected ',' after extract value") ||
5399       ParseTypeAndValue(Op1, PFS))
5400     return true;
5401
5402   if (!ExtractElementInst::isValidOperands(Op0, Op1))
5403     return Error(Loc, "invalid extractelement operands");
5404
5405   Inst = ExtractElementInst::Create(Op0, Op1);
5406   return false;
5407 }
5408
5409 /// ParseInsertElement
5410 ///   ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5411 bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5412   LocTy Loc;
5413   Value *Op0, *Op1, *Op2;
5414   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5415       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5416       ParseTypeAndValue(Op1, PFS) ||
5417       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5418       ParseTypeAndValue(Op2, PFS))
5419     return true;
5420
5421   if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
5422     return Error(Loc, "invalid insertelement operands");
5423
5424   Inst = InsertElementInst::Create(Op0, Op1, Op2);
5425   return false;
5426 }
5427
5428 /// ParseShuffleVector
5429 ///   ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5430 bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5431   LocTy Loc;
5432   Value *Op0, *Op1, *Op2;
5433   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5434       ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5435       ParseTypeAndValue(Op1, PFS) ||
5436       ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5437       ParseTypeAndValue(Op2, PFS))
5438     return true;
5439
5440   if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
5441     return Error(Loc, "invalid shufflevector operands");
5442
5443   Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5444   return false;
5445 }
5446
5447 /// ParsePHI
5448 ///   ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
5449 int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
5450   Type *Ty = nullptr;  LocTy TypeLoc;
5451   Value *Op0, *Op1;
5452
5453   if (ParseType(Ty, TypeLoc) ||
5454       ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5455       ParseValue(Ty, Op0, PFS) ||
5456       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5457       ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
5458       ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5459     return true;
5460
5461   bool AteExtraComma = false;
5462   SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5463   while (1) {
5464     PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
5465
5466     if (!EatIfPresent(lltok::comma))
5467       break;
5468
5469     if (Lex.getKind() == lltok::MetadataVar) {
5470       AteExtraComma = true;
5471       break;
5472     }
5473
5474     if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5475         ParseValue(Ty, Op0, PFS) ||
5476         ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5477         ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
5478         ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5479       return true;
5480   }
5481
5482   if (!Ty->isFirstClassType())
5483     return Error(TypeLoc, "phi node must have first class type");
5484
5485   PHINode *PN = PHINode::Create(Ty, PHIVals.size());
5486   for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5487     PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5488   Inst = PN;
5489   return AteExtraComma ? InstExtraComma : InstNormal;
5490 }
5491
5492 /// ParseLandingPad
5493 ///   ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5494 /// Clause
5495 ///   ::= 'catch' TypeAndValue
5496 ///   ::= 'filter'
5497 ///   ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5498 bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
5499   Type *Ty = nullptr; LocTy TyLoc;
5500
5501   if (ParseType(Ty, TyLoc))
5502     return true;
5503
5504   std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
5505   LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5506
5507   while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5508     LandingPadInst::ClauseType CT;
5509     if (EatIfPresent(lltok::kw_catch))
5510       CT = LandingPadInst::Catch;
5511     else if (EatIfPresent(lltok::kw_filter))
5512       CT = LandingPadInst::Filter;
5513     else
5514       return TokError("expected 'catch' or 'filter' clause type");
5515
5516     Value *V;
5517     LocTy VLoc;
5518     if (ParseTypeAndValue(V, VLoc, PFS))
5519       return true;
5520
5521     // A 'catch' type expects a non-array constant. A filter clause expects an
5522     // array constant.
5523     if (CT == LandingPadInst::Catch) {
5524       if (isa<ArrayType>(V->getType()))
5525         Error(VLoc, "'catch' clause has an invalid type");
5526     } else {
5527       if (!isa<ArrayType>(V->getType()))
5528         Error(VLoc, "'filter' clause has an invalid type");
5529     }
5530
5531     Constant *CV = dyn_cast<Constant>(V);
5532     if (!CV)
5533       return Error(VLoc, "clause argument must be a constant");
5534     LP->addClause(CV);
5535   }
5536
5537   Inst = LP.release();
5538   return false;
5539 }
5540
5541 /// ParseCall
5542 ///   ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5543 ///       ParameterList OptionalAttrs
5544 ///   ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5545 ///       ParameterList OptionalAttrs
5546 ///   ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
5547 ///       ParameterList OptionalAttrs
5548 bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
5549                          CallInst::TailCallKind TCK) {
5550   AttrBuilder RetAttrs, FnAttrs;
5551   std::vector<unsigned> FwdRefAttrGrps;
5552   LocTy BuiltinLoc;
5553   unsigned CC;
5554   Type *RetType = nullptr;
5555   LocTy RetTypeLoc;
5556   ValID CalleeID;
5557   SmallVector<ParamInfo, 16> ArgList;
5558   LocTy CallLoc = Lex.getLoc();
5559
5560   if ((TCK != CallInst::TCK_None &&
5561        ParseToken(lltok::kw_call, "expected 'tail call'")) ||
5562       ParseOptionalCallingConv(CC) ||
5563       ParseOptionalReturnAttrs(RetAttrs) ||
5564       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
5565       ParseValID(CalleeID) ||
5566       ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5567                          PFS.getFunction().isVarArg()) ||
5568       ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5569                                  BuiltinLoc))
5570     return true;
5571
5572   // If RetType is a non-function pointer type, then this is the short syntax
5573   // for the call, which means that RetType is just the return type.  Infer the
5574   // rest of the function argument types from the arguments that are present.
5575   FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5576   if (!Ty) {
5577     // Pull out the types of all of the arguments...
5578     std::vector<Type*> ParamTypes;
5579     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5580       ParamTypes.push_back(ArgList[i].V->getType());
5581
5582     if (!FunctionType::isValidReturnType(RetType))
5583       return Error(RetTypeLoc, "Invalid result type for LLVM function");
5584
5585     Ty = FunctionType::get(RetType, ParamTypes, false);
5586   }
5587
5588   CalleeID.FTy = Ty;
5589
5590   // Look up the callee.
5591   Value *Callee;
5592   if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5593     return true;
5594
5595   // Set up the Attribute for the function.
5596   SmallVector<AttributeSet, 8> Attrs;
5597   if (RetAttrs.hasAttributes())
5598     Attrs.push_back(AttributeSet::get(RetType->getContext(),
5599                                       AttributeSet::ReturnIndex,
5600                                       RetAttrs));
5601
5602   SmallVector<Value*, 8> Args;
5603
5604   // Loop through FunctionType's arguments and ensure they are specified
5605   // correctly.  Also, gather any parameter attributes.
5606   FunctionType::param_iterator I = Ty->param_begin();
5607   FunctionType::param_iterator E = Ty->param_end();
5608   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
5609     Type *ExpectedTy = nullptr;
5610     if (I != E) {
5611       ExpectedTy = *I++;
5612     } else if (!Ty->isVarArg()) {
5613       return Error(ArgList[i].Loc, "too many arguments specified");
5614     }
5615
5616     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5617       return Error(ArgList[i].Loc, "argument is not of expected type '" +
5618                    getTypeString(ExpectedTy) + "'");
5619     Args.push_back(ArgList[i].V);
5620     if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5621       AttrBuilder B(ArgList[i].Attrs, i + 1);
5622       Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5623     }
5624   }
5625
5626   if (I != E)
5627     return Error(CallLoc, "not enough parameters specified for call");
5628
5629   if (FnAttrs.hasAttributes()) {
5630     if (FnAttrs.hasAlignmentAttr())
5631       return Error(CallLoc, "call instructions may not have an alignment");
5632
5633     Attrs.push_back(AttributeSet::get(RetType->getContext(),
5634                                       AttributeSet::FunctionIndex,
5635                                       FnAttrs));
5636   }
5637
5638   // Finish off the Attribute and check them
5639   AttributeSet PAL = AttributeSet::get(Context, Attrs);
5640
5641   CallInst *CI = CallInst::Create(Ty, Callee, Args);
5642   CI->setTailCallKind(TCK);
5643   CI->setCallingConv(CC);
5644   CI->setAttributes(PAL);
5645   ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
5646   Inst = CI;
5647   return false;
5648 }
5649
5650 //===----------------------------------------------------------------------===//
5651 // Memory Instructions.
5652 //===----------------------------------------------------------------------===//
5653
5654 /// ParseAlloc
5655 ///   ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
5656 int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
5657   Value *Size = nullptr;
5658   LocTy SizeLoc, TyLoc;
5659   unsigned Alignment = 0;
5660   Type *Ty = nullptr;
5661
5662   bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5663
5664   if (ParseType(Ty, TyLoc)) return true;
5665
5666   if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5667     return Error(TyLoc, "invalid type for alloca");
5668
5669   bool AteExtraComma = false;
5670   if (EatIfPresent(lltok::comma)) {
5671     if (Lex.getKind() == lltok::kw_align) {
5672       if (ParseOptionalAlignment(Alignment)) return true;
5673     } else if (Lex.getKind() == lltok::MetadataVar) {
5674       AteExtraComma = true;
5675     } else {
5676       if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5677           ParseOptionalCommaAlign(Alignment, AteExtraComma))
5678         return true;
5679     }
5680   }
5681
5682   if (Size && !Size->getType()->isIntegerTy())
5683     return Error(SizeLoc, "element count must have integer type");
5684
5685   AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5686   AI->setUsedWithInAlloca(IsInAlloca);
5687   Inst = AI;
5688   return AteExtraComma ? InstExtraComma : InstNormal;
5689 }
5690
5691 /// ParseLoad
5692 ///   ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
5693 ///   ::= 'load' 'atomic' 'volatile'? TypeAndValue
5694 ///       'singlethread'? AtomicOrdering (',' 'align' i32)?
5695 int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
5696   Value *Val; LocTy Loc;
5697   unsigned Alignment = 0;
5698   bool AteExtraComma = false;
5699   bool isAtomic = false;
5700   AtomicOrdering Ordering = NotAtomic;
5701   SynchronizationScope Scope = CrossThread;
5702
5703   if (Lex.getKind() == lltok::kw_atomic) {
5704     isAtomic = true;
5705     Lex.Lex();
5706   }
5707
5708   bool isVolatile = false;
5709   if (Lex.getKind() == lltok::kw_volatile) {
5710     isVolatile = true;
5711     Lex.Lex();
5712   }
5713
5714   Type *Ty;
5715   LocTy ExplicitTypeLoc = Lex.getLoc();
5716   if (ParseType(Ty) ||
5717       ParseToken(lltok::comma, "expected comma after load's type") ||
5718       ParseTypeAndValue(Val, Loc, PFS) ||
5719       ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
5720       ParseOptionalCommaAlign(Alignment, AteExtraComma))
5721     return true;
5722
5723   if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
5724     return Error(Loc, "load operand must be a pointer to a first class type");
5725   if (isAtomic && !Alignment)
5726     return Error(Loc, "atomic load must have explicit non-zero alignment");
5727   if (Ordering == Release || Ordering == AcquireRelease)
5728     return Error(Loc, "atomic load cannot use Release ordering");
5729
5730   if (Ty != cast<PointerType>(Val->getType())->getElementType())
5731     return Error(ExplicitTypeLoc,
5732                  "explicit pointee type doesn't match operand's pointee type");
5733
5734   Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
5735   return AteExtraComma ? InstExtraComma : InstNormal;
5736 }
5737
5738 /// ParseStore
5739
5740 ///   ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5741 ///   ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
5742 ///       'singlethread'? AtomicOrdering (',' 'align' i32)?
5743 int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
5744   Value *Val, *Ptr; LocTy Loc, PtrLoc;
5745   unsigned Alignment = 0;
5746   bool AteExtraComma = false;
5747   bool isAtomic = false;
5748   AtomicOrdering Ordering = NotAtomic;
5749   SynchronizationScope Scope = CrossThread;
5750
5751   if (Lex.getKind() == lltok::kw_atomic) {
5752     isAtomic = true;
5753     Lex.Lex();
5754   }
5755
5756   bool isVolatile = false;
5757   if (Lex.getKind() == lltok::kw_volatile) {
5758     isVolatile = true;
5759     Lex.Lex();
5760   }
5761
5762   if (ParseTypeAndValue(Val, Loc, PFS) ||
5763       ParseToken(lltok::comma, "expected ',' after store operand") ||
5764       ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5765       ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
5766       ParseOptionalCommaAlign(Alignment, AteExtraComma))
5767     return true;
5768
5769   if (!Ptr->getType()->isPointerTy())
5770     return Error(PtrLoc, "store operand must be a pointer");
5771   if (!Val->getType()->isFirstClassType())
5772     return Error(Loc, "store operand must be a first class value");
5773   if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5774     return Error(Loc, "stored value and pointer type do not match");
5775   if (isAtomic && !Alignment)
5776     return Error(Loc, "atomic store must have explicit non-zero alignment");
5777   if (Ordering == Acquire || Ordering == AcquireRelease)
5778     return Error(Loc, "atomic store cannot use Acquire ordering");
5779
5780   Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
5781   return AteExtraComma ? InstExtraComma : InstNormal;
5782 }
5783
5784 /// ParseCmpXchg
5785 ///   ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5786 ///       TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
5787 int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
5788   Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5789   bool AteExtraComma = false;
5790   AtomicOrdering SuccessOrdering = NotAtomic;
5791   AtomicOrdering FailureOrdering = NotAtomic;
5792   SynchronizationScope Scope = CrossThread;
5793   bool isVolatile = false;
5794   bool isWeak = false;
5795
5796   if (EatIfPresent(lltok::kw_weak))
5797     isWeak = true;
5798
5799   if (EatIfPresent(lltok::kw_volatile))
5800     isVolatile = true;
5801
5802   if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5803       ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5804       ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5805       ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5806       ParseTypeAndValue(New, NewLoc, PFS) ||
5807       ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5808       ParseOrdering(FailureOrdering))
5809     return true;
5810
5811   if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
5812     return TokError("cmpxchg cannot be unordered");
5813   if (SuccessOrdering < FailureOrdering)
5814     return TokError("cmpxchg must be at least as ordered on success as failure");
5815   if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5816     return TokError("cmpxchg failure ordering cannot include release semantics");
5817   if (!Ptr->getType()->isPointerTy())
5818     return Error(PtrLoc, "cmpxchg operand must be a pointer");
5819   if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5820     return Error(CmpLoc, "compare value and pointer type do not match");
5821   if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5822     return Error(NewLoc, "new value and pointer type do not match");
5823   if (!New->getType()->isIntegerTy())
5824     return Error(NewLoc, "cmpxchg operand must be an integer");
5825   unsigned Size = New->getType()->getPrimitiveSizeInBits();
5826   if (Size < 8 || (Size & (Size - 1)))
5827     return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5828                          " integer");
5829
5830   AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5831       Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
5832   CXI->setVolatile(isVolatile);
5833   CXI->setWeak(isWeak);
5834   Inst = CXI;
5835   return AteExtraComma ? InstExtraComma : InstNormal;
5836 }
5837
5838 /// ParseAtomicRMW
5839 ///   ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5840 ///       'singlethread'? AtomicOrdering
5841 int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
5842   Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5843   bool AteExtraComma = false;
5844   AtomicOrdering Ordering = NotAtomic;
5845   SynchronizationScope Scope = CrossThread;
5846   bool isVolatile = false;
5847   AtomicRMWInst::BinOp Operation;
5848
5849   if (EatIfPresent(lltok::kw_volatile))
5850     isVolatile = true;
5851
5852   switch (Lex.getKind()) {
5853   default: return TokError("expected binary operation in atomicrmw");
5854   case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5855   case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5856   case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5857   case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5858   case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5859   case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5860   case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5861   case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5862   case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5863   case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5864   case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5865   }
5866   Lex.Lex();  // Eat the operation.
5867
5868   if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5869       ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5870       ParseTypeAndValue(Val, ValLoc, PFS) ||
5871       ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5872     return true;
5873
5874   if (Ordering == Unordered)
5875     return TokError("atomicrmw cannot be unordered");
5876   if (!Ptr->getType()->isPointerTy())
5877     return Error(PtrLoc, "atomicrmw operand must be a pointer");
5878   if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5879     return Error(ValLoc, "atomicrmw value and pointer type do not match");
5880   if (!Val->getType()->isIntegerTy())
5881     return Error(ValLoc, "atomicrmw operand must be an integer");
5882   unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5883   if (Size < 8 || (Size & (Size - 1)))
5884     return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5885                          " integer");
5886
5887   AtomicRMWInst *RMWI =
5888     new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5889   RMWI->setVolatile(isVolatile);
5890   Inst = RMWI;
5891   return AteExtraComma ? InstExtraComma : InstNormal;
5892 }
5893
5894 /// ParseFence
5895 ///   ::= 'fence' 'singlethread'? AtomicOrdering
5896 int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5897   AtomicOrdering Ordering = NotAtomic;
5898   SynchronizationScope Scope = CrossThread;
5899   if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5900     return true;
5901
5902   if (Ordering == Unordered)
5903     return TokError("fence cannot be unordered");
5904   if (Ordering == Monotonic)
5905     return TokError("fence cannot be monotonic");
5906
5907   Inst = new FenceInst(Context, Ordering, Scope);
5908   return InstNormal;
5909 }
5910
5911 /// ParseGetElementPtr
5912 ///   ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
5913 int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
5914   Value *Ptr = nullptr;
5915   Value *Val = nullptr;
5916   LocTy Loc, EltLoc;
5917
5918   bool InBounds = EatIfPresent(lltok::kw_inbounds);
5919
5920   Type *Ty = nullptr;
5921   LocTy ExplicitTypeLoc = Lex.getLoc();
5922   if (ParseType(Ty) ||
5923       ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
5924       ParseTypeAndValue(Ptr, Loc, PFS))
5925     return true;
5926
5927   Type *BaseType = Ptr->getType();
5928   PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
5929   if (!BasePointerType)
5930     return Error(Loc, "base of getelementptr must be a pointer");
5931
5932   if (Ty != BasePointerType->getElementType())
5933     return Error(ExplicitTypeLoc,
5934                  "explicit pointee type doesn't match operand's pointee type");
5935
5936   SmallVector<Value*, 16> Indices;
5937   bool AteExtraComma = false;
5938   // GEP returns a vector of pointers if at least one of parameters is a vector.
5939   // All vector parameters should have the same vector width.
5940   unsigned GEPWidth = BaseType->isVectorTy() ?
5941     BaseType->getVectorNumElements() : 0;
5942
5943   while (EatIfPresent(lltok::comma)) {
5944     if (Lex.getKind() == lltok::MetadataVar) {
5945       AteExtraComma = true;
5946       break;
5947     }
5948     if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
5949     if (!Val->getType()->getScalarType()->isIntegerTy())
5950       return Error(EltLoc, "getelementptr index must be an integer");
5951
5952     if (Val->getType()->isVectorTy()) {
5953       unsigned ValNumEl = Val->getType()->getVectorNumElements();
5954       if (GEPWidth && GEPWidth != ValNumEl)
5955         return Error(EltLoc,
5956           "getelementptr vector index has a wrong number of elements");
5957       GEPWidth = ValNumEl;
5958     }
5959     Indices.push_back(Val);
5960   }
5961
5962   SmallPtrSet<Type*, 4> Visited;
5963   if (!Indices.empty() && !Ty->isSized(&Visited))
5964     return Error(Loc, "base element of getelementptr must be sized");
5965
5966   if (!GetElementPtrInst::getIndexedType(Ty, Indices))
5967     return Error(Loc, "invalid getelementptr indices");
5968   Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
5969   if (InBounds)
5970     cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
5971   return AteExtraComma ? InstExtraComma : InstNormal;
5972 }
5973
5974 /// ParseExtractValue
5975 ///   ::= 'extractvalue' TypeAndValue (',' uint32)+
5976 int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
5977   Value *Val; LocTy Loc;
5978   SmallVector<unsigned, 4> Indices;
5979   bool AteExtraComma;
5980   if (ParseTypeAndValue(Val, Loc, PFS) ||
5981       ParseIndexList(Indices, AteExtraComma))
5982     return true;
5983
5984   if (!Val->getType()->isAggregateType())
5985     return Error(Loc, "extractvalue operand must be aggregate type");
5986
5987   if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
5988     return Error(Loc, "invalid indices for extractvalue");
5989   Inst = ExtractValueInst::Create(Val, Indices);
5990   return AteExtraComma ? InstExtraComma : InstNormal;
5991 }
5992
5993 /// ParseInsertValue
5994 ///   ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
5995 int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
5996   Value *Val0, *Val1; LocTy Loc0, Loc1;
5997   SmallVector<unsigned, 4> Indices;
5998   bool AteExtraComma;
5999   if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6000       ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6001       ParseTypeAndValue(Val1, Loc1, PFS) ||
6002       ParseIndexList(Indices, AteExtraComma))
6003     return true;
6004
6005   if (!Val0->getType()->isAggregateType())
6006     return Error(Loc0, "insertvalue operand must be aggregate type");
6007
6008   Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6009   if (!IndexedType)
6010     return Error(Loc0, "invalid indices for insertvalue");
6011   if (IndexedType != Val1->getType())
6012     return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6013                            getTypeString(Val1->getType()) + "' instead of '" +
6014                            getTypeString(IndexedType) + "'");
6015   Inst = InsertValueInst::Create(Val0, Val1, Indices);
6016   return AteExtraComma ? InstExtraComma : InstNormal;
6017 }
6018
6019 //===----------------------------------------------------------------------===//
6020 // Embedded metadata.
6021 //===----------------------------------------------------------------------===//
6022
6023 /// ParseMDNodeVector
6024 ///   ::= { Element (',' Element)* }
6025 /// Element
6026 ///   ::= 'null' | TypeAndValue
6027 bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
6028   if (ParseToken(lltok::lbrace, "expected '{' here"))
6029     return true;
6030
6031   // Check for an empty list.
6032   if (EatIfPresent(lltok::rbrace))
6033     return false;
6034
6035   do {
6036     // Null is a special case since it is typeless.
6037     if (EatIfPresent(lltok::kw_null)) {
6038       Elts.push_back(nullptr);
6039       continue;
6040     }
6041
6042     Metadata *MD;
6043     if (ParseMetadata(MD, nullptr))
6044       return true;
6045     Elts.push_back(MD);
6046   } while (EatIfPresent(lltok::comma));
6047
6048   return ParseToken(lltok::rbrace, "expected end of metadata node");
6049 }
6050
6051 //===----------------------------------------------------------------------===//
6052 // Use-list order directives.
6053 //===----------------------------------------------------------------------===//
6054 bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6055                                 SMLoc Loc) {
6056   if (V->use_empty())
6057     return Error(Loc, "value has no uses");
6058
6059   unsigned NumUses = 0;
6060   SmallDenseMap<const Use *, unsigned, 16> Order;
6061   for (const Use &U : V->uses()) {
6062     if (++NumUses > Indexes.size())
6063       break;
6064     Order[&U] = Indexes[NumUses - 1];
6065   }
6066   if (NumUses < 2)
6067     return Error(Loc, "value only has one use");
6068   if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6069     return Error(Loc, "wrong number of indexes, expected " +
6070                           Twine(std::distance(V->use_begin(), V->use_end())));
6071
6072   V->sortUseList([&](const Use &L, const Use &R) {
6073     return Order.lookup(&L) < Order.lookup(&R);
6074   });
6075   return false;
6076 }
6077
6078 /// ParseUseListOrderIndexes
6079 ///   ::= '{' uint32 (',' uint32)+ '}'
6080 bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6081   SMLoc Loc = Lex.getLoc();
6082   if (ParseToken(lltok::lbrace, "expected '{' here"))
6083     return true;
6084   if (Lex.getKind() == lltok::rbrace)
6085     return Lex.Error("expected non-empty list of uselistorder indexes");
6086
6087   // Use Offset, Max, and IsOrdered to check consistency of indexes.  The
6088   // indexes should be distinct numbers in the range [0, size-1], and should
6089   // not be in order.
6090   unsigned Offset = 0;
6091   unsigned Max = 0;
6092   bool IsOrdered = true;
6093   assert(Indexes.empty() && "Expected empty order vector");
6094   do {
6095     unsigned Index;
6096     if (ParseUInt32(Index))
6097       return true;
6098
6099     // Update consistency checks.
6100     Offset += Index - Indexes.size();
6101     Max = std::max(Max, Index);
6102     IsOrdered &= Index == Indexes.size();
6103
6104     Indexes.push_back(Index);
6105   } while (EatIfPresent(lltok::comma));
6106
6107   if (ParseToken(lltok::rbrace, "expected '}' here"))
6108     return true;
6109
6110   if (Indexes.size() < 2)
6111     return Error(Loc, "expected >= 2 uselistorder indexes");
6112   if (Offset != 0 || Max >= Indexes.size())
6113     return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6114   if (IsOrdered)
6115     return Error(Loc, "expected uselistorder indexes to change the order");
6116
6117   return false;
6118 }
6119
6120 /// ParseUseListOrder
6121 ///   ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6122 bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6123   SMLoc Loc = Lex.getLoc();
6124   if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6125     return true;
6126
6127   Value *V;
6128   SmallVector<unsigned, 16> Indexes;
6129   if (ParseTypeAndValue(V, PFS) ||
6130       ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6131       ParseUseListOrderIndexes(Indexes))
6132     return true;
6133
6134   return sortUseListOrder(V, Indexes, Loc);
6135 }
6136
6137 /// ParseUseListOrderBB
6138 ///   ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6139 bool LLParser::ParseUseListOrderBB() {
6140   assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6141   SMLoc Loc = Lex.getLoc();
6142   Lex.Lex();
6143
6144   ValID Fn, Label;
6145   SmallVector<unsigned, 16> Indexes;
6146   if (ParseValID(Fn) ||
6147       ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6148       ParseValID(Label) ||
6149       ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6150       ParseUseListOrderIndexes(Indexes))
6151     return true;
6152
6153   // Check the function.
6154   GlobalValue *GV;
6155   if (Fn.Kind == ValID::t_GlobalName)
6156     GV = M->getNamedValue(Fn.StrVal);
6157   else if (Fn.Kind == ValID::t_GlobalID)
6158     GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6159   else
6160     return Error(Fn.Loc, "expected function name in uselistorder_bb");
6161   if (!GV)
6162     return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6163   auto *F = dyn_cast<Function>(GV);
6164   if (!F)
6165     return Error(Fn.Loc, "expected function name in uselistorder_bb");
6166   if (F->isDeclaration())
6167     return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6168
6169   // Check the basic block.
6170   if (Label.Kind == ValID::t_LocalID)
6171     return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6172   if (Label.Kind != ValID::t_LocalName)
6173     return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6174   Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6175   if (!V)
6176     return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6177   if (!isa<BasicBlock>(V))
6178     return Error(Label.Loc, "expected basic block in uselistorder_bb");
6179
6180   return sortUseListOrder(V, Indexes, Loc);
6181 }