本文主要是介绍gdb TUI使用方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
汇编及C/C++汇编调用约定讲解
> 汇编及C/C++汇编调用约定(汇总帖)
> 汇编编译和gdb调试命令列表
> gdb TUI使用方法
> 汇编C语言调用约定(标准函数)
> 汇编C语言调用约定(递归函数)
> C++内存模型以及寄存器指针rsp和rbp
文章目录
- 汇编及C/C++汇编调用约定讲解
- TUI(TextUser Interface):GDB调试的文本用户界面,可以方便地显示源代码、汇编和寄存器文本窗口
- 1. 启动 gdb tui 调试
- 2. tui命令
- 3. layout 命令
- 4. x 命令
TUI(TextUser Interface):GDB调试的文本用户界面,可以方便地显示源代码、汇编和寄存器文本窗口
1. 启动 gdb tui 调试
2. tui命令
3. layout 命令
(gdb) help layout
Change the layout of windows.
Usage: layout prev | next | <layout_name>
Layout names are:src : Displays source and command windows.asm : Displays disassembly and command windows.split : Displays source, disassembly and command windows.regs : Displays register window. If existing layoutis source/command or assembly/command, theregister window is displayed. If thesource/assembly/command (split) is displayed,the register window is displayed withthe window that has current logical focus.
4. x 命令
- (gdb) x/nfu 显示内存 // n为个数,f 为格式,u为每单元长度
这篇关于gdb TUI使用方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!