mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +00:00
CodeGen: Use MachineInstr& in PostRAHazardRecognizer, NFC
Convert a loop to a range-based for, using MachineInstr& instead of MachineInstr* and removing an implicit conversion from iterator to pointer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274311 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5bcaf78e59
commit
ed5a96fffb
@ -79,18 +79,16 @@ bool PostRAHazardRecognizer::runOnMachineFunction(MachineFunction &Fn) {
|
||||
for (auto &MBB : Fn) {
|
||||
// We do not call HazardRec->reset() here to make sure we are handling noop
|
||||
// hazards at the start of basic blocks.
|
||||
for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
|
||||
I != E; ++I) {
|
||||
MachineInstr *MI = I;
|
||||
for (MachineInstr &MI : MBB) {
|
||||
// If we need to emit noops prior to this instruction, then do so.
|
||||
unsigned NumPreNoops = HazardRec->PreEmitNoops(MI);
|
||||
unsigned NumPreNoops = HazardRec->PreEmitNoops(&MI);
|
||||
for (unsigned i = 0; i != NumPreNoops; ++i) {
|
||||
HazardRec->EmitNoop();
|
||||
TII->insertNoop(MBB, I);
|
||||
TII->insertNoop(MBB, MachineBasicBlock::iterator(MI));
|
||||
++NumNoops;
|
||||
}
|
||||
|
||||
HazardRec->EmitInstruction(MI);
|
||||
HazardRec->EmitInstruction(&MI);
|
||||
if (HazardRec->atIssueLimit()) {
|
||||
HazardRec->AdvanceCycle();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user