Skip to content

Commit

Permalink
Update relativePipeTime later in stall analysis.
Browse files Browse the repository at this point in the history
Fixes actual times where results are available.
  • Loading branch information
jpd002 committed Oct 19, 2023
1 parent 85ef675 commit 71d509c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/ee/VuBasicBlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,6 @@ CVuBasicBlock::BlockFmacPipelineInfo CVuBasicBlock::ComputeFmacStallDelays(uint3

//Instruction executes...

relativePipeTime++;
uint32 prevRelativePipeTime = relativePipeTime;

relativePipeTime = adjustPipeTime(relativePipeTime, writeFTime, loOps.readElemF0, loOps.readF0);
Expand Down Expand Up @@ -597,6 +596,8 @@ CVuBasicBlock::BlockFmacPipelineInfo CVuBasicBlock::ComputeFmacStallDelays(uint3
}
}
}

relativePipeTime++;
}

//TODO: Check that we don't have unconditional branches?
Expand Down

0 comments on commit 71d509c

Please sign in to comment.