|
|
|
|
@ -1249,6 +1249,7 @@ void CodeGenerator::EmitLoadGuestMemoryFastmem(const CodeBlockInstruction& cbi,
|
|
|
|
|
bpi.address_host_reg = HostReg_Invalid;
|
|
|
|
|
bpi.value_host_reg = result.host_reg;
|
|
|
|
|
bpi.guest_pc = m_current_instruction->pc;
|
|
|
|
|
bpi.fault_count = 0;
|
|
|
|
|
|
|
|
|
|
Value fastmem_base = GetFastmemLoadBase();
|
|
|
|
|
|
|
|
|
|
@ -1405,6 +1406,7 @@ void CodeGenerator::EmitStoreGuestMemoryFastmem(const CodeBlockInstruction& cbi,
|
|
|
|
|
bpi.address_host_reg = HostReg_Invalid;
|
|
|
|
|
bpi.value_host_reg = value.host_reg;
|
|
|
|
|
bpi.guest_pc = m_current_instruction->pc;
|
|
|
|
|
bpi.fault_count = 0;
|
|
|
|
|
|
|
|
|
|
Value fastmem_base = GetFastmemStoreBase();
|
|
|
|
|
Value actual_value = GetValueInHostRegister(value);
|
|
|
|
|
|