This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
原始链接: https://github.com/d4ckard/spray
Spray 是一个用于 C 代码的小型调试器,它提供了一些简单的功能,旨在使调试变得更容易并且减轻精神负担。 它具有函数断点、文件行断点和地址断点; 打印和设置变量、内存地址和寄存器; 语法高亮; 回溯; 指令、功能和线路级步进; and filters to format command outputs. Spray目前在实施上严重依赖CHICKENScheme,这需要在能够构建Spray之前拥有ChickenScheme解释器和开发环境。 然而,将来,在编译过程中创建的 C 文件将可用,允许在不依赖 Chicken Scheme 的情况下构建 Spray。 一些基本功能,例如打印和操作变量,以及通过断点将程序分解为更小的部分,只需要阅读现有的 C 源代码。 这些步骤也可以在常用的 Linux 环境中完成,甚至可以直接通过 shell 脚本完成。 其余仅依赖于Scheme的任务,例如过滤器定制和输入解析,应该通过终端在外部执行。 Spray 目前支持指令级、函数级和行级步进,其中每一个都允许用户遍历已执行指令的部分。 行级步进完全专注于单个指令,同时跳过分支条件但功能指令。 函数级浸泡遵循每个函数调用的流程。 最后,指令级步进支持基本块结构之间的遍历。 The debugging experience supported by Spray stems partly from prior experiments with debugging for C code with Dr. David D. Schorr, author of "Programmer’s Toolbox" (OUP), who also invented the concept of annotating machine language statements using inline commentary strings delimited by 分号“;”。
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.