Home
last modified time | relevance | path

Searched refs:BundledMI (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DVirtRegMap.cpp491 for (MachineInstr *BundledMI : llvm::reverse(MIs)) { in expandCopyBundle()
495 if (BundledMI != BundleStart) { in expandCopyBundle()
496 BundledMI->removeFromBundle(); in expandCopyBundle()
497 MBB.insert(BundleStart, BundledMI); in expandCopyBundle()
498 } else if (BundledMI->isBundledWithSucc()) { in expandCopyBundle()
499 BundledMI->unbundleFromSucc(); in expandCopyBundle()
500 BundleStart = &*std::next(BundledMI->getIterator()); in expandCopyBundle()
503 if (Indexes && BundledMI != FirstMI) in expandCopyBundle()
504 Indexes->insertMachineInstrInMaps(*BundledMI); in expandCopyBundle()
H A DRegAllocFast.cpp1691 MachineBasicBlock::instr_iterator BundledMI = MI.getIterator(); in handleBundle() local
1692 ++BundledMI; in handleBundle()
1693 while (BundledMI->isBundledWithPred()) { in handleBundle()
1694 for (MachineOperand &MO : BundledMI->operands()) { in handleBundle()
1709 ++BundledMI; in handleBundle()