fc7fceb2a2668fdc12676b5cae0ee4de2cd6a78a
[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,
2241                                           Type *Ty, LocTy Loc) {
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     if (Val->getType() == Ty) return Val;
2257     if (Ty->isLabelTy())
2258       P.Error(Loc, "'%" + Name + "' is not a basic block");
2259     else
2260       P.Error(Loc, "'%" + Name + "' defined with type '" +
2261               getTypeString(Val->getType()) + "'");
2262     return nullptr;
2263   }
2264
2265   // Don't make placeholders with invalid type.
2266   if (!Ty->isFirstClassType()) {
2267     P.Error(Loc, "invalid use of a non-first-class type");
2268     return nullptr;
2269   }
2270
2271   // Otherwise, create a new forward reference for this value and remember it.
2272   Value *FwdVal;
2273   if (Ty->isLabelTy())
2274     FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
2275   else
2276     FwdVal = new Argument(Ty, Name);
2277
2278   ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2279   return FwdVal;
2280 }
2281
2282 Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
2283                                           LocTy Loc) {
2284   // Look this name up in the normal function symbol table.
2285   Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
2286
2287   // If this is a forward reference for the value, see if we already created a
2288   // forward ref record.
2289   if (!Val) {
2290     std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2291       I = ForwardRefValIDs.find(ID);
2292     if (I != ForwardRefValIDs.end())
2293       Val = I->second.first;
2294   }
2295
2296   // If we have the value in the symbol table or fwd-ref table, return it.
2297   if (Val) {
2298     if (Val->getType() == Ty) return Val;
2299     if (Ty->isLabelTy())
2300       P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
2301     else
2302       P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
2303               getTypeString(Val->getType()) + "'");
2304     return nullptr;
2305   }
2306
2307   if (!Ty->isFirstClassType()) {
2308     P.Error(Loc, "invalid use of a non-first-class type");
2309     return nullptr;
2310   }
2311
2312   // Otherwise, create a new forward reference for this value and remember it.
2313   Value *FwdVal;
2314   if (Ty->isLabelTy())
2315     FwdVal = BasicBlock::Create(F.getContext(), "", &F);
2316   else
2317     FwdVal = new Argument(Ty);
2318
2319   ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2320   return FwdVal;
2321 }
2322
2323 /// SetInstName - After an instruction is parsed and inserted into its
2324 /// basic block, this installs its name.
2325 bool LLParser::PerFunctionState::SetInstName(int NameID,
2326                                              const std::string &NameStr,
2327                                              LocTy NameLoc, Instruction *Inst) {
2328   // If this instruction has void type, it cannot have a name or ID specified.
2329   if (Inst->getType()->isVoidTy()) {
2330     if (NameID != -1 || !NameStr.empty())
2331       return P.Error(NameLoc, "instructions returning void cannot have a name");
2332     return false;
2333   }
2334
2335   // If this was a numbered instruction, verify that the instruction is the
2336   // expected value and resolve any forward references.
2337   if (NameStr.empty()) {
2338     // If neither a name nor an ID was specified, just use the next ID.
2339     if (NameID == -1)
2340       NameID = NumberedVals.size();
2341
2342     if (unsigned(NameID) != NumberedVals.size())
2343       return P.Error(NameLoc, "instruction expected to be numbered '%" +
2344                      Twine(NumberedVals.size()) + "'");
2345
2346     std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2347       ForwardRefValIDs.find(NameID);
2348     if (FI != ForwardRefValIDs.end()) {
2349       if (FI->second.first->getType() != Inst->getType())
2350         return P.Error(NameLoc, "instruction forward referenced with type '" +
2351                        getTypeString(FI->second.first->getType()) + "'");
2352       FI->second.first->replaceAllUsesWith(Inst);
2353       delete FI->second.first;
2354       ForwardRefValIDs.erase(FI);
2355     }
2356
2357     NumberedVals.push_back(Inst);
2358     return false;
2359   }
2360
2361   // Otherwise, the instruction had a name.  Resolve forward refs and set it.
2362   std::map<std::string, std::pair<Value*, LocTy> >::iterator
2363     FI = ForwardRefVals.find(NameStr);
2364   if (FI != ForwardRefVals.end()) {
2365     if (FI->second.first->getType() != Inst->getType())
2366       return P.Error(NameLoc, "instruction forward referenced with type '" +
2367                      getTypeString(FI->second.first->getType()) + "'");
2368     FI->second.first->replaceAllUsesWith(Inst);
2369     delete FI->second.first;
2370     ForwardRefVals.erase(FI);
2371   }
2372
2373   // Set the name on the instruction.
2374   Inst->setName(NameStr);
2375
2376   if (Inst->getName() != NameStr)
2377     return P.Error(NameLoc, "multiple definition of local value named '" +
2378                    NameStr + "'");
2379   return false;
2380 }
2381
2382 /// GetBB - Get a basic block with the specified name or ID, creating a
2383 /// forward reference record if needed.
2384 BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2385                                               LocTy Loc) {
2386   return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2387                                       Type::getLabelTy(F.getContext()), Loc));
2388 }
2389
2390 BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
2391   return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2392                                       Type::getLabelTy(F.getContext()), Loc));
2393 }
2394
2395 /// DefineBB - Define the specified basic block, which is either named or
2396 /// unnamed.  If there is an error, this returns null otherwise it returns
2397 /// the block being defined.
2398 BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2399                                                  LocTy Loc) {
2400   BasicBlock *BB;
2401   if (Name.empty())
2402     BB = GetBB(NumberedVals.size(), Loc);
2403   else
2404     BB = GetBB(Name, Loc);
2405   if (!BB) return nullptr; // Already diagnosed error.
2406
2407   // Move the block to the end of the function.  Forward ref'd blocks are
2408   // inserted wherever they happen to be referenced.
2409   F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
2410
2411   // Remove the block from forward ref sets.
2412   if (Name.empty()) {
2413     ForwardRefValIDs.erase(NumberedVals.size());
2414     NumberedVals.push_back(BB);
2415   } else {
2416     // BB forward references are already in the function symbol table.
2417     ForwardRefVals.erase(Name);
2418   }
2419
2420   return BB;
2421 }
2422
2423 //===----------------------------------------------------------------------===//
2424 // Constants.
2425 //===----------------------------------------------------------------------===//
2426
2427 /// ParseValID - Parse an abstract value that doesn't necessarily have a
2428 /// type implied.  For example, if we parse "4" we don't know what integer type
2429 /// it has.  The value will later be combined with its type and checked for
2430 /// sanity.  PFS is used to convert function-local operands of metadata (since
2431 /// metadata operands are not just parsed here but also converted to values).
2432 /// PFS can be null when we are not parsing metadata values inside a function.
2433 bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
2434   ID.Loc = Lex.getLoc();
2435   switch (Lex.getKind()) {
2436   default: return TokError("expected value token");
2437   case lltok::GlobalID:  // @42
2438     ID.UIntVal = Lex.getUIntVal();
2439     ID.Kind = ValID::t_GlobalID;
2440     break;
2441   case lltok::GlobalVar:  // @foo
2442     ID.StrVal = Lex.getStrVal();
2443     ID.Kind = ValID::t_GlobalName;
2444     break;
2445   case lltok::LocalVarID:  // %42
2446     ID.UIntVal = Lex.getUIntVal();
2447     ID.Kind = ValID::t_LocalID;
2448     break;
2449   case lltok::LocalVar:  // %foo
2450     ID.StrVal = Lex.getStrVal();
2451     ID.Kind = ValID::t_LocalName;
2452     break;
2453   case lltok::APSInt:
2454     ID.APSIntVal = Lex.getAPSIntVal();
2455     ID.Kind = ValID::t_APSInt;
2456     break;
2457   case lltok::APFloat:
2458     ID.APFloatVal = Lex.getAPFloatVal();
2459     ID.Kind = ValID::t_APFloat;
2460     break;
2461   case lltok::kw_true:
2462     ID.ConstantVal = ConstantInt::getTrue(Context);
2463     ID.Kind = ValID::t_Constant;
2464     break;
2465   case lltok::kw_false:
2466     ID.ConstantVal = ConstantInt::getFalse(Context);
2467     ID.Kind = ValID::t_Constant;
2468     break;
2469   case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2470   case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2471   case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
2472
2473   case lltok::lbrace: {
2474     // ValID ::= '{' ConstVector '}'
2475     Lex.Lex();
2476     SmallVector<Constant*, 16> Elts;
2477     if (ParseGlobalValueVector(Elts) ||
2478         ParseToken(lltok::rbrace, "expected end of struct constant"))
2479       return true;
2480
2481     ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2482     ID.UIntVal = Elts.size();
2483     memcpy(ID.ConstantStructElts.get(), Elts.data(),
2484            Elts.size() * sizeof(Elts[0]));
2485     ID.Kind = ValID::t_ConstantStruct;
2486     return false;
2487   }
2488   case lltok::less: {
2489     // ValID ::= '<' ConstVector '>'         --> Vector.
2490     // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2491     Lex.Lex();
2492     bool isPackedStruct = EatIfPresent(lltok::lbrace);
2493
2494     SmallVector<Constant*, 16> Elts;
2495     LocTy FirstEltLoc = Lex.getLoc();
2496     if (ParseGlobalValueVector(Elts) ||
2497         (isPackedStruct &&
2498          ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2499         ParseToken(lltok::greater, "expected end of constant"))
2500       return true;
2501
2502     if (isPackedStruct) {
2503       ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2504       memcpy(ID.ConstantStructElts.get(), Elts.data(),
2505              Elts.size() * sizeof(Elts[0]));
2506       ID.UIntVal = Elts.size();
2507       ID.Kind = ValID::t_PackedConstantStruct;
2508       return false;
2509     }
2510
2511     if (Elts.empty())
2512       return Error(ID.Loc, "constant vector must not be empty");
2513
2514     if (!Elts[0]->getType()->isIntegerTy() &&
2515         !Elts[0]->getType()->isFloatingPointTy() &&
2516         !Elts[0]->getType()->isPointerTy())
2517       return Error(FirstEltLoc,
2518             "vector elements must have integer, pointer or floating point type");
2519
2520     // Verify that all the vector elements have the same type.
2521     for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2522       if (Elts[i]->getType() != Elts[0]->getType())
2523         return Error(FirstEltLoc,
2524                      "vector element #" + Twine(i) +
2525                     " is not of type '" + getTypeString(Elts[0]->getType()));
2526
2527     ID.ConstantVal = ConstantVector::get(Elts);
2528     ID.Kind = ValID::t_Constant;
2529     return false;
2530   }
2531   case lltok::lsquare: {   // Array Constant
2532     Lex.Lex();
2533     SmallVector<Constant*, 16> Elts;
2534     LocTy FirstEltLoc = Lex.getLoc();
2535     if (ParseGlobalValueVector(Elts) ||
2536         ParseToken(lltok::rsquare, "expected end of array constant"))
2537       return true;
2538
2539     // Handle empty element.
2540     if (Elts.empty()) {
2541       // Use undef instead of an array because it's inconvenient to determine
2542       // the element type at this point, there being no elements to examine.
2543       ID.Kind = ValID::t_EmptyArray;
2544       return false;
2545     }
2546
2547     if (!Elts[0]->getType()->isFirstClassType())
2548       return Error(FirstEltLoc, "invalid array element type: " +
2549                    getTypeString(Elts[0]->getType()));
2550
2551     ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
2552
2553     // Verify all elements are correct type!
2554     for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
2555       if (Elts[i]->getType() != Elts[0]->getType())
2556         return Error(FirstEltLoc,
2557                      "array element #" + Twine(i) +
2558                      " is not of type '" + getTypeString(Elts[0]->getType()));
2559     }
2560
2561     ID.ConstantVal = ConstantArray::get(ATy, Elts);
2562     ID.Kind = ValID::t_Constant;
2563     return false;
2564   }
2565   case lltok::kw_c:  // c "foo"
2566     Lex.Lex();
2567     ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2568                                                   false);
2569     if (ParseToken(lltok::StringConstant, "expected string")) return true;
2570     ID.Kind = ValID::t_Constant;
2571     return false;
2572
2573   case lltok::kw_asm: {
2574     // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2575     //             STRINGCONSTANT
2576     bool HasSideEffect, AlignStack, AsmDialect;
2577     Lex.Lex();
2578     if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
2579         ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
2580         ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
2581         ParseStringConstant(ID.StrVal) ||
2582         ParseToken(lltok::comma, "expected comma in inline asm expression") ||
2583         ParseToken(lltok::StringConstant, "expected constraint string"))
2584       return true;
2585     ID.StrVal2 = Lex.getStrVal();
2586     ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
2587       (unsigned(AsmDialect)<<2);
2588     ID.Kind = ValID::t_InlineAsm;
2589     return false;
2590   }
2591
2592   case lltok::kw_blockaddress: {
2593     // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2594     Lex.Lex();
2595
2596     ValID Fn, Label;
2597
2598     if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2599         ParseValID(Fn) ||
2600         ParseToken(lltok::comma, "expected comma in block address expression")||
2601         ParseValID(Label) ||
2602         ParseToken(lltok::rparen, "expected ')' in block address expression"))
2603       return true;
2604
2605     if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2606       return Error(Fn.Loc, "expected function name in blockaddress");
2607     if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
2608       return Error(Label.Loc, "expected basic block name in blockaddress");
2609
2610     // Try to find the function (but skip it if it's forward-referenced).
2611     GlobalValue *GV = nullptr;
2612     if (Fn.Kind == ValID::t_GlobalID) {
2613       if (Fn.UIntVal < NumberedVals.size())
2614         GV = NumberedVals[Fn.UIntVal];
2615     } else if (!ForwardRefVals.count(Fn.StrVal)) {
2616       GV = M->getNamedValue(Fn.StrVal);
2617     }
2618     Function *F = nullptr;
2619     if (GV) {
2620       // Confirm that it's actually a function with a definition.
2621       if (!isa<Function>(GV))
2622         return Error(Fn.Loc, "expected function name in blockaddress");
2623       F = cast<Function>(GV);
2624       if (F->isDeclaration())
2625         return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2626     }
2627
2628     if (!F) {
2629       // Make a global variable as a placeholder for this reference.
2630       GlobalValue *&FwdRef =
2631           ForwardRefBlockAddresses.insert(std::make_pair(
2632                                               std::move(Fn),
2633                                               std::map<ValID, GlobalValue *>()))
2634               .first->second.insert(std::make_pair(std::move(Label), nullptr))
2635               .first->second;
2636       if (!FwdRef)
2637         FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2638                                     GlobalValue::InternalLinkage, nullptr, "");
2639       ID.ConstantVal = FwdRef;
2640       ID.Kind = ValID::t_Constant;
2641       return false;
2642     }
2643
2644     // We found the function; now find the basic block.  Don't use PFS, since we
2645     // might be inside a constant expression.
2646     BasicBlock *BB;
2647     if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2648       if (Label.Kind == ValID::t_LocalID)
2649         BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2650       else
2651         BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2652       if (!BB)
2653         return Error(Label.Loc, "referenced value is not a basic block");
2654     } else {
2655       if (Label.Kind == ValID::t_LocalID)
2656         return Error(Label.Loc, "cannot take address of numeric label after "
2657                                 "the function is defined");
2658       BB = dyn_cast_or_null<BasicBlock>(
2659           F->getValueSymbolTable().lookup(Label.StrVal));
2660       if (!BB)
2661         return Error(Label.Loc, "referenced value is not a basic block");
2662     }
2663
2664     ID.ConstantVal = BlockAddress::get(F, BB);
2665     ID.Kind = ValID::t_Constant;
2666     return false;
2667   }
2668
2669   case lltok::kw_trunc:
2670   case lltok::kw_zext:
2671   case lltok::kw_sext:
2672   case lltok::kw_fptrunc:
2673   case lltok::kw_fpext:
2674   case lltok::kw_bitcast:
2675   case lltok::kw_addrspacecast:
2676   case lltok::kw_uitofp:
2677   case lltok::kw_sitofp:
2678   case lltok::kw_fptoui:
2679   case lltok::kw_fptosi:
2680   case lltok::kw_inttoptr:
2681   case lltok::kw_ptrtoint: {
2682     unsigned Opc = Lex.getUIntVal();
2683     Type *DestTy = nullptr;
2684     Constant *SrcVal;
2685     Lex.Lex();
2686     if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2687         ParseGlobalTypeAndValue(SrcVal) ||
2688         ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
2689         ParseType(DestTy) ||
2690         ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2691       return true;
2692     if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2693       return Error(ID.Loc, "invalid cast opcode for cast from '" +
2694                    getTypeString(SrcVal->getType()) + "' to '" +
2695                    getTypeString(DestTy) + "'");
2696     ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
2697                                                  SrcVal, DestTy);
2698     ID.Kind = ValID::t_Constant;
2699     return false;
2700   }
2701   case lltok::kw_extractvalue: {
2702     Lex.Lex();
2703     Constant *Val;
2704     SmallVector<unsigned, 4> Indices;
2705     if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2706         ParseGlobalTypeAndValue(Val) ||
2707         ParseIndexList(Indices) ||
2708         ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2709       return true;
2710
2711     if (!Val->getType()->isAggregateType())
2712       return Error(ID.Loc, "extractvalue operand must be aggregate type");
2713     if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
2714       return Error(ID.Loc, "invalid indices for extractvalue");
2715     ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
2716     ID.Kind = ValID::t_Constant;
2717     return false;
2718   }
2719   case lltok::kw_insertvalue: {
2720     Lex.Lex();
2721     Constant *Val0, *Val1;
2722     SmallVector<unsigned, 4> Indices;
2723     if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2724         ParseGlobalTypeAndValue(Val0) ||
2725         ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2726         ParseGlobalTypeAndValue(Val1) ||
2727         ParseIndexList(Indices) ||
2728         ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2729       return true;
2730     if (!Val0->getType()->isAggregateType())
2731       return Error(ID.Loc, "insertvalue operand must be aggregate type");
2732     Type *IndexedType =
2733         ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2734     if (!IndexedType)
2735       return Error(ID.Loc, "invalid indices for insertvalue");
2736     if (IndexedType != Val1->getType())
2737       return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2738                                getTypeString(Val1->getType()) +
2739                                "' instead of '" + getTypeString(IndexedType) +
2740                                "'");
2741     ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
2742     ID.Kind = ValID::t_Constant;
2743     return false;
2744   }
2745   case lltok::kw_icmp:
2746   case lltok::kw_fcmp: {
2747     unsigned PredVal, Opc = Lex.getUIntVal();
2748     Constant *Val0, *Val1;
2749     Lex.Lex();
2750     if (ParseCmpPredicate(PredVal, Opc) ||
2751         ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2752         ParseGlobalTypeAndValue(Val0) ||
2753         ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2754         ParseGlobalTypeAndValue(Val1) ||
2755         ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2756       return true;
2757
2758     if (Val0->getType() != Val1->getType())
2759       return Error(ID.Loc, "compare operands must have the same type");
2760
2761     CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
2762
2763     if (Opc == Instruction::FCmp) {
2764       if (!Val0->getType()->isFPOrFPVectorTy())
2765         return Error(ID.Loc, "fcmp requires floating point operands");
2766       ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
2767     } else {
2768       assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
2769       if (!Val0->getType()->isIntOrIntVectorTy() &&
2770           !Val0->getType()->getScalarType()->isPointerTy())
2771         return Error(ID.Loc, "icmp requires pointer or integer operands");
2772       ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
2773     }
2774     ID.Kind = ValID::t_Constant;
2775     return false;
2776   }
2777
2778   // Binary Operators.
2779   case lltok::kw_add:
2780   case lltok::kw_fadd:
2781   case lltok::kw_sub:
2782   case lltok::kw_fsub:
2783   case lltok::kw_mul:
2784   case lltok::kw_fmul:
2785   case lltok::kw_udiv:
2786   case lltok::kw_sdiv:
2787   case lltok::kw_fdiv:
2788   case lltok::kw_urem:
2789   case lltok::kw_srem:
2790   case lltok::kw_frem:
2791   case lltok::kw_shl:
2792   case lltok::kw_lshr:
2793   case lltok::kw_ashr: {
2794     bool NUW = false;
2795     bool NSW = false;
2796     bool Exact = false;
2797     unsigned Opc = Lex.getUIntVal();
2798     Constant *Val0, *Val1;
2799     Lex.Lex();
2800     LocTy ModifierLoc = Lex.getLoc();
2801     if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2802         Opc == Instruction::Mul || Opc == Instruction::Shl) {
2803       if (EatIfPresent(lltok::kw_nuw))
2804         NUW = true;
2805       if (EatIfPresent(lltok::kw_nsw)) {
2806         NSW = true;
2807         if (EatIfPresent(lltok::kw_nuw))
2808           NUW = true;
2809       }
2810     } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2811                Opc == Instruction::LShr || Opc == Instruction::AShr) {
2812       if (EatIfPresent(lltok::kw_exact))
2813         Exact = true;
2814     }
2815     if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2816         ParseGlobalTypeAndValue(Val0) ||
2817         ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2818         ParseGlobalTypeAndValue(Val1) ||
2819         ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2820       return true;
2821     if (Val0->getType() != Val1->getType())
2822       return Error(ID.Loc, "operands of constexpr must have same type");
2823     if (!Val0->getType()->isIntOrIntVectorTy()) {
2824       if (NUW)
2825         return Error(ModifierLoc, "nuw only applies to integer operations");
2826       if (NSW)
2827         return Error(ModifierLoc, "nsw only applies to integer operations");
2828     }
2829     // Check that the type is valid for the operator.
2830     switch (Opc) {
2831     case Instruction::Add:
2832     case Instruction::Sub:
2833     case Instruction::Mul:
2834     case Instruction::UDiv:
2835     case Instruction::SDiv:
2836     case Instruction::URem:
2837     case Instruction::SRem:
2838     case Instruction::Shl:
2839     case Instruction::AShr:
2840     case Instruction::LShr:
2841       if (!Val0->getType()->isIntOrIntVectorTy())
2842         return Error(ID.Loc, "constexpr requires integer operands");
2843       break;
2844     case Instruction::FAdd:
2845     case Instruction::FSub:
2846     case Instruction::FMul:
2847     case Instruction::FDiv:
2848     case Instruction::FRem:
2849       if (!Val0->getType()->isFPOrFPVectorTy())
2850         return Error(ID.Loc, "constexpr requires fp operands");
2851       break;
2852     default: llvm_unreachable("Unknown binary operator!");
2853     }
2854     unsigned Flags = 0;
2855     if (NUW)   Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2856     if (NSW)   Flags |= OverflowingBinaryOperator::NoSignedWrap;
2857     if (Exact) Flags |= PossiblyExactOperator::IsExact;
2858     Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
2859     ID.ConstantVal = C;
2860     ID.Kind = ValID::t_Constant;
2861     return false;
2862   }
2863
2864   // Logical Operations
2865   case lltok::kw_and:
2866   case lltok::kw_or:
2867   case lltok::kw_xor: {
2868     unsigned Opc = Lex.getUIntVal();
2869     Constant *Val0, *Val1;
2870     Lex.Lex();
2871     if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2872         ParseGlobalTypeAndValue(Val0) ||
2873         ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2874         ParseGlobalTypeAndValue(Val1) ||
2875         ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2876       return true;
2877     if (Val0->getType() != Val1->getType())
2878       return Error(ID.Loc, "operands of constexpr must have same type");
2879     if (!Val0->getType()->isIntOrIntVectorTy())
2880       return Error(ID.Loc,
2881                    "constexpr requires integer or integer vector operands");
2882     ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
2883     ID.Kind = ValID::t_Constant;
2884     return false;
2885   }
2886
2887   case lltok::kw_getelementptr:
2888   case lltok::kw_shufflevector:
2889   case lltok::kw_insertelement:
2890   case lltok::kw_extractelement:
2891   case lltok::kw_select: {
2892     unsigned Opc = Lex.getUIntVal();
2893     SmallVector<Constant*, 16> Elts;
2894     bool InBounds = false;
2895     Type *Ty;
2896     Lex.Lex();
2897
2898     if (Opc == Instruction::GetElementPtr)
2899       InBounds = EatIfPresent(lltok::kw_inbounds);
2900
2901     if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2902       return true;
2903
2904     LocTy ExplicitTypeLoc = Lex.getLoc();
2905     if (Opc == Instruction::GetElementPtr) {
2906       if (ParseType(Ty) ||
2907           ParseToken(lltok::comma, "expected comma after getelementptr's type"))
2908         return true;
2909     }
2910
2911     if (ParseGlobalValueVector(Elts) ||
2912         ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2913       return true;
2914
2915     if (Opc == Instruction::GetElementPtr) {
2916       if (Elts.size() == 0 ||
2917           !Elts[0]->getType()->getScalarType()->isPointerTy())
2918         return Error(ID.Loc, "base of getelementptr must be a pointer");
2919
2920       Type *BaseType = Elts[0]->getType();
2921       auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
2922       if (Ty != BasePointerType->getElementType())
2923         return Error(
2924             ExplicitTypeLoc,
2925             "explicit pointee type doesn't match operand's pointee type");
2926
2927       ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
2928       for (Constant *Val : Indices) {
2929         Type *ValTy = Val->getType();
2930         if (!ValTy->getScalarType()->isIntegerTy())
2931           return Error(ID.Loc, "getelementptr index must be an integer");
2932         if (ValTy->isVectorTy() != BaseType->isVectorTy())
2933           return Error(ID.Loc, "getelementptr index type missmatch");
2934         if (ValTy->isVectorTy()) {
2935           unsigned ValNumEl = ValTy->getVectorNumElements();
2936           unsigned PtrNumEl = BaseType->getVectorNumElements();
2937           if (ValNumEl != PtrNumEl)
2938             return Error(
2939                 ID.Loc,
2940                 "getelementptr vector index has a wrong number of elements");
2941         }
2942       }
2943
2944       SmallPtrSet<Type*, 4> Visited;
2945       if (!Indices.empty() && !Ty->isSized(&Visited))
2946         return Error(ID.Loc, "base element of getelementptr must be sized");
2947
2948       if (!GetElementPtrInst::getIndexedType(Ty, Indices))
2949         return Error(ID.Loc, "invalid getelementptr indices");
2950       ID.ConstantVal =
2951           ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
2952     } else if (Opc == Instruction::Select) {
2953       if (Elts.size() != 3)
2954         return Error(ID.Loc, "expected three operands to select");
2955       if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2956                                                               Elts[2]))
2957         return Error(ID.Loc, Reason);
2958       ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
2959     } else if (Opc == Instruction::ShuffleVector) {
2960       if (Elts.size() != 3)
2961         return Error(ID.Loc, "expected three operands to shufflevector");
2962       if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2963         return Error(ID.Loc, "invalid operands to shufflevector");
2964       ID.ConstantVal =
2965                  ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
2966     } else if (Opc == Instruction::ExtractElement) {
2967       if (Elts.size() != 2)
2968         return Error(ID.Loc, "expected two operands to extractelement");
2969       if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2970         return Error(ID.Loc, "invalid extractelement operands");
2971       ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
2972     } else {
2973       assert(Opc == Instruction::InsertElement && "Unknown opcode");
2974       if (Elts.size() != 3)
2975       return Error(ID.Loc, "expected three operands to insertelement");
2976       if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2977         return Error(ID.Loc, "invalid insertelement operands");
2978       ID.ConstantVal =
2979                  ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
2980     }
2981
2982     ID.Kind = ValID::t_Constant;
2983     return false;
2984   }
2985   }
2986
2987   Lex.Lex();
2988   return false;
2989 }
2990
2991 /// ParseGlobalValue - Parse a global value with the specified type.
2992 bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
2993   C = nullptr;
2994   ValID ID;
2995   Value *V = nullptr;
2996   bool Parsed = ParseValID(ID) ||
2997                 ConvertValIDToValue(Ty, ID, V, nullptr);
2998   if (V && !(C = dyn_cast<Constant>(V)))
2999     return Error(ID.Loc, "global values must be constants");
3000   return Parsed;
3001 }
3002
3003 bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
3004   Type *Ty = nullptr;
3005   return ParseType(Ty) ||
3006          ParseGlobalValue(Ty, V);
3007 }
3008
3009 bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
3010   C = nullptr;
3011
3012   LocTy KwLoc = Lex.getLoc();
3013   if (!EatIfPresent(lltok::kw_comdat))
3014     return false;
3015
3016   if (EatIfPresent(lltok::lparen)) {
3017     if (Lex.getKind() != lltok::ComdatVar)
3018       return TokError("expected comdat variable");
3019     C = getComdat(Lex.getStrVal(), Lex.getLoc());
3020     Lex.Lex();
3021     if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3022       return true;
3023   } else {
3024     if (GlobalName.empty())
3025       return TokError("comdat cannot be unnamed");
3026     C = getComdat(GlobalName, KwLoc);
3027   }
3028
3029   return false;
3030 }
3031
3032 /// ParseGlobalValueVector
3033 ///   ::= /*empty*/
3034 ///   ::= TypeAndValue (',' TypeAndValue)*
3035 bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
3036   // Empty list.
3037   if (Lex.getKind() == lltok::rbrace ||
3038       Lex.getKind() == lltok::rsquare ||
3039       Lex.getKind() == lltok::greater ||
3040       Lex.getKind() == lltok::rparen)
3041     return false;
3042
3043   Constant *C;
3044   if (ParseGlobalTypeAndValue(C)) return true;
3045   Elts.push_back(C);
3046
3047   while (EatIfPresent(lltok::comma)) {
3048     if (ParseGlobalTypeAndValue(C)) return true;
3049     Elts.push_back(C);
3050   }
3051
3052   return false;
3053 }
3054
3055 bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
3056   SmallVector<Metadata *, 16> Elts;
3057   if (ParseMDNodeVector(Elts))
3058     return true;
3059
3060   MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
3061   return false;
3062 }
3063
3064 /// MDNode:
3065 ///  ::= !{ ... }
3066 ///  ::= !7
3067 ///  ::= !DILocation(...)
3068 bool LLParser::ParseMDNode(MDNode *&N) {
3069   if (Lex.getKind() == lltok::MetadataVar)
3070     return ParseSpecializedMDNode(N);
3071
3072   return ParseToken(lltok::exclaim, "expected '!' here") ||
3073          ParseMDNodeTail(N);
3074 }
3075
3076 bool LLParser::ParseMDNodeTail(MDNode *&N) {
3077   // !{ ... }
3078   if (Lex.getKind() == lltok::lbrace)
3079     return ParseMDTuple(N);
3080
3081   // !42
3082   return ParseMDNodeID(N);
3083 }
3084
3085 namespace {
3086
3087 /// Structure to represent an optional metadata field.
3088 template <class FieldTy> struct MDFieldImpl {
3089   typedef MDFieldImpl ImplTy;
3090   FieldTy Val;
3091   bool Seen;
3092
3093   void assign(FieldTy Val) {
3094     Seen = true;
3095     this->Val = std::move(Val);
3096   }
3097
3098   explicit MDFieldImpl(FieldTy Default)
3099       : Val(std::move(Default)), Seen(false) {}
3100 };
3101
3102 struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3103   uint64_t Max;
3104
3105   MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3106       : ImplTy(Default), Max(Max) {}
3107 };
3108 struct LineField : public MDUnsignedField {
3109   LineField() : MDUnsignedField(0, UINT32_MAX) {}
3110 };
3111 struct ColumnField : public MDUnsignedField {
3112   ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3113 };
3114 struct DwarfTagField : public MDUnsignedField {
3115   DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
3116   DwarfTagField(dwarf::Tag DefaultTag)
3117       : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
3118 };
3119 struct DwarfAttEncodingField : public MDUnsignedField {
3120   DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3121 };
3122 struct DwarfVirtualityField : public MDUnsignedField {
3123   DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3124 };
3125 struct DwarfLangField : public MDUnsignedField {
3126   DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3127 };
3128
3129 struct DIFlagField : public MDUnsignedField {
3130   DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3131 };
3132
3133 struct MDSignedField : public MDFieldImpl<int64_t> {
3134   int64_t Min;
3135   int64_t Max;
3136
3137   MDSignedField(int64_t Default = 0)
3138       : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3139   MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3140       : ImplTy(Default), Min(Min), Max(Max) {}
3141 };
3142
3143 struct MDBoolField : public MDFieldImpl<bool> {
3144   MDBoolField(bool Default = false) : ImplTy(Default) {}
3145 };
3146 struct MDField : public MDFieldImpl<Metadata *> {
3147   bool AllowNull;
3148
3149   MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
3150 };
3151 struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3152   MDConstant() : ImplTy(nullptr) {}
3153 };
3154 struct MDStringField : public MDFieldImpl<MDString *> {
3155   bool AllowEmpty;
3156   MDStringField(bool AllowEmpty = true)
3157       : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
3158 };
3159 struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3160   MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3161 };
3162
3163 } // end namespace
3164
3165 namespace llvm {
3166
3167 template <>
3168 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3169                             MDUnsignedField &Result) {
3170   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3171     return TokError("expected unsigned integer");
3172
3173   auto &U = Lex.getAPSIntVal();
3174   if (U.ugt(Result.Max))
3175     return TokError("value for '" + Name + "' too large, limit is " +
3176                     Twine(Result.Max));
3177   Result.assign(U.getZExtValue());
3178   assert(Result.Val <= Result.Max && "Expected value in range");
3179   Lex.Lex();
3180   return false;
3181 }
3182
3183 template <>
3184 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3185   return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3186 }
3187 template <>
3188 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3189   return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3190 }
3191
3192 template <>
3193 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3194   if (Lex.getKind() == lltok::APSInt)
3195     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3196
3197   if (Lex.getKind() != lltok::DwarfTag)
3198     return TokError("expected DWARF tag");
3199
3200   unsigned Tag = dwarf::getTag(Lex.getStrVal());
3201   if (Tag == dwarf::DW_TAG_invalid)
3202     return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
3203   assert(Tag <= Result.Max && "Expected valid DWARF tag");
3204
3205   Result.assign(Tag);
3206   Lex.Lex();
3207   return false;
3208 }
3209
3210 template <>
3211 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3212                             DwarfVirtualityField &Result) {
3213   if (Lex.getKind() == lltok::APSInt)
3214     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3215
3216   if (Lex.getKind() != lltok::DwarfVirtuality)
3217     return TokError("expected DWARF virtuality code");
3218
3219   unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3220   if (!Virtuality)
3221     return TokError("invalid DWARF virtuality code" + Twine(" '") +
3222                     Lex.getStrVal() + "'");
3223   assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3224   Result.assign(Virtuality);
3225   Lex.Lex();
3226   return false;
3227 }
3228
3229 template <>
3230 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3231   if (Lex.getKind() == lltok::APSInt)
3232     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3233
3234   if (Lex.getKind() != lltok::DwarfLang)
3235     return TokError("expected DWARF language");
3236
3237   unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3238   if (!Lang)
3239     return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3240                     "'");
3241   assert(Lang <= Result.Max && "Expected valid DWARF language");
3242   Result.assign(Lang);
3243   Lex.Lex();
3244   return false;
3245 }
3246
3247 template <>
3248 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3249                             DwarfAttEncodingField &Result) {
3250   if (Lex.getKind() == lltok::APSInt)
3251     return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3252
3253   if (Lex.getKind() != lltok::DwarfAttEncoding)
3254     return TokError("expected DWARF type attribute encoding");
3255
3256   unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3257   if (!Encoding)
3258     return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3259                     Lex.getStrVal() + "'");
3260   assert(Encoding <= Result.Max && "Expected valid DWARF language");
3261   Result.assign(Encoding);
3262   Lex.Lex();
3263   return false;
3264 }
3265
3266 /// DIFlagField
3267 ///  ::= uint32
3268 ///  ::= DIFlagVector
3269 ///  ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3270 template <>
3271 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3272   assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3273
3274   // Parser for a single flag.
3275   auto parseFlag = [&](unsigned &Val) {
3276     if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3277       return ParseUInt32(Val);
3278
3279     if (Lex.getKind() != lltok::DIFlag)
3280       return TokError("expected debug info flag");
3281
3282     Val = DINode::getFlag(Lex.getStrVal());
3283     if (!Val)
3284       return TokError(Twine("invalid debug info flag flag '") +
3285                       Lex.getStrVal() + "'");
3286     Lex.Lex();
3287     return false;
3288   };
3289
3290   // Parse the flags and combine them together.
3291   unsigned Combined = 0;
3292   do {
3293     unsigned Val;
3294     if (parseFlag(Val))
3295       return true;
3296     Combined |= Val;
3297   } while (EatIfPresent(lltok::bar));
3298
3299   Result.assign(Combined);
3300   return false;
3301 }
3302
3303 template <>
3304 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3305                             MDSignedField &Result) {
3306   if (Lex.getKind() != lltok::APSInt)
3307     return TokError("expected signed integer");
3308
3309   auto &S = Lex.getAPSIntVal();
3310   if (S < Result.Min)
3311     return TokError("value for '" + Name + "' too small, limit is " +
3312                     Twine(Result.Min));
3313   if (S > Result.Max)
3314     return TokError("value for '" + Name + "' too large, limit is " +
3315                     Twine(Result.Max));
3316   Result.assign(S.getExtValue());
3317   assert(Result.Val >= Result.Min && "Expected value in range");
3318   assert(Result.Val <= Result.Max && "Expected value in range");
3319   Lex.Lex();
3320   return false;
3321 }
3322
3323 template <>
3324 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3325   switch (Lex.getKind()) {
3326   default:
3327     return TokError("expected 'true' or 'false'");
3328   case lltok::kw_true:
3329     Result.assign(true);
3330     break;
3331   case lltok::kw_false:
3332     Result.assign(false);
3333     break;
3334   }
3335   Lex.Lex();
3336   return false;
3337 }
3338
3339 template <>
3340 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
3341   if (Lex.getKind() == lltok::kw_null) {
3342     if (!Result.AllowNull)
3343       return TokError("'" + Name + "' cannot be null");
3344     Lex.Lex();
3345     Result.assign(nullptr);
3346     return false;
3347   }
3348
3349   Metadata *MD;
3350   if (ParseMetadata(MD, nullptr))
3351     return true;
3352
3353   Result.assign(MD);
3354   return false;
3355 }
3356
3357 template <>
3358 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3359   Metadata *MD;
3360   if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3361     return true;
3362
3363   Result.assign(cast<ConstantAsMetadata>(MD));
3364   return false;
3365 }
3366
3367 template <>
3368 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
3369   LocTy ValueLoc = Lex.getLoc();
3370   std::string S;
3371   if (ParseStringConstant(S))
3372     return true;
3373
3374   if (!Result.AllowEmpty && S.empty())
3375     return Error(ValueLoc, "'" + Name + "' cannot be empty");
3376
3377   Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
3378   return false;
3379 }
3380
3381 template <>
3382 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3383   SmallVector<Metadata *, 4> MDs;
3384   if (ParseMDNodeVector(MDs))
3385     return true;
3386
3387   Result.assign(std::move(MDs));
3388   return false;
3389 }
3390
3391 } // end namespace llvm
3392
3393 template <class ParserTy>
3394 bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
3395   do {
3396     if (Lex.getKind() != lltok::LabelStr)
3397       return TokError("expected field label here");
3398
3399     if (parseField())
3400       return true;
3401   } while (EatIfPresent(lltok::comma));
3402
3403   return false;
3404 }
3405
3406 template <class ParserTy>
3407 bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3408   assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3409   Lex.Lex();
3410
3411   if (ParseToken(lltok::lparen, "expected '(' here"))
3412     return true;
3413   if (Lex.getKind() != lltok::rparen)
3414     if (ParseMDFieldsImplBody(parseField))
3415       return true;
3416
3417   ClosingLoc = Lex.getLoc();
3418   return ParseToken(lltok::rparen, "expected ')' here");
3419 }
3420
3421 template <class FieldTy>
3422 bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3423   if (Result.Seen)
3424     return TokError("field '" + Name + "' cannot be specified more than once");
3425
3426   LocTy Loc = Lex.getLoc();
3427   Lex.Lex();
3428   return ParseMDField(Loc, Name, Result);
3429 }
3430
3431 bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3432   assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3433
3434 #define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS)                                  \
3435   if (Lex.getStrVal() == #CLASS)                                               \
3436     return Parse##CLASS(N, IsDistinct);
3437 #include "llvm/IR/Metadata.def"
3438
3439   return TokError("expected metadata type");
3440 }
3441
3442 #define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3443 #define NOP_FIELD(NAME, TYPE, INIT)
3444 #define REQUIRE_FIELD(NAME, TYPE, INIT)                                        \
3445   if (!NAME.Seen)                                                              \
3446     return Error(ClosingLoc, "missing required field '" #NAME "'");
3447 #define PARSE_MD_FIELD(NAME, TYPE, DEFAULT)                                    \
3448   if (Lex.getStrVal() == #NAME)                                                \
3449     return ParseMDField(#NAME, NAME);
3450 #define PARSE_MD_FIELDS()                                                      \
3451   VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD)                                \
3452   do {                                                                         \
3453     LocTy ClosingLoc;                                                          \
3454     if (ParseMDFieldsImpl([&]() -> bool {                                      \
3455       VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD)                          \
3456       return TokError(Twine("invalid field '") + Lex.getStrVal() + "'");       \
3457     }, ClosingLoc))                                                            \
3458       return true;                                                             \
3459     VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD)                                  \
3460   } while (false)
3461 #define GET_OR_DISTINCT(CLASS, ARGS)                                           \
3462   (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
3463
3464 /// ParseDILocationFields:
3465 ///   ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3466 bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
3467 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3468   OPTIONAL(line, LineField, );                                                 \
3469   OPTIONAL(column, ColumnField, );                                             \
3470   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3471   OPTIONAL(inlinedAt, MDField, );
3472   PARSE_MD_FIELDS();
3473 #undef VISIT_MD_FIELDS
3474
3475   Result = GET_OR_DISTINCT(
3476       DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
3477   return false;
3478 }
3479
3480 /// ParseGenericDINode:
3481 ///   ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3482 bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
3483 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3484   REQUIRED(tag, DwarfTagField, );                                              \
3485   OPTIONAL(header, MDStringField, );                                           \
3486   OPTIONAL(operands, MDFieldList, );
3487   PARSE_MD_FIELDS();
3488 #undef VISIT_MD_FIELDS
3489
3490   Result = GET_OR_DISTINCT(GenericDINode,
3491                            (Context, tag.Val, header.Val, operands.Val));
3492   return false;
3493 }
3494
3495 /// ParseDISubrange:
3496 ///   ::= !DISubrange(count: 30, lowerBound: 2)
3497 bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
3498 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3499   REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX));                         \
3500   OPTIONAL(lowerBound, MDSignedField, );
3501   PARSE_MD_FIELDS();
3502 #undef VISIT_MD_FIELDS
3503
3504   Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
3505   return false;
3506 }
3507
3508 /// ParseDIEnumerator:
3509 ///   ::= !DIEnumerator(value: 30, name: "SomeKind")
3510 bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
3511 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3512   REQUIRED(name, MDStringField, );                                             \
3513   REQUIRED(value, MDSignedField, );
3514   PARSE_MD_FIELDS();
3515 #undef VISIT_MD_FIELDS
3516
3517   Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
3518   return false;
3519 }
3520
3521 /// ParseDIBasicType:
3522 ///   ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3523 bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
3524 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3525   OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type));                     \
3526   OPTIONAL(name, MDStringField, );                                             \
3527   OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX));                            \
3528   OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX));                           \
3529   OPTIONAL(encoding, DwarfAttEncodingField, );
3530   PARSE_MD_FIELDS();
3531 #undef VISIT_MD_FIELDS
3532
3533   Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
3534                                          align.Val, encoding.Val));
3535   return false;
3536 }
3537
3538 /// ParseDIDerivedType:
3539 ///   ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
3540 ///                      line: 7, scope: !1, baseType: !2, size: 32,
3541 ///                      align: 32, offset: 0, flags: 0, extraData: !3)
3542 bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
3543 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3544   REQUIRED(tag, DwarfTagField, );                                              \
3545   OPTIONAL(name, MDStringField, );                                             \
3546   OPTIONAL(file, MDField, );                                                   \
3547   OPTIONAL(line, LineField, );                                                 \
3548   OPTIONAL(scope, MDField, );                                                  \
3549   REQUIRED(baseType, MDField, );                                               \
3550   OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX));                            \
3551   OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX));                           \
3552   OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX));                          \
3553   OPTIONAL(flags, DIFlagField, );                                              \
3554   OPTIONAL(extraData, MDField, );
3555   PARSE_MD_FIELDS();
3556 #undef VISIT_MD_FIELDS
3557
3558   Result = GET_OR_DISTINCT(DIDerivedType,
3559                            (Context, tag.Val, name.Val, file.Val, line.Val,
3560                             scope.Val, baseType.Val, size.Val, align.Val,
3561                             offset.Val, flags.Val, extraData.Val));
3562   return false;
3563 }
3564
3565 bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
3566 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3567   REQUIRED(tag, DwarfTagField, );                                              \
3568   OPTIONAL(name, MDStringField, );                                             \
3569   OPTIONAL(file, MDField, );                                                   \
3570   OPTIONAL(line, LineField, );                                                 \
3571   OPTIONAL(scope, MDField, );                                                  \
3572   OPTIONAL(baseType, MDField, );                                               \
3573   OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX));                            \
3574   OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX));                           \
3575   OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX));                          \
3576   OPTIONAL(flags, DIFlagField, );                                              \
3577   OPTIONAL(elements, MDField, );                                               \
3578   OPTIONAL(runtimeLang, DwarfLangField, );                                     \
3579   OPTIONAL(vtableHolder, MDField, );                                           \
3580   OPTIONAL(templateParams, MDField, );                                         \
3581   OPTIONAL(identifier, MDStringField, );
3582   PARSE_MD_FIELDS();
3583 #undef VISIT_MD_FIELDS
3584
3585   Result = GET_OR_DISTINCT(
3586       DICompositeType,
3587       (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3588        size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3589        runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3590   return false;
3591 }
3592
3593 bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
3594 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3595   OPTIONAL(flags, DIFlagField, );                                              \
3596   REQUIRED(types, MDField, );
3597   PARSE_MD_FIELDS();
3598 #undef VISIT_MD_FIELDS
3599
3600   Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
3601   return false;
3602 }
3603
3604 /// ParseDIFileType:
3605 ///   ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3606 bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
3607 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3608   REQUIRED(filename, MDStringField, );                                         \
3609   REQUIRED(directory, MDStringField, );
3610   PARSE_MD_FIELDS();
3611 #undef VISIT_MD_FIELDS
3612
3613   Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
3614   return false;
3615 }
3616
3617 /// ParseDICompileUnit:
3618 ///   ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
3619 ///                      isOptimized: true, flags: "-O2", runtimeVersion: 1,
3620 ///                      splitDebugFilename: "abc.debug", emissionKind: 1,
3621 ///                      enums: !1, retainedTypes: !2, subprograms: !3,
3622 ///                      globals: !4, imports: !5, dwoId: 0x0abcd)
3623 bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
3624   if (!IsDistinct)
3625     return Lex.Error("missing 'distinct', required for !DICompileUnit");
3626
3627 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3628   REQUIRED(language, DwarfLangField, );                                        \
3629   REQUIRED(file, MDField, (/* AllowNull */ false));                            \
3630   OPTIONAL(producer, MDStringField, );                                         \
3631   OPTIONAL(isOptimized, MDBoolField, );                                        \
3632   OPTIONAL(flags, MDStringField, );                                            \
3633   OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX));                  \
3634   OPTIONAL(splitDebugFilename, MDStringField, );                               \
3635   OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX));                    \
3636   OPTIONAL(enums, MDField, );                                                  \
3637   OPTIONAL(retainedTypes, MDField, );                                          \
3638   OPTIONAL(subprograms, MDField, );                                            \
3639   OPTIONAL(globals, MDField, );                                                \
3640   OPTIONAL(imports, MDField, );                                                \
3641   OPTIONAL(dwoId, MDUnsignedField, );
3642   PARSE_MD_FIELDS();
3643 #undef VISIT_MD_FIELDS
3644
3645   Result = DICompileUnit::getDistinct(
3646       Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3647       runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
3648       retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, dwoId.Val);
3649   return false;
3650 }
3651
3652 /// ParseDISubprogram:
3653 ///   ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
3654 ///                     file: !1, line: 7, type: !2, isLocal: false,
3655 ///                     isDefinition: true, scopeLine: 8, containingType: !3,
3656 ///                     virtuality: DW_VIRTUALTIY_pure_virtual,
3657 ///                     virtualIndex: 10, flags: 11,
3658 ///                     isOptimized: false, function: void ()* @_Z3foov,
3659 ///                     templateParams: !4, declaration: !5, variables: !6)
3660 bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
3661 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3662   OPTIONAL(scope, MDField, );                                                  \
3663   OPTIONAL(name, MDStringField, );                                             \
3664   OPTIONAL(linkageName, MDStringField, );                                      \
3665   OPTIONAL(file, MDField, );                                                   \
3666   OPTIONAL(line, LineField, );                                                 \
3667   OPTIONAL(type, MDField, );                                                   \
3668   OPTIONAL(isLocal, MDBoolField, );                                            \
3669   OPTIONAL(isDefinition, MDBoolField, (true));                                 \
3670   OPTIONAL(scopeLine, LineField, );                                            \
3671   OPTIONAL(containingType, MDField, );                                         \
3672   OPTIONAL(virtuality, DwarfVirtualityField, );                                \
3673   OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX));                    \
3674   OPTIONAL(flags, DIFlagField, );                                              \
3675   OPTIONAL(isOptimized, MDBoolField, );                                        \
3676   OPTIONAL(function, MDConstant, );                                            \
3677   OPTIONAL(templateParams, MDField, );                                         \
3678   OPTIONAL(declaration, MDField, );                                            \
3679   OPTIONAL(variables, MDField, );
3680   PARSE_MD_FIELDS();
3681 #undef VISIT_MD_FIELDS
3682
3683   Result = GET_OR_DISTINCT(
3684       DISubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
3685                      line.Val, type.Val, isLocal.Val, isDefinition.Val,
3686                      scopeLine.Val, containingType.Val, virtuality.Val,
3687                      virtualIndex.Val, flags.Val, isOptimized.Val, function.Val,
3688                      templateParams.Val, declaration.Val, variables.Val));
3689   return false;
3690 }
3691
3692 /// ParseDILexicalBlock:
3693 ///   ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3694 bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
3695 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3696   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3697   OPTIONAL(file, MDField, );                                                   \
3698   OPTIONAL(line, LineField, );                                                 \
3699   OPTIONAL(column, ColumnField, );
3700   PARSE_MD_FIELDS();
3701 #undef VISIT_MD_FIELDS
3702
3703   Result = GET_OR_DISTINCT(
3704       DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
3705   return false;
3706 }
3707
3708 /// ParseDILexicalBlockFile:
3709 ///   ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3710 bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
3711 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3712   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3713   OPTIONAL(file, MDField, );                                                   \
3714   REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3715   PARSE_MD_FIELDS();
3716 #undef VISIT_MD_FIELDS
3717
3718   Result = GET_OR_DISTINCT(DILexicalBlockFile,
3719                            (Context, scope.Val, file.Val, discriminator.Val));
3720   return false;
3721 }
3722
3723 /// ParseDINamespace:
3724 ///   ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3725 bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
3726 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3727   REQUIRED(scope, MDField, );                                                  \
3728   OPTIONAL(file, MDField, );                                                   \
3729   OPTIONAL(name, MDStringField, );                                             \
3730   OPTIONAL(line, LineField, );
3731   PARSE_MD_FIELDS();
3732 #undef VISIT_MD_FIELDS
3733
3734   Result = GET_OR_DISTINCT(DINamespace,
3735                            (Context, scope.Val, file.Val, name.Val, line.Val));
3736   return false;
3737 }
3738
3739 /// ParseDIModule:
3740 ///   ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3741 ///                 includePath: "/usr/include", isysroot: "/")
3742 bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3743 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3744   REQUIRED(scope, MDField, );                                                  \
3745   REQUIRED(name, MDStringField, );                                             \
3746   OPTIONAL(configMacros, MDStringField, );                                     \
3747   OPTIONAL(includePath, MDStringField, );                                      \
3748   OPTIONAL(isysroot, MDStringField, );
3749   PARSE_MD_FIELDS();
3750 #undef VISIT_MD_FIELDS
3751
3752   Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3753                            configMacros.Val, includePath.Val, isysroot.Val));
3754   return false;
3755 }
3756
3757 /// ParseDITemplateTypeParameter:
3758 ///   ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3759 bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
3760 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3761   OPTIONAL(name, MDStringField, );                                             \
3762   REQUIRED(type, MDField, );
3763   PARSE_MD_FIELDS();
3764 #undef VISIT_MD_FIELDS
3765
3766   Result =
3767       GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
3768   return false;
3769 }
3770
3771 /// ParseDITemplateValueParameter:
3772 ///   ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
3773 ///                                 name: "V", type: !1, value: i32 7)
3774 bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
3775 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3776   OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter));      \
3777   OPTIONAL(name, MDStringField, );                                             \
3778   OPTIONAL(type, MDField, );                                                   \
3779   REQUIRED(value, MDField, );
3780   PARSE_MD_FIELDS();
3781 #undef VISIT_MD_FIELDS
3782
3783   Result = GET_OR_DISTINCT(DITemplateValueParameter,
3784                            (Context, tag.Val, name.Val, type.Val, value.Val));
3785   return false;
3786 }
3787
3788 /// ParseDIGlobalVariable:
3789 ///   ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
3790 ///                         file: !1, line: 7, type: !2, isLocal: false,
3791 ///                         isDefinition: true, variable: i32* @foo,
3792 ///                         declaration: !3)
3793 bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
3794 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3795   REQUIRED(name, MDStringField, (/* AllowEmpty */ false));                     \
3796   OPTIONAL(scope, MDField, );                                                  \
3797   OPTIONAL(linkageName, MDStringField, );                                      \
3798   OPTIONAL(file, MDField, );                                                   \
3799   OPTIONAL(line, LineField, );                                                 \
3800   OPTIONAL(type, MDField, );                                                   \
3801   OPTIONAL(isLocal, MDBoolField, );                                            \
3802   OPTIONAL(isDefinition, MDBoolField, (true));                                 \
3803   OPTIONAL(variable, MDConstant, );                                            \
3804   OPTIONAL(declaration, MDField, );
3805   PARSE_MD_FIELDS();
3806 #undef VISIT_MD_FIELDS
3807
3808   Result = GET_OR_DISTINCT(DIGlobalVariable,
3809                            (Context, scope.Val, name.Val, linkageName.Val,
3810                             file.Val, line.Val, type.Val, isLocal.Val,
3811                             isDefinition.Val, variable.Val, declaration.Val));
3812   return false;
3813 }
3814
3815 /// ParseDILocalVariable:
3816 ///   ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3817 ///                        file: !1, line: 7, type: !2, arg: 2, flags: 7)
3818 ///   ::= !DILocalVariable(scope: !0, name: "foo",
3819 ///                        file: !1, line: 7, type: !2, arg: 2, flags: 7)
3820 bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
3821 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3822   REQUIRED(scope, MDField, (/* AllowNull */ false));                           \
3823   OPTIONAL(name, MDStringField, );                                             \
3824   OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX));                             \
3825   OPTIONAL(file, MDField, );                                                   \
3826   OPTIONAL(line, LineField, );                                                 \
3827   OPTIONAL(type, MDField, );                                                   \
3828   OPTIONAL(flags, DIFlagField, );
3829   PARSE_MD_FIELDS();
3830 #undef VISIT_MD_FIELDS
3831
3832   Result = GET_OR_DISTINCT(DILocalVariable,
3833                            (Context, scope.Val, name.Val, file.Val, line.Val,
3834                             type.Val, arg.Val, flags.Val));
3835   return false;
3836 }
3837
3838 /// ParseDIExpression:
3839 ///   ::= !DIExpression(0, 7, -1)
3840 bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
3841   assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3842   Lex.Lex();
3843
3844   if (ParseToken(lltok::lparen, "expected '(' here"))
3845     return true;
3846
3847   SmallVector<uint64_t, 8> Elements;
3848   if (Lex.getKind() != lltok::rparen)
3849     do {
3850       if (Lex.getKind() == lltok::DwarfOp) {
3851         if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
3852           Lex.Lex();
3853           Elements.push_back(Op);
3854           continue;
3855         }
3856         return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
3857       }
3858
3859       if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3860         return TokError("expected unsigned integer");
3861
3862       auto &U = Lex.getAPSIntVal();
3863       if (U.ugt(UINT64_MAX))
3864         return TokError("element too large, limit is " + Twine(UINT64_MAX));
3865       Elements.push_back(U.getZExtValue());
3866       Lex.Lex();
3867     } while (EatIfPresent(lltok::comma));
3868
3869   if (ParseToken(lltok::rparen, "expected ')' here"))
3870     return true;
3871
3872   Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
3873   return false;
3874 }
3875
3876 /// ParseDIObjCProperty:
3877 ///   ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
3878 ///                       getter: "getFoo", attributes: 7, type: !2)
3879 bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
3880 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3881   OPTIONAL(name, MDStringField, );                                             \
3882   OPTIONAL(file, MDField, );                                                   \
3883   OPTIONAL(line, LineField, );                                                 \
3884   OPTIONAL(setter, MDStringField, );                                           \
3885   OPTIONAL(getter, MDStringField, );                                           \
3886   OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX));                      \
3887   OPTIONAL(type, MDField, );
3888   PARSE_MD_FIELDS();
3889 #undef VISIT_MD_FIELDS
3890
3891   Result = GET_OR_DISTINCT(DIObjCProperty,
3892                            (Context, name.Val, file.Val, line.Val, setter.Val,
3893                             getter.Val, attributes.Val, type.Val));
3894   return false;
3895 }
3896
3897 /// ParseDIImportedEntity:
3898 ///   ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
3899 ///                         line: 7, name: "foo")
3900 bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
3901 #define VISIT_MD_FIELDS(OPTIONAL, REQUIRED)                                    \
3902   REQUIRED(tag, DwarfTagField, );                                              \
3903   REQUIRED(scope, MDField, );                                                  \
3904   OPTIONAL(entity, MDField, );                                                 \
3905   OPTIONAL(line, LineField, );                                                 \
3906   OPTIONAL(name, MDStringField, );
3907   PARSE_MD_FIELDS();
3908 #undef VISIT_MD_FIELDS
3909
3910   Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
3911                                               entity.Val, line.Val, name.Val));
3912   return false;
3913 }
3914
3915 #undef PARSE_MD_FIELD
3916 #undef NOP_FIELD
3917 #undef REQUIRE_FIELD
3918 #undef DECLARE_FIELD
3919
3920 /// ParseMetadataAsValue
3921 ///  ::= metadata i32 %local
3922 ///  ::= metadata i32 @global
3923 ///  ::= metadata i32 7
3924 ///  ::= metadata !0
3925 ///  ::= metadata !{...}
3926 ///  ::= metadata !"string"
3927 bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
3928   // Note: the type 'metadata' has already been parsed.
3929   Metadata *MD;
3930   if (ParseMetadata(MD, &PFS))
3931     return true;
3932
3933   V = MetadataAsValue::get(Context, MD);
3934   return false;
3935 }
3936
3937 /// ParseValueAsMetadata
3938 ///  ::= i32 %local
3939 ///  ::= i32 @global
3940 ///  ::= i32 7
3941 bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
3942                                     PerFunctionState *PFS) {
3943   Type *Ty;
3944   LocTy Loc;
3945   if (ParseType(Ty, TypeMsg, Loc))
3946     return true;
3947   if (Ty->isMetadataTy())
3948     return Error(Loc, "invalid metadata-value-metadata roundtrip");
3949
3950   Value *V;
3951   if (ParseValue(Ty, V, PFS))
3952     return true;
3953
3954   MD = ValueAsMetadata::get(V);
3955   return false;
3956 }
3957
3958 /// ParseMetadata
3959 ///  ::= i32 %local
3960 ///  ::= i32 @global
3961 ///  ::= i32 7
3962 ///  ::= !42
3963 ///  ::= !{...}
3964 ///  ::= !"string"
3965 ///  ::= !DILocation(...)
3966 bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
3967   if (Lex.getKind() == lltok::MetadataVar) {
3968     MDNode *N;
3969     if (ParseSpecializedMDNode(N))
3970       return true;
3971     MD = N;
3972     return false;
3973   }
3974
3975   // ValueAsMetadata:
3976   // <type> <value>
3977   if (Lex.getKind() != lltok::exclaim)
3978     return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
3979
3980   // '!'.
3981   assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
3982   Lex.Lex();
3983
3984   // MDString:
3985   //   ::= '!' STRINGCONSTANT
3986   if (Lex.getKind() == lltok::StringConstant) {
3987     MDString *S;
3988     if (ParseMDString(S))
3989       return true;
3990     MD = S;
3991     return false;
3992   }
3993
3994   // MDNode:
3995   // !{ ... }
3996   // !7
3997   MDNode *N;
3998   if (ParseMDNodeTail(N))
3999     return true;
4000   MD = N;
4001   return false;
4002 }
4003
4004
4005 //===----------------------------------------------------------------------===//
4006 // Function Parsing.
4007 //===----------------------------------------------------------------------===//
4008
4009 bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
4010                                    PerFunctionState *PFS) {
4011   if (Ty->isFunctionTy())
4012     return Error(ID.Loc, "functions are not values, refer to them as pointers");
4013
4014   switch (ID.Kind) {
4015   case ValID::t_LocalID:
4016     if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
4017     V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
4018     return V == nullptr;
4019   case ValID::t_LocalName:
4020     if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
4021     V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
4022     return V == nullptr;
4023   case ValID::t_InlineAsm: {
4024     assert(ID.FTy);
4025     if (!InlineAsm::Verify(ID.FTy, ID.StrVal2))
4026       return Error(ID.Loc, "invalid type for inline asm constraint string");
4027     V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4028                        (ID.UIntVal >> 1) & 1,
4029                        (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
4030     return false;
4031   }
4032   case ValID::t_GlobalName:
4033     V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
4034     return V == nullptr;
4035   case ValID::t_GlobalID:
4036     V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
4037     return V == nullptr;
4038   case ValID::t_APSInt:
4039     if (!Ty->isIntegerTy())
4040       return Error(ID.Loc, "integer constant must have integer type");
4041     ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
4042     V = ConstantInt::get(Context, ID.APSIntVal);
4043     return false;
4044   case ValID::t_APFloat:
4045     if (!Ty->isFloatingPointTy() ||
4046         !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4047       return Error(ID.Loc, "floating point constant invalid for type");
4048
4049     // The lexer has no type info, so builds all half, float, and double FP
4050     // constants as double.  Fix this here.  Long double does not need this.
4051     if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
4052       bool Ignored;
4053       if (Ty->isHalfTy())
4054         ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4055                               &Ignored);
4056       else if (Ty->isFloatTy())
4057         ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4058                               &Ignored);
4059     }
4060     V = ConstantFP::get(Context, ID.APFloatVal);
4061
4062     if (V->getType() != Ty)
4063       return Error(ID.Loc, "floating point constant does not have type '" +
4064                    getTypeString(Ty) + "'");
4065
4066     return false;
4067   case ValID::t_Null:
4068     if (!Ty->isPointerTy())
4069       return Error(ID.Loc, "null must be a pointer type");
4070     V = ConstantPointerNull::get(cast<PointerType>(Ty));
4071     return false;
4072   case ValID::t_Undef:
4073     // FIXME: LabelTy should not be a first-class type.
4074     if (!Ty->isFirstClassType() || Ty->isLabelTy())
4075       return Error(ID.Loc, "invalid type for undef constant");
4076     V = UndefValue::get(Ty);
4077     return false;
4078   case ValID::t_EmptyArray:
4079     if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
4080       return Error(ID.Loc, "invalid empty array initializer");
4081     V = UndefValue::get(Ty);
4082     return false;
4083   case ValID::t_Zero:
4084     // FIXME: LabelTy should not be a first-class type.
4085     if (!Ty->isFirstClassType() || Ty->isLabelTy())
4086       return Error(ID.Loc, "invalid type for null constant");
4087     V = Constant::getNullValue(Ty);
4088     return false;
4089   case ValID::t_Constant:
4090     if (ID.ConstantVal->getType() != Ty)
4091       return Error(ID.Loc, "constant expression type mismatch");
4092
4093     V = ID.ConstantVal;
4094     return false;
4095   case ValID::t_ConstantStruct:
4096   case ValID::t_PackedConstantStruct:
4097     if (StructType *ST = dyn_cast<StructType>(Ty)) {
4098       if (ST->getNumElements() != ID.UIntVal)
4099         return Error(ID.Loc,
4100                      "initializer with struct type has wrong # elements");
4101       if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4102         return Error(ID.Loc, "packed'ness of initializer and type don't match");
4103
4104       // Verify that the elements are compatible with the structtype.
4105       for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4106         if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4107           return Error(ID.Loc, "element " + Twine(i) +
4108                     " of struct initializer doesn't match struct element type");
4109
4110       V = ConstantStruct::get(
4111           ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
4112     } else
4113       return Error(ID.Loc, "constant expression type mismatch");
4114     return false;
4115   }
4116   llvm_unreachable("Invalid ValID");
4117 }
4118
4119 bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4120   C = nullptr;
4121   ValID ID;
4122   auto Loc = Lex.getLoc();
4123   if (ParseValID(ID, /*PFS=*/nullptr))
4124     return true;
4125   switch (ID.Kind) {
4126   case ValID::t_APSInt:
4127   case ValID::t_APFloat:
4128   case ValID::t_Constant:
4129   case ValID::t_ConstantStruct:
4130   case ValID::t_PackedConstantStruct: {
4131     Value *V;
4132     if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4133       return true;
4134     assert(isa<Constant>(V) && "Expected a constant value");
4135     C = cast<Constant>(V);
4136     return false;
4137   }
4138   default:
4139     return Error(Loc, "expected a constant value");
4140   }
4141 }
4142
4143 bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
4144   V = nullptr;
4145   ValID ID;
4146   return ParseValID(ID, PFS) ||
4147          ConvertValIDToValue(Ty, ID, V, PFS);
4148 }
4149
4150 bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
4151   Type *Ty = nullptr;
4152   return ParseType(Ty) ||
4153          ParseValue(Ty, V, PFS);
4154 }
4155
4156 bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4157                                       PerFunctionState &PFS) {
4158   Value *V;
4159   Loc = Lex.getLoc();
4160   if (ParseTypeAndValue(V, PFS)) return true;
4161   if (!isa<BasicBlock>(V))
4162     return Error(Loc, "expected a basic block");
4163   BB = cast<BasicBlock>(V);
4164   return false;
4165 }
4166
4167
4168 /// FunctionHeader
4169 ///   ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
4170 ///       OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
4171 ///       OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
4172 bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4173   // Parse the linkage.
4174   LocTy LinkageLoc = Lex.getLoc();
4175   unsigned Linkage;
4176
4177   unsigned Visibility;
4178   unsigned DLLStorageClass;
4179   AttrBuilder RetAttrs;
4180   unsigned CC;
4181   Type *RetType = nullptr;
4182   LocTy RetTypeLoc = Lex.getLoc();
4183   if (ParseOptionalLinkage(Linkage) ||
4184       ParseOptionalVisibility(Visibility) ||
4185       ParseOptionalDLLStorageClass(DLLStorageClass) ||
4186       ParseOptionalCallingConv(CC) ||
4187       ParseOptionalReturnAttrs(RetAttrs) ||
4188       ParseType(RetType, RetTypeLoc, true /*void allowed*/))
4189     return true;
4190
4191   // Verify that the linkage is ok.
4192   switch ((GlobalValue::LinkageTypes)Linkage) {
4193   case GlobalValue::ExternalLinkage:
4194     break; // always ok.
4195   case GlobalValue::ExternalWeakLinkage:
4196     if (isDefine)
4197       return Error(LinkageLoc, "invalid linkage for function definition");
4198     break;
4199   case GlobalValue::PrivateLinkage:
4200   case GlobalValue::InternalLinkage:
4201   case GlobalValue::AvailableExternallyLinkage:
4202   case GlobalValue::LinkOnceAnyLinkage:
4203   case GlobalValue::LinkOnceODRLinkage:
4204   case GlobalValue::WeakAnyLinkage:
4205   case GlobalValue::WeakODRLinkage:
4206     if (!isDefine)
4207       return Error(LinkageLoc, "invalid linkage for function declaration");
4208     break;
4209   case GlobalValue::AppendingLinkage:
4210   case GlobalValue::CommonLinkage:
4211     return Error(LinkageLoc, "invalid function linkage type");
4212   }
4213
4214   if (!isValidVisibilityForLinkage(Visibility, Linkage))
4215     return Error(LinkageLoc,
4216                  "symbol with local linkage must have default visibility");
4217
4218   if (!FunctionType::isValidReturnType(RetType))
4219     return Error(RetTypeLoc, "invalid function return type");
4220
4221   LocTy NameLoc = Lex.getLoc();
4222
4223   std::string FunctionName;
4224   if (Lex.getKind() == lltok::GlobalVar) {
4225     FunctionName = Lex.getStrVal();
4226   } else if (Lex.getKind() == lltok::GlobalID) {     // @42 is ok.
4227     unsigned NameID = Lex.getUIntVal();
4228
4229     if (NameID != NumberedVals.size())
4230       return TokError("function expected to be numbered '%" +
4231                       Twine(NumberedVals.size()) + "'");
4232   } else {
4233     return TokError("expected function name");
4234   }
4235
4236   Lex.Lex();
4237
4238   if (Lex.getKind() != lltok::lparen)
4239     return TokError("expected '(' in function argument list");
4240
4241   SmallVector<ArgInfo, 8> ArgList;
4242   bool isVarArg;
4243   AttrBuilder FuncAttrs;
4244   std::vector<unsigned> FwdRefAttrGrps;
4245   LocTy BuiltinLoc;
4246   std::string Section;
4247   unsigned Alignment;
4248   std::string GC;
4249   bool UnnamedAddr;
4250   LocTy UnnamedAddrLoc;
4251   Constant *Prefix = nullptr;
4252   Constant *Prologue = nullptr;
4253   Constant *PersonalityFn = nullptr;
4254   Comdat *C;
4255
4256   if (ParseArgumentList(ArgList, isVarArg) ||
4257       ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4258                          &UnnamedAddrLoc) ||
4259       ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
4260                                  BuiltinLoc) ||
4261       (EatIfPresent(lltok::kw_section) &&
4262        ParseStringConstant(Section)) ||
4263       parseOptionalComdat(FunctionName, C) ||
4264       ParseOptionalAlignment(Alignment) ||
4265       (EatIfPresent(lltok::kw_gc) &&
4266        ParseStringConstant(GC)) ||
4267       (EatIfPresent(lltok::kw_prefix) &&
4268        ParseGlobalTypeAndValue(Prefix)) ||
4269       (EatIfPresent(lltok::kw_prologue) &&
4270        ParseGlobalTypeAndValue(Prologue)) ||
4271       (EatIfPresent(lltok::kw_personality) &&
4272        ParseGlobalTypeAndValue(PersonalityFn)))
4273     return true;
4274
4275   if (FuncAttrs.contains(Attribute::Builtin))
4276     return Error(BuiltinLoc, "'builtin' attribute not valid on function");
4277
4278   // If the alignment was parsed as an attribute, move to the alignment field.
4279   if (FuncAttrs.hasAlignmentAttr()) {
4280     Alignment = FuncAttrs.getAlignment();
4281     FuncAttrs.removeAttribute(Attribute::Alignment);
4282   }
4283
4284   // Okay, if we got here, the function is syntactically valid.  Convert types
4285   // and do semantic checks.
4286   std::vector<Type*> ParamTypeList;
4287   SmallVector<AttributeSet, 8> Attrs;
4288
4289   if (RetAttrs.hasAttributes())
4290     Attrs.push_back(AttributeSet::get(RetType->getContext(),
4291                                       AttributeSet::ReturnIndex,
4292                                       RetAttrs));
4293
4294   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
4295     ParamTypeList.push_back(ArgList[i].Ty);
4296     if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4297       AttrBuilder B(ArgList[i].Attrs, i + 1);
4298       Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4299     }
4300   }
4301
4302   if (FuncAttrs.hasAttributes())
4303     Attrs.push_back(AttributeSet::get(RetType->getContext(),
4304                                       AttributeSet::FunctionIndex,
4305                                       FuncAttrs));
4306
4307   AttributeSet PAL = AttributeSet::get(Context, Attrs);
4308
4309   if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
4310     return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4311
4312   FunctionType *FT =
4313     FunctionType::get(RetType, ParamTypeList, isVarArg);
4314   PointerType *PFT = PointerType::getUnqual(FT);
4315
4316   Fn = nullptr;
4317   if (!FunctionName.empty()) {
4318     // If this was a definition of a forward reference, remove the definition
4319     // from the forward reference table and fill in the forward ref.
4320     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
4321       ForwardRefVals.find(FunctionName);
4322     if (FRVI != ForwardRefVals.end()) {
4323       Fn = M->getFunction(FunctionName);
4324       if (!Fn)
4325         return Error(FRVI->second.second, "invalid forward reference to "
4326                      "function as global value!");
4327       if (Fn->getType() != PFT)
4328         return Error(FRVI->second.second, "invalid forward reference to "
4329                      "function '" + FunctionName + "' with wrong type!");
4330
4331       ForwardRefVals.erase(FRVI);
4332     } else if ((Fn = M->getFunction(FunctionName))) {
4333       // Reject redefinitions.
4334       return Error(NameLoc, "invalid redefinition of function '" +
4335                    FunctionName + "'");
4336     } else if (M->getNamedValue(FunctionName)) {
4337       return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
4338     }
4339
4340   } else {
4341     // If this is a definition of a forward referenced function, make sure the
4342     // types agree.
4343     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
4344       = ForwardRefValIDs.find(NumberedVals.size());
4345     if (I != ForwardRefValIDs.end()) {
4346       Fn = cast<Function>(I->second.first);
4347       if (Fn->getType() != PFT)
4348         return Error(NameLoc, "type of definition and forward reference of '@" +
4349                      Twine(NumberedVals.size()) + "' disagree");
4350       ForwardRefValIDs.erase(I);
4351     }
4352   }
4353
4354   if (!Fn)
4355     Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4356   else // Move the forward-reference to the correct spot in the module.
4357     M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4358
4359   if (FunctionName.empty())
4360     NumberedVals.push_back(Fn);
4361
4362   Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4363   Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
4364   Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
4365   Fn->setCallingConv(CC);
4366   Fn->setAttributes(PAL);
4367   Fn->setUnnamedAddr(UnnamedAddr);
4368   Fn->setAlignment(Alignment);
4369   Fn->setSection(Section);
4370   Fn->setComdat(C);
4371   Fn->setPersonalityFn(PersonalityFn);
4372   if (!GC.empty()) Fn->setGC(GC.c_str());
4373   Fn->setPrefixData(Prefix);
4374   Fn->setPrologueData(Prologue);
4375   ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
4376
4377   // Add all of the arguments we parsed to the function.
4378   Function::arg_iterator ArgIt = Fn->arg_begin();
4379   for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4380     // If the argument has a name, insert it into the argument symbol table.
4381     if (ArgList[i].Name.empty()) continue;
4382
4383     // Set the name, if it conflicted, it will be auto-renamed.
4384     ArgIt->setName(ArgList[i].Name);
4385
4386     if (ArgIt->getName() != ArgList[i].Name)
4387       return Error(ArgList[i].Loc, "redefinition of argument '%" +
4388                    ArgList[i].Name + "'");
4389   }
4390
4391   if (isDefine)
4392     return false;
4393
4394   // Check the declaration has no block address forward references.
4395   ValID ID;
4396   if (FunctionName.empty()) {
4397     ID.Kind = ValID::t_GlobalID;
4398     ID.UIntVal = NumberedVals.size() - 1;
4399   } else {
4400     ID.Kind = ValID::t_GlobalName;
4401     ID.StrVal = FunctionName;
4402   }
4403   auto Blocks = ForwardRefBlockAddresses.find(ID);
4404   if (Blocks != ForwardRefBlockAddresses.end())
4405     return Error(Blocks->first.Loc,
4406                  "cannot take blockaddress inside a declaration");
4407   return false;
4408 }
4409
4410 bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4411   ValID ID;
4412   if (FunctionNumber == -1) {
4413     ID.Kind = ValID::t_GlobalName;
4414     ID.StrVal = F.getName();
4415   } else {
4416     ID.Kind = ValID::t_GlobalID;
4417     ID.UIntVal = FunctionNumber;
4418   }
4419
4420   auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4421   if (Blocks == P.ForwardRefBlockAddresses.end())
4422     return false;
4423
4424   for (const auto &I : Blocks->second) {
4425     const ValID &BBID = I.first;
4426     GlobalValue *GV = I.second;
4427
4428     assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4429            "Expected local id or name");
4430     BasicBlock *BB;
4431     if (BBID.Kind == ValID::t_LocalName)
4432       BB = GetBB(BBID.StrVal, BBID.Loc);
4433     else
4434       BB = GetBB(BBID.UIntVal, BBID.Loc);
4435     if (!BB)
4436       return P.Error(BBID.Loc, "referenced value is not a basic block");
4437
4438     GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4439     GV->eraseFromParent();
4440   }
4441
4442   P.ForwardRefBlockAddresses.erase(Blocks);
4443   return false;
4444 }
4445
4446 /// ParseFunctionBody
4447 ///   ::= '{' BasicBlock+ UseListOrderDirective* '}'
4448 bool LLParser::ParseFunctionBody(Function &Fn) {
4449   if (Lex.getKind() != lltok::lbrace)
4450     return TokError("expected '{' in function body");
4451   Lex.Lex();  // eat the {.
4452
4453   int FunctionNumber = -1;
4454   if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
4455
4456   PerFunctionState PFS(*this, Fn, FunctionNumber);
4457
4458   // Resolve block addresses and allow basic blocks to be forward-declared
4459   // within this function.
4460   if (PFS.resolveForwardRefBlockAddresses())
4461     return true;
4462   SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4463
4464   // We need at least one basic block.
4465   if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
4466     return TokError("function body requires at least one basic block");
4467
4468   while (Lex.getKind() != lltok::rbrace &&
4469          Lex.getKind() != lltok::kw_uselistorder)
4470     if (ParseBasicBlock(PFS)) return true;
4471
4472   while (Lex.getKind() != lltok::rbrace)
4473     if (ParseUseListOrder(&PFS))
4474       return true;
4475
4476   // Eat the }.
4477   Lex.Lex();
4478
4479   // Verify function is ok.
4480   return PFS.FinishFunction();
4481 }
4482
4483 /// ParseBasicBlock
4484 ///   ::= LabelStr? Instruction*
4485 bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4486   // If this basic block starts out with a name, remember it.
4487   std::string Name;
4488   LocTy NameLoc = Lex.getLoc();
4489   if (Lex.getKind() == lltok::LabelStr) {
4490     Name = Lex.getStrVal();
4491     Lex.Lex();
4492   }
4493
4494   BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
4495   if (!BB)
4496     return Error(NameLoc,
4497                  "unable to create block named '" + Name + "'");
4498
4499   std::string NameStr;
4500
4501   // Parse the instructions in this block until we get a terminator.
4502   Instruction *Inst;
4503   do {
4504     // This instruction may have three possibilities for a name: a) none
4505     // specified, b) name specified "%foo =", c) number specified: "%4 =".
4506     LocTy NameLoc = Lex.getLoc();
4507     int NameID = -1;
4508     NameStr = "";
4509
4510     if (Lex.getKind() == lltok::LocalVarID) {
4511       NameID = Lex.getUIntVal();
4512       Lex.Lex();
4513       if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4514         return true;
4515     } else if (Lex.getKind() == lltok::LocalVar) {
4516       NameStr = Lex.getStrVal();
4517       Lex.Lex();
4518       if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4519         return true;
4520     }
4521
4522     switch (ParseInstruction(Inst, BB, PFS)) {
4523     default: llvm_unreachable("Unknown ParseInstruction result!");
4524     case InstError: return true;
4525     case InstNormal:
4526       BB->getInstList().push_back(Inst);
4527
4528       // With a normal result, we check to see if the instruction is followed by
4529       // a comma and metadata.
4530       if (EatIfPresent(lltok::comma))
4531         if (ParseInstructionMetadata(*Inst))
4532           return true;
4533       break;
4534     case InstExtraComma:
4535       BB->getInstList().push_back(Inst);
4536
4537       // If the instruction parser ate an extra comma at the end of it, it
4538       // *must* be followed by metadata.
4539       if (ParseInstructionMetadata(*Inst))
4540         return true;
4541       break;
4542     }
4543
4544     // Set the name on the instruction.
4545     if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4546   } while (!isa<TerminatorInst>(Inst));
4547
4548   return false;
4549 }
4550
4551 //===----------------------------------------------------------------------===//
4552 // Instruction Parsing.
4553 //===----------------------------------------------------------------------===//
4554
4555 /// ParseInstruction - Parse one of the many different instructions.
4556 ///
4557 int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4558                                PerFunctionState &PFS) {
4559   lltok::Kind Token = Lex.getKind();
4560   if (Token == lltok::Eof)
4561     return TokError("found end of file when expecting more instructions");
4562   LocTy Loc = Lex.getLoc();
4563   unsigned KeywordVal = Lex.getUIntVal();
4564   Lex.Lex();  // Eat the keyword.
4565
4566   switch (Token) {
4567   default:                    return Error(Loc, "expected instruction opcode");
4568   // Terminator Instructions.
4569   case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
4570   case lltok::kw_ret:         return ParseRet(Inst, BB, PFS);
4571   case lltok::kw_br:          return ParseBr(Inst, PFS);
4572   case lltok::kw_switch:      return ParseSwitch(Inst, PFS);
4573   case lltok::kw_indirectbr:  return ParseIndirectBr(Inst, PFS);
4574   case lltok::kw_invoke:      return ParseInvoke(Inst, PFS);
4575   case lltok::kw_resume:      return ParseResume(Inst, PFS);
4576   case lltok::kw_cleanupret:  return ParseCleanupRet(Inst, PFS);
4577   case lltok::kw_catchret:    return ParseCatchRet(Inst, PFS);
4578   case lltok::kw_catchpad:  return ParseCatchPad(Inst, PFS);
4579   case lltok::kw_terminatepad: return ParseTerminatePad(Inst, PFS);
4580   case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
4581   case lltok::kw_catchendpad: return ParseCatchEndPad(Inst, PFS);
4582   // Binary Operators.
4583   case lltok::kw_add:
4584   case lltok::kw_sub:
4585   case lltok::kw_mul:
4586   case lltok::kw_shl: {
4587     bool NUW = EatIfPresent(lltok::kw_nuw);
4588     bool NSW = EatIfPresent(lltok::kw_nsw);
4589     if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
4590
4591     if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4592
4593     if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4594     if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4595     return false;
4596   }
4597   case lltok::kw_fadd:
4598   case lltok::kw_fsub:
4599   case lltok::kw_fmul:
4600   case lltok::kw_fdiv:
4601   case lltok::kw_frem: {
4602     FastMathFlags FMF = EatFastMathFlagsIfPresent();
4603     int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4604     if (Res != 0)
4605       return Res;
4606     if (FMF.any())
4607       Inst->setFastMathFlags(FMF);
4608     return 0;
4609   }
4610
4611   case lltok::kw_sdiv:
4612   case lltok::kw_udiv:
4613   case lltok::kw_lshr:
4614   case lltok::kw_ashr: {
4615     bool Exact = EatIfPresent(lltok::kw_exact);
4616
4617     if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4618     if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4619     return false;
4620   }
4621
4622   case lltok::kw_urem:
4623   case lltok::kw_srem:   return ParseArithmetic(Inst, PFS, KeywordVal, 1);
4624   case lltok::kw_and:
4625   case lltok::kw_or:
4626   case lltok::kw_xor:    return ParseLogical(Inst, PFS, KeywordVal);
4627   case lltok::kw_icmp:   return ParseCompare(Inst, PFS, KeywordVal);
4628   case lltok::kw_fcmp: {
4629     FastMathFlags FMF = EatFastMathFlagsIfPresent();
4630     int Res = ParseCompare(Inst, PFS, KeywordVal);
4631     if (Res != 0)
4632       return Res;
4633     if (FMF.any())
4634       Inst->setFastMathFlags(FMF);
4635     return 0;
4636   }
4637
4638   // Casts.
4639   case lltok::kw_trunc:
4640   case lltok::kw_zext:
4641   case lltok::kw_sext:
4642   case lltok::kw_fptrunc:
4643   case lltok::kw_fpext:
4644   case lltok::kw_bitcast:
4645   case lltok::kw_addrspacecast:
4646   case lltok::kw_uitofp:
4647   case lltok::kw_sitofp:
4648   case lltok::kw_fptoui:
4649   case lltok::kw_fptosi:
4650   case lltok::kw_inttoptr:
4651   case lltok::kw_ptrtoint:       return ParseCast(Inst, PFS, KeywordVal);
4652   // Other.
4653   case lltok::kw_select:         return ParseSelect(Inst, PFS);
4654   case lltok::kw_va_arg:         return ParseVA_Arg(Inst, PFS);
4655   case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4656   case lltok::kw_insertelement:  return ParseInsertElement(Inst, PFS);
4657   case lltok::kw_shufflevector:  return ParseShuffleVector(Inst, PFS);
4658   case lltok::kw_phi:            return ParsePHI(Inst, PFS);
4659   case lltok::kw_landingpad:     return ParseLandingPad(Inst, PFS);
4660   // Call.
4661   case lltok::kw_call:     return ParseCall(Inst, PFS, CallInst::TCK_None);
4662   case lltok::kw_tail:     return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4663   case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
4664   // Memory.
4665   case lltok::kw_alloca:         return ParseAlloc(Inst, PFS);
4666   case lltok::kw_load:           return ParseLoad(Inst, PFS);
4667   case lltok::kw_store:          return ParseStore(Inst, PFS);
4668   case lltok::kw_cmpxchg:        return ParseCmpXchg(Inst, PFS);
4669   case lltok::kw_atomicrmw:      return ParseAtomicRMW(Inst, PFS);
4670   case lltok::kw_fence:          return ParseFence(Inst, PFS);
4671   case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4672   case lltok::kw_extractvalue:  return ParseExtractValue(Inst, PFS);
4673   case lltok::kw_insertvalue:   return ParseInsertValue(Inst, PFS);
4674   }
4675 }
4676
4677 /// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4678 bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
4679   if (Opc == Instruction::FCmp) {
4680     switch (Lex.getKind()) {
4681     default: return TokError("expected fcmp predicate (e.g. 'oeq')");
4682     case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4683     case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4684     case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4685     case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4686     case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4687     case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4688     case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4689     case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4690     case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4691     case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4692     case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4693     case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4694     case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4695     case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4696     case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4697     case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4698     }
4699   } else {
4700     switch (Lex.getKind()) {
4701     default: return TokError("expected icmp predicate (e.g. 'eq')");
4702     case lltok::kw_eq:  P = CmpInst::ICMP_EQ; break;
4703     case lltok::kw_ne:  P = CmpInst::ICMP_NE; break;
4704     case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4705     case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4706     case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4707     case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4708     case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4709     case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4710     case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4711     case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4712     }
4713   }
4714   Lex.Lex();
4715   return false;
4716 }
4717
4718 //===----------------------------------------------------------------------===//
4719 // Terminator Instructions.
4720 //===----------------------------------------------------------------------===//
4721
4722 /// ParseRet - Parse a return instruction.
4723 ///   ::= 'ret' void (',' !dbg, !1)*
4724 ///   ::= 'ret' TypeAndValue (',' !dbg, !1)*
4725 bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
4726                         PerFunctionState &PFS) {
4727   SMLoc TypeLoc = Lex.getLoc();
4728   Type *Ty = nullptr;
4729   if (ParseType(Ty, true /*void allowed*/)) return true;
4730
4731   Type *ResType = PFS.getFunction().getReturnType();
4732
4733   if (Ty->isVoidTy()) {
4734     if (!ResType->isVoidTy())
4735       return Error(TypeLoc, "value doesn't match function result type '" +
4736                    getTypeString(ResType) + "'");
4737
4738     Inst = ReturnInst::Create(Context);
4739     return false;
4740   }
4741
4742   Value *RV;
4743   if (ParseValue(Ty, RV, PFS)) return true;
4744
4745   if (ResType != RV->getType())
4746     return Error(TypeLoc, "value doesn't match function result type '" +
4747                  getTypeString(ResType) + "'");
4748
4749   Inst = ReturnInst::Create(Context, RV);
4750   return false;
4751 }
4752
4753
4754 /// ParseBr
4755 ///   ::= 'br' TypeAndValue
4756 ///   ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4757 bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4758   LocTy Loc, Loc2;
4759   Value *Op0;
4760   BasicBlock *Op1, *Op2;
4761   if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
4762
4763   if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4764     Inst = BranchInst::Create(BB);
4765     return false;
4766   }
4767
4768   if (Op0->getType() != Type::getInt1Ty(Context))
4769     return Error(Loc, "branch condition must have 'i1' type");
4770
4771   if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
4772       ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
4773       ParseToken(lltok::comma, "expected ',' after true destination") ||
4774       ParseTypeAndBasicBlock(Op2, Loc2, PFS))
4775     return true;
4776
4777   Inst = BranchInst::Create(Op1, Op2, Op0);
4778   return false;
4779 }
4780
4781 /// ParseSwitch
4782 ///  Instruction
4783 ///    ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4784 ///  JumpTable
4785 ///    ::= (TypeAndValue ',' TypeAndValue)*
4786 bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4787   LocTy CondLoc, BBLoc;
4788   Value *Cond;
4789   BasicBlock *DefaultBB;
4790   if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4791       ParseToken(lltok::comma, "expected ',' after switch condition") ||
4792       ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
4793       ParseToken(lltok::lsquare, "expected '[' with switch table"))
4794     return true;
4795
4796   if (!Cond->getType()->isIntegerTy())
4797     return Error(CondLoc, "switch condition must have integer type");
4798
4799   // Parse the jump table pairs.
4800   SmallPtrSet<Value*, 32> SeenCases;
4801   SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4802   while (Lex.getKind() != lltok::rsquare) {
4803     Value *Constant;
4804     BasicBlock *DestBB;
4805
4806     if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4807         ParseToken(lltok::comma, "expected ',' after case value") ||
4808         ParseTypeAndBasicBlock(DestBB, PFS))
4809       return true;
4810
4811     if (!SeenCases.insert(Constant).second)
4812       return Error(CondLoc, "duplicate case value in switch");
4813     if (!isa<ConstantInt>(Constant))
4814       return Error(CondLoc, "case value is not a constant integer");
4815
4816     Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
4817   }
4818
4819   Lex.Lex();  // Eat the ']'.
4820
4821   SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
4822   for (unsigned i = 0, e = Table.size(); i != e; ++i)
4823     SI->addCase(Table[i].first, Table[i].second);
4824   Inst = SI;
4825   return false;
4826 }
4827
4828 /// ParseIndirectBr
4829 ///  Instruction
4830 ///    ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4831 bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
4832   LocTy AddrLoc;
4833   Value *Address;
4834   if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
4835       ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4836       ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
4837     return true;
4838
4839   if (!Address->getType()->isPointerTy())
4840     return Error(AddrLoc, "indirectbr address must have pointer type");
4841
4842   // Parse the destination list.
4843   SmallVector<BasicBlock*, 16> DestList;
4844
4845   if (Lex.getKind() != lltok::rsquare) {
4846     BasicBlock *DestBB;
4847     if (ParseTypeAndBasicBlock(DestBB, PFS))
4848       return true;
4849     DestList.push_back(DestBB);
4850
4851     while (EatIfPresent(lltok::comma)) {
4852       if (ParseTypeAndBasicBlock(DestBB, PFS))
4853         return true;
4854       DestList.push_back(DestBB);
4855     }
4856   }
4857
4858   if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
4859     return true;
4860
4861   IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
4862   for (unsigned i = 0, e = DestList.size(); i != e; ++i)
4863     IBI->addDestination(DestList[i]);
4864   Inst = IBI;
4865   return false;
4866 }
4867
4868
4869 /// ParseInvoke
4870 ///   ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
4871 ///       OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
4872 bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
4873   LocTy CallLoc = Lex.getLoc();
4874   AttrBuilder RetAttrs, FnAttrs;
4875   std::vector<unsigned> FwdRefAttrGrps;
4876   LocTy NoBuiltinLoc;
4877   unsigned CC;
4878   Type *RetType = nullptr;
4879   LocTy RetTypeLoc;
4880   ValID CalleeID;
4881   SmallVector<ParamInfo, 16> ArgList;
4882
4883   BasicBlock *NormalBB, *UnwindBB;
4884   if (ParseOptionalCallingConv(CC) ||
4885       ParseOptionalReturnAttrs(RetAttrs) ||
4886       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
4887       ParseValID(CalleeID) ||
4888       ParseParameterList(ArgList, PFS) ||
4889       ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
4890                                  NoBuiltinLoc) ||
4891       ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
4892       ParseTypeAndBasicBlock(NormalBB, PFS) ||
4893       ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
4894       ParseTypeAndBasicBlock(UnwindBB, PFS))
4895     return true;
4896
4897   // If RetType is a non-function pointer type, then this is the short syntax
4898   // for the call, which means that RetType is just the return type.  Infer the
4899   // rest of the function argument types from the arguments that are present.
4900   FunctionType *Ty = dyn_cast<FunctionType>(RetType);
4901   if (!Ty) {
4902     // Pull out the types of all of the arguments...
4903     std::vector<Type*> ParamTypes;
4904     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
4905       ParamTypes.push_back(ArgList[i].V->getType());
4906
4907     if (!FunctionType::isValidReturnType(RetType))
4908       return Error(RetTypeLoc, "Invalid result type for LLVM function");
4909
4910     Ty = FunctionType::get(RetType, ParamTypes, false);
4911   }
4912
4913   CalleeID.FTy = Ty;
4914
4915   // Look up the callee.
4916   Value *Callee;
4917   if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
4918     return true;
4919
4920   // Set up the Attribute for the function.
4921   SmallVector<AttributeSet, 8> Attrs;
4922   if (RetAttrs.hasAttributes())
4923     Attrs.push_back(AttributeSet::get(RetType->getContext(),
4924                                       AttributeSet::ReturnIndex,
4925                                       RetAttrs));
4926
4927   SmallVector<Value*, 8> Args;
4928
4929   // Loop through FunctionType's arguments and ensure they are specified
4930   // correctly.  Also, gather any parameter attributes.
4931   FunctionType::param_iterator I = Ty->param_begin();
4932   FunctionType::param_iterator E = Ty->param_end();
4933   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
4934     Type *ExpectedTy = nullptr;
4935     if (I != E) {
4936       ExpectedTy = *I++;
4937     } else if (!Ty->isVarArg()) {
4938       return Error(ArgList[i].Loc, "too many arguments specified");
4939     }
4940
4941     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4942       return Error(ArgList[i].Loc, "argument is not of expected type '" +
4943                    getTypeString(ExpectedTy) + "'");
4944     Args.push_back(ArgList[i].V);
4945     if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4946       AttrBuilder B(ArgList[i].Attrs, i + 1);
4947       Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4948     }
4949   }
4950
4951   if (I != E)
4952     return Error(CallLoc, "not enough parameters specified for call");
4953
4954   if (FnAttrs.hasAttributes()) {
4955     if (FnAttrs.hasAlignmentAttr())
4956       return Error(CallLoc, "invoke instructions may not have an alignment");
4957
4958     Attrs.push_back(AttributeSet::get(RetType->getContext(),
4959                                       AttributeSet::FunctionIndex,
4960                                       FnAttrs));
4961   }
4962
4963   // Finish off the Attribute and check them
4964   AttributeSet PAL = AttributeSet::get(Context, Attrs);
4965
4966   InvokeInst *II = InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args);
4967   II->setCallingConv(CC);
4968   II->setAttributes(PAL);
4969   ForwardRefAttrGroups[II] = FwdRefAttrGrps;
4970   Inst = II;
4971   return false;
4972 }
4973
4974 /// ParseResume
4975 ///   ::= 'resume' TypeAndValue
4976 bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
4977   Value *Exn; LocTy ExnLoc;
4978   if (ParseTypeAndValue(Exn, ExnLoc, PFS))
4979     return true;
4980
4981   ResumeInst *RI = ResumeInst::Create(Exn);
4982   Inst = RI;
4983   return false;
4984 }
4985
4986 bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
4987                                   PerFunctionState &PFS) {
4988   if (ParseToken(lltok::lsquare, "expected '[' in cleanuppad"))
4989     return true;
4990
4991   while (Lex.getKind() != lltok::rsquare) {
4992     // If this isn't the first argument, we need a comma.
4993     if (!Args.empty() &&
4994         ParseToken(lltok::comma, "expected ',' in argument list"))
4995       return true;
4996
4997     // Parse the argument.
4998     LocTy ArgLoc;
4999     Type *ArgTy = nullptr;
5000     if (ParseType(ArgTy, ArgLoc))
5001       return true;
5002
5003     Value *V;
5004     if (ArgTy->isMetadataTy()) {
5005       if (ParseMetadataAsValue(V, PFS))
5006         return true;
5007     } else {
5008       if (ParseValue(ArgTy, V, PFS))
5009         return true;
5010     }
5011     Args.push_back(V);
5012   }
5013
5014   Lex.Lex();  // Lex the ']'.
5015   return false;
5016 }
5017
5018 /// ParseCleanupRet
5019 ///   ::= 'cleanupret' ('void' | TypeAndValue) unwind ('to' 'caller' | TypeAndValue)
5020 bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
5021   Type *RetTy = nullptr;
5022   Value *RetVal = nullptr;
5023   if (ParseType(RetTy, /*AllowVoid=*/true))
5024     return true;
5025
5026   if (!RetTy->isVoidTy())
5027     if (ParseValue(RetTy, RetVal, PFS))
5028       return true;
5029
5030   if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5031     return true;
5032
5033   BasicBlock *UnwindBB = nullptr;
5034   if (Lex.getKind() == lltok::kw_to) {
5035     Lex.Lex();
5036     if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5037       return true;
5038   } else {
5039     if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5040       return true;
5041     }
5042   }
5043
5044   Inst = CleanupReturnInst::Create(Context, RetVal, UnwindBB);
5045   return false;
5046 }
5047
5048 /// ParseCatchRet
5049 ///   ::= 'catchret' ('void' | TypeAndValue) 'to' TypeAndValue
5050 bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
5051   Type *RetTy = nullptr;
5052   Value *RetVal = nullptr;
5053
5054   if (ParseType(RetTy, /*AllowVoid=*/true))
5055     return true;
5056
5057   if (!RetTy->isVoidTy())
5058     if (ParseValue(RetTy, RetVal, PFS))
5059       return true;
5060
5061   BasicBlock *BB;
5062   if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5063       ParseTypeAndBasicBlock(BB, PFS))
5064       return true;
5065
5066   Inst = CatchReturnInst::Create(BB, RetVal);
5067   return false;
5068 }
5069
5070 /// ParseCatchPad
5071 ///   ::= 'catchpad' Type ParamList 'to' TypeAndValue 'unwind' TypeAndValue
5072 bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
5073   Type *RetType = nullptr;
5074
5075   SmallVector<Value *, 8> Args;
5076   if (ParseType(RetType, /*AllowVoid=*/true) || ParseExceptionArgs(Args, PFS))
5077     return true;
5078
5079   BasicBlock *NormalBB, *UnwindBB;
5080   if (ParseToken(lltok::kw_to, "expected 'to' in catchpad") ||
5081       ParseTypeAndBasicBlock(NormalBB, PFS) ||
5082       ParseToken(lltok::kw_unwind, "expected 'unwind' in catchpad") ||
5083       ParseTypeAndBasicBlock(UnwindBB, PFS))
5084     return true;
5085
5086   Inst = CatchPadInst::Create(RetType, NormalBB, UnwindBB, Args);
5087   return false;
5088 }
5089
5090 /// ParseTerminatePad
5091 ///   ::= 'terminatepad' ParamList 'to' TypeAndValue
5092 bool LLParser::ParseTerminatePad(Instruction *&Inst, PerFunctionState &PFS) {
5093   SmallVector<Value *, 8> Args;
5094   if (ParseExceptionArgs(Args, PFS))
5095     return true;
5096
5097   if (ParseToken(lltok::kw_unwind, "expected 'unwind' in terminatepad"))
5098     return true;
5099
5100   BasicBlock *UnwindBB = nullptr;
5101   if (Lex.getKind() == lltok::kw_to) {
5102     Lex.Lex();
5103     if (ParseToken(lltok::kw_caller, "expected 'caller' in terminatepad"))
5104       return true;
5105   } else {
5106     if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5107       return true;
5108     }
5109   }
5110
5111   Inst = TerminatePadInst::Create(Context, UnwindBB, Args);
5112   return false;
5113 }
5114
5115 /// ParseCleanupPad
5116 ///   ::= 'cleanuppad' ParamList
5117 bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
5118   Type *RetType = nullptr;
5119
5120   SmallVector<Value *, 8> Args;
5121   if (ParseType(RetType, /*AllowVoid=*/true) || ParseExceptionArgs(Args, PFS))
5122     return true;
5123
5124   Inst = CleanupPadInst::Create(RetType, Args);
5125   return false;
5126 }
5127
5128 /// ParseCatchEndPad
5129 ///   ::= 'catchendpad' unwind ('to' 'caller' | TypeAndValue)
5130 bool LLParser::ParseCatchEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5131   if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5132     return true;
5133
5134   BasicBlock *UnwindBB = nullptr;
5135   if (Lex.getKind() == lltok::kw_to) {
5136     Lex.Lex();
5137     if (Lex.getKind() == lltok::kw_caller) {
5138       Lex.Lex();
5139     } else {
5140       return true;
5141     }
5142   } else {
5143     if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5144       return true;
5145     }
5146   }
5147
5148   Inst = CatchEndPadInst::Create(Context, UnwindBB);
5149   return false;
5150 }
5151
5152 //===----------------------------------------------------------------------===//
5153 // Binary Operators.
5154 //===----------------------------------------------------------------------===//
5155
5156 /// ParseArithmetic
5157 ///  ::= ArithmeticOps TypeAndValue ',' Value
5158 ///
5159 /// If OperandType is 0, then any FP or integer operand is allowed.  If it is 1,
5160 /// then any integer operand is allowed, if it is 2, any fp operand is allowed.
5161 bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
5162                                unsigned Opc, unsigned OperandType) {
5163   LocTy Loc; Value *LHS, *RHS;
5164   if (ParseTypeAndValue(LHS, Loc, PFS) ||
5165       ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5166       ParseValue(LHS->getType(), RHS, PFS))
5167     return true;
5168
5169   bool Valid;
5170   switch (OperandType) {
5171   default: llvm_unreachable("Unknown operand type!");
5172   case 0: // int or FP.
5173     Valid = LHS->getType()->isIntOrIntVectorTy() ||
5174             LHS->getType()->isFPOrFPVectorTy();
5175     break;
5176   case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5177   case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
5178   }
5179
5180   if (!Valid)
5181     return Error(Loc, "invalid operand type for instruction");
5182
5183   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5184   return false;
5185 }
5186
5187 /// ParseLogical
5188 ///  ::= ArithmeticOps TypeAndValue ',' Value {
5189 bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5190                             unsigned Opc) {
5191   LocTy Loc; Value *LHS, *RHS;
5192   if (ParseTypeAndValue(LHS, Loc, PFS) ||
5193       ParseToken(lltok::comma, "expected ',' in logical operation") ||
5194       ParseValue(LHS->getType(), RHS, PFS))
5195     return true;
5196
5197   if (!LHS->getType()->isIntOrIntVectorTy())
5198     return Error(Loc,"instruction requires integer or integer vector operands");
5199
5200   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5201   return false;
5202 }
5203
5204
5205 /// ParseCompare
5206 ///  ::= 'icmp' IPredicates TypeAndValue ',' Value
5207 ///  ::= 'fcmp' FPredicates TypeAndValue ',' Value
5208 bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5209                             unsigned Opc) {
5210   // Parse the integer/fp comparison predicate.
5211   LocTy Loc;
5212   unsigned Pred;
5213   Value *LHS, *RHS;
5214   if (ParseCmpPredicate(Pred, Opc) ||
5215       ParseTypeAndValue(LHS, Loc, PFS) ||
5216       ParseToken(lltok::comma, "expected ',' after compare value") ||
5217       ParseValue(LHS->getType(), RHS, PFS))
5218     return true;
5219
5220   if (Opc == Instruction::FCmp) {
5221     if (!LHS->getType()->isFPOrFPVectorTy())
5222       return Error(Loc, "fcmp requires floating point operands");
5223     Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
5224   } else {
5225     assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
5226     if (!LHS->getType()->isIntOrIntVectorTy() &&
5227         !LHS->getType()->getScalarType()->isPointerTy())
5228       return Error(Loc, "icmp requires integer operands");
5229     Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
5230   }
5231   return false;
5232 }
5233
5234 //===----------------------------------------------------------------------===//
5235 // Other Instructions.
5236 //===----------------------------------------------------------------------===//
5237
5238
5239 /// ParseCast
5240 ///   ::= CastOpc TypeAndValue 'to' Type
5241 bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5242                          unsigned Opc) {
5243   LocTy Loc;
5244   Value *Op;
5245   Type *DestTy = nullptr;
5246   if (ParseTypeAndValue(Op, Loc, PFS) ||
5247       ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5248       ParseType(DestTy))
5249     return true;
5250
5251   if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5252     CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
5253     return Error(Loc, "invalid cast opcode for cast from '" +
5254                  getTypeString(Op->getType()) + "' to '" +
5255                  getTypeString(DestTy) + "'");
5256   }
5257   Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5258   return false;
5259 }
5260
5261 /// ParseSelect
5262 ///   ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5263 bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5264   LocTy Loc;
5265   Value *Op0, *Op1, *Op2;
5266   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5267       ParseToken(lltok::comma, "expected ',' after select condition") ||
5268       ParseTypeAndValue(Op1, PFS) ||
5269       ParseToken(lltok::comma, "expected ',' after select value") ||
5270       ParseTypeAndValue(Op2, PFS))
5271     return true;
5272
5273   if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5274     return Error(Loc, Reason);
5275
5276   Inst = SelectInst::Create(Op0, Op1, Op2);
5277   return false;
5278 }
5279
5280 /// ParseVA_Arg
5281 ///   ::= 'va_arg' TypeAndValue ',' Type
5282 bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
5283   Value *Op;
5284   Type *EltTy = nullptr;
5285   LocTy TypeLoc;
5286   if (ParseTypeAndValue(Op, PFS) ||
5287       ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
5288       ParseType(EltTy, TypeLoc))
5289     return true;
5290
5291   if (!EltTy->isFirstClassType())
5292     return Error(TypeLoc, "va_arg requires operand with first class type");
5293
5294   Inst = new VAArgInst(Op, EltTy);
5295   return false;
5296 }
5297
5298 /// ParseExtractElement
5299 ///   ::= 'extractelement' TypeAndValue ',' TypeAndValue
5300 bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5301   LocTy Loc;
5302   Value *Op0, *Op1;
5303   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5304       ParseToken(lltok::comma, "expected ',' after extract value") ||
5305       ParseTypeAndValue(Op1, PFS))
5306     return true;
5307
5308   if (!ExtractElementInst::isValidOperands(Op0, Op1))
5309     return Error(Loc, "invalid extractelement operands");
5310
5311   Inst = ExtractElementInst::Create(Op0, Op1);
5312   return false;
5313 }
5314
5315 /// ParseInsertElement
5316 ///   ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5317 bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5318   LocTy Loc;
5319   Value *Op0, *Op1, *Op2;
5320   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5321       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5322       ParseTypeAndValue(Op1, PFS) ||
5323       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5324       ParseTypeAndValue(Op2, PFS))
5325     return true;
5326
5327   if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
5328     return Error(Loc, "invalid insertelement operands");
5329
5330   Inst = InsertElementInst::Create(Op0, Op1, Op2);
5331   return false;
5332 }
5333
5334 /// ParseShuffleVector
5335 ///   ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5336 bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5337   LocTy Loc;
5338   Value *Op0, *Op1, *Op2;
5339   if (ParseTypeAndValue(Op0, Loc, PFS) ||
5340       ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5341       ParseTypeAndValue(Op1, PFS) ||
5342       ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5343       ParseTypeAndValue(Op2, PFS))
5344     return true;
5345
5346   if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
5347     return Error(Loc, "invalid shufflevector operands");
5348
5349   Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5350   return false;
5351 }
5352
5353 /// ParsePHI
5354 ///   ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
5355 int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
5356   Type *Ty = nullptr;  LocTy TypeLoc;
5357   Value *Op0, *Op1;
5358
5359   if (ParseType(Ty, TypeLoc) ||
5360       ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5361       ParseValue(Ty, Op0, PFS) ||
5362       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5363       ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
5364       ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5365     return true;
5366
5367   bool AteExtraComma = false;
5368   SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5369   while (1) {
5370     PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
5371
5372     if (!EatIfPresent(lltok::comma))
5373       break;
5374
5375     if (Lex.getKind() == lltok::MetadataVar) {
5376       AteExtraComma = true;
5377       break;
5378     }
5379
5380     if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5381         ParseValue(Ty, Op0, PFS) ||
5382         ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5383         ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
5384         ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5385       return true;
5386   }
5387
5388   if (!Ty->isFirstClassType())
5389     return Error(TypeLoc, "phi node must have first class type");
5390
5391   PHINode *PN = PHINode::Create(Ty, PHIVals.size());
5392   for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5393     PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5394   Inst = PN;
5395   return AteExtraComma ? InstExtraComma : InstNormal;
5396 }
5397
5398 /// ParseLandingPad
5399 ///   ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5400 /// Clause
5401 ///   ::= 'catch' TypeAndValue
5402 ///   ::= 'filter'
5403 ///   ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5404 bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
5405   Type *Ty = nullptr; LocTy TyLoc;
5406
5407   if (ParseType(Ty, TyLoc))
5408     return true;
5409
5410   std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
5411   LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5412
5413   while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5414     LandingPadInst::ClauseType CT;
5415     if (EatIfPresent(lltok::kw_catch))
5416       CT = LandingPadInst::Catch;
5417     else if (EatIfPresent(lltok::kw_filter))
5418       CT = LandingPadInst::Filter;
5419     else
5420       return TokError("expected 'catch' or 'filter' clause type");
5421
5422     Value *V;
5423     LocTy VLoc;
5424     if (ParseTypeAndValue(V, VLoc, PFS))
5425       return true;
5426
5427     // A 'catch' type expects a non-array constant. A filter clause expects an
5428     // array constant.
5429     if (CT == LandingPadInst::Catch) {
5430       if (isa<ArrayType>(V->getType()))
5431         Error(VLoc, "'catch' clause has an invalid type");
5432     } else {
5433       if (!isa<ArrayType>(V->getType()))
5434         Error(VLoc, "'filter' clause has an invalid type");
5435     }
5436
5437     Constant *CV = dyn_cast<Constant>(V);
5438     if (!CV)
5439       return Error(VLoc, "clause argument must be a constant");
5440     LP->addClause(CV);
5441   }
5442
5443   Inst = LP.release();
5444   return false;
5445 }
5446
5447 /// ParseCall
5448 ///   ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5449 ///       ParameterList OptionalAttrs
5450 ///   ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5451 ///       ParameterList OptionalAttrs
5452 ///   ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
5453 ///       ParameterList OptionalAttrs
5454 bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
5455                          CallInst::TailCallKind TCK) {
5456   AttrBuilder RetAttrs, FnAttrs;
5457   std::vector<unsigned> FwdRefAttrGrps;
5458   LocTy BuiltinLoc;
5459   unsigned CC;
5460   Type *RetType = nullptr;
5461   LocTy RetTypeLoc;
5462   ValID CalleeID;
5463   SmallVector<ParamInfo, 16> ArgList;
5464   LocTy CallLoc = Lex.getLoc();
5465
5466   if ((TCK != CallInst::TCK_None &&
5467        ParseToken(lltok::kw_call, "expected 'tail call'")) ||
5468       ParseOptionalCallingConv(CC) ||
5469       ParseOptionalReturnAttrs(RetAttrs) ||
5470       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
5471       ParseValID(CalleeID) ||
5472       ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5473                          PFS.getFunction().isVarArg()) ||
5474       ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5475                                  BuiltinLoc))
5476     return true;
5477
5478   // If RetType is a non-function pointer type, then this is the short syntax
5479   // for the call, which means that RetType is just the return type.  Infer the
5480   // rest of the function argument types from the arguments that are present.
5481   FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5482   if (!Ty) {
5483     // Pull out the types of all of the arguments...
5484     std::vector<Type*> ParamTypes;
5485     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5486       ParamTypes.push_back(ArgList[i].V->getType());
5487
5488     if (!FunctionType::isValidReturnType(RetType))
5489       return Error(RetTypeLoc, "Invalid result type for LLVM function");
5490
5491     Ty = FunctionType::get(RetType, ParamTypes, false);
5492   }
5493
5494   CalleeID.FTy = Ty;
5495
5496   // Look up the callee.
5497   Value *Callee;
5498   if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5499     return true;
5500
5501   // Set up the Attribute for the function.
5502   SmallVector<AttributeSet, 8> Attrs;
5503   if (RetAttrs.hasAttributes())
5504     Attrs.push_back(AttributeSet::get(RetType->getContext(),
5505                                       AttributeSet::ReturnIndex,
5506                                       RetAttrs));
5507
5508   SmallVector<Value*, 8> Args;
5509
5510   // Loop through FunctionType's arguments and ensure they are specified
5511   // correctly.  Also, gather any parameter attributes.
5512   FunctionType::param_iterator I = Ty->param_begin();
5513   FunctionType::param_iterator E = Ty->param_end();
5514   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
5515     Type *ExpectedTy = nullptr;
5516     if (I != E) {
5517       ExpectedTy = *I++;
5518     } else if (!Ty->isVarArg()) {
5519       return Error(ArgList[i].Loc, "too many arguments specified");
5520     }
5521
5522     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5523       return Error(ArgList[i].Loc, "argument is not of expected type '" +
5524                    getTypeString(ExpectedTy) + "'");
5525     Args.push_back(ArgList[i].V);
5526     if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5527       AttrBuilder B(ArgList[i].Attrs, i + 1);
5528       Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5529     }
5530   }
5531
5532   if (I != E)
5533     return Error(CallLoc, "not enough parameters specified for call");
5534
5535   if (FnAttrs.hasAttributes()) {
5536     if (FnAttrs.hasAlignmentAttr())
5537       return Error(CallLoc, "call instructions may not have an alignment");
5538
5539     Attrs.push_back(AttributeSet::get(RetType->getContext(),
5540                                       AttributeSet::FunctionIndex,
5541                                       FnAttrs));
5542   }
5543
5544   // Finish off the Attribute and check them
5545   AttributeSet PAL = AttributeSet::get(Context, Attrs);
5546
5547   CallInst *CI = CallInst::Create(Ty, Callee, Args);
5548   CI->setTailCallKind(TCK);
5549   CI->setCallingConv(CC);
5550   CI->setAttributes(PAL);
5551   ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
5552   Inst = CI;
5553   return false;
5554 }
5555
5556 //===----------------------------------------------------------------------===//
5557 // Memory Instructions.
5558 //===----------------------------------------------------------------------===//
5559
5560 /// ParseAlloc
5561 ///   ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
5562 int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
5563   Value *Size = nullptr;
5564   LocTy SizeLoc, TyLoc;
5565   unsigned Alignment = 0;
5566   Type *Ty = nullptr;
5567
5568   bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5569
5570   if (ParseType(Ty, TyLoc)) return true;
5571
5572   if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5573     return Error(TyLoc, "invalid type for alloca");
5574
5575   bool AteExtraComma = false;
5576   if (EatIfPresent(lltok::comma)) {
5577     if (Lex.getKind() == lltok::kw_align) {
5578       if (ParseOptionalAlignment(Alignment)) return true;
5579     } else if (Lex.getKind() == lltok::MetadataVar) {
5580       AteExtraComma = true;
5581     } else {
5582       if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5583           ParseOptionalCommaAlign(Alignment, AteExtraComma))
5584         return true;
5585     }
5586   }
5587
5588   if (Size && !Size->getType()->isIntegerTy())
5589     return Error(SizeLoc, "element count must have integer type");
5590
5591   AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5592   AI->setUsedWithInAlloca(IsInAlloca);
5593   Inst = AI;
5594   return AteExtraComma ? InstExtraComma : InstNormal;
5595 }
5596
5597 /// ParseLoad
5598 ///   ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
5599 ///   ::= 'load' 'atomic' 'volatile'? TypeAndValue
5600 ///       'singlethread'? AtomicOrdering (',' 'align' i32)?
5601 int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
5602   Value *Val; LocTy Loc;
5603   unsigned Alignment = 0;
5604   bool AteExtraComma = false;
5605   bool isAtomic = false;
5606   AtomicOrdering Ordering = NotAtomic;
5607   SynchronizationScope Scope = CrossThread;
5608
5609   if (Lex.getKind() == lltok::kw_atomic) {
5610     isAtomic = true;
5611     Lex.Lex();
5612   }
5613
5614   bool isVolatile = false;
5615   if (Lex.getKind() == lltok::kw_volatile) {
5616     isVolatile = true;
5617     Lex.Lex();
5618   }
5619
5620   Type *Ty;
5621   LocTy ExplicitTypeLoc = Lex.getLoc();
5622   if (ParseType(Ty) ||
5623       ParseToken(lltok::comma, "expected comma after load's type") ||
5624       ParseTypeAndValue(Val, Loc, PFS) ||
5625       ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
5626       ParseOptionalCommaAlign(Alignment, AteExtraComma))
5627     return true;
5628
5629   if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
5630     return Error(Loc, "load operand must be a pointer to a first class type");
5631   if (isAtomic && !Alignment)
5632     return Error(Loc, "atomic load must have explicit non-zero alignment");
5633   if (Ordering == Release || Ordering == AcquireRelease)
5634     return Error(Loc, "atomic load cannot use Release ordering");
5635
5636   if (Ty != cast<PointerType>(Val->getType())->getElementType())
5637     return Error(ExplicitTypeLoc,
5638                  "explicit pointee type doesn't match operand's pointee type");
5639
5640   Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
5641   return AteExtraComma ? InstExtraComma : InstNormal;
5642 }
5643
5644 /// ParseStore
5645
5646 ///   ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5647 ///   ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
5648 ///       'singlethread'? AtomicOrdering (',' 'align' i32)?
5649 int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
5650   Value *Val, *Ptr; LocTy Loc, PtrLoc;
5651   unsigned Alignment = 0;
5652   bool AteExtraComma = false;
5653   bool isAtomic = false;
5654   AtomicOrdering Ordering = NotAtomic;
5655   SynchronizationScope Scope = CrossThread;
5656
5657   if (Lex.getKind() == lltok::kw_atomic) {
5658     isAtomic = true;
5659     Lex.Lex();
5660   }
5661
5662   bool isVolatile = false;
5663   if (Lex.getKind() == lltok::kw_volatile) {
5664     isVolatile = true;
5665     Lex.Lex();
5666   }
5667
5668   if (ParseTypeAndValue(Val, Loc, PFS) ||
5669       ParseToken(lltok::comma, "expected ',' after store operand") ||
5670       ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5671       ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
5672       ParseOptionalCommaAlign(Alignment, AteExtraComma))
5673     return true;
5674
5675   if (!Ptr->getType()->isPointerTy())
5676     return Error(PtrLoc, "store operand must be a pointer");
5677   if (!Val->getType()->isFirstClassType())
5678     return Error(Loc, "store operand must be a first class value");
5679   if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5680     return Error(Loc, "stored value and pointer type do not match");
5681   if (isAtomic && !Alignment)
5682     return Error(Loc, "atomic store must have explicit non-zero alignment");
5683   if (Ordering == Acquire || Ordering == AcquireRelease)
5684     return Error(Loc, "atomic store cannot use Acquire ordering");
5685
5686   Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
5687   return AteExtraComma ? InstExtraComma : InstNormal;
5688 }
5689
5690 /// ParseCmpXchg
5691 ///   ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5692 ///       TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
5693 int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
5694   Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5695   bool AteExtraComma = false;
5696   AtomicOrdering SuccessOrdering = NotAtomic;
5697   AtomicOrdering FailureOrdering = NotAtomic;
5698   SynchronizationScope Scope = CrossThread;
5699   bool isVolatile = false;
5700   bool isWeak = false;
5701
5702   if (EatIfPresent(lltok::kw_weak))
5703     isWeak = true;
5704
5705   if (EatIfPresent(lltok::kw_volatile))
5706     isVolatile = true;
5707
5708   if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5709       ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5710       ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5711       ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5712       ParseTypeAndValue(New, NewLoc, PFS) ||
5713       ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5714       ParseOrdering(FailureOrdering))
5715     return true;
5716
5717   if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
5718     return TokError("cmpxchg cannot be unordered");
5719   if (SuccessOrdering < FailureOrdering)
5720     return TokError("cmpxchg must be at least as ordered on success as failure");
5721   if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5722     return TokError("cmpxchg failure ordering cannot include release semantics");
5723   if (!Ptr->getType()->isPointerTy())
5724     return Error(PtrLoc, "cmpxchg operand must be a pointer");
5725   if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5726     return Error(CmpLoc, "compare value and pointer type do not match");
5727   if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5728     return Error(NewLoc, "new value and pointer type do not match");
5729   if (!New->getType()->isIntegerTy())
5730     return Error(NewLoc, "cmpxchg operand must be an integer");
5731   unsigned Size = New->getType()->getPrimitiveSizeInBits();
5732   if (Size < 8 || (Size & (Size - 1)))
5733     return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5734                          " integer");
5735
5736   AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5737       Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
5738   CXI->setVolatile(isVolatile);
5739   CXI->setWeak(isWeak);
5740   Inst = CXI;
5741   return AteExtraComma ? InstExtraComma : InstNormal;
5742 }
5743
5744 /// ParseAtomicRMW
5745 ///   ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5746 ///       'singlethread'? AtomicOrdering
5747 int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
5748   Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5749   bool AteExtraComma = false;
5750   AtomicOrdering Ordering = NotAtomic;
5751   SynchronizationScope Scope = CrossThread;
5752   bool isVolatile = false;
5753   AtomicRMWInst::BinOp Operation;
5754
5755   if (EatIfPresent(lltok::kw_volatile))
5756     isVolatile = true;
5757
5758   switch (Lex.getKind()) {
5759   default: return TokError("expected binary operation in atomicrmw");
5760   case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5761   case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5762   case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5763   case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5764   case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5765   case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5766   case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5767   case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5768   case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5769   case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5770   case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5771   }
5772   Lex.Lex();  // Eat the operation.
5773
5774   if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5775       ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5776       ParseTypeAndValue(Val, ValLoc, PFS) ||
5777       ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5778     return true;
5779
5780   if (Ordering == Unordered)
5781     return TokError("atomicrmw cannot be unordered");
5782   if (!Ptr->getType()->isPointerTy())
5783     return Error(PtrLoc, "atomicrmw operand must be a pointer");
5784   if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5785     return Error(ValLoc, "atomicrmw value and pointer type do not match");
5786   if (!Val->getType()->isIntegerTy())
5787     return Error(ValLoc, "atomicrmw operand must be an integer");
5788   unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5789   if (Size < 8 || (Size & (Size - 1)))
5790     return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5791                          " integer");
5792
5793   AtomicRMWInst *RMWI =
5794     new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5795   RMWI->setVolatile(isVolatile);
5796   Inst = RMWI;
5797   return AteExtraComma ? InstExtraComma : InstNormal;
5798 }
5799
5800 /// ParseFence
5801 ///   ::= 'fence' 'singlethread'? AtomicOrdering
5802 int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5803   AtomicOrdering Ordering = NotAtomic;
5804   SynchronizationScope Scope = CrossThread;
5805   if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5806     return true;
5807
5808   if (Ordering == Unordered)
5809     return TokError("fence cannot be unordered");
5810   if (Ordering == Monotonic)
5811     return TokError("fence cannot be monotonic");
5812
5813   Inst = new FenceInst(Context, Ordering, Scope);
5814   return InstNormal;
5815 }
5816
5817 /// ParseGetElementPtr
5818 ///   ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
5819 int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
5820   Value *Ptr = nullptr;
5821   Value *Val = nullptr;
5822   LocTy Loc, EltLoc;
5823
5824   bool InBounds = EatIfPresent(lltok::kw_inbounds);
5825
5826   Type *Ty = nullptr;
5827   LocTy ExplicitTypeLoc = Lex.getLoc();
5828   if (ParseType(Ty) ||
5829       ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
5830       ParseTypeAndValue(Ptr, Loc, PFS))
5831     return true;
5832
5833   Type *BaseType = Ptr->getType();
5834   PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
5835   if (!BasePointerType)
5836     return Error(Loc, "base of getelementptr must be a pointer");
5837
5838   if (Ty != BasePointerType->getElementType())
5839     return Error(ExplicitTypeLoc,
5840                  "explicit pointee type doesn't match operand's pointee type");
5841
5842   SmallVector<Value*, 16> Indices;
5843   bool AteExtraComma = false;
5844   // GEP returns a vector of pointers if at least one of parameters is a vector.
5845   // All vector parameters should have the same vector width.
5846   unsigned GEPWidth = BaseType->isVectorTy() ?
5847     BaseType->getVectorNumElements() : 0;
5848
5849   while (EatIfPresent(lltok::comma)) {
5850     if (Lex.getKind() == lltok::MetadataVar) {
5851       AteExtraComma = true;
5852       break;
5853     }
5854     if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
5855     if (!Val->getType()->getScalarType()->isIntegerTy())
5856       return Error(EltLoc, "getelementptr index must be an integer");
5857
5858     if (Val->getType()->isVectorTy()) {
5859       unsigned ValNumEl = Val->getType()->getVectorNumElements();
5860       if (GEPWidth && GEPWidth != ValNumEl)
5861         return Error(EltLoc,
5862           "getelementptr vector index has a wrong number of elements");
5863       GEPWidth = ValNumEl;
5864     }
5865     Indices.push_back(Val);
5866   }
5867
5868   SmallPtrSet<Type*, 4> Visited;
5869   if (!Indices.empty() && !Ty->isSized(&Visited))
5870     return Error(Loc, "base element of getelementptr must be sized");
5871
5872   if (!GetElementPtrInst::getIndexedType(Ty, Indices))
5873     return Error(Loc, "invalid getelementptr indices");
5874   Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
5875   if (InBounds)
5876     cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
5877   return AteExtraComma ? InstExtraComma : InstNormal;
5878 }
5879
5880 /// ParseExtractValue
5881 ///   ::= 'extractvalue' TypeAndValue (',' uint32)+
5882 int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
5883   Value *Val; LocTy Loc;
5884   SmallVector<unsigned, 4> Indices;
5885   bool AteExtraComma;
5886   if (ParseTypeAndValue(Val, Loc, PFS) ||
5887       ParseIndexList(Indices, AteExtraComma))
5888     return true;
5889
5890   if (!Val->getType()->isAggregateType())
5891     return Error(Loc, "extractvalue operand must be aggregate type");
5892
5893   if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
5894     return Error(Loc, "invalid indices for extractvalue");
5895   Inst = ExtractValueInst::Create(Val, Indices);
5896   return AteExtraComma ? InstExtraComma : InstNormal;
5897 }
5898
5899 /// ParseInsertValue
5900 ///   ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
5901 int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
5902   Value *Val0, *Val1; LocTy Loc0, Loc1;
5903   SmallVector<unsigned, 4> Indices;
5904   bool AteExtraComma;
5905   if (ParseTypeAndValue(Val0, Loc0, PFS) ||
5906       ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
5907       ParseTypeAndValue(Val1, Loc1, PFS) ||
5908       ParseIndexList(Indices, AteExtraComma))
5909     return true;
5910
5911   if (!Val0->getType()->isAggregateType())
5912     return Error(Loc0, "insertvalue operand must be aggregate type");
5913
5914   Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
5915   if (!IndexedType)
5916     return Error(Loc0, "invalid indices for insertvalue");
5917   if (IndexedType != Val1->getType())
5918     return Error(Loc1, "insertvalue operand and field disagree in type: '" +
5919                            getTypeString(Val1->getType()) + "' instead of '" +
5920                            getTypeString(IndexedType) + "'");
5921   Inst = InsertValueInst::Create(Val0, Val1, Indices);
5922   return AteExtraComma ? InstExtraComma : InstNormal;
5923 }
5924
5925 //===----------------------------------------------------------------------===//
5926 // Embedded metadata.
5927 //===----------------------------------------------------------------------===//
5928
5929 /// ParseMDNodeVector
5930 ///   ::= { Element (',' Element)* }
5931 /// Element
5932 ///   ::= 'null' | TypeAndValue
5933 bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
5934   if (ParseToken(lltok::lbrace, "expected '{' here"))
5935     return true;
5936
5937   // Check for an empty list.
5938   if (EatIfPresent(lltok::rbrace))
5939     return false;
5940
5941   do {
5942     // Null is a special case since it is typeless.
5943     if (EatIfPresent(lltok::kw_null)) {
5944       Elts.push_back(nullptr);
5945       continue;
5946     }
5947
5948     Metadata *MD;
5949     if (ParseMetadata(MD, nullptr))
5950       return true;
5951     Elts.push_back(MD);
5952   } while (EatIfPresent(lltok::comma));
5953
5954   return ParseToken(lltok::rbrace, "expected end of metadata node");
5955 }
5956
5957 //===----------------------------------------------------------------------===//
5958 // Use-list order directives.
5959 //===----------------------------------------------------------------------===//
5960 bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
5961                                 SMLoc Loc) {
5962   if (V->use_empty())
5963     return Error(Loc, "value has no uses");
5964
5965   unsigned NumUses = 0;
5966   SmallDenseMap<const Use *, unsigned, 16> Order;
5967   for (const Use &U : V->uses()) {
5968     if (++NumUses > Indexes.size())
5969       break;
5970     Order[&U] = Indexes[NumUses - 1];
5971   }
5972   if (NumUses < 2)
5973     return Error(Loc, "value only has one use");
5974   if (Order.size() != Indexes.size() || NumUses > Indexes.size())
5975     return Error(Loc, "wrong number of indexes, expected " +
5976                           Twine(std::distance(V->use_begin(), V->use_end())));
5977
5978   V->sortUseList([&](const Use &L, const Use &R) {
5979     return Order.lookup(&L) < Order.lookup(&R);
5980   });
5981   return false;
5982 }
5983
5984 /// ParseUseListOrderIndexes
5985 ///   ::= '{' uint32 (',' uint32)+ '}'
5986 bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
5987   SMLoc Loc = Lex.getLoc();
5988   if (ParseToken(lltok::lbrace, "expected '{' here"))
5989     return true;
5990   if (Lex.getKind() == lltok::rbrace)
5991     return Lex.Error("expected non-empty list of uselistorder indexes");
5992
5993   // Use Offset, Max, and IsOrdered to check consistency of indexes.  The
5994   // indexes should be distinct numbers in the range [0, size-1], and should
5995   // not be in order.
5996   unsigned Offset = 0;
5997   unsigned Max = 0;
5998   bool IsOrdered = true;
5999   assert(Indexes.empty() && "Expected empty order vector");
6000   do {
6001     unsigned Index;
6002     if (ParseUInt32(Index))
6003       return true;
6004
6005     // Update consistency checks.
6006     Offset += Index - Indexes.size();
6007     Max = std::max(Max, Index);
6008     IsOrdered &= Index == Indexes.size();
6009
6010     Indexes.push_back(Index);
6011   } while (EatIfPresent(lltok::comma));
6012
6013   if (ParseToken(lltok::rbrace, "expected '}' here"))
6014     return true;
6015
6016   if (Indexes.size() < 2)
6017     return Error(Loc, "expected >= 2 uselistorder indexes");
6018   if (Offset != 0 || Max >= Indexes.size())
6019     return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6020   if (IsOrdered)
6021     return Error(Loc, "expected uselistorder indexes to change the order");
6022
6023   return false;
6024 }
6025
6026 /// ParseUseListOrder
6027 ///   ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6028 bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6029   SMLoc Loc = Lex.getLoc();
6030   if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6031     return true;
6032
6033   Value *V;
6034   SmallVector<unsigned, 16> Indexes;
6035   if (ParseTypeAndValue(V, PFS) ||
6036       ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6037       ParseUseListOrderIndexes(Indexes))
6038     return true;
6039
6040   return sortUseListOrder(V, Indexes, Loc);
6041 }
6042
6043 /// ParseUseListOrderBB
6044 ///   ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6045 bool LLParser::ParseUseListOrderBB() {
6046   assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6047   SMLoc Loc = Lex.getLoc();
6048   Lex.Lex();
6049
6050   ValID Fn, Label;
6051   SmallVector<unsigned, 16> Indexes;
6052   if (ParseValID(Fn) ||
6053       ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6054       ParseValID(Label) ||
6055       ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6056       ParseUseListOrderIndexes(Indexes))
6057     return true;
6058
6059   // Check the function.
6060   GlobalValue *GV;
6061   if (Fn.Kind == ValID::t_GlobalName)
6062     GV = M->getNamedValue(Fn.StrVal);
6063   else if (Fn.Kind == ValID::t_GlobalID)
6064     GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6065   else
6066     return Error(Fn.Loc, "expected function name in uselistorder_bb");
6067   if (!GV)
6068     return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6069   auto *F = dyn_cast<Function>(GV);
6070   if (!F)
6071     return Error(Fn.Loc, "expected function name in uselistorder_bb");
6072   if (F->isDeclaration())
6073     return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6074
6075   // Check the basic block.
6076   if (Label.Kind == ValID::t_LocalID)
6077     return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6078   if (Label.Kind != ValID::t_LocalName)
6079     return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6080   Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6081   if (!V)
6082     return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6083   if (!isa<BasicBlock>(V))
6084     return Error(Label.Loc, "expected basic block in uselistorder_bb");
6085
6086   return sortUseListOrder(V, Indexes, Loc);
6087 }