mistymntncop
mistymntncop
When you manually update a value in the Watch View the updated value is not updated in the Memory View. Steps to Reproduce: 1. Compile this C code: ``` #include...
Tested this on the latest master and dev branches. Steps to reproduce: 1. Compile this program with MSVC - normal flags e.g. (cl -Zi -Od test.c) ``` #include #include #include...
If you run this code it pseudo hangs the debugger. Namely the int3 (0xCC) instruction is never caught by the debugger (no call stack, etc) and the disassembly view becomes...
I encountered this crash when attempting to step out of a function. Can't seem to trigger it reliably but it's happened a few times now. ``` [Window Title] Fatal Exception...
If you try to view a large sized disassembly (large byte size) in the watch view it will be displayed like this - visual overflowing into the next watch rows....
It would be great if you could create module relative breakpoints (relative to the base of the module e.g. mod_base("MyProg.exe")+0x1234). Absolute breakpoints may be invalidated when restarting debugging due to...
Windows provides some apis (namely RtlAddFunctionTable, RtlAddGrowableFunctionTable, RtlInstallFunctionTableCallback) for the user application to add unwind info for dynamically generated code. This is how JIT compilers such as [V8](https://source.chromium.org/chromium/chromium/src/+/main:v8/src/diagnostics/unwinding-info-win64.cc;l=560;drc=fb9e129964cf89d7de13cd8f2a7bcaf6573fb8da) (Turbofan) allows...
I was debugging Chromium and have been experiencing noticeable slowdowns in the UI sometimes when stepping into a function. Having a deeper look with RemedyBG it seems to happen whenever...
When debugging a release build of Firefox I have noticed a significant slowdown of launching Firefox when adding a small number of breakpoints. Without any breakpoints enabled Firefox launches within...
It would be really useful to be able to step over/into the outer most function call. For example: A(B(), C()); A lot of the time I only want to step...