Home | History | Annotate | Download | only in MIRParser

Lines Matching refs:MBB

135   bool parseMBBReference(MachineBasicBlock *&MBB,
311 // MBB references in the frame information can be resolved.
314 // Initialize the jump table after creating all the MBBs so that the MBB
320 // parser can resolve the MBB references.
405 for (const MachineBasicBlock &MBB : MF) {
406 for (const MachineInstr &MI : MBB) {
437 MBB = nullptr;
438 if (parseMBBReference(MBB, YamlMFI.SavePoint, MF, PFS))
440 MFI.setSavePoint(MBB);
443 MachineBasicBlock *MBB = nullptr;
444 if (parseMBBReference(MBB, YamlMFI.RestorePoint, MF, PFS))
446 MFI.setRestorePoint(MBB);
618 MachineBasicBlock *MBB = nullptr;
619 if (parseMBBReference(MBB, MBBSource.Value, MF, PFS))
621 Blocks.push_back(MBB);
633 bool MIRParserImpl::parseMBBReference(MachineBasicBlock *&MBB,
638 if (llvm::parseMBBReference(MBB, SM, MF, Source.Value, PFS, IRSlots, Error))