GNU Debugger (GDB)
From mylearnings
- Find start address and end address of a function
info line <Function Name>
- To view the instruction at a specific address.
x/i <Address>
- Print string pointed by a register.
x/s $rdi
- Disassemble a specific range of address.
disass <start address> <end address>