1 //===-- LLParser.cpp - Parser Class ---------------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the parser class for .ll files.
12 //===----------------------------------------------------------------------===//
15 #include "llvm/ADT/SmallPtrSet.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/AsmParser/SlotMapping.h"
18 #include "llvm/IR/AutoUpgrade.h"
19 #include "llvm/IR/CallingConv.h"
20 #include "llvm/IR/Constants.h"
21 #include "llvm/IR/DebugInfo.h"
22 #include "llvm/IR/DebugInfoMetadata.h"
23 #include "llvm/IR/DerivedTypes.h"
24 #include "llvm/IR/InlineAsm.h"
25 #include "llvm/IR/Instructions.h"
26 #include "llvm/IR/LLVMContext.h"
27 #include "llvm/IR/Module.h"
28 #include "llvm/IR/Operator.h"
29 #include "llvm/IR/ValueSymbolTable.h"
30 #include "llvm/Support/Dwarf.h"
31 #include "llvm/Support/ErrorHandling.h"
32 #include "llvm/Support/SaveAndRestore.h"
33 #include "llvm/Support/raw_ostream.h"
36 static std::string getTypeString(Type *T) {
38 raw_string_ostream Tmp(Result);
43 /// Run: module ::= toplevelentity*
44 bool LLParser::Run() {
48 return ParseTopLevelEntities() ||
49 ValidateEndOfModule();
52 bool LLParser::parseStandaloneConstantValue(Constant *&C,
53 const SlotMapping *Slots) {
54 restoreParsingState(Slots);
58 if (ParseType(Ty) || parseConstantValue(Ty, C))
60 if (Lex.getKind() != lltok::Eof)
61 return Error(Lex.getLoc(), "expected end of string");
65 void LLParser::restoreParsingState(const SlotMapping *Slots) {
68 NumberedVals = Slots->GlobalValues;
69 NumberedMetadata = Slots->MetadataNodes;
70 for (const auto &I : Slots->NamedTypes)
72 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
73 for (const auto &I : Slots->Types)
75 std::make_pair(I.first, std::make_pair(I.second, LocTy())));
78 /// ValidateEndOfModule - Do final validity and sanity checks at the end of the
80 bool LLParser::ValidateEndOfModule() {
81 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
82 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
84 // Handle any function attribute group forward references.
85 for (std::map<Value*, std::vector<unsigned> >::iterator
86 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
89 std::vector<unsigned> &Vec = I->second;
92 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
94 B.merge(NumberedAttrBuilders[*VI]);
96 if (Function *Fn = dyn_cast<Function>(V)) {
97 AttributeSet AS = Fn->getAttributes();
98 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
99 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
100 AS.getFnAttributes());
104 // If the alignment was parsed as an attribute, move to the alignment
106 if (FnAttrs.hasAlignmentAttr()) {
107 Fn->setAlignment(FnAttrs.getAlignment());
108 FnAttrs.removeAttribute(Attribute::Alignment);
111 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
112 AttributeSet::get(Context,
113 AttributeSet::FunctionIndex,
115 Fn->setAttributes(AS);
116 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
117 AttributeSet AS = CI->getAttributes();
118 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
119 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
120 AS.getFnAttributes());
122 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
123 AttributeSet::get(Context,
124 AttributeSet::FunctionIndex,
126 CI->setAttributes(AS);
127 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
128 AttributeSet AS = II->getAttributes();
129 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
130 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
131 AS.getFnAttributes());
133 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
134 AttributeSet::get(Context,
135 AttributeSet::FunctionIndex,
137 II->setAttributes(AS);
139 llvm_unreachable("invalid object with forward attribute group reference");
143 // If there are entries in ForwardRefBlockAddresses at this point, the
144 // function was never defined.
145 if (!ForwardRefBlockAddresses.empty())
146 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
147 "expected function name in blockaddress");
149 for (const auto &NT : NumberedTypes)
150 if (NT.second.second.isValid())
151 return Error(NT.second.second,
152 "use of undefined type '%" + Twine(NT.first) + "'");
154 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
155 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
156 if (I->second.second.isValid())
157 return Error(I->second.second,
158 "use of undefined type named '" + I->getKey() + "'");
160 if (!ForwardRefComdats.empty())
161 return Error(ForwardRefComdats.begin()->second,
162 "use of undefined comdat '$" +
163 ForwardRefComdats.begin()->first + "'");
165 if (!ForwardRefVals.empty())
166 return Error(ForwardRefVals.begin()->second.second,
167 "use of undefined value '@" + ForwardRefVals.begin()->first +
170 if (!ForwardRefValIDs.empty())
171 return Error(ForwardRefValIDs.begin()->second.second,
172 "use of undefined value '@" +
173 Twine(ForwardRefValIDs.begin()->first) + "'");
175 if (!ForwardRefMDNodes.empty())
176 return Error(ForwardRefMDNodes.begin()->second.second,
177 "use of undefined metadata '!" +
178 Twine(ForwardRefMDNodes.begin()->first) + "'");
180 // Resolve metadata cycles.
181 for (auto &N : NumberedMetadata) {
182 if (N.second && !N.second->isResolved())
183 N.second->resolveCycles();
186 // Look for intrinsic functions and CallInst that need to be upgraded
187 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
188 UpgradeCallsToIntrinsic(&*FI++); // must be post-increment, as we remove
190 UpgradeDebugInfo(*M);
194 // Initialize the slot mapping.
195 // Because by this point we've parsed and validated everything, we can "steal"
196 // the mapping from LLParser as it doesn't need it anymore.
197 Slots->GlobalValues = std::move(NumberedVals);
198 Slots->MetadataNodes = std::move(NumberedMetadata);
199 for (const auto &I : NamedTypes)
200 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
201 for (const auto &I : NumberedTypes)
202 Slots->Types.insert(std::make_pair(I.first, I.second.first));
207 //===----------------------------------------------------------------------===//
208 // Top-Level Entities
209 //===----------------------------------------------------------------------===//
211 bool LLParser::ParseTopLevelEntities() {
213 switch (Lex.getKind()) {
214 default: return TokError("expected top-level entity");
215 case lltok::Eof: return false;
216 case lltok::kw_declare: if (ParseDeclare()) return true; break;
217 case lltok::kw_define: if (ParseDefine()) return true; break;
218 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
219 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
220 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
221 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
222 case lltok::LocalVar: if (ParseNamedType()) return true; break;
223 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
224 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
225 case lltok::ComdatVar: if (parseComdat()) return true; break;
226 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
227 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
229 // The Global variable production with no name can have many different
230 // optional leading prefixes, the production is:
231 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
232 // OptionalThreadLocal OptionalAddrSpace OptionalUnnamedAddr
233 // ('constant'|'global') ...
234 case lltok::kw_private: // OptionalLinkage
235 case lltok::kw_internal: // OptionalLinkage
236 case lltok::kw_weak: // OptionalLinkage
237 case lltok::kw_weak_odr: // OptionalLinkage
238 case lltok::kw_linkonce: // OptionalLinkage
239 case lltok::kw_linkonce_odr: // OptionalLinkage
240 case lltok::kw_appending: // OptionalLinkage
241 case lltok::kw_common: // OptionalLinkage
242 case lltok::kw_extern_weak: // OptionalLinkage
243 case lltok::kw_external: // OptionalLinkage
244 case lltok::kw_default: // OptionalVisibility
245 case lltok::kw_hidden: // OptionalVisibility
246 case lltok::kw_protected: // OptionalVisibility
247 case lltok::kw_dllimport: // OptionalDLLStorageClass
248 case lltok::kw_dllexport: // OptionalDLLStorageClass
249 case lltok::kw_thread_local: // OptionalThreadLocal
250 case lltok::kw_addrspace: // OptionalAddrSpace
251 case lltok::kw_constant: // GlobalType
252 case lltok::kw_global: { // GlobalType
253 unsigned Linkage, Visibility, DLLStorageClass;
255 GlobalVariable::ThreadLocalMode TLM;
257 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
258 ParseOptionalVisibility(Visibility) ||
259 ParseOptionalDLLStorageClass(DLLStorageClass) ||
260 ParseOptionalThreadLocal(TLM) ||
261 parseOptionalUnnamedAddr(UnnamedAddr) ||
262 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
263 DLLStorageClass, TLM, UnnamedAddr))
268 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
269 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
270 case lltok::kw_uselistorder_bb:
271 if (ParseUseListOrderBB()) return true; break;
278 /// ::= 'module' 'asm' STRINGCONSTANT
279 bool LLParser::ParseModuleAsm() {
280 assert(Lex.getKind() == lltok::kw_module);
284 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
285 ParseStringConstant(AsmStr)) return true;
287 M->appendModuleInlineAsm(AsmStr);
292 /// ::= 'target' 'triple' '=' STRINGCONSTANT
293 /// ::= 'target' 'datalayout' '=' STRINGCONSTANT
294 bool LLParser::ParseTargetDefinition() {
295 assert(Lex.getKind() == lltok::kw_target);
298 default: return TokError("unknown target property");
299 case lltok::kw_triple:
301 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
302 ParseStringConstant(Str))
304 M->setTargetTriple(Str);
306 case lltok::kw_datalayout:
308 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
309 ParseStringConstant(Str))
311 M->setDataLayout(Str);
317 /// ::= 'deplibs' '=' '[' ']'
318 /// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
319 /// FIXME: Remove in 4.0. Currently parse, but ignore.
320 bool LLParser::ParseDepLibs() {
321 assert(Lex.getKind() == lltok::kw_deplibs);
323 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
324 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
327 if (EatIfPresent(lltok::rsquare))
332 if (ParseStringConstant(Str)) return true;
333 } while (EatIfPresent(lltok::comma));
335 return ParseToken(lltok::rsquare, "expected ']' at end of list");
338 /// ParseUnnamedType:
339 /// ::= LocalVarID '=' 'type' type
340 bool LLParser::ParseUnnamedType() {
341 LocTy TypeLoc = Lex.getLoc();
342 unsigned TypeID = Lex.getUIntVal();
343 Lex.Lex(); // eat LocalVarID;
345 if (ParseToken(lltok::equal, "expected '=' after name") ||
346 ParseToken(lltok::kw_type, "expected 'type' after '='"))
349 Type *Result = nullptr;
350 if (ParseStructDefinition(TypeLoc, "",
351 NumberedTypes[TypeID], Result)) return true;
353 if (!isa<StructType>(Result)) {
354 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
356 return Error(TypeLoc, "non-struct types may not be recursive");
357 Entry.first = Result;
358 Entry.second = SMLoc();
366 /// ::= LocalVar '=' 'type' type
367 bool LLParser::ParseNamedType() {
368 std::string Name = Lex.getStrVal();
369 LocTy NameLoc = Lex.getLoc();
370 Lex.Lex(); // eat LocalVar.
372 if (ParseToken(lltok::equal, "expected '=' after name") ||
373 ParseToken(lltok::kw_type, "expected 'type' after name"))
376 Type *Result = nullptr;
377 if (ParseStructDefinition(NameLoc, Name,
378 NamedTypes[Name], Result)) return true;
380 if (!isa<StructType>(Result)) {
381 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
383 return Error(NameLoc, "non-struct types may not be recursive");
384 Entry.first = Result;
385 Entry.second = SMLoc();
393 /// ::= 'declare' FunctionHeader
394 bool LLParser::ParseDeclare() {
395 assert(Lex.getKind() == lltok::kw_declare);
399 return ParseFunctionHeader(F, false);
403 /// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
404 bool LLParser::ParseDefine() {
405 assert(Lex.getKind() == lltok::kw_define);
409 return ParseFunctionHeader(F, true) ||
410 ParseOptionalFunctionMetadata(*F) ||
411 ParseFunctionBody(*F);
417 bool LLParser::ParseGlobalType(bool &IsConstant) {
418 if (Lex.getKind() == lltok::kw_constant)
420 else if (Lex.getKind() == lltok::kw_global)
424 return TokError("expected 'global' or 'constant'");
430 /// ParseUnnamedGlobal:
431 /// OptionalVisibility ALIAS ...
432 /// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
433 /// ... -> global variable
434 /// GlobalID '=' OptionalVisibility ALIAS ...
435 /// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
436 /// ... -> global variable
437 bool LLParser::ParseUnnamedGlobal() {
438 unsigned VarID = NumberedVals.size();
440 LocTy NameLoc = Lex.getLoc();
442 // Handle the GlobalID form.
443 if (Lex.getKind() == lltok::GlobalID) {
444 if (Lex.getUIntVal() != VarID)
445 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
447 Lex.Lex(); // eat GlobalID;
449 if (ParseToken(lltok::equal, "expected '=' after name"))
454 unsigned Linkage, Visibility, DLLStorageClass;
455 GlobalVariable::ThreadLocalMode TLM;
457 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
458 ParseOptionalVisibility(Visibility) ||
459 ParseOptionalDLLStorageClass(DLLStorageClass) ||
460 ParseOptionalThreadLocal(TLM) ||
461 parseOptionalUnnamedAddr(UnnamedAddr))
464 if (Lex.getKind() != lltok::kw_alias)
465 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
466 DLLStorageClass, TLM, UnnamedAddr);
467 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
471 /// ParseNamedGlobal:
472 /// GlobalVar '=' OptionalVisibility ALIAS ...
473 /// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
474 /// ... -> global variable
475 bool LLParser::ParseNamedGlobal() {
476 assert(Lex.getKind() == lltok::GlobalVar);
477 LocTy NameLoc = Lex.getLoc();
478 std::string Name = Lex.getStrVal();
482 unsigned Linkage, Visibility, DLLStorageClass;
483 GlobalVariable::ThreadLocalMode TLM;
485 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
486 ParseOptionalLinkage(Linkage, HasLinkage) ||
487 ParseOptionalVisibility(Visibility) ||
488 ParseOptionalDLLStorageClass(DLLStorageClass) ||
489 ParseOptionalThreadLocal(TLM) ||
490 parseOptionalUnnamedAddr(UnnamedAddr))
493 if (Lex.getKind() != lltok::kw_alias)
494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
495 DLLStorageClass, TLM, UnnamedAddr);
497 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
501 bool LLParser::parseComdat() {
502 assert(Lex.getKind() == lltok::ComdatVar);
503 std::string Name = Lex.getStrVal();
504 LocTy NameLoc = Lex.getLoc();
507 if (ParseToken(lltok::equal, "expected '=' here"))
510 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
511 return TokError("expected comdat type");
513 Comdat::SelectionKind SK;
514 switch (Lex.getKind()) {
516 return TokError("unknown selection kind");
520 case lltok::kw_exactmatch:
521 SK = Comdat::ExactMatch;
523 case lltok::kw_largest:
524 SK = Comdat::Largest;
526 case lltok::kw_noduplicates:
527 SK = Comdat::NoDuplicates;
529 case lltok::kw_samesize:
530 SK = Comdat::SameSize;
535 // See if the comdat was forward referenced, if so, use the comdat.
536 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
537 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
538 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
539 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
542 if (I != ComdatSymTab.end())
545 C = M->getOrInsertComdat(Name);
546 C->setSelectionKind(SK);
552 // ::= '!' STRINGCONSTANT
553 bool LLParser::ParseMDString(MDString *&Result) {
555 if (ParseStringConstant(Str)) return true;
556 llvm::UpgradeMDStringConstant(Str);
557 Result = MDString::get(Context, Str);
562 // ::= '!' MDNodeNumber
563 bool LLParser::ParseMDNodeID(MDNode *&Result) {
564 // !{ ..., !42, ... }
566 if (ParseUInt32(MID))
569 // If not a forward reference, just return it now.
570 if (NumberedMetadata.count(MID)) {
571 Result = NumberedMetadata[MID];
575 // Otherwise, create MDNode forward reference.
576 auto &FwdRef = ForwardRefMDNodes[MID];
577 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
579 Result = FwdRef.first.get();
580 NumberedMetadata[MID].reset(Result);
584 /// ParseNamedMetadata:
585 /// !foo = !{ !1, !2 }
586 bool LLParser::ParseNamedMetadata() {
587 assert(Lex.getKind() == lltok::MetadataVar);
588 std::string Name = Lex.getStrVal();
591 if (ParseToken(lltok::equal, "expected '=' here") ||
592 ParseToken(lltok::exclaim, "Expected '!' here") ||
593 ParseToken(lltok::lbrace, "Expected '{' here"))
596 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
597 if (Lex.getKind() != lltok::rbrace)
599 if (ParseToken(lltok::exclaim, "Expected '!' here"))
603 if (ParseMDNodeID(N)) return true;
605 } while (EatIfPresent(lltok::comma));
607 return ParseToken(lltok::rbrace, "expected end of metadata node");
610 /// ParseStandaloneMetadata:
612 bool LLParser::ParseStandaloneMetadata() {
613 assert(Lex.getKind() == lltok::exclaim);
615 unsigned MetadataID = 0;
618 if (ParseUInt32(MetadataID) ||
619 ParseToken(lltok::equal, "expected '=' here"))
622 // Detect common error, from old metadata syntax.
623 if (Lex.getKind() == lltok::Type)
624 return TokError("unexpected type in metadata definition");
626 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
627 if (Lex.getKind() == lltok::MetadataVar) {
628 if (ParseSpecializedMDNode(Init, IsDistinct))
630 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
631 ParseMDTuple(Init, IsDistinct))
634 // See if this was forward referenced, if so, handle it.
635 auto FI = ForwardRefMDNodes.find(MetadataID);
636 if (FI != ForwardRefMDNodes.end()) {
637 FI->second.first->replaceAllUsesWith(Init);
638 ForwardRefMDNodes.erase(FI);
640 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
642 if (NumberedMetadata.count(MetadataID))
643 return TokError("Metadata id is already used");
644 NumberedMetadata[MetadataID].reset(Init);
650 static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
651 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
652 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
656 /// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
657 /// OptionalDLLStorageClass OptionalThreadLocal
658 /// OptionalUnnamedAddr 'alias' Aliasee
663 /// Everything through OptionalUnnamedAddr has already been parsed.
665 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
666 unsigned Visibility, unsigned DLLStorageClass,
667 GlobalVariable::ThreadLocalMode TLM,
669 assert(Lex.getKind() == lltok::kw_alias);
672 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
674 if(!GlobalAlias::isValidLinkage(Linkage))
675 return Error(NameLoc, "invalid linkage type for alias");
677 if (!isValidVisibilityForLinkage(Visibility, L))
678 return Error(NameLoc,
679 "symbol with local linkage must have default visibility");
682 LocTy ExplicitTypeLoc = Lex.getLoc();
684 ParseToken(lltok::comma, "expected comma after alias's type"))
688 LocTy AliaseeLoc = Lex.getLoc();
689 if (Lex.getKind() != lltok::kw_bitcast &&
690 Lex.getKind() != lltok::kw_getelementptr &&
691 Lex.getKind() != lltok::kw_addrspacecast &&
692 Lex.getKind() != lltok::kw_inttoptr) {
693 if (ParseGlobalTypeAndValue(Aliasee))
696 // The bitcast dest type is not present, it is implied by the dest type.
700 if (ID.Kind != ValID::t_Constant)
701 return Error(AliaseeLoc, "invalid aliasee");
702 Aliasee = ID.ConstantVal;
705 Type *AliaseeType = Aliasee->getType();
706 auto *PTy = dyn_cast<PointerType>(AliaseeType);
708 return Error(AliaseeLoc, "An alias must have pointer type");
709 unsigned AddrSpace = PTy->getAddressSpace();
711 if (Ty != PTy->getElementType())
714 "explicit pointee type doesn't match operand's pointee type");
716 GlobalValue *GVal = nullptr;
718 // See if the alias was forward referenced, if so, prepare to replace the
719 // forward reference.
721 GVal = M->getNamedValue(Name);
723 if (!ForwardRefVals.erase(Name))
724 return Error(NameLoc, "redefinition of global '@" + Name + "'");
727 auto I = ForwardRefValIDs.find(NumberedVals.size());
728 if (I != ForwardRefValIDs.end()) {
729 GVal = I->second.first;
730 ForwardRefValIDs.erase(I);
734 // Okay, create the alias but do not insert it into the module yet.
735 std::unique_ptr<GlobalAlias> GA(
736 GlobalAlias::create(Ty, AddrSpace, (GlobalValue::LinkageTypes)Linkage,
737 Name, Aliasee, /*Parent*/ nullptr));
738 GA->setThreadLocalMode(TLM);
739 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
740 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
741 GA->setUnnamedAddr(UnnamedAddr);
744 NumberedVals.push_back(GA.get());
747 // Verify that types agree.
748 if (GVal->getType() != GA->getType())
751 "forward reference and definition of alias have different types");
753 // If they agree, just RAUW the old value with the alias and remove the
755 GVal->replaceAllUsesWith(GA.get());
756 GVal->eraseFromParent();
759 // Insert into the module, we know its name won't collide now.
760 M->getAliasList().push_back(GA.get());
761 assert(GA->getName() == Name && "Should not be a name conflict!");
763 // The module owns this now
770 /// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
771 /// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
772 /// OptionalExternallyInitialized GlobalType Type Const
773 /// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
774 /// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
775 /// OptionalExternallyInitialized GlobalType Type Const
777 /// Everything up to and including OptionalUnnamedAddr has been parsed
780 bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
781 unsigned Linkage, bool HasLinkage,
782 unsigned Visibility, unsigned DLLStorageClass,
783 GlobalVariable::ThreadLocalMode TLM,
785 if (!isValidVisibilityForLinkage(Visibility, Linkage))
786 return Error(NameLoc,
787 "symbol with local linkage must have default visibility");
790 bool IsConstant, IsExternallyInitialized;
791 LocTy IsExternallyInitializedLoc;
795 if (ParseOptionalAddrSpace(AddrSpace) ||
796 ParseOptionalToken(lltok::kw_externally_initialized,
797 IsExternallyInitialized,
798 &IsExternallyInitializedLoc) ||
799 ParseGlobalType(IsConstant) ||
800 ParseType(Ty, TyLoc))
803 // If the linkage is specified and is external, then no initializer is
805 Constant *Init = nullptr;
806 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
807 Linkage != GlobalValue::ExternalLinkage)) {
808 if (ParseGlobalValue(Ty, Init))
812 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
813 return Error(TyLoc, "invalid type for global variable");
815 GlobalValue *GVal = nullptr;
817 // See if the global was forward referenced, if so, use the global.
819 GVal = M->getNamedValue(Name);
821 if (!ForwardRefVals.erase(Name))
822 return Error(NameLoc, "redefinition of global '@" + Name + "'");
825 auto I = ForwardRefValIDs.find(NumberedVals.size());
826 if (I != ForwardRefValIDs.end()) {
827 GVal = I->second.first;
828 ForwardRefValIDs.erase(I);
834 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
835 Name, nullptr, GlobalVariable::NotThreadLocal,
838 if (GVal->getValueType() != Ty)
840 "forward reference and definition of global have different types");
842 GV = cast<GlobalVariable>(GVal);
844 // Move the forward-reference to the correct spot in the module.
845 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
849 NumberedVals.push_back(GV);
851 // Set the parsed properties on the global.
853 GV->setInitializer(Init);
854 GV->setConstant(IsConstant);
855 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
856 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
857 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
858 GV->setExternallyInitialized(IsExternallyInitialized);
859 GV->setThreadLocalMode(TLM);
860 GV->setUnnamedAddr(UnnamedAddr);
862 // Parse attributes on the global.
863 while (Lex.getKind() == lltok::comma) {
866 if (Lex.getKind() == lltok::kw_section) {
868 GV->setSection(Lex.getStrVal());
869 if (ParseToken(lltok::StringConstant, "expected global section string"))
871 } else if (Lex.getKind() == lltok::kw_align) {
873 if (ParseOptionalAlignment(Alignment)) return true;
874 GV->setAlignment(Alignment);
877 if (parseOptionalComdat(Name, C))
882 return TokError("unknown global variable property!");
889 /// ParseUnnamedAttrGrp
890 /// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
891 bool LLParser::ParseUnnamedAttrGrp() {
892 assert(Lex.getKind() == lltok::kw_attributes);
893 LocTy AttrGrpLoc = Lex.getLoc();
896 if (Lex.getKind() != lltok::AttrGrpID)
897 return TokError("expected attribute group id");
899 unsigned VarID = Lex.getUIntVal();
900 std::vector<unsigned> unused;
904 if (ParseToken(lltok::equal, "expected '=' here") ||
905 ParseToken(lltok::lbrace, "expected '{' here") ||
906 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
908 ParseToken(lltok::rbrace, "expected end of attribute group"))
911 if (!NumberedAttrBuilders[VarID].hasAttributes())
912 return Error(AttrGrpLoc, "attribute group has no attributes");
917 /// ParseFnAttributeValuePairs
918 /// ::= <attr> | <attr> '=' <value>
919 bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
920 std::vector<unsigned> &FwdRefAttrGrps,
921 bool inAttrGrp, LocTy &BuiltinLoc) {
922 bool HaveError = false;
927 lltok::Kind Token = Lex.getKind();
928 if (Token == lltok::kw_builtin)
929 BuiltinLoc = Lex.getLoc();
932 if (!inAttrGrp) return HaveError;
933 return Error(Lex.getLoc(), "unterminated attribute group");
938 case lltok::AttrGrpID: {
939 // Allow a function to reference an attribute group:
941 // define void @foo() #1 { ... }
945 "cannot have an attribute group reference in an attribute group");
947 unsigned AttrGrpNum = Lex.getUIntVal();
948 if (inAttrGrp) break;
950 // Save the reference to the attribute group. We'll fill it in later.
951 FwdRefAttrGrps.push_back(AttrGrpNum);
954 // Target-dependent attributes:
955 case lltok::StringConstant: {
956 if (ParseStringAttribute(B))
961 // Target-independent attributes:
962 case lltok::kw_align: {
963 // As a hack, we allow function alignment to be initially parsed as an
964 // attribute on a function declaration/definition or added to an attribute
965 // group and later moved to the alignment field.
969 if (ParseToken(lltok::equal, "expected '=' here") ||
970 ParseUInt32(Alignment))
973 if (ParseOptionalAlignment(Alignment))
976 B.addAlignmentAttr(Alignment);
979 case lltok::kw_alignstack: {
983 if (ParseToken(lltok::equal, "expected '=' here") ||
984 ParseUInt32(Alignment))
987 if (ParseOptionalStackAlignment(Alignment))
990 B.addStackAlignmentAttr(Alignment);
993 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
994 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
995 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
996 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
997 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
998 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
999 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1000 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1001 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1002 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1003 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1004 case lltok::kw_noimplicitfloat:
1005 B.addAttribute(Attribute::NoImplicitFloat); break;
1006 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1007 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1008 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1009 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
1010 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
1011 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1012 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1013 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1014 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1015 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1016 case lltok::kw_returns_twice:
1017 B.addAttribute(Attribute::ReturnsTwice); break;
1018 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1019 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1020 case lltok::kw_sspstrong:
1021 B.addAttribute(Attribute::StackProtectStrong); break;
1022 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1023 case lltok::kw_sanitize_address:
1024 B.addAttribute(Attribute::SanitizeAddress); break;
1025 case lltok::kw_sanitize_thread:
1026 B.addAttribute(Attribute::SanitizeThread); break;
1027 case lltok::kw_sanitize_memory:
1028 B.addAttribute(Attribute::SanitizeMemory); break;
1029 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
1032 case lltok::kw_inreg:
1033 case lltok::kw_signext:
1034 case lltok::kw_zeroext:
1037 "invalid use of attribute on a function");
1039 case lltok::kw_byval:
1040 case lltok::kw_dereferenceable:
1041 case lltok::kw_dereferenceable_or_null:
1042 case lltok::kw_inalloca:
1043 case lltok::kw_nest:
1044 case lltok::kw_noalias:
1045 case lltok::kw_nocapture:
1046 case lltok::kw_nonnull:
1047 case lltok::kw_returned:
1048 case lltok::kw_sret:
1051 "invalid use of parameter-only attribute on a function");
1059 //===----------------------------------------------------------------------===//
1060 // GlobalValue Reference/Resolution Routines.
1061 //===----------------------------------------------------------------------===//
1063 static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1064 const std::string &Name) {
1065 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1066 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1068 return new GlobalVariable(*M, PTy->getElementType(), false,
1069 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1070 nullptr, GlobalVariable::NotThreadLocal,
1071 PTy->getAddressSpace());
1074 /// GetGlobalVal - Get a value with the specified name or ID, creating a
1075 /// forward reference record if needed. This can return null if the value
1076 /// exists but does not have the right type.
1077 GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
1079 PointerType *PTy = dyn_cast<PointerType>(Ty);
1081 Error(Loc, "global variable reference must have pointer type");
1085 // Look this name up in the normal function symbol table.
1087 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
1089 // If this is a forward reference for the value, see if we already created a
1090 // forward ref record.
1092 auto I = ForwardRefVals.find(Name);
1093 if (I != ForwardRefVals.end())
1094 Val = I->second.first;
1097 // If we have the value in the symbol table or fwd-ref table, return it.
1099 if (Val->getType() == Ty) return Val;
1100 Error(Loc, "'@" + Name + "' defined with type '" +
1101 getTypeString(Val->getType()) + "'");
1105 // Otherwise, create a new forward reference for this value and remember it.
1106 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
1107 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1111 GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1112 PointerType *PTy = dyn_cast<PointerType>(Ty);
1114 Error(Loc, "global variable reference must have pointer type");
1118 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
1120 // If this is a forward reference for the value, see if we already created a
1121 // forward ref record.
1123 auto I = ForwardRefValIDs.find(ID);
1124 if (I != ForwardRefValIDs.end())
1125 Val = I->second.first;
1128 // If we have the value in the symbol table or fwd-ref table, return it.
1130 if (Val->getType() == Ty) return Val;
1131 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
1132 getTypeString(Val->getType()) + "'");
1136 // Otherwise, create a new forward reference for this value and remember it.
1137 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
1138 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1143 //===----------------------------------------------------------------------===//
1144 // Comdat Reference/Resolution Routines.
1145 //===----------------------------------------------------------------------===//
1147 Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1148 // Look this name up in the comdat symbol table.
1149 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1150 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1151 if (I != ComdatSymTab.end())
1154 // Otherwise, create a new forward reference for this value and remember it.
1155 Comdat *C = M->getOrInsertComdat(Name);
1156 ForwardRefComdats[Name] = Loc;
1161 //===----------------------------------------------------------------------===//
1163 //===----------------------------------------------------------------------===//
1165 /// ParseToken - If the current token has the specified kind, eat it and return
1166 /// success. Otherwise, emit the specified error and return failure.
1167 bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1168 if (Lex.getKind() != T)
1169 return TokError(ErrMsg);
1174 /// ParseStringConstant
1175 /// ::= StringConstant
1176 bool LLParser::ParseStringConstant(std::string &Result) {
1177 if (Lex.getKind() != lltok::StringConstant)
1178 return TokError("expected string constant");
1179 Result = Lex.getStrVal();
1186 bool LLParser::ParseUInt32(unsigned &Val) {
1187 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1188 return TokError("expected integer");
1189 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1190 if (Val64 != unsigned(Val64))
1191 return TokError("expected 32-bit integer (too large)");
1199 bool LLParser::ParseUInt64(uint64_t &Val) {
1200 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1201 return TokError("expected integer");
1202 Val = Lex.getAPSIntVal().getLimitedValue();
1208 /// := 'localdynamic'
1209 /// := 'initialexec'
1211 bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1212 switch (Lex.getKind()) {
1214 return TokError("expected localdynamic, initialexec or localexec");
1215 case lltok::kw_localdynamic:
1216 TLM = GlobalVariable::LocalDynamicTLSModel;
1218 case lltok::kw_initialexec:
1219 TLM = GlobalVariable::InitialExecTLSModel;
1221 case lltok::kw_localexec:
1222 TLM = GlobalVariable::LocalExecTLSModel;
1230 /// ParseOptionalThreadLocal
1232 /// := 'thread_local'
1233 /// := 'thread_local' '(' tlsmodel ')'
1234 bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1235 TLM = GlobalVariable::NotThreadLocal;
1236 if (!EatIfPresent(lltok::kw_thread_local))
1239 TLM = GlobalVariable::GeneralDynamicTLSModel;
1240 if (Lex.getKind() == lltok::lparen) {
1242 return ParseTLSModel(TLM) ||
1243 ParseToken(lltok::rparen, "expected ')' after thread local model");
1248 /// ParseOptionalAddrSpace
1250 /// := 'addrspace' '(' uint32 ')'
1251 bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1253 if (!EatIfPresent(lltok::kw_addrspace))
1255 return ParseToken(lltok::lparen, "expected '(' in address space") ||
1256 ParseUInt32(AddrSpace) ||
1257 ParseToken(lltok::rparen, "expected ')' in address space");
1260 /// ParseStringAttribute
1261 /// := StringConstant
1262 /// := StringConstant '=' StringConstant
1263 bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1264 std::string Attr = Lex.getStrVal();
1267 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1269 B.addAttribute(Attr, Val);
1273 /// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1274 bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1275 bool HaveError = false;
1280 lltok::Kind Token = Lex.getKind();
1282 default: // End of attributes.
1284 case lltok::StringConstant: {
1285 if (ParseStringAttribute(B))
1289 case lltok::kw_align: {
1291 if (ParseOptionalAlignment(Alignment))
1293 B.addAlignmentAttr(Alignment);
1296 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1297 case lltok::kw_dereferenceable: {
1299 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
1301 B.addDereferenceableAttr(Bytes);
1304 case lltok::kw_dereferenceable_or_null: {
1306 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1308 B.addDereferenceableOrNullAttr(Bytes);
1311 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
1312 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1313 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1314 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1315 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
1316 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
1317 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1318 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1319 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
1320 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1321 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1322 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
1324 case lltok::kw_alignstack:
1325 case lltok::kw_alwaysinline:
1326 case lltok::kw_argmemonly:
1327 case lltok::kw_builtin:
1328 case lltok::kw_inlinehint:
1329 case lltok::kw_jumptable:
1330 case lltok::kw_minsize:
1331 case lltok::kw_naked:
1332 case lltok::kw_nobuiltin:
1333 case lltok::kw_noduplicate:
1334 case lltok::kw_noimplicitfloat:
1335 case lltok::kw_noinline:
1336 case lltok::kw_nonlazybind:
1337 case lltok::kw_noredzone:
1338 case lltok::kw_noreturn:
1339 case lltok::kw_nounwind:
1340 case lltok::kw_optnone:
1341 case lltok::kw_optsize:
1342 case lltok::kw_returns_twice:
1343 case lltok::kw_sanitize_address:
1344 case lltok::kw_sanitize_memory:
1345 case lltok::kw_sanitize_thread:
1347 case lltok::kw_sspreq:
1348 case lltok::kw_sspstrong:
1349 case lltok::kw_safestack:
1350 case lltok::kw_uwtable:
1351 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1359 /// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1360 bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1361 bool HaveError = false;
1366 lltok::Kind Token = Lex.getKind();
1368 default: // End of attributes.
1370 case lltok::StringConstant: {
1371 if (ParseStringAttribute(B))
1375 case lltok::kw_dereferenceable: {
1377 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
1379 B.addDereferenceableAttr(Bytes);
1382 case lltok::kw_dereferenceable_or_null: {
1384 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1386 B.addDereferenceableOrNullAttr(Bytes);
1389 case lltok::kw_align: {
1391 if (ParseOptionalAlignment(Alignment))
1393 B.addAlignmentAttr(Alignment);
1396 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1397 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1398 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
1399 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1400 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
1403 case lltok::kw_byval:
1404 case lltok::kw_inalloca:
1405 case lltok::kw_nest:
1406 case lltok::kw_nocapture:
1407 case lltok::kw_returned:
1408 case lltok::kw_sret:
1409 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
1412 case lltok::kw_alignstack:
1413 case lltok::kw_alwaysinline:
1414 case lltok::kw_argmemonly:
1415 case lltok::kw_builtin:
1416 case lltok::kw_cold:
1417 case lltok::kw_inlinehint:
1418 case lltok::kw_jumptable:
1419 case lltok::kw_minsize:
1420 case lltok::kw_naked:
1421 case lltok::kw_nobuiltin:
1422 case lltok::kw_noduplicate:
1423 case lltok::kw_noimplicitfloat:
1424 case lltok::kw_noinline:
1425 case lltok::kw_nonlazybind:
1426 case lltok::kw_noredzone:
1427 case lltok::kw_noreturn:
1428 case lltok::kw_nounwind:
1429 case lltok::kw_optnone:
1430 case lltok::kw_optsize:
1431 case lltok::kw_returns_twice:
1432 case lltok::kw_sanitize_address:
1433 case lltok::kw_sanitize_memory:
1434 case lltok::kw_sanitize_thread:
1436 case lltok::kw_sspreq:
1437 case lltok::kw_sspstrong:
1438 case lltok::kw_safestack:
1439 case lltok::kw_uwtable:
1440 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1443 case lltok::kw_readnone:
1444 case lltok::kw_readonly:
1445 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
1452 /// ParseOptionalLinkage
1459 /// ::= 'linkonce_odr'
1460 /// ::= 'available_externally'
1463 /// ::= 'extern_weak'
1465 bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1467 switch (Lex.getKind()) {
1468 default: Res=GlobalValue::ExternalLinkage; return false;
1469 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1470 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1471 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1472 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1473 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1474 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
1475 case lltok::kw_available_externally:
1476 Res = GlobalValue::AvailableExternallyLinkage;
1478 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1479 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1480 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1481 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
1488 /// ParseOptionalVisibility
1494 bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1495 switch (Lex.getKind()) {
1496 default: Res = GlobalValue::DefaultVisibility; return false;
1497 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1498 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1499 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1505 /// ParseOptionalDLLStorageClass
1510 bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1511 switch (Lex.getKind()) {
1512 default: Res = GlobalValue::DefaultStorageClass; return false;
1513 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1514 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1520 /// ParseOptionalCallingConv
1524 /// ::= 'intel_ocl_bicc'
1526 /// ::= 'x86_stdcallcc'
1527 /// ::= 'x86_fastcallcc'
1528 /// ::= 'x86_thiscallcc'
1529 /// ::= 'x86_vectorcallcc'
1530 /// ::= 'arm_apcscc'
1531 /// ::= 'arm_aapcscc'
1532 /// ::= 'arm_aapcs_vfpcc'
1533 /// ::= 'msp430_intrcc'
1534 /// ::= 'ptx_kernel'
1535 /// ::= 'ptx_device'
1537 /// ::= 'spir_kernel'
1538 /// ::= 'x86_64_sysvcc'
1539 /// ::= 'x86_64_win64cc'
1540 /// ::= 'webkit_jscc'
1542 /// ::= 'preserve_mostcc'
1543 /// ::= 'preserve_allcc'
1547 /// ::= 'cxx_fast_tlscc'
1550 bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
1551 switch (Lex.getKind()) {
1552 default: CC = CallingConv::C; return false;
1553 case lltok::kw_ccc: CC = CallingConv::C; break;
1554 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1555 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1556 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1557 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
1558 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
1559 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
1560 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1561 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1562 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
1563 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
1564 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1565 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
1566 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1567 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
1568 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
1569 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1570 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
1571 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
1572 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
1573 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1574 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
1575 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
1576 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1577 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
1578 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
1579 case lltok::kw_cc: {
1581 return ParseUInt32(CC);
1589 /// ParseMetadataAttachment
1591 bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1592 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1594 std::string Name = Lex.getStrVal();
1595 Kind = M->getMDKindID(Name);
1598 return ParseMDNode(MD);
1601 /// ParseInstructionMetadata
1602 /// ::= !dbg !42 (',' !dbg !57)*
1603 bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
1605 if (Lex.getKind() != lltok::MetadataVar)
1606 return TokError("expected metadata after comma");
1610 if (ParseMetadataAttachment(MDK, N))
1613 Inst.setMetadata(MDK, N);
1614 if (MDK == LLVMContext::MD_tbaa)
1615 InstsWithTBAATag.push_back(&Inst);
1617 // If this is the end of the list, we're done.
1618 } while (EatIfPresent(lltok::comma));
1622 /// ParseOptionalFunctionMetadata
1624 bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1625 while (Lex.getKind() == lltok::MetadataVar) {
1628 if (ParseMetadataAttachment(MDK, N))
1631 F.setMetadata(MDK, N);
1636 /// ParseOptionalAlignment
1639 bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1641 if (!EatIfPresent(lltok::kw_align))
1643 LocTy AlignLoc = Lex.getLoc();
1644 if (ParseUInt32(Alignment)) return true;
1645 if (!isPowerOf2_32(Alignment))
1646 return Error(AlignLoc, "alignment is not a power of two");
1647 if (Alignment > Value::MaximumAlignment)
1648 return Error(AlignLoc, "huge alignments are not supported yet");
1652 /// ParseOptionalDerefAttrBytes
1654 /// ::= AttrKind '(' 4 ')'
1656 /// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1657 bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1659 assert((AttrKind == lltok::kw_dereferenceable ||
1660 AttrKind == lltok::kw_dereferenceable_or_null) &&
1664 if (!EatIfPresent(AttrKind))
1666 LocTy ParenLoc = Lex.getLoc();
1667 if (!EatIfPresent(lltok::lparen))
1668 return Error(ParenLoc, "expected '('");
1669 LocTy DerefLoc = Lex.getLoc();
1670 if (ParseUInt64(Bytes)) return true;
1671 ParenLoc = Lex.getLoc();
1672 if (!EatIfPresent(lltok::rparen))
1673 return Error(ParenLoc, "expected ')'");
1675 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1679 /// ParseOptionalCommaAlign
1683 /// This returns with AteExtraComma set to true if it ate an excess comma at the
1685 bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1686 bool &AteExtraComma) {
1687 AteExtraComma = false;
1688 while (EatIfPresent(lltok::comma)) {
1689 // Metadata at the end is an early exit.
1690 if (Lex.getKind() == lltok::MetadataVar) {
1691 AteExtraComma = true;
1695 if (Lex.getKind() != lltok::kw_align)
1696 return Error(Lex.getLoc(), "expected metadata or 'align'");
1698 if (ParseOptionalAlignment(Alignment)) return true;
1704 /// ParseScopeAndOrdering
1705 /// if isAtomic: ::= 'singlethread'? AtomicOrdering
1708 /// This sets Scope and Ordering to the parsed values.
1709 bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1710 AtomicOrdering &Ordering) {
1714 Scope = CrossThread;
1715 if (EatIfPresent(lltok::kw_singlethread))
1716 Scope = SingleThread;
1718 return ParseOrdering(Ordering);
1722 /// ::= AtomicOrdering
1724 /// This sets Ordering to the parsed value.
1725 bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
1726 switch (Lex.getKind()) {
1727 default: return TokError("Expected ordering on atomic instruction");
1728 case lltok::kw_unordered: Ordering = Unordered; break;
1729 case lltok::kw_monotonic: Ordering = Monotonic; break;
1730 case lltok::kw_acquire: Ordering = Acquire; break;
1731 case lltok::kw_release: Ordering = Release; break;
1732 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1733 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1739 /// ParseOptionalStackAlignment
1741 /// ::= 'alignstack' '(' 4 ')'
1742 bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1744 if (!EatIfPresent(lltok::kw_alignstack))
1746 LocTy ParenLoc = Lex.getLoc();
1747 if (!EatIfPresent(lltok::lparen))
1748 return Error(ParenLoc, "expected '('");
1749 LocTy AlignLoc = Lex.getLoc();
1750 if (ParseUInt32(Alignment)) return true;
1751 ParenLoc = Lex.getLoc();
1752 if (!EatIfPresent(lltok::rparen))
1753 return Error(ParenLoc, "expected ')'");
1754 if (!isPowerOf2_32(Alignment))
1755 return Error(AlignLoc, "stack alignment is not a power of two");
1759 /// ParseIndexList - This parses the index list for an insert/extractvalue
1760 /// instruction. This sets AteExtraComma in the case where we eat an extra
1761 /// comma at the end of the line and find that it is followed by metadata.
1762 /// Clients that don't allow metadata can call the version of this function that
1763 /// only takes one argument.
1766 /// ::= (',' uint32)+
1768 bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1769 bool &AteExtraComma) {
1770 AteExtraComma = false;
1772 if (Lex.getKind() != lltok::comma)
1773 return TokError("expected ',' as start of index list");
1775 while (EatIfPresent(lltok::comma)) {
1776 if (Lex.getKind() == lltok::MetadataVar) {
1777 if (Indices.empty()) return TokError("expected index");
1778 AteExtraComma = true;
1782 if (ParseUInt32(Idx)) return true;
1783 Indices.push_back(Idx);
1789 //===----------------------------------------------------------------------===//
1791 //===----------------------------------------------------------------------===//
1793 /// ParseType - Parse a type.
1794 bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
1795 SMLoc TypeLoc = Lex.getLoc();
1796 switch (Lex.getKind()) {
1798 return TokError(Msg);
1800 // Type ::= 'float' | 'void' (etc)
1801 Result = Lex.getTyVal();
1805 // Type ::= StructType
1806 if (ParseAnonStructType(Result, false))
1809 case lltok::lsquare:
1810 // Type ::= '[' ... ']'
1811 Lex.Lex(); // eat the lsquare.
1812 if (ParseArrayVectorType(Result, false))
1815 case lltok::less: // Either vector or packed struct.
1816 // Type ::= '<' ... '>'
1818 if (Lex.getKind() == lltok::lbrace) {
1819 if (ParseAnonStructType(Result, true) ||
1820 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
1822 } else if (ParseArrayVectorType(Result, true))
1825 case lltok::LocalVar: {
1827 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
1829 // If the type hasn't been defined yet, create a forward definition and
1830 // remember where that forward def'n was seen (in case it never is defined).
1832 Entry.first = StructType::create(Context, Lex.getStrVal());
1833 Entry.second = Lex.getLoc();
1835 Result = Entry.first;
1840 case lltok::LocalVarID: {
1842 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
1844 // If the type hasn't been defined yet, create a forward definition and
1845 // remember where that forward def'n was seen (in case it never is defined).
1847 Entry.first = StructType::create(Context);
1848 Entry.second = Lex.getLoc();
1850 Result = Entry.first;
1856 // Parse the type suffixes.
1858 switch (Lex.getKind()) {
1861 if (!AllowVoid && Result->isVoidTy())
1862 return Error(TypeLoc, "void type only allowed for function results");
1865 // Type ::= Type '*'
1867 if (Result->isLabelTy())
1868 return TokError("basic block pointers are invalid");
1869 if (Result->isVoidTy())
1870 return TokError("pointers to void are invalid - use i8* instead");
1871 if (!PointerType::isValidElementType(Result))
1872 return TokError("pointer to this type is invalid");
1873 Result = PointerType::getUnqual(Result);
1877 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
1878 case lltok::kw_addrspace: {
1879 if (Result->isLabelTy())
1880 return TokError("basic block pointers are invalid");
1881 if (Result->isVoidTy())
1882 return TokError("pointers to void are invalid; use i8* instead");
1883 if (!PointerType::isValidElementType(Result))
1884 return TokError("pointer to this type is invalid");
1886 if (ParseOptionalAddrSpace(AddrSpace) ||
1887 ParseToken(lltok::star, "expected '*' in address space"))
1890 Result = PointerType::get(Result, AddrSpace);
1894 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1896 if (ParseFunctionType(Result))
1903 /// ParseParameterList
1905 /// ::= '(' Arg (',' Arg)* ')'
1907 /// ::= Type OptionalAttributes Value OptionalAttributes
1908 bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1909 PerFunctionState &PFS, bool IsMustTailCall,
1910 bool InVarArgsFunc) {
1911 if (ParseToken(lltok::lparen, "expected '(' in call"))
1914 unsigned AttrIndex = 1;
1915 while (Lex.getKind() != lltok::rparen) {
1916 // If this isn't the first argument, we need a comma.
1917 if (!ArgList.empty() &&
1918 ParseToken(lltok::comma, "expected ',' in argument list"))
1921 // Parse an ellipsis if this is a musttail call in a variadic function.
1922 if (Lex.getKind() == lltok::dotdotdot) {
1923 const char *Msg = "unexpected ellipsis in argument list for ";
1924 if (!IsMustTailCall)
1925 return TokError(Twine(Msg) + "non-musttail call");
1927 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1928 Lex.Lex(); // Lex the '...', it is purely for readability.
1929 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1932 // Parse the argument.
1934 Type *ArgTy = nullptr;
1935 AttrBuilder ArgAttrs;
1937 if (ParseType(ArgTy, ArgLoc))
1940 if (ArgTy->isMetadataTy()) {
1941 if (ParseMetadataAsValue(V, PFS))
1944 // Otherwise, handle normal operands.
1945 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1948 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1953 if (IsMustTailCall && InVarArgsFunc)
1954 return TokError("expected '...' at end of argument list for musttail call "
1955 "in varargs function");
1957 Lex.Lex(); // Lex the ')'.
1961 /// ParseOptionalOperandBundles
1963 /// ::= '[' OperandBundle [, OperandBundle ]* ']'
1966 /// ::= bundle-tag '(' ')'
1967 /// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
1969 /// bundle-tag ::= String Constant
1970 bool LLParser::ParseOptionalOperandBundles(
1971 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
1972 LocTy BeginLoc = Lex.getLoc();
1973 if (!EatIfPresent(lltok::lsquare))
1976 while (Lex.getKind() != lltok::rsquare) {
1977 // If this isn't the first operand bundle, we need a comma.
1978 if (!BundleList.empty() &&
1979 ParseToken(lltok::comma, "expected ',' in input list"))
1983 if (ParseStringConstant(Tag))
1986 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
1989 std::vector<Value *> Inputs;
1990 while (Lex.getKind() != lltok::rparen) {
1991 // If this isn't the first input, we need a comma.
1992 if (!Inputs.empty() &&
1993 ParseToken(lltok::comma, "expected ',' in input list"))
1997 Value *Input = nullptr;
1998 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2000 Inputs.push_back(Input);
2003 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2005 Lex.Lex(); // Lex the ')'.
2008 if (BundleList.empty())
2009 return Error(BeginLoc, "operand bundle set must not be empty");
2011 Lex.Lex(); // Lex the ']'.
2015 /// ParseArgumentList - Parse the argument list for a function type or function
2017 /// ::= '(' ArgTypeListI ')'
2021 /// ::= ArgTypeList ',' '...'
2022 /// ::= ArgType (',' ArgType)*
2024 bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2027 assert(Lex.getKind() == lltok::lparen);
2028 Lex.Lex(); // eat the (.
2030 if (Lex.getKind() == lltok::rparen) {
2032 } else if (Lex.getKind() == lltok::dotdotdot) {
2036 LocTy TypeLoc = Lex.getLoc();
2037 Type *ArgTy = nullptr;
2041 if (ParseType(ArgTy) ||
2042 ParseOptionalParamAttrs(Attrs)) return true;
2044 if (ArgTy->isVoidTy())
2045 return Error(TypeLoc, "argument can not have void type");
2047 if (Lex.getKind() == lltok::LocalVar) {
2048 Name = Lex.getStrVal();
2052 if (!FunctionType::isValidArgumentType(ArgTy))
2053 return Error(TypeLoc, "invalid type for function argument");
2055 unsigned AttrIndex = 1;
2056 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
2057 AttrIndex++, Attrs),
2060 while (EatIfPresent(lltok::comma)) {
2061 // Handle ... at end of arg list.
2062 if (EatIfPresent(lltok::dotdotdot)) {
2067 // Otherwise must be an argument type.
2068 TypeLoc = Lex.getLoc();
2069 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
2071 if (ArgTy->isVoidTy())
2072 return Error(TypeLoc, "argument can not have void type");
2074 if (Lex.getKind() == lltok::LocalVar) {
2075 Name = Lex.getStrVal();
2081 if (!ArgTy->isFirstClassType())
2082 return Error(TypeLoc, "invalid type for function argument");
2084 ArgList.emplace_back(
2086 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2091 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
2094 /// ParseFunctionType
2095 /// ::= Type ArgumentList OptionalAttrs
2096 bool LLParser::ParseFunctionType(Type *&Result) {
2097 assert(Lex.getKind() == lltok::lparen);
2099 if (!FunctionType::isValidReturnType(Result))
2100 return TokError("invalid function return type");
2102 SmallVector<ArgInfo, 8> ArgList;
2104 if (ParseArgumentList(ArgList, isVarArg))
2107 // Reject names on the arguments lists.
2108 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2109 if (!ArgList[i].Name.empty())
2110 return Error(ArgList[i].Loc, "argument name invalid in function type");
2111 if (ArgList[i].Attrs.hasAttributes(i + 1))
2112 return Error(ArgList[i].Loc,
2113 "argument attributes invalid in function type");
2116 SmallVector<Type*, 16> ArgListTy;
2117 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
2118 ArgListTy.push_back(ArgList[i].Ty);
2120 Result = FunctionType::get(Result, ArgListTy, isVarArg);
2124 /// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2126 bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2127 SmallVector<Type*, 8> Elts;
2128 if (ParseStructBody(Elts)) return true;
2130 Result = StructType::get(Context, Elts, Packed);
2134 /// ParseStructDefinition - Parse a struct in a 'type' definition.
2135 bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2136 std::pair<Type*, LocTy> &Entry,
2138 // If the type was already defined, diagnose the redefinition.
2139 if (Entry.first && !Entry.second.isValid())
2140 return Error(TypeLoc, "redefinition of type");
2142 // If we have opaque, just return without filling in the definition for the
2143 // struct. This counts as a definition as far as the .ll file goes.
2144 if (EatIfPresent(lltok::kw_opaque)) {
2145 // This type is being defined, so clear the location to indicate this.
2146 Entry.second = SMLoc();
2148 // If this type number has never been uttered, create it.
2150 Entry.first = StructType::create(Context, Name);
2151 ResultTy = Entry.first;
2155 // If the type starts with '<', then it is either a packed struct or a vector.
2156 bool isPacked = EatIfPresent(lltok::less);
2158 // If we don't have a struct, then we have a random type alias, which we
2159 // accept for compatibility with old files. These types are not allowed to be
2160 // forward referenced and not allowed to be recursive.
2161 if (Lex.getKind() != lltok::lbrace) {
2163 return Error(TypeLoc, "forward references to non-struct type");
2167 return ParseArrayVectorType(ResultTy, true);
2168 return ParseType(ResultTy);
2171 // This type is being defined, so clear the location to indicate this.
2172 Entry.second = SMLoc();
2174 // If this type number has never been uttered, create it.
2176 Entry.first = StructType::create(Context, Name);
2178 StructType *STy = cast<StructType>(Entry.first);
2180 SmallVector<Type*, 8> Body;
2181 if (ParseStructBody(Body) ||
2182 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2185 STy->setBody(Body, isPacked);
2191 /// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
2194 /// ::= '{' Type (',' Type)* '}'
2195 /// ::= '<' '{' '}' '>'
2196 /// ::= '<' '{' Type (',' Type)* '}' '>'
2197 bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
2198 assert(Lex.getKind() == lltok::lbrace);
2199 Lex.Lex(); // Consume the '{'
2201 // Handle the empty struct.
2202 if (EatIfPresent(lltok::rbrace))
2205 LocTy EltTyLoc = Lex.getLoc();
2207 if (ParseType(Ty)) return true;
2210 if (!StructType::isValidElementType(Ty))
2211 return Error(EltTyLoc, "invalid element type for struct");
2213 while (EatIfPresent(lltok::comma)) {
2214 EltTyLoc = Lex.getLoc();
2215 if (ParseType(Ty)) return true;
2217 if (!StructType::isValidElementType(Ty))
2218 return Error(EltTyLoc, "invalid element type for struct");
2223 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
2226 /// ParseArrayVectorType - Parse an array or vector type, assuming the first
2227 /// token has already been consumed.
2229 /// ::= '[' APSINTVAL 'x' Types ']'
2230 /// ::= '<' APSINTVAL 'x' Types '>'
2231 bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
2232 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2233 Lex.getAPSIntVal().getBitWidth() > 64)
2234 return TokError("expected number in address space");
2236 LocTy SizeLoc = Lex.getLoc();
2237 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
2240 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2243 LocTy TypeLoc = Lex.getLoc();
2244 Type *EltTy = nullptr;
2245 if (ParseType(EltTy)) return true;
2247 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2248 "expected end of sequential type"))
2253 return Error(SizeLoc, "zero element vector is illegal");
2254 if ((unsigned)Size != Size)
2255 return Error(SizeLoc, "size too large for vector");
2256 if (!VectorType::isValidElementType(EltTy))
2257 return Error(TypeLoc, "invalid vector element type");
2258 Result = VectorType::get(EltTy, unsigned(Size));
2260 if (!ArrayType::isValidElementType(EltTy))
2261 return Error(TypeLoc, "invalid array element type");
2262 Result = ArrayType::get(EltTy, Size);
2267 //===----------------------------------------------------------------------===//
2268 // Function Semantic Analysis.
2269 //===----------------------------------------------------------------------===//
2271 LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2273 : P(p), F(f), FunctionNumber(functionNumber) {
2275 // Insert unnamed arguments into the NumberedVals list.
2276 for (Argument &A : F.args())
2278 NumberedVals.push_back(&A);
2281 LLParser::PerFunctionState::~PerFunctionState() {
2282 // If there were any forward referenced non-basicblock values, delete them.
2284 for (const auto &P : ForwardRefVals) {
2285 if (isa<BasicBlock>(P.second.first))
2287 P.second.first->replaceAllUsesWith(
2288 UndefValue::get(P.second.first->getType()));
2289 delete P.second.first;
2292 for (const auto &P : ForwardRefValIDs) {
2293 if (isa<BasicBlock>(P.second.first))
2295 P.second.first->replaceAllUsesWith(
2296 UndefValue::get(P.second.first->getType()));
2297 delete P.second.first;
2301 bool LLParser::PerFunctionState::FinishFunction() {
2302 if (!ForwardRefVals.empty())
2303 return P.Error(ForwardRefVals.begin()->second.second,
2304 "use of undefined value '%" + ForwardRefVals.begin()->first +
2306 if (!ForwardRefValIDs.empty())
2307 return P.Error(ForwardRefValIDs.begin()->second.second,
2308 "use of undefined value '%" +
2309 Twine(ForwardRefValIDs.begin()->first) + "'");
2314 /// GetVal - Get a value with the specified name or ID, creating a
2315 /// forward reference record if needed. This can return null if the value
2316 /// exists but does not have the right type.
2317 Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
2318 LocTy Loc, OperatorConstraint OC) {
2319 // Look this name up in the normal function symbol table.
2320 Value *Val = F.getValueSymbolTable().lookup(Name);
2322 // If this is a forward reference for the value, see if we already created a
2323 // forward ref record.
2325 auto I = ForwardRefVals.find(Name);
2326 if (I != ForwardRefVals.end())
2327 Val = I->second.first;
2330 // If we have the value in the symbol table or fwd-ref table, return it.
2332 // Check operator constraints.
2338 if (!isa<CatchPadInst>(Val)) {
2339 P.Error(Loc, "'%" + Name + "' is not a catchpad");
2344 if (!isa<CleanupPadInst>(Val)) {
2345 P.Error(Loc, "'%" + Name + "' is not a cleanuppad");
2350 if (Val->getType() == Ty) return Val;
2351 if (Ty->isLabelTy())
2352 P.Error(Loc, "'%" + Name + "' is not a basic block");
2354 P.Error(Loc, "'%" + Name + "' defined with type '" +
2355 getTypeString(Val->getType()) + "'");
2359 // Don't make placeholders with invalid type.
2360 if (!Ty->isFirstClassType()) {
2361 P.Error(Loc, "invalid use of a non-first-class type");
2365 // Otherwise, create a new forward reference for this value and remember it.
2367 if (Ty->isLabelTy()) {
2369 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
2371 FwdVal = new Argument(Ty, Name);
2375 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {},
2379 FwdVal = CleanupPadInst::Create(F.getContext(), {}, Name);
2382 llvm_unreachable("unexpected constraint");
2386 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2390 Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc,
2391 OperatorConstraint OC) {
2392 // Look this name up in the normal function symbol table.
2393 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
2395 // If this is a forward reference for the value, see if we already created a
2396 // forward ref record.
2398 auto I = ForwardRefValIDs.find(ID);
2399 if (I != ForwardRefValIDs.end())
2400 Val = I->second.first;
2403 // If we have the value in the symbol table or fwd-ref table, return it.
2405 // Check operator constraint.
2411 if (!isa<CatchPadInst>(Val)) {
2412 P.Error(Loc, "'%" + Twine(ID) + "' is not a catchpad");
2417 if (!isa<CleanupPadInst>(Val)) {
2418 P.Error(Loc, "'%" + Twine(ID) + "' is not a cleanuppad");
2423 if (Val->getType() == Ty) return Val;
2424 if (Ty->isLabelTy())
2425 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
2427 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
2428 getTypeString(Val->getType()) + "'");
2432 if (!Ty->isFirstClassType()) {
2433 P.Error(Loc, "invalid use of a non-first-class type");
2437 // Otherwise, create a new forward reference for this value and remember it.
2439 if (Ty->isLabelTy()) {
2441 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
2443 FwdVal = new Argument(Ty);
2447 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {});
2450 FwdVal = CleanupPadInst::Create(F.getContext(), {});
2453 llvm_unreachable("unexpected constraint");
2457 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2461 /// SetInstName - After an instruction is parsed and inserted into its
2462 /// basic block, this installs its name.
2463 bool LLParser::PerFunctionState::SetInstName(int NameID,
2464 const std::string &NameStr,
2465 LocTy NameLoc, Instruction *Inst) {
2466 // If this instruction has void type, it cannot have a name or ID specified.
2467 if (Inst->getType()->isVoidTy()) {
2468 if (NameID != -1 || !NameStr.empty())
2469 return P.Error(NameLoc, "instructions returning void cannot have a name");
2473 // If this was a numbered instruction, verify that the instruction is the
2474 // expected value and resolve any forward references.
2475 if (NameStr.empty()) {
2476 // If neither a name nor an ID was specified, just use the next ID.
2478 NameID = NumberedVals.size();
2480 if (unsigned(NameID) != NumberedVals.size())
2481 return P.Error(NameLoc, "instruction expected to be numbered '%" +
2482 Twine(NumberedVals.size()) + "'");
2484 auto FI = ForwardRefValIDs.find(NameID);
2485 if (FI != ForwardRefValIDs.end()) {
2486 Value *Sentinel = FI->second.first;
2487 if (Sentinel->getType() != Inst->getType())
2488 return P.Error(NameLoc, "instruction forward referenced with type '" +
2489 getTypeString(FI->second.first->getType()) + "'");
2490 // Check operator constraints. We only put cleanuppads or catchpads in
2491 // the forward value map if the value is constrained to match.
2492 if (isa<CatchPadInst>(Sentinel)) {
2493 if (!isa<CatchPadInst>(Inst))
2494 return P.Error(FI->second.second,
2495 "'%" + Twine(NameID) + "' is not a catchpad");
2496 } else if (isa<CleanupPadInst>(Sentinel)) {
2497 if (!isa<CleanupPadInst>(Inst))
2498 return P.Error(FI->second.second,
2499 "'%" + Twine(NameID) + "' is not a cleanuppad");
2502 Sentinel->replaceAllUsesWith(Inst);
2504 ForwardRefValIDs.erase(FI);
2507 NumberedVals.push_back(Inst);
2511 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2512 auto FI = ForwardRefVals.find(NameStr);
2513 if (FI != ForwardRefVals.end()) {
2514 Value *Sentinel = FI->second.first;
2515 if (Sentinel->getType() != Inst->getType())
2516 return P.Error(NameLoc, "instruction forward referenced with type '" +
2517 getTypeString(FI->second.first->getType()) + "'");
2518 // Check operator constraints. We only put cleanuppads or catchpads in
2519 // the forward value map if the value is constrained to match.
2520 if (isa<CatchPadInst>(Sentinel)) {
2521 if (!isa<CatchPadInst>(Inst))
2522 return P.Error(FI->second.second,
2523 "'%" + NameStr + "' is not a catchpad");
2524 } else if (isa<CleanupPadInst>(Sentinel)) {
2525 if (!isa<CleanupPadInst>(Inst))
2526 return P.Error(FI->second.second,
2527 "'%" + NameStr + "' is not a cleanuppad");
2530 Sentinel->replaceAllUsesWith(Inst);
2532 ForwardRefVals.erase(FI);
2535 // Set the name on the instruction.
2536 Inst->setName(NameStr);
2538 if (Inst->getName() != NameStr)
2539 return P.Error(NameLoc, "multiple definition of local value named '" +
2544 /// GetBB - Get a basic block with the specified name or ID, creating a
2545 /// forward reference record if needed.
2546 BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2548 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2549 Type::getLabelTy(F.getContext()), Loc));
2552 BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
2553 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2554 Type::getLabelTy(F.getContext()), Loc));
2557 /// DefineBB - Define the specified basic block, which is either named or
2558 /// unnamed. If there is an error, this returns null otherwise it returns
2559 /// the block being defined.
2560 BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2564 BB = GetBB(NumberedVals.size(), Loc);
2566 BB = GetBB(Name, Loc);
2567 if (!BB) return nullptr; // Already diagnosed error.
2569 // Move the block to the end of the function. Forward ref'd blocks are
2570 // inserted wherever they happen to be referenced.
2571 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
2573 // Remove the block from forward ref sets.
2575 ForwardRefValIDs.erase(NumberedVals.size());
2576 NumberedVals.push_back(BB);
2578 // BB forward references are already in the function symbol table.
2579 ForwardRefVals.erase(Name);
2585 //===----------------------------------------------------------------------===//
2587 //===----------------------------------------------------------------------===//
2589 /// ParseValID - Parse an abstract value that doesn't necessarily have a
2590 /// type implied. For example, if we parse "4" we don't know what integer type
2591 /// it has. The value will later be combined with its type and checked for
2592 /// sanity. PFS is used to convert function-local operands of metadata (since
2593 /// metadata operands are not just parsed here but also converted to values).
2594 /// PFS can be null when we are not parsing metadata values inside a function.
2595 bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
2596 ID.Loc = Lex.getLoc();
2597 switch (Lex.getKind()) {
2598 default: return TokError("expected value token");
2599 case lltok::GlobalID: // @42
2600 ID.UIntVal = Lex.getUIntVal();
2601 ID.Kind = ValID::t_GlobalID;
2603 case lltok::GlobalVar: // @foo
2604 ID.StrVal = Lex.getStrVal();
2605 ID.Kind = ValID::t_GlobalName;
2607 case lltok::LocalVarID: // %42
2608 ID.UIntVal = Lex.getUIntVal();
2609 ID.Kind = ValID::t_LocalID;
2611 case lltok::LocalVar: // %foo
2612 ID.StrVal = Lex.getStrVal();
2613 ID.Kind = ValID::t_LocalName;
2616 ID.APSIntVal = Lex.getAPSIntVal();
2617 ID.Kind = ValID::t_APSInt;
2619 case lltok::APFloat:
2620 ID.APFloatVal = Lex.getAPFloatVal();
2621 ID.Kind = ValID::t_APFloat;
2623 case lltok::kw_true:
2624 ID.ConstantVal = ConstantInt::getTrue(Context);
2625 ID.Kind = ValID::t_Constant;
2627 case lltok::kw_false:
2628 ID.ConstantVal = ConstantInt::getFalse(Context);
2629 ID.Kind = ValID::t_Constant;
2631 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2632 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2633 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
2634 case lltok::kw_none: ID.Kind = ValID::t_None; break;
2636 case lltok::lbrace: {
2637 // ValID ::= '{' ConstVector '}'
2639 SmallVector<Constant*, 16> Elts;
2640 if (ParseGlobalValueVector(Elts) ||
2641 ParseToken(lltok::rbrace, "expected end of struct constant"))
2644 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2645 ID.UIntVal = Elts.size();
2646 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2647 Elts.size() * sizeof(Elts[0]));
2648 ID.Kind = ValID::t_ConstantStruct;
2652 // ValID ::= '<' ConstVector '>' --> Vector.
2653 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2655 bool isPackedStruct = EatIfPresent(lltok::lbrace);
2657 SmallVector<Constant*, 16> Elts;
2658 LocTy FirstEltLoc = Lex.getLoc();
2659 if (ParseGlobalValueVector(Elts) ||
2661 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2662 ParseToken(lltok::greater, "expected end of constant"))
2665 if (isPackedStruct) {
2666 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2667 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2668 Elts.size() * sizeof(Elts[0]));
2669 ID.UIntVal = Elts.size();
2670 ID.Kind = ValID::t_PackedConstantStruct;
2675 return Error(ID.Loc, "constant vector must not be empty");
2677 if (!Elts[0]->getType()->isIntegerTy() &&
2678 !Elts[0]->getType()->isFloatingPointTy() &&
2679 !Elts[0]->getType()->isPointerTy())
2680 return Error(FirstEltLoc,
2681 "vector elements must have integer, pointer or floating point type");
2683 // Verify that all the vector elements have the same type.
2684 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2685 if (Elts[i]->getType() != Elts[0]->getType())
2686 return Error(FirstEltLoc,
2687 "vector element #" + Twine(i) +
2688 " is not of type '" + getTypeString(Elts[0]->getType()));
2690 ID.ConstantVal = ConstantVector::get(Elts);
2691 ID.Kind = ValID::t_Constant;
2694 case lltok::lsquare: { // Array Constant
2696 SmallVector<Constant*, 16> Elts;
2697 LocTy FirstEltLoc = Lex.getLoc();
2698 if (ParseGlobalValueVector(Elts) ||
2699 ParseToken(lltok::rsquare, "expected end of array constant"))
2702 // Handle empty element.
2704 // Use undef instead of an array because it's inconvenient to determine
2705 // the element type at this point, there being no elements to examine.
2706 ID.Kind = ValID::t_EmptyArray;
2710 if (!Elts[0]->getType()->isFirstClassType())
2711 return Error(FirstEltLoc, "invalid array element type: " +
2712 getTypeString(Elts[0]->getType()));
2714 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
2716 // Verify all elements are correct type!
2717 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
2718 if (Elts[i]->getType() != Elts[0]->getType())
2719 return Error(FirstEltLoc,
2720 "array element #" + Twine(i) +
2721 " is not of type '" + getTypeString(Elts[0]->getType()));
2724 ID.ConstantVal = ConstantArray::get(ATy, Elts);
2725 ID.Kind = ValID::t_Constant;
2728 case lltok::kw_c: // c "foo"
2730 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2732 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2733 ID.Kind = ValID::t_Constant;
2736 case lltok::kw_asm: {
2737 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2739 bool HasSideEffect, AlignStack, AsmDialect;
2741 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
2742 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
2743 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
2744 ParseStringConstant(ID.StrVal) ||
2745 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
2746 ParseToken(lltok::StringConstant, "expected constraint string"))
2748 ID.StrVal2 = Lex.getStrVal();
2749 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
2750 (unsigned(AsmDialect)<<2);
2751 ID.Kind = ValID::t_InlineAsm;
2755 case lltok::kw_blockaddress: {
2756 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2761 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2763 ParseToken(lltok::comma, "expected comma in block address expression")||
2764 ParseValID(Label) ||
2765 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2768 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2769 return Error(Fn.Loc, "expected function name in blockaddress");
2770 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
2771 return Error(Label.Loc, "expected basic block name in blockaddress");
2773 // Try to find the function (but skip it if it's forward-referenced).
2774 GlobalValue *GV = nullptr;
2775 if (Fn.Kind == ValID::t_GlobalID) {
2776 if (Fn.UIntVal < NumberedVals.size())
2777 GV = NumberedVals[Fn.UIntVal];
2778 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2779 GV = M->getNamedValue(Fn.StrVal);
2781 Function *F = nullptr;
2783 // Confirm that it's actually a function with a definition.
2784 if (!isa<Function>(GV))
2785 return Error(Fn.Loc, "expected function name in blockaddress");
2786 F = cast<Function>(GV);
2787 if (F->isDeclaration())
2788 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2792 // Make a global variable as a placeholder for this reference.
2793 GlobalValue *&FwdRef =
2794 ForwardRefBlockAddresses.insert(std::make_pair(
2796 std::map<ValID, GlobalValue *>()))
2797 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2800 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2801 GlobalValue::InternalLinkage, nullptr, "");
2802 ID.ConstantVal = FwdRef;
2803 ID.Kind = ValID::t_Constant;
2807 // We found the function; now find the basic block. Don't use PFS, since we
2808 // might be inside a constant expression.
2810 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2811 if (Label.Kind == ValID::t_LocalID)
2812 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2814 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2816 return Error(Label.Loc, "referenced value is not a basic block");
2818 if (Label.Kind == ValID::t_LocalID)
2819 return Error(Label.Loc, "cannot take address of numeric label after "
2820 "the function is defined");
2821 BB = dyn_cast_or_null<BasicBlock>(
2822 F->getValueSymbolTable().lookup(Label.StrVal));
2824 return Error(Label.Loc, "referenced value is not a basic block");
2827 ID.ConstantVal = BlockAddress::get(F, BB);
2828 ID.Kind = ValID::t_Constant;
2832 case lltok::kw_trunc:
2833 case lltok::kw_zext:
2834 case lltok::kw_sext:
2835 case lltok::kw_fptrunc:
2836 case lltok::kw_fpext:
2837 case lltok::kw_bitcast:
2838 case lltok::kw_addrspacecast:
2839 case lltok::kw_uitofp:
2840 case lltok::kw_sitofp:
2841 case lltok::kw_fptoui:
2842 case lltok::kw_fptosi:
2843 case lltok::kw_inttoptr:
2844 case lltok::kw_ptrtoint: {
2845 unsigned Opc = Lex.getUIntVal();
2846 Type *DestTy = nullptr;
2849 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2850 ParseGlobalTypeAndValue(SrcVal) ||
2851 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
2852 ParseType(DestTy) ||
2853 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2855 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2856 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2857 getTypeString(SrcVal->getType()) + "' to '" +
2858 getTypeString(DestTy) + "'");
2859 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
2861 ID.Kind = ValID::t_Constant;
2864 case lltok::kw_extractvalue: {
2867 SmallVector<unsigned, 4> Indices;
2868 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2869 ParseGlobalTypeAndValue(Val) ||
2870 ParseIndexList(Indices) ||
2871 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2874 if (!Val->getType()->isAggregateType())
2875 return Error(ID.Loc, "extractvalue operand must be aggregate type");
2876 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
2877 return Error(ID.Loc, "invalid indices for extractvalue");
2878 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
2879 ID.Kind = ValID::t_Constant;
2882 case lltok::kw_insertvalue: {
2884 Constant *Val0, *Val1;
2885 SmallVector<unsigned, 4> Indices;
2886 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2887 ParseGlobalTypeAndValue(Val0) ||
2888 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2889 ParseGlobalTypeAndValue(Val1) ||
2890 ParseIndexList(Indices) ||
2891 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2893 if (!Val0->getType()->isAggregateType())
2894 return Error(ID.Loc, "insertvalue operand must be aggregate type");
2896 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2898 return Error(ID.Loc, "invalid indices for insertvalue");
2899 if (IndexedType != Val1->getType())
2900 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2901 getTypeString(Val1->getType()) +
2902 "' instead of '" + getTypeString(IndexedType) +
2904 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
2905 ID.Kind = ValID::t_Constant;
2908 case lltok::kw_icmp:
2909 case lltok::kw_fcmp: {
2910 unsigned PredVal, Opc = Lex.getUIntVal();
2911 Constant *Val0, *Val1;
2913 if (ParseCmpPredicate(PredVal, Opc) ||
2914 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2915 ParseGlobalTypeAndValue(Val0) ||
2916 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2917 ParseGlobalTypeAndValue(Val1) ||
2918 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2921 if (Val0->getType() != Val1->getType())
2922 return Error(ID.Loc, "compare operands must have the same type");
2924 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
2926 if (Opc == Instruction::FCmp) {
2927 if (!Val0->getType()->isFPOrFPVectorTy())
2928 return Error(ID.Loc, "fcmp requires floating point operands");
2929 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
2931 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
2932 if (!Val0->getType()->isIntOrIntVectorTy() &&
2933 !Val0->getType()->getScalarType()->isPointerTy())
2934 return Error(ID.Loc, "icmp requires pointer or integer operands");
2935 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
2937 ID.Kind = ValID::t_Constant;
2941 // Binary Operators.
2943 case lltok::kw_fadd:
2945 case lltok::kw_fsub:
2947 case lltok::kw_fmul:
2948 case lltok::kw_udiv:
2949 case lltok::kw_sdiv:
2950 case lltok::kw_fdiv:
2951 case lltok::kw_urem:
2952 case lltok::kw_srem:
2953 case lltok::kw_frem:
2955 case lltok::kw_lshr:
2956 case lltok::kw_ashr: {
2960 unsigned Opc = Lex.getUIntVal();
2961 Constant *Val0, *Val1;
2963 LocTy ModifierLoc = Lex.getLoc();
2964 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2965 Opc == Instruction::Mul || Opc == Instruction::Shl) {
2966 if (EatIfPresent(lltok::kw_nuw))
2968 if (EatIfPresent(lltok::kw_nsw)) {
2970 if (EatIfPresent(lltok::kw_nuw))
2973 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2974 Opc == Instruction::LShr || Opc == Instruction::AShr) {
2975 if (EatIfPresent(lltok::kw_exact))
2978 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2979 ParseGlobalTypeAndValue(Val0) ||
2980 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2981 ParseGlobalTypeAndValue(Val1) ||
2982 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2984 if (Val0->getType() != Val1->getType())
2985 return Error(ID.Loc, "operands of constexpr must have same type");
2986 if (!Val0->getType()->isIntOrIntVectorTy()) {
2988 return Error(ModifierLoc, "nuw only applies to integer operations");
2990 return Error(ModifierLoc, "nsw only applies to integer operations");
2992 // Check that the type is valid for the operator.
2994 case Instruction::Add:
2995 case Instruction::Sub:
2996 case Instruction::Mul:
2997 case Instruction::UDiv:
2998 case Instruction::SDiv:
2999 case Instruction::URem:
3000 case Instruction::SRem:
3001 case Instruction::Shl:
3002 case Instruction::AShr:
3003 case Instruction::LShr:
3004 if (!Val0->getType()->isIntOrIntVectorTy())
3005 return Error(ID.Loc, "constexpr requires integer operands");
3007 case Instruction::FAdd:
3008 case Instruction::FSub:
3009 case Instruction::FMul:
3010 case Instruction::FDiv:
3011 case Instruction::FRem:
3012 if (!Val0->getType()->isFPOrFPVectorTy())
3013 return Error(ID.Loc, "constexpr requires fp operands");
3015 default: llvm_unreachable("Unknown binary operator!");
3018 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3019 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
3020 if (Exact) Flags |= PossiblyExactOperator::IsExact;
3021 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
3023 ID.Kind = ValID::t_Constant;
3027 // Logical Operations
3030 case lltok::kw_xor: {
3031 unsigned Opc = Lex.getUIntVal();
3032 Constant *Val0, *Val1;
3034 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
3035 ParseGlobalTypeAndValue(Val0) ||
3036 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
3037 ParseGlobalTypeAndValue(Val1) ||
3038 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
3040 if (Val0->getType() != Val1->getType())
3041 return Error(ID.Loc, "operands of constexpr must have same type");
3042 if (!Val0->getType()->isIntOrIntVectorTy())
3043 return Error(ID.Loc,
3044 "constexpr requires integer or integer vector operands");
3045 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
3046 ID.Kind = ValID::t_Constant;
3050 case lltok::kw_getelementptr:
3051 case lltok::kw_shufflevector:
3052 case lltok::kw_insertelement:
3053 case lltok::kw_extractelement:
3054 case lltok::kw_select: {
3055 unsigned Opc = Lex.getUIntVal();
3056 SmallVector<Constant*, 16> Elts;
3057 bool InBounds = false;
3061 if (Opc == Instruction::GetElementPtr)
3062 InBounds = EatIfPresent(lltok::kw_inbounds);
3064 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
3067 LocTy ExplicitTypeLoc = Lex.getLoc();
3068 if (Opc == Instruction::GetElementPtr) {
3069 if (ParseType(Ty) ||
3070 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3074 if (ParseGlobalValueVector(Elts) ||
3075 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3078 if (Opc == Instruction::GetElementPtr) {
3079 if (Elts.size() == 0 ||
3080 !Elts[0]->getType()->getScalarType()->isPointerTy())
3081 return Error(ID.Loc, "base of getelementptr must be a pointer");
3083 Type *BaseType = Elts[0]->getType();
3084 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
3085 if (Ty != BasePointerType->getElementType())
3088 "explicit pointee type doesn't match operand's pointee type");
3090 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
3091 for (Constant *Val : Indices) {
3092 Type *ValTy = Val->getType();
3093 if (!ValTy->getScalarType()->isIntegerTy())
3094 return Error(ID.Loc, "getelementptr index must be an integer");
3095 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3096 return Error(ID.Loc, "getelementptr index type missmatch");
3097 if (ValTy->isVectorTy()) {
3098 unsigned ValNumEl = ValTy->getVectorNumElements();
3099 unsigned PtrNumEl = BaseType->getVectorNumElements();
3100 if (ValNumEl != PtrNumEl)
3103 "getelementptr vector index has a wrong number of elements");
3107 SmallPtrSet<Type*, 4> Visited;
3108 if (!Indices.empty() && !Ty->isSized(&Visited))
3109 return Error(ID.Loc, "base element of getelementptr must be sized");
3111 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
3112 return Error(ID.Loc, "invalid getelementptr indices");
3114 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
3115 } else if (Opc == Instruction::Select) {
3116 if (Elts.size() != 3)
3117 return Error(ID.Loc, "expected three operands to select");
3118 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3120 return Error(ID.Loc, Reason);
3121 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
3122 } else if (Opc == Instruction::ShuffleVector) {
3123 if (Elts.size() != 3)
3124 return Error(ID.Loc, "expected three operands to shufflevector");
3125 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3126 return Error(ID.Loc, "invalid operands to shufflevector");
3128 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
3129 } else if (Opc == Instruction::ExtractElement) {
3130 if (Elts.size() != 2)
3131 return Error(ID.Loc, "expected two operands to extractelement");
3132 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3133 return Error(ID.Loc, "invalid extractelement operands");
3134 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
3136 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3137 if (Elts.size() != 3)
3138 return Error(ID.Loc, "expected three operands to insertelement");
3139 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3140 return Error(ID.Loc, "invalid insertelement operands");
3142 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
3145 ID.Kind = ValID::t_Constant;
3154 /// ParseGlobalValue - Parse a global value with the specified type.
3155 bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
3159 bool Parsed = ParseValID(ID) ||
3160 ConvertValIDToValue(Ty, ID, V, nullptr);
3161 if (V && !(C = dyn_cast<Constant>(V)))
3162 return Error(ID.Loc, "global values must be constants");
3166 bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
3168 return ParseType(Ty) ||
3169 ParseGlobalValue(Ty, V);
3172 bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
3175 LocTy KwLoc = Lex.getLoc();
3176 if (!EatIfPresent(lltok::kw_comdat))
3179 if (EatIfPresent(lltok::lparen)) {
3180 if (Lex.getKind() != lltok::ComdatVar)
3181 return TokError("expected comdat variable");
3182 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3184 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3187 if (GlobalName.empty())
3188 return TokError("comdat cannot be unnamed");
3189 C = getComdat(GlobalName, KwLoc);
3195 /// ParseGlobalValueVector
3197 /// ::= TypeAndValue (',' TypeAndValue)*
3198 bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
3200 if (Lex.getKind() == lltok::rbrace ||
3201 Lex.getKind() == lltok::rsquare ||
3202 Lex.getKind() == lltok::greater ||
3203 Lex.getKind() == lltok::rparen)
3207 if (ParseGlobalTypeAndValue(C)) return true;
3210 while (EatIfPresent(lltok::comma)) {
3211 if (ParseGlobalTypeAndValue(C)) return true;
3218 bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
3219 SmallVector<Metadata *, 16> Elts;
3220 if (ParseMDNodeVector(Elts))
3223 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
3230 /// ::= !DILocation(...)
3231 bool LLParser::ParseMDNode(MDNode *&N) {
3232 if (Lex.getKind() == lltok::MetadataVar)
3233 return ParseSpecializedMDNode(N);
3235 return ParseToken(lltok::exclaim, "expected '!' here") ||
3239 bool LLParser::ParseMDNodeTail(MDNode *&N) {
3241 if (Lex.getKind() == lltok::lbrace)
3242 return ParseMDTuple(N);
3245 return ParseMDNodeID(N);
3250 /// Structure to represent an optional metadata field.
3251 template <class FieldTy> struct MDFieldImpl {
3252 typedef MDFieldImpl ImplTy;
3256 void assign(FieldTy Val) {
3258 this->Val = std::move(Val);
3261 explicit MDFieldImpl(FieldTy Default)
3262 : Val(std::move(Default)), Seen(false) {}
3265 struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3268 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3269 : ImplTy(Default), Max(Max) {}
3271 struct LineField : public MDUnsignedField {
3272 LineField() : MDUnsignedField(0, UINT32_MAX) {}
3274 struct ColumnField : public MDUnsignedField {
3275 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3277 struct DwarfTagField : public MDUnsignedField {
3278 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
3279 DwarfTagField(dwarf::Tag DefaultTag)
3280 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
3282 struct DwarfMacinfoTypeField : public MDUnsignedField {
3283 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3284 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3285 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3287 struct DwarfAttEncodingField : public MDUnsignedField {
3288 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3290 struct DwarfVirtualityField : public MDUnsignedField {
3291 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3293 struct DwarfLangField : public MDUnsignedField {
3294 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3297 struct DIFlagField : public MDUnsignedField {
3298 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3301 struct MDSignedField : public MDFieldImpl<int64_t> {
3305 MDSignedField(int64_t Default = 0)
3306 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3307 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3308 : ImplTy(Default), Min(Min), Max(Max) {}
3311 struct MDBoolField : public MDFieldImpl<bool> {
3312 MDBoolField(bool Default = false) : ImplTy(Default) {}
3314 struct MDField : public MDFieldImpl<Metadata *> {
3317 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
3319 struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3320 MDConstant() : ImplTy(nullptr) {}
3322 struct MDStringField : public MDFieldImpl<MDString *> {
3324 MDStringField(bool AllowEmpty = true)
3325 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
3327 struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3328 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3336 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3337 MDUnsignedField &Result) {
3338 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3339 return TokError("expected unsigned integer");
3341 auto &U = Lex.getAPSIntVal();
3342 if (U.ugt(Result.Max))
3343 return TokError("value for '" + Name + "' too large, limit is " +
3345 Result.assign(U.getZExtValue());
3346 assert(Result.Val <= Result.Max && "Expected value in range");
3352 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3353 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3356 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3357 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3361 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3362 if (Lex.getKind() == lltok::APSInt)
3363 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3365 if (Lex.getKind() != lltok::DwarfTag)
3366 return TokError("expected DWARF tag");
3368 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3369 if (Tag == dwarf::DW_TAG_invalid)
3370 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
3371 assert(Tag <= Result.Max && "Expected valid DWARF tag");
3379 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3380 DwarfMacinfoTypeField &Result) {
3381 if (Lex.getKind() == lltok::APSInt)
3382 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3384 if (Lex.getKind() != lltok::DwarfMacinfo)
3385 return TokError("expected DWARF macinfo type");
3387 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3388 if (Macinfo == dwarf::DW_MACINFO_invalid)
3390 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3391 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3393 Result.assign(Macinfo);
3399 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3400 DwarfVirtualityField &Result) {
3401 if (Lex.getKind() == lltok::APSInt)
3402 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3404 if (Lex.getKind() != lltok::DwarfVirtuality)
3405 return TokError("expected DWARF virtuality code");
3407 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3409 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3410 Lex.getStrVal() + "'");
3411 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3412 Result.assign(Virtuality);
3418 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3419 if (Lex.getKind() == lltok::APSInt)
3420 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3422 if (Lex.getKind() != lltok::DwarfLang)
3423 return TokError("expected DWARF language");
3425 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3427 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3429 assert(Lang <= Result.Max && "Expected valid DWARF language");
3430 Result.assign(Lang);
3436 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3437 DwarfAttEncodingField &Result) {
3438 if (Lex.getKind() == lltok::APSInt)
3439 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3441 if (Lex.getKind() != lltok::DwarfAttEncoding)
3442 return TokError("expected DWARF type attribute encoding");
3444 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3446 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3447 Lex.getStrVal() + "'");
3448 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3449 Result.assign(Encoding);
3456 /// ::= DIFlagVector
3457 /// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3459 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3460 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3462 // Parser for a single flag.
3463 auto parseFlag = [&](unsigned &Val) {
3464 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3465 return ParseUInt32(Val);
3467 if (Lex.getKind() != lltok::DIFlag)
3468 return TokError("expected debug info flag");
3470 Val = DINode::getFlag(Lex.getStrVal());
3472 return TokError(Twine("invalid debug info flag flag '") +
3473 Lex.getStrVal() + "'");
3478 // Parse the flags and combine them together.
3479 unsigned Combined = 0;
3485 } while (EatIfPresent(lltok::bar));
3487 Result.assign(Combined);
3492 bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3493 MDSignedField &Result) {
3494 if (Lex.getKind() != lltok::APSInt)
3495 return TokError("expected signed integer");
3497 auto &S = Lex.getAPSIntVal();
3499 return TokError("value for '" + Name + "' too small, limit is " +
3502 return TokError("value for '" + Name + "' too large, limit is " +
3504 Result.assign(S.getExtValue());
3505 assert(Result.Val >= Result.Min && "Expected value in range");
3506 assert(Result.Val <= Result.Max && "Expected value in range");
3512 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3513 switch (Lex.getKind()) {
3515 return TokError("expected 'true' or 'false'");
3516 case lltok::kw_true:
3517 Result.assign(true);
3519 case lltok::kw_false:
3520 Result.assign(false);
3528 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
3529 if (Lex.getKind() == lltok::kw_null) {
3530 if (!Result.AllowNull)
3531 return TokError("'" + Name + "' cannot be null");
3533 Result.assign(nullptr);
3538 if (ParseMetadata(MD, nullptr))
3546 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3548 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3551 Result.assign(cast<ConstantAsMetadata>(MD));
3556 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
3557 LocTy ValueLoc = Lex.getLoc();
3559 if (ParseStringConstant(S))
3562 if (!Result.AllowEmpty && S.empty())
3563 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3565 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
3570 bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3571 SmallVector<Metadata *, 4> MDs;
3572 if (ParseMDNodeVector(MDs))
3575 Result.assign(std::move(MDs));
3579 } // end namespace llvm
3581 template <class ParserTy>
3582 bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
3584 if (Lex.getKind() != lltok::LabelStr)
3585 return TokError("expected field label here");
3589 } while (EatIfPresent(lltok::comma));
3594 template <class ParserTy>
3595 bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3596 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3599 if (ParseToken(lltok::lparen, "expected '(' here"))
3601 if (Lex.getKind() != lltok::rparen)
3602 if (ParseMDFieldsImplBody(parseField))
3605 ClosingLoc = Lex.getLoc();
3606 return ParseToken(lltok::rparen, "expected ')' here");
3609 template <class FieldTy>
3610 bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3612 return TokError("field '" + Name + "' cannot be specified more than once");
3614 LocTy Loc = Lex.getLoc();
3616 return ParseMDField(Loc, Name, Result);
3619 bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3620 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3622 #define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
3623 if (Lex.getStrVal() == #CLASS) \
3624 return Parse##CLASS(N, IsDistinct);
3625 #include "llvm/IR/Metadata.def"
3627 return TokError("expected metadata type");
3630 #define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3631 #define NOP_FIELD(NAME, TYPE, INIT)
3632 #define REQUIRE_FIELD(NAME, TYPE, INIT) \
3634 return Error(ClosingLoc, "missing required field '" #NAME "'");
3635 #define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
3636 if (Lex.getStrVal() == #NAME)