reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
  417   MachineFunction *MF = MBB.getParent();
  418   auto LoopHeadMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock());
  419   auto LoopIfBodyMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock());
  420   auto LoopTailMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock());
  421   auto DoneMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock());
  424   MF->insert(++MBB.getIterator(), LoopHeadMBB);
  435   DoneMBB->splice(DoneMBB->end(), &MBB, MI, MBB.end());
  435   DoneMBB->splice(DoneMBB->end(), &MBB, MI, MBB.end());
  436   DoneMBB->transferSuccessors(&MBB);
  437   MBB.addSuccessor(LoopHeadMBB);
  516   NextMBBI = MBB.end();