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

References

lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
  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);
  425   MF->insert(++LoopHeadMBB->getIterator(), LoopIfBodyMBB);
  426   MF->insert(++LoopIfBodyMBB->getIterator(), LoopTailMBB);
  427   MF->insert(++LoopTailMBB->getIterator(), DoneMBB);