1 //===- MIRParser.cpp - MIR serialization format parser implementation -----===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the class that parses the optional LLVM IR and machine 10 // functions that are stored in MIR files. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/CodeGen/MIRParser/MIRParser.h" 15 #include "llvm/ADT/DenseMap.h" 16 #include "llvm/ADT/STLExtras.h" 17 #include "llvm/ADT/StringMap.h" 18 #include "llvm/ADT/StringRef.h" 19 #include "llvm/AsmParser/Parser.h" 20 #include "llvm/AsmParser/SlotMapping.h" 21 #include "llvm/CodeGen/GlobalISel/RegisterBank.h" 22 #include "llvm/CodeGen/GlobalISel/RegisterBankInfo.h" 23 #include "llvm/CodeGen/MIRParser/MIParser.h" 24 #include "llvm/CodeGen/MIRYamlMapping.h" 25 #include "llvm/CodeGen/MachineConstantPool.h" 26 #include "llvm/CodeGen/MachineFrameInfo.h" 27 #include "llvm/CodeGen/MachineFunction.h" 28 #include "llvm/CodeGen/MachineModuleInfo.h" 29 #include "llvm/CodeGen/MachineRegisterInfo.h" 30 #include "llvm/CodeGen/TargetFrameLowering.h" 31 #include "llvm/IR/BasicBlock.h" 32 #include "llvm/IR/DebugInfo.h" 33 #include "llvm/IR/DiagnosticInfo.h" 34 #include "llvm/IR/Instructions.h" 35 #include "llvm/IR/LLVMContext.h" 36 #include "llvm/IR/Module.h" 37 #include "llvm/IR/ValueSymbolTable.h" 38 #include "llvm/Support/LineIterator.h" 39 #include "llvm/Support/MemoryBuffer.h" 40 #include "llvm/Support/SMLoc.h" 41 #include "llvm/Support/SourceMgr.h" 42 #include "llvm/Support/YAMLTraits.h" 43 #include "llvm/Target/TargetMachine.h" 44 #include <memory> 45 46 using namespace llvm; 47 48 namespace llvm { 49 50 /// This class implements the parsing of LLVM IR that's embedded inside a MIR 51 /// file. 52 class MIRParserImpl { 53 SourceMgr SM; 54 yaml::Input In; 55 StringRef Filename; 56 LLVMContext &Context; 57 SlotMapping IRSlots; 58 std::unique_ptr<PerTargetMIParsingState> Target; 59 60 /// True when the MIR file doesn't have LLVM IR. Dummy IR functions are 61 /// created and inserted into the given module when this is true. 62 bool NoLLVMIR = false; 63 /// True when a well formed MIR file does not contain any MIR/machine function 64 /// parts. 65 bool NoMIRDocuments = false; 66 67 std::function<void(Function &)> ProcessIRFunction; 68 69 public: 70 MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents, StringRef Filename, 71 LLVMContext &Context, 72 std::function<void(Function &)> ProcessIRFunction); 73 74 void reportDiagnostic(const SMDiagnostic &Diag); 75 76 /// Report an error with the given message at unknown location. 77 /// 78 /// Always returns true. 79 bool error(const Twine &Message); 80 81 /// Report an error with the given message at the given location. 82 /// 83 /// Always returns true. 84 bool error(SMLoc Loc, const Twine &Message); 85 86 /// Report a given error with the location translated from the location in an 87 /// embedded string literal to a location in the MIR file. 88 /// 89 /// Always returns true. 90 bool error(const SMDiagnostic &Error, SMRange SourceRange); 91 92 /// Try to parse the optional LLVM module and the machine functions in the MIR 93 /// file. 94 /// 95 /// Return null if an error occurred. 96 std::unique_ptr<Module> 97 parseIRModule(DataLayoutCallbackTy DataLayoutCallback); 98 99 /// Create an empty function with the given name. 100 Function *createDummyFunction(StringRef Name, Module &M); 101 102 bool parseMachineFunctions(Module &M, MachineModuleInfo &MMI); 103 104 /// Parse the machine function in the current YAML document. 105 /// 106 /// 107 /// Return true if an error occurred. 108 bool parseMachineFunction(Module &M, MachineModuleInfo &MMI); 109 110 /// Initialize the machine function to the state that's described in the MIR 111 /// file. 112 /// 113 /// Return true if error occurred. 114 bool initializeMachineFunction(const yaml::MachineFunction &YamlMF, 115 MachineFunction &MF); 116 117 bool parseRegisterInfo(PerFunctionMIParsingState &PFS, 118 const yaml::MachineFunction &YamlMF); 119 120 bool setupRegisterInfo(const PerFunctionMIParsingState &PFS, 121 const yaml::MachineFunction &YamlMF); 122 123 bool initializeFrameInfo(PerFunctionMIParsingState &PFS, 124 const yaml::MachineFunction &YamlMF); 125 126 bool initializeCallSiteInfo(PerFunctionMIParsingState &PFS, 127 const yaml::MachineFunction &YamlMF); 128 129 bool parseCalleeSavedRegister(PerFunctionMIParsingState &PFS, 130 std::vector<CalleeSavedInfo> &CSIInfo, 131 const yaml::StringValue &RegisterSource, 132 bool IsRestored, int FrameIdx); 133 134 template <typename T> 135 bool parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS, 136 const T &Object, 137 int FrameIdx); 138 139 bool initializeConstantPool(PerFunctionMIParsingState &PFS, 140 MachineConstantPool &ConstantPool, 141 const yaml::MachineFunction &YamlMF); 142 143 bool initializeJumpTableInfo(PerFunctionMIParsingState &PFS, 144 const yaml::MachineJumpTable &YamlJTI); 145 146 private: 147 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node, 148 const yaml::StringValue &Source); 149 150 bool parseMBBReference(PerFunctionMIParsingState &PFS, 151 MachineBasicBlock *&MBB, 152 const yaml::StringValue &Source); 153 154 /// Return a MIR diagnostic converted from an MI string diagnostic. 155 SMDiagnostic diagFromMIStringDiag(const SMDiagnostic &Error, 156 SMRange SourceRange); 157 158 /// Return a MIR diagnostic converted from a diagnostic located in a YAML 159 /// block scalar string. 160 SMDiagnostic diagFromBlockStringDiag(const SMDiagnostic &Error, 161 SMRange SourceRange); 162 163 void computeFunctionProperties(MachineFunction &MF); 164 165 void setupDebugValueTracking(MachineFunction &MF, 166 PerFunctionMIParsingState &PFS, const yaml::MachineFunction &YamlMF); 167 }; 168 169 } // end namespace llvm 170 171 static void handleYAMLDiag(const SMDiagnostic &Diag, void *Context) { 172 reinterpret_cast<MIRParserImpl *>(Context)->reportDiagnostic(Diag); 173 } 174 175 MIRParserImpl::MIRParserImpl(std::unique_ptr<MemoryBuffer> Contents, 176 StringRef Filename, LLVMContext &Context, 177 std::function<void(Function &)> Callback) 178 : SM(), 179 In(SM.getMemoryBuffer(SM.AddNewSourceBuffer(std::move(Contents), SMLoc())) 180 ->getBuffer(), 181 nullptr, handleYAMLDiag, this), 182 Filename(Filename), Context(Context), ProcessIRFunction(Callback) { 183 In.setContext(&In); 184 } 185 186 bool MIRParserImpl::error(const Twine &Message) { 187 Context.diagnose(DiagnosticInfoMIRParser( 188 DS_Error, SMDiagnostic(Filename, SourceMgr::DK_Error, Message.str()))); 189 return true; 190 } 191 192 bool MIRParserImpl::error(SMLoc Loc, const Twine &Message) { 193 Context.diagnose(DiagnosticInfoMIRParser( 194 DS_Error, SM.GetMessage(Loc, SourceMgr::DK_Error, Message))); 195 return true; 196 } 197 198 bool MIRParserImpl::error(const SMDiagnostic &Error, SMRange SourceRange) { 199 assert(Error.getKind() == SourceMgr::DK_Error && "Expected an error"); 200 reportDiagnostic(diagFromMIStringDiag(Error, SourceRange)); 201 return true; 202 } 203 204 void MIRParserImpl::reportDiagnostic(const SMDiagnostic &Diag) { 205 DiagnosticSeverity Kind; 206 switch (Diag.getKind()) { 207 case SourceMgr::DK_Error: 208 Kind = DS_Error; 209 break; 210 case SourceMgr::DK_Warning: 211 Kind = DS_Warning; 212 break; 213 case SourceMgr::DK_Note: 214 Kind = DS_Note; 215 break; 216 case SourceMgr::DK_Remark: 217 llvm_unreachable("remark unexpected"); 218 break; 219 } 220 Context.diagnose(DiagnosticInfoMIRParser(Kind, Diag)); 221 } 222 223 std::unique_ptr<Module> 224 MIRParserImpl::parseIRModule(DataLayoutCallbackTy DataLayoutCallback) { 225 if (!In.setCurrentDocument()) { 226 if (In.error()) 227 return nullptr; 228 // Create an empty module when the MIR file is empty. 229 NoMIRDocuments = true; 230 auto M = std::make_unique<Module>(Filename, Context); 231 if (auto LayoutOverride = DataLayoutCallback(M->getTargetTriple())) 232 M->setDataLayout(*LayoutOverride); 233 return M; 234 } 235 236 std::unique_ptr<Module> M; 237 // Parse the block scalar manually so that we can return unique pointer 238 // without having to go trough YAML traits. 239 if (const auto *BSN = 240 dyn_cast_or_null<yaml::BlockScalarNode>(In.getCurrentNode())) { 241 SMDiagnostic Error; 242 M = parseAssembly(MemoryBufferRef(BSN->getValue(), Filename), Error, 243 Context, &IRSlots, DataLayoutCallback); 244 if (!M) { 245 reportDiagnostic(diagFromBlockStringDiag(Error, BSN->getSourceRange())); 246 return nullptr; 247 } 248 In.nextDocument(); 249 if (!In.setCurrentDocument()) 250 NoMIRDocuments = true; 251 } else { 252 // Create an new, empty module. 253 M = std::make_unique<Module>(Filename, Context); 254 if (auto LayoutOverride = DataLayoutCallback(M->getTargetTriple())) 255 M->setDataLayout(*LayoutOverride); 256 NoLLVMIR = true; 257 } 258 return M; 259 } 260 261 bool MIRParserImpl::parseMachineFunctions(Module &M, MachineModuleInfo &MMI) { 262 if (NoMIRDocuments) 263 return false; 264 265 // Parse the machine functions. 266 do { 267 if (parseMachineFunction(M, MMI)) 268 return true; 269 In.nextDocument(); 270 } while (In.setCurrentDocument()); 271 272 return false; 273 } 274 275 Function *MIRParserImpl::createDummyFunction(StringRef Name, Module &M) { 276 auto &Context = M.getContext(); 277 Function *F = 278 Function::Create(FunctionType::get(Type::getVoidTy(Context), false), 279 Function::ExternalLinkage, Name, M); 280 BasicBlock *BB = BasicBlock::Create(Context, "entry", F); 281 new UnreachableInst(Context, BB); 282 283 if (ProcessIRFunction) 284 ProcessIRFunction(*F); 285 286 return F; 287 } 288 289 bool MIRParserImpl::parseMachineFunction(Module &M, MachineModuleInfo &MMI) { 290 // Parse the yaml. 291 yaml::MachineFunction YamlMF; 292 yaml::EmptyContext Ctx; 293 294 const LLVMTargetMachine &TM = MMI.getTarget(); 295 YamlMF.MachineFuncInfo = std::unique_ptr<yaml::MachineFunctionInfo>( 296 TM.createDefaultFuncInfoYAML()); 297 298 yaml::yamlize(In, YamlMF, false, Ctx); 299 if (In.error()) 300 return true; 301 302 // Search for the corresponding IR function. 303 StringRef FunctionName = YamlMF.Name; 304 Function *F = M.getFunction(FunctionName); 305 if (!F) { 306 if (NoLLVMIR) { 307 F = createDummyFunction(FunctionName, M); 308 } else { 309 return error(Twine("function '") + FunctionName + 310 "' isn't defined in the provided LLVM IR"); 311 } 312 } 313 if (MMI.getMachineFunction(*F) != nullptr) 314 return error(Twine("redefinition of machine function '") + FunctionName + 315 "'"); 316 317 // Create the MachineFunction. 318 MachineFunction &MF = MMI.getOrCreateMachineFunction(*F); 319 if (initializeMachineFunction(YamlMF, MF)) 320 return true; 321 322 return false; 323 } 324 325 static bool isSSA(const MachineFunction &MF) { 326 const MachineRegisterInfo &MRI = MF.getRegInfo(); 327 for (unsigned I = 0, E = MRI.getNumVirtRegs(); I != E; ++I) { 328 Register Reg = Register::index2VirtReg(I); 329 if (!MRI.hasOneDef(Reg) && !MRI.def_empty(Reg)) 330 return false; 331 332 // Subregister defs are invalid in SSA. 333 const MachineOperand *RegDef = MRI.getOneDef(Reg); 334 if (RegDef && RegDef->getSubReg() != 0) 335 return false; 336 } 337 return true; 338 } 339 340 void MIRParserImpl::computeFunctionProperties(MachineFunction &MF) { 341 MachineFunctionProperties &Properties = MF.getProperties(); 342 343 bool HasPHI = false; 344 bool HasInlineAsm = false; 345 for (const MachineBasicBlock &MBB : MF) { 346 for (const MachineInstr &MI : MBB) { 347 if (MI.isPHI()) 348 HasPHI = true; 349 if (MI.isInlineAsm()) 350 HasInlineAsm = true; 351 } 352 } 353 if (!HasPHI) 354 Properties.set(MachineFunctionProperties::Property::NoPHIs); 355 MF.setHasInlineAsm(HasInlineAsm); 356 357 if (isSSA(MF)) 358 Properties.set(MachineFunctionProperties::Property::IsSSA); 359 else 360 Properties.reset(MachineFunctionProperties::Property::IsSSA); 361 362 const MachineRegisterInfo &MRI = MF.getRegInfo(); 363 if (MRI.getNumVirtRegs() == 0) 364 Properties.set(MachineFunctionProperties::Property::NoVRegs); 365 } 366 367 bool MIRParserImpl::initializeCallSiteInfo( 368 PerFunctionMIParsingState &PFS, const yaml::MachineFunction &YamlMF) { 369 MachineFunction &MF = PFS.MF; 370 SMDiagnostic Error; 371 const LLVMTargetMachine &TM = MF.getTarget(); 372 for (auto YamlCSInfo : YamlMF.CallSitesInfo) { 373 yaml::CallSiteInfo::MachineInstrLoc MILoc = YamlCSInfo.CallLocation; 374 if (MILoc.BlockNum >= MF.size()) 375 return error(Twine(MF.getName()) + 376 Twine(" call instruction block out of range.") + 377 " Unable to reference bb:" + Twine(MILoc.BlockNum)); 378 auto CallB = std::next(MF.begin(), MILoc.BlockNum); 379 if (MILoc.Offset >= CallB->size()) 380 return error(Twine(MF.getName()) + 381 Twine(" call instruction offset out of range.") + 382 " Unable to reference instruction at bb: " + 383 Twine(MILoc.BlockNum) + " at offset:" + Twine(MILoc.Offset)); 384 auto CallI = std::next(CallB->instr_begin(), MILoc.Offset); 385 if (!CallI->isCall(MachineInstr::IgnoreBundle)) 386 return error(Twine(MF.getName()) + 387 Twine(" call site info should reference call " 388 "instruction. Instruction at bb:") + 389 Twine(MILoc.BlockNum) + " at offset:" + Twine(MILoc.Offset) + 390 " is not a call instruction"); 391 MachineFunction::CallSiteInfo CSInfo; 392 for (auto ArgRegPair : YamlCSInfo.ArgForwardingRegs) { 393 Register Reg; 394 if (parseNamedRegisterReference(PFS, Reg, ArgRegPair.Reg.Value, Error)) 395 return error(Error, ArgRegPair.Reg.SourceRange); 396 CSInfo.emplace_back(Reg, ArgRegPair.ArgNo); 397 } 398 399 if (TM.Options.EmitCallSiteInfo) 400 MF.addCallArgsForwardingRegs(&*CallI, std::move(CSInfo)); 401 } 402 403 if (YamlMF.CallSitesInfo.size() && !TM.Options.EmitCallSiteInfo) 404 return error(Twine("Call site info provided but not used")); 405 return false; 406 } 407 408 void MIRParserImpl::setupDebugValueTracking(MachineFunction &MF, 409 PerFunctionMIParsingState &PFS, const yaml::MachineFunction &YamlMF) { 410 // For now, we only compute the value of the "next instruction number" 411 // field. 412 unsigned MaxInstrNum = 0; 413 for (auto &MBB : MF) 414 for (auto &MI : MBB) 415 MaxInstrNum = std::max((unsigned)MI.peekDebugInstrNum(), MaxInstrNum); 416 MF.setDebugInstrNumberingCount(MaxInstrNum); 417 } 418 419 420 bool 421 MIRParserImpl::initializeMachineFunction(const yaml::MachineFunction &YamlMF, 422 MachineFunction &MF) { 423 // TODO: Recreate the machine function. 424 if (Target) { 425 // Avoid clearing state if we're using the same subtarget again. 426 Target->setTarget(MF.getSubtarget()); 427 } else { 428 Target.reset(new PerTargetMIParsingState(MF.getSubtarget())); 429 } 430 431 MF.setAlignment(YamlMF.Alignment.valueOrOne()); 432 MF.setExposesReturnsTwice(YamlMF.ExposesReturnsTwice); 433 MF.setHasWinCFI(YamlMF.HasWinCFI); 434 435 if (YamlMF.Legalized) 436 MF.getProperties().set(MachineFunctionProperties::Property::Legalized); 437 if (YamlMF.RegBankSelected) 438 MF.getProperties().set( 439 MachineFunctionProperties::Property::RegBankSelected); 440 if (YamlMF.Selected) 441 MF.getProperties().set(MachineFunctionProperties::Property::Selected); 442 if (YamlMF.FailedISel) 443 MF.getProperties().set(MachineFunctionProperties::Property::FailedISel); 444 445 PerFunctionMIParsingState PFS(MF, SM, IRSlots, *Target); 446 if (parseRegisterInfo(PFS, YamlMF)) 447 return true; 448 if (!YamlMF.Constants.empty()) { 449 auto *ConstantPool = MF.getConstantPool(); 450 assert(ConstantPool && "Constant pool must be created"); 451 if (initializeConstantPool(PFS, *ConstantPool, YamlMF)) 452 return true; 453 } 454 455 StringRef BlockStr = YamlMF.Body.Value.Value; 456 SMDiagnostic Error; 457 SourceMgr BlockSM; 458 BlockSM.AddNewSourceBuffer( 459 MemoryBuffer::getMemBuffer(BlockStr, "",/*RequiresNullTerminator=*/false), 460 SMLoc()); 461 PFS.SM = &BlockSM; 462 if (parseMachineBasicBlockDefinitions(PFS, BlockStr, Error)) { 463 reportDiagnostic( 464 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange)); 465 return true; 466 } 467 // Check Basic Block Section Flags. 468 if (MF.getTarget().getBBSectionsType() == BasicBlockSection::Labels) { 469 MF.setBBSectionsType(BasicBlockSection::Labels); 470 } else if (MF.hasBBSections()) { 471 MF.assignBeginEndSections(); 472 } 473 PFS.SM = &SM; 474 475 // Initialize the frame information after creating all the MBBs so that the 476 // MBB references in the frame information can be resolved. 477 if (initializeFrameInfo(PFS, YamlMF)) 478 return true; 479 // Initialize the jump table after creating all the MBBs so that the MBB 480 // references can be resolved. 481 if (!YamlMF.JumpTableInfo.Entries.empty() && 482 initializeJumpTableInfo(PFS, YamlMF.JumpTableInfo)) 483 return true; 484 // Parse the machine instructions after creating all of the MBBs so that the 485 // parser can resolve the MBB references. 486 StringRef InsnStr = YamlMF.Body.Value.Value; 487 SourceMgr InsnSM; 488 InsnSM.AddNewSourceBuffer( 489 MemoryBuffer::getMemBuffer(InsnStr, "", /*RequiresNullTerminator=*/false), 490 SMLoc()); 491 PFS.SM = &InsnSM; 492 if (parseMachineInstructions(PFS, InsnStr, Error)) { 493 reportDiagnostic( 494 diagFromBlockStringDiag(Error, YamlMF.Body.Value.SourceRange)); 495 return true; 496 } 497 PFS.SM = &SM; 498 499 if (setupRegisterInfo(PFS, YamlMF)) 500 return true; 501 502 if (YamlMF.MachineFuncInfo) { 503 const LLVMTargetMachine &TM = MF.getTarget(); 504 // Note this is called after the initial constructor of the 505 // MachineFunctionInfo based on the MachineFunction, which may depend on the 506 // IR. 507 508 SMRange SrcRange; 509 if (TM.parseMachineFunctionInfo(*YamlMF.MachineFuncInfo, PFS, Error, 510 SrcRange)) { 511 return error(Error, SrcRange); 512 } 513 } 514 515 // Set the reserved registers after parsing MachineFuncInfo. The target may 516 // have been recording information used to select the reserved registers 517 // there. 518 // FIXME: This is a temporary workaround until the reserved registers can be 519 // serialized. 520 MachineRegisterInfo &MRI = MF.getRegInfo(); 521 MRI.freezeReservedRegs(MF); 522 523 computeFunctionProperties(MF); 524 525 if (initializeCallSiteInfo(PFS, YamlMF)) 526 return false; 527 528 setupDebugValueTracking(MF, PFS, YamlMF); 529 530 MF.getSubtarget().mirFileLoaded(MF); 531 532 MF.verify(); 533 return false; 534 } 535 536 bool MIRParserImpl::parseRegisterInfo(PerFunctionMIParsingState &PFS, 537 const yaml::MachineFunction &YamlMF) { 538 MachineFunction &MF = PFS.MF; 539 MachineRegisterInfo &RegInfo = MF.getRegInfo(); 540 assert(RegInfo.tracksLiveness()); 541 if (!YamlMF.TracksRegLiveness) 542 RegInfo.invalidateLiveness(); 543 544 SMDiagnostic Error; 545 // Parse the virtual register information. 546 for (const auto &VReg : YamlMF.VirtualRegisters) { 547 VRegInfo &Info = PFS.getVRegInfo(VReg.ID.Value); 548 if (Info.Explicit) 549 return error(VReg.ID.SourceRange.Start, 550 Twine("redefinition of virtual register '%") + 551 Twine(VReg.ID.Value) + "'"); 552 Info.Explicit = true; 553 554 if (StringRef(VReg.Class.Value).equals("_")) { 555 Info.Kind = VRegInfo::GENERIC; 556 Info.D.RegBank = nullptr; 557 } else { 558 const auto *RC = Target->getRegClass(VReg.Class.Value); 559 if (RC) { 560 Info.Kind = VRegInfo::NORMAL; 561 Info.D.RC = RC; 562 } else { 563 const RegisterBank *RegBank = Target->getRegBank(VReg.Class.Value); 564 if (!RegBank) 565 return error( 566 VReg.Class.SourceRange.Start, 567 Twine("use of undefined register class or register bank '") + 568 VReg.Class.Value + "'"); 569 Info.Kind = VRegInfo::REGBANK; 570 Info.D.RegBank = RegBank; 571 } 572 } 573 574 if (!VReg.PreferredRegister.Value.empty()) { 575 if (Info.Kind != VRegInfo::NORMAL) 576 return error(VReg.Class.SourceRange.Start, 577 Twine("preferred register can only be set for normal vregs")); 578 579 if (parseRegisterReference(PFS, Info.PreferredReg, 580 VReg.PreferredRegister.Value, Error)) 581 return error(Error, VReg.PreferredRegister.SourceRange); 582 } 583 } 584 585 // Parse the liveins. 586 for (const auto &LiveIn : YamlMF.LiveIns) { 587 Register Reg; 588 if (parseNamedRegisterReference(PFS, Reg, LiveIn.Register.Value, Error)) 589 return error(Error, LiveIn.Register.SourceRange); 590 Register VReg; 591 if (!LiveIn.VirtualRegister.Value.empty()) { 592 VRegInfo *Info; 593 if (parseVirtualRegisterReference(PFS, Info, LiveIn.VirtualRegister.Value, 594 Error)) 595 return error(Error, LiveIn.VirtualRegister.SourceRange); 596 VReg = Info->VReg; 597 } 598 RegInfo.addLiveIn(Reg, VReg); 599 } 600 601 // Parse the callee saved registers (Registers that will 602 // be saved for the caller). 603 if (YamlMF.CalleeSavedRegisters) { 604 SmallVector<MCPhysReg, 16> CalleeSavedRegisters; 605 for (const auto &RegSource : YamlMF.CalleeSavedRegisters.getValue()) { 606 Register Reg; 607 if (parseNamedRegisterReference(PFS, Reg, RegSource.Value, Error)) 608 return error(Error, RegSource.SourceRange); 609 CalleeSavedRegisters.push_back(Reg); 610 } 611 RegInfo.setCalleeSavedRegs(CalleeSavedRegisters); 612 } 613 614 return false; 615 } 616 617 bool MIRParserImpl::setupRegisterInfo(const PerFunctionMIParsingState &PFS, 618 const yaml::MachineFunction &YamlMF) { 619 MachineFunction &MF = PFS.MF; 620 MachineRegisterInfo &MRI = MF.getRegInfo(); 621 bool Error = false; 622 // Create VRegs 623 auto populateVRegInfo = [&] (const VRegInfo &Info, Twine Name) { 624 Register Reg = Info.VReg; 625 switch (Info.Kind) { 626 case VRegInfo::UNKNOWN: 627 error(Twine("Cannot determine class/bank of virtual register ") + 628 Name + " in function '" + MF.getName() + "'"); 629 Error = true; 630 break; 631 case VRegInfo::NORMAL: 632 MRI.setRegClass(Reg, Info.D.RC); 633 if (Info.PreferredReg != 0) 634 MRI.setSimpleHint(Reg, Info.PreferredReg); 635 break; 636 case VRegInfo::GENERIC: 637 break; 638 case VRegInfo::REGBANK: 639 MRI.setRegBank(Reg, *Info.D.RegBank); 640 break; 641 } 642 }; 643 644 for (auto I = PFS.VRegInfosNamed.begin(), E = PFS.VRegInfosNamed.end(); 645 I != E; I++) { 646 const VRegInfo &Info = *I->second; 647 populateVRegInfo(Info, Twine(I->first())); 648 } 649 650 for (auto P : PFS.VRegInfos) { 651 const VRegInfo &Info = *P.second; 652 populateVRegInfo(Info, Twine(P.first)); 653 } 654 655 // Compute MachineRegisterInfo::UsedPhysRegMask 656 for (const MachineBasicBlock &MBB : MF) { 657 // Make sure MRI knows about registers clobbered by unwinder. 658 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); 659 if (MBB.isEHPad()) 660 if (auto *RegMask = TRI->getCustomEHPadPreservedMask(MF)) 661 MRI.addPhysRegsUsedFromRegMask(RegMask); 662 663 for (const MachineInstr &MI : MBB) { 664 for (const MachineOperand &MO : MI.operands()) { 665 if (!MO.isRegMask()) 666 continue; 667 MRI.addPhysRegsUsedFromRegMask(MO.getRegMask()); 668 } 669 } 670 } 671 672 return Error; 673 } 674 675 bool MIRParserImpl::initializeFrameInfo(PerFunctionMIParsingState &PFS, 676 const yaml::MachineFunction &YamlMF) { 677 MachineFunction &MF = PFS.MF; 678 MachineFrameInfo &MFI = MF.getFrameInfo(); 679 const TargetFrameLowering *TFI = MF.getSubtarget().getFrameLowering(); 680 const Function &F = MF.getFunction(); 681 const yaml::MachineFrameInfo &YamlMFI = YamlMF.FrameInfo; 682 MFI.setFrameAddressIsTaken(YamlMFI.IsFrameAddressTaken); 683 MFI.setReturnAddressIsTaken(YamlMFI.IsReturnAddressTaken); 684 MFI.setHasStackMap(YamlMFI.HasStackMap); 685 MFI.setHasPatchPoint(YamlMFI.HasPatchPoint); 686 MFI.setStackSize(YamlMFI.StackSize); 687 MFI.setOffsetAdjustment(YamlMFI.OffsetAdjustment); 688 if (YamlMFI.MaxAlignment) 689 MFI.ensureMaxAlignment(Align(YamlMFI.MaxAlignment)); 690 MFI.setAdjustsStack(YamlMFI.AdjustsStack); 691 MFI.setHasCalls(YamlMFI.HasCalls); 692 if (YamlMFI.MaxCallFrameSize != ~0u) 693 MFI.setMaxCallFrameSize(YamlMFI.MaxCallFrameSize); 694 MFI.setCVBytesOfCalleeSavedRegisters(YamlMFI.CVBytesOfCalleeSavedRegisters); 695 MFI.setHasOpaqueSPAdjustment(YamlMFI.HasOpaqueSPAdjustment); 696 MFI.setHasVAStart(YamlMFI.HasVAStart); 697 MFI.setHasMustTailInVarArgFunc(YamlMFI.HasMustTailInVarArgFunc); 698 MFI.setLocalFrameSize(YamlMFI.LocalFrameSize); 699 if (!YamlMFI.SavePoint.Value.empty()) { 700 MachineBasicBlock *MBB = nullptr; 701 if (parseMBBReference(PFS, MBB, YamlMFI.SavePoint)) 702 return true; 703 MFI.setSavePoint(MBB); 704 } 705 if (!YamlMFI.RestorePoint.Value.empty()) { 706 MachineBasicBlock *MBB = nullptr; 707 if (parseMBBReference(PFS, MBB, YamlMFI.RestorePoint)) 708 return true; 709 MFI.setRestorePoint(MBB); 710 } 711 712 std::vector<CalleeSavedInfo> CSIInfo; 713 // Initialize the fixed frame objects. 714 for (const auto &Object : YamlMF.FixedStackObjects) { 715 int ObjectIdx; 716 if (Object.Type != yaml::FixedMachineStackObject::SpillSlot) 717 ObjectIdx = MFI.CreateFixedObject(Object.Size, Object.Offset, 718 Object.IsImmutable, Object.IsAliased); 719 else 720 ObjectIdx = MFI.CreateFixedSpillStackObject(Object.Size, Object.Offset); 721 722 if (!TFI->isSupportedStackID(Object.StackID)) 723 return error(Object.ID.SourceRange.Start, 724 Twine("StackID is not supported by target")); 725 MFI.setStackID(ObjectIdx, Object.StackID); 726 MFI.setObjectAlignment(ObjectIdx, Object.Alignment.valueOrOne()); 727 if (!PFS.FixedStackObjectSlots.insert(std::make_pair(Object.ID.Value, 728 ObjectIdx)) 729 .second) 730 return error(Object.ID.SourceRange.Start, 731 Twine("redefinition of fixed stack object '%fixed-stack.") + 732 Twine(Object.ID.Value) + "'"); 733 if (parseCalleeSavedRegister(PFS, CSIInfo, Object.CalleeSavedRegister, 734 Object.CalleeSavedRestored, ObjectIdx)) 735 return true; 736 if (parseStackObjectsDebugInfo(PFS, Object, ObjectIdx)) 737 return true; 738 } 739 740 // Initialize the ordinary frame objects. 741 for (const auto &Object : YamlMF.StackObjects) { 742 int ObjectIdx; 743 const AllocaInst *Alloca = nullptr; 744 const yaml::StringValue &Name = Object.Name; 745 if (!Name.Value.empty()) { 746 Alloca = dyn_cast_or_null<AllocaInst>( 747 F.getValueSymbolTable()->lookup(Name.Value)); 748 if (!Alloca) 749 return error(Name.SourceRange.Start, 750 "alloca instruction named '" + Name.Value + 751 "' isn't defined in the function '" + F.getName() + 752 "'"); 753 } 754 if (!TFI->isSupportedStackID(Object.StackID)) 755 return error(Object.ID.SourceRange.Start, 756 Twine("StackID is not supported by target")); 757 if (Object.Type == yaml::MachineStackObject::VariableSized) 758 ObjectIdx = 759 MFI.CreateVariableSizedObject(Object.Alignment.valueOrOne(), Alloca); 760 else 761 ObjectIdx = MFI.CreateStackObject( 762 Object.Size, Object.Alignment.valueOrOne(), 763 Object.Type == yaml::MachineStackObject::SpillSlot, Alloca, 764 Object.StackID); 765 MFI.setObjectOffset(ObjectIdx, Object.Offset); 766 767 if (!PFS.StackObjectSlots.insert(std::make_pair(Object.ID.Value, ObjectIdx)) 768 .second) 769 return error(Object.ID.SourceRange.Start, 770 Twine("redefinition of stack object '%stack.") + 771 Twine(Object.ID.Value) + "'"); 772 if (parseCalleeSavedRegister(PFS, CSIInfo, Object.CalleeSavedRegister, 773 Object.CalleeSavedRestored, ObjectIdx)) 774 return true; 775 if (Object.LocalOffset) 776 MFI.mapLocalFrameObject(ObjectIdx, Object.LocalOffset.getValue()); 777 if (parseStackObjectsDebugInfo(PFS, Object, ObjectIdx)) 778 return true; 779 } 780 MFI.setCalleeSavedInfo(CSIInfo); 781 if (!CSIInfo.empty()) 782 MFI.setCalleeSavedInfoValid(true); 783 784 // Initialize the various stack object references after initializing the 785 // stack objects. 786 if (!YamlMFI.StackProtector.Value.empty()) { 787 SMDiagnostic Error; 788 int FI; 789 if (parseStackObjectReference(PFS, FI, YamlMFI.StackProtector.Value, Error)) 790 return error(Error, YamlMFI.StackProtector.SourceRange); 791 MFI.setStackProtectorIndex(FI); 792 } 793 return false; 794 } 795 796 bool MIRParserImpl::parseCalleeSavedRegister(PerFunctionMIParsingState &PFS, 797 std::vector<CalleeSavedInfo> &CSIInfo, 798 const yaml::StringValue &RegisterSource, bool IsRestored, int FrameIdx) { 799 if (RegisterSource.Value.empty()) 800 return false; 801 Register Reg; 802 SMDiagnostic Error; 803 if (parseNamedRegisterReference(PFS, Reg, RegisterSource.Value, Error)) 804 return error(Error, RegisterSource.SourceRange); 805 CalleeSavedInfo CSI(Reg, FrameIdx); 806 CSI.setRestored(IsRestored); 807 CSIInfo.push_back(CSI); 808 return false; 809 } 810 811 /// Verify that given node is of a certain type. Return true on error. 812 template <typename T> 813 static bool typecheckMDNode(T *&Result, MDNode *Node, 814 const yaml::StringValue &Source, 815 StringRef TypeString, MIRParserImpl &Parser) { 816 if (!Node) 817 return false; 818 Result = dyn_cast<T>(Node); 819 if (!Result) 820 return Parser.error(Source.SourceRange.Start, 821 "expected a reference to a '" + TypeString + 822 "' metadata node"); 823 return false; 824 } 825 826 template <typename T> 827 bool MIRParserImpl::parseStackObjectsDebugInfo(PerFunctionMIParsingState &PFS, 828 const T &Object, int FrameIdx) { 829 // Debug information can only be attached to stack objects; Fixed stack 830 // objects aren't supported. 831 MDNode *Var = nullptr, *Expr = nullptr, *Loc = nullptr; 832 if (parseMDNode(PFS, Var, Object.DebugVar) || 833 parseMDNode(PFS, Expr, Object.DebugExpr) || 834 parseMDNode(PFS, Loc, Object.DebugLoc)) 835 return true; 836 if (!Var && !Expr && !Loc) 837 return false; 838 DILocalVariable *DIVar = nullptr; 839 DIExpression *DIExpr = nullptr; 840 DILocation *DILoc = nullptr; 841 if (typecheckMDNode(DIVar, Var, Object.DebugVar, "DILocalVariable", *this) || 842 typecheckMDNode(DIExpr, Expr, Object.DebugExpr, "DIExpression", *this) || 843 typecheckMDNode(DILoc, Loc, Object.DebugLoc, "DILocation", *this)) 844 return true; 845 PFS.MF.setVariableDbgInfo(DIVar, DIExpr, FrameIdx, DILoc); 846 return false; 847 } 848 849 bool MIRParserImpl::parseMDNode(PerFunctionMIParsingState &PFS, 850 MDNode *&Node, const yaml::StringValue &Source) { 851 if (Source.Value.empty()) 852 return false; 853 SMDiagnostic Error; 854 if (llvm::parseMDNode(PFS, Node, Source.Value, Error)) 855 return error(Error, Source.SourceRange); 856 return false; 857 } 858 859 bool MIRParserImpl::initializeConstantPool(PerFunctionMIParsingState &PFS, 860 MachineConstantPool &ConstantPool, const yaml::MachineFunction &YamlMF) { 861 DenseMap<unsigned, unsigned> &ConstantPoolSlots = PFS.ConstantPoolSlots; 862 const MachineFunction &MF = PFS.MF; 863 const auto &M = *MF.getFunction().getParent(); 864 SMDiagnostic Error; 865 for (const auto &YamlConstant : YamlMF.Constants) { 866 if (YamlConstant.IsTargetSpecific) 867 // FIXME: Support target-specific constant pools 868 return error(YamlConstant.Value.SourceRange.Start, 869 "Can't parse target-specific constant pool entries yet"); 870 const Constant *Value = dyn_cast_or_null<Constant>( 871 parseConstantValue(YamlConstant.Value.Value, Error, M)); 872 if (!Value) 873 return error(Error, YamlConstant.Value.SourceRange); 874 const Align PrefTypeAlign = 875 M.getDataLayout().getPrefTypeAlign(Value->getType()); 876 const Align Alignment = YamlConstant.Alignment.getValueOr(PrefTypeAlign); 877 unsigned Index = ConstantPool.getConstantPoolIndex(Value, Alignment); 878 if (!ConstantPoolSlots.insert(std::make_pair(YamlConstant.ID.Value, Index)) 879 .second) 880 return error(YamlConstant.ID.SourceRange.Start, 881 Twine("redefinition of constant pool item '%const.") + 882 Twine(YamlConstant.ID.Value) + "'"); 883 } 884 return false; 885 } 886 887 bool MIRParserImpl::initializeJumpTableInfo(PerFunctionMIParsingState &PFS, 888 const yaml::MachineJumpTable &YamlJTI) { 889 MachineJumpTableInfo *JTI = PFS.MF.getOrCreateJumpTableInfo(YamlJTI.Kind); 890 for (const auto &Entry : YamlJTI.Entries) { 891 std::vector<MachineBasicBlock *> Blocks; 892 for (const auto &MBBSource : Entry.Blocks) { 893 MachineBasicBlock *MBB = nullptr; 894 if (parseMBBReference(PFS, MBB, MBBSource.Value)) 895 return true; 896 Blocks.push_back(MBB); 897 } 898 unsigned Index = JTI->createJumpTableIndex(Blocks); 899 if (!PFS.JumpTableSlots.insert(std::make_pair(Entry.ID.Value, Index)) 900 .second) 901 return error(Entry.ID.SourceRange.Start, 902 Twine("redefinition of jump table entry '%jump-table.") + 903 Twine(Entry.ID.Value) + "'"); 904 } 905 return false; 906 } 907 908 bool MIRParserImpl::parseMBBReference(PerFunctionMIParsingState &PFS, 909 MachineBasicBlock *&MBB, 910 const yaml::StringValue &Source) { 911 SMDiagnostic Error; 912 if (llvm::parseMBBReference(PFS, MBB, Source.Value, Error)) 913 return error(Error, Source.SourceRange); 914 return false; 915 } 916 917 SMDiagnostic MIRParserImpl::diagFromMIStringDiag(const SMDiagnostic &Error, 918 SMRange SourceRange) { 919 assert(SourceRange.isValid() && "Invalid source range"); 920 SMLoc Loc = SourceRange.Start; 921 bool HasQuote = Loc.getPointer() < SourceRange.End.getPointer() && 922 *Loc.getPointer() == '\''; 923 // Translate the location of the error from the location in the MI string to 924 // the corresponding location in the MIR file. 925 Loc = Loc.getFromPointer(Loc.getPointer() + Error.getColumnNo() + 926 (HasQuote ? 1 : 0)); 927 928 // TODO: Translate any source ranges as well. 929 return SM.GetMessage(Loc, Error.getKind(), Error.getMessage(), None, 930 Error.getFixIts()); 931 } 932 933 SMDiagnostic MIRParserImpl::diagFromBlockStringDiag(const SMDiagnostic &Error, 934 SMRange SourceRange) { 935 assert(SourceRange.isValid()); 936 937 // Translate the location of the error from the location in the llvm IR string 938 // to the corresponding location in the MIR file. 939 auto LineAndColumn = SM.getLineAndColumn(SourceRange.Start); 940 unsigned Line = LineAndColumn.first + Error.getLineNo() - 1; 941 unsigned Column = Error.getColumnNo(); 942 StringRef LineStr = Error.getLineContents(); 943 SMLoc Loc = Error.getLoc(); 944 945 // Get the full line and adjust the column number by taking the indentation of 946 // LLVM IR into account. 947 for (line_iterator L(*SM.getMemoryBuffer(SM.getMainFileID()), false), E; 948 L != E; ++L) { 949 if (L.line_number() == Line) { 950 LineStr = *L; 951 Loc = SMLoc::getFromPointer(LineStr.data()); 952 auto Indent = LineStr.find(Error.getLineContents()); 953 if (Indent != StringRef::npos) 954 Column += Indent; 955 break; 956 } 957 } 958 959 return SMDiagnostic(SM, Loc, Filename, Line, Column, Error.getKind(), 960 Error.getMessage(), LineStr, Error.getRanges(), 961 Error.getFixIts()); 962 } 963 964 MIRParser::MIRParser(std::unique_ptr<MIRParserImpl> Impl) 965 : Impl(std::move(Impl)) {} 966 967 MIRParser::~MIRParser() {} 968 969 std::unique_ptr<Module> 970 MIRParser::parseIRModule(DataLayoutCallbackTy DataLayoutCallback) { 971 return Impl->parseIRModule(DataLayoutCallback); 972 } 973 974 bool MIRParser::parseMachineFunctions(Module &M, MachineModuleInfo &MMI) { 975 return Impl->parseMachineFunctions(M, MMI); 976 } 977 978 std::unique_ptr<MIRParser> llvm::createMIRParserFromFile( 979 StringRef Filename, SMDiagnostic &Error, LLVMContext &Context, 980 std::function<void(Function &)> ProcessIRFunction) { 981 auto FileOrErr = MemoryBuffer::getFileOrSTDIN(Filename); 982 if (std::error_code EC = FileOrErr.getError()) { 983 Error = SMDiagnostic(Filename, SourceMgr::DK_Error, 984 "Could not open input file: " + EC.message()); 985 return nullptr; 986 } 987 return createMIRParser(std::move(FileOrErr.get()), Context, 988 ProcessIRFunction); 989 } 990 991 std::unique_ptr<MIRParser> 992 llvm::createMIRParser(std::unique_ptr<MemoryBuffer> Contents, 993 LLVMContext &Context, 994 std::function<void(Function &)> ProcessIRFunction) { 995 auto Filename = Contents->getBufferIdentifier(); 996 if (Context.shouldDiscardValueNames()) { 997 Context.diagnose(DiagnosticInfoMIRParser( 998 DS_Error, 999 SMDiagnostic( 1000 Filename, SourceMgr::DK_Error, 1001 "Can't read MIR with a Context that discards named Values"))); 1002 return nullptr; 1003 } 1004 return std::make_unique<MIRParser>(std::make_unique<MIRParserImpl>( 1005 std::move(Contents), Filename, Context, ProcessIRFunction)); 1006 } 1007