“调试符号”的含义关于GDB

发布于 2024-12-03 04:50:19 字数 232 浏览 0 评论 0原文

维基百科说:

调试符号是表示哪些编程语言结构在给定可执行模块中生成特定机器代码的信息。

  1. 是否有任何关于为此目的使用何种编程语言结构的示例?

  2. 在此上下文中“构造”的含义是什么?函数?

Wikipedia says:

A debug symbol is information that expresses which programming-language constructs generated a specific piece of machine code in a given executable module.

  1. Any examples of what kind of programming-language constructs are used for the purpose?

  2. What is the meaning of "constructs" in this context? Functions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多孤肩上扛 2024-12-10 04:50:20

所指的编程语言结构包括 if 语句、while 循环、赋值语句等。

调试符号通常是将机器字节码的可执行块的地址与原始源代码文件和它们所代表的行号进行映射的文件。这允许您执行一些操作,例如在 if 语句上放置断点,并在执行到达字节码的特定位时让机器停止。

The programming language constructs reffered to are things like if statements, while loops, assignment statements, etc etc.

Debug symbols are usually files that map addresses of executable chunks of machine bytecode with the original source code file and line number they represent. This is what allows you to do things like put a breakpoint on an if statement, and have the machine stop when the execution reached that particular bit of bytecode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文