The GDB JIT interface
Max Bernstein
https://bernsteinbear.com/blog/gdb-jit/

#GDB #debug #JIT

The GDB JIT interface

GDB is great for stepping through machine code to figure out what is going on. It uses debug information under the hood to present you with a tidy backtrace and also determine how much machine code to print when you type disassemble.

Max Bernstein