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