From 26a68c0cbc70fd91896e3f844b3755d32449883a Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 21 Apr 2020 10:28:31 -0500 Subject: [PATCH] NesHawk - aggressively inline Apu.EmitSample() also simplify it to reduce IL --- .../Consoles/Nintendo/NES/APU.cs | 24 +++++++++---------- .../Consoles/Nintendo/NES/NES.Core.cs | 3 +-- .../Consoles/Nintendo/NES/PPU.run.cs | 2 +- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs index 4f2fcf2dac..cecf8174d0 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/APU.cs @@ -1330,6 +1330,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES int cart_sound = 0; int old_cart_sound = 0; + [MethodImpl(MethodImplOptions.AggressiveInlining)] public int EmitSample() { if (recalculate) @@ -1343,21 +1344,20 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES int s_dmc = dmc.sample; // more properly correct - float pulse_out, tnd_out; - if (s_pulse0 == 0 && s_pulse1 == 0) - pulse_out = 0; - else pulse_out = 95.88f / ((8128.0f / (s_pulse0 + s_pulse1)) + 100.0f); - if (s_tri == 0 && s_noise == 0 && s_dmc == 0) - tnd_out = 0; - else tnd_out = 159.79f / (1 / ((s_tri / 8227.0f) + (s_noise / 12241.0f /* * NOISEADJUST*/) + (s_dmc / 22638.0f)) + 100); + float pulse_out = s_pulse0 == 0 && s_pulse1 == 0 + ? 0 + : 95.88f / ((8128.0f / (s_pulse0 + s_pulse1)) + 100.0f); + + float tnd_out = s_tri == 0 && s_noise == 0 && s_dmc == 0 + ? 0 + : 159.79f / (1 / ((s_tri / 8227.0f) + (s_noise / 12241.0f /* * NOISEADJUST*/) + (s_dmc / 22638.0f)) + 100); + + float output = pulse_out + tnd_out; + // output = output * 2 - 1; // this needs to leave enough headroom for straying DC bias due to the DMC unit getting stuck outputs. smb3 is bad about that. - int mix = (int)(20000 * output * (1 + m_vol/5)) + cart_sound; - - oldmix = mix; - - return mix; + oldmix = (int)(20000 * output * (1 + m_vol / 5)) + cart_sound; } return oldmix; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs index d4a6c485c4..c9b88f8182 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs @@ -763,8 +763,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { InputCallbacks.Call(); lagged = false; - byte ret = 0; - + byte ret; if (_isVS) { // for whatever reason, in VS left and right controller have swapped regs diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.run.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.run.cs index 4e9a3a988e..18adcbb017 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.run.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/PPU.run.cs @@ -72,7 +72,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES //TODO - check flashing sirens in werewolf //tack on the deemph bits. THESE MAY BE ORDERED WRONG. PLEASE CHECK IN THE PALETTE CODE - xbuf[(target - 1)] = (short)(pixelcolor_latch_1 | reg_2001.intensity_lsl_6); + xbuf[target - 1] = (short)(pixelcolor_latch_1 | reg_2001.intensity_lsl_6); } pixelcolor_latch_1 = pixelcolor;