mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 07:39:45 -06:00
Jit: FIFO optimization improvements
This introduces speculative constants, allowing FIFO writes to be optimized in more places. It also clarifies the guarantees of the FIFO optimization, changing the location of some of the checks and potentially avoiding redundant checks.
This commit is contained in:
@ -15,7 +15,8 @@ namespace JitInterface
|
||||
enum class ExceptionType
|
||||
{
|
||||
EXCEPTIONS_FIFO_WRITE,
|
||||
EXCEPTIONS_PAIRED_QUANTIZE
|
||||
EXCEPTIONS_PAIRED_QUANTIZE,
|
||||
EXCEPTIONS_SPECULATIVE_CONSTANTS
|
||||
};
|
||||
|
||||
void DoState(PointerWrap& p);
|
||||
|
Reference in New Issue
Block a user