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