You should really complain to Matt_P to fix the symbol server, or if it's your own build, load symbols for dolphin.
Also, you just looking at exceptions caused by the jit (
IP_ON_HEAP: 000024a1802694b8
The fault address in not in any loaded module, please check your build's rebase
) and mask the "bad" addresses by 0xffff - you'll see they are just mmio addresses.
try disassembling code around these read AVs - it'll look like dolphin-emitted code.
So, the output of !analyze is not applicable - it's just reporting normal dolphin behavior.
A dump(with pdb) or at least the log with proper symbols would help. Let it crash normally. You can install windbg as postmortem debugger by:
windbg -I
Also, you just looking at exceptions caused by the jit (
IP_ON_HEAP: 000024a1802694b8
The fault address in not in any loaded module, please check your build's rebase
) and mask the "bad" addresses by 0xffff - you'll see they are just mmio addresses.
try disassembling code around these read AVs - it'll look like dolphin-emitted code.
So, the output of !analyze is not applicable - it's just reporting normal dolphin behavior.
A dump(with pdb) or at least the log with proper symbols would help. Let it crash normally. You can install windbg as postmortem debugger by:
windbg -I
