我最常用的gdb
命令是l
紧随n
其后的是l -
.
我怎样才能在 lldb 中得到相同的结果?
我不满意必须输入一些行号才能在某处查看代码。在将大量变量转储到终端后,我想看看我在代码中的位置。而且我过去常常l -
回去看看我在哪里,因为随后的调用l
会使我向下滚动(lldb 也这样做,但关键是不响应l -
)。
也许我遗漏了一些东西,我可以将它放入某种“模式”,它会一直在单独的缓冲区中显示相应的源位置。那会很好,但我什至没有要求。
在 Xcode 4.6 中,lldb 的l
别名是source list
.
在树源的顶部,这已被改进为更像 gdb。如果您查看http://lldb.llvm.org/source/Interpreter/CommandInterpreter.cpp
,您会发现它现在是一个正则表达式命令别名,具有以下情况:l
if (list_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "source list --line %1") &&
list_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:space:]]*$", "source list --file '%1' --line %2") &&
list_regex_cmd_ap->AddRegexCommand("^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "source list --address %1") &&
list_regex_cmd_ap->AddRegexCommand("^-[[:space:]]*$", "source list --reverse") &&
list_regex_cmd_ap->AddRegexCommand("^-([[:digit:]]+)[[:space:]]*$", "source list --reverse --count %1") &&
list_regex_cmd_ap->AddRegexCommand("^(.+)$", "source list --name \"%1\"") &&
list_regex_cmd_ap->AddRegexCommand("^$", "source list"))
在这些情况下,您将获得如下行为:
显示当前帧:
(lldb) f
#0: 0x0000000100000f2b a.out`main + 27 at a.c:15
12
13
14
-> 15 puts ("hi"); // line 15
16
17 puts ("hi"); // line 17
18 }
显示前十行:
(lldb) l -
5
6
7
8
9 puts ("hi"); // line 9
10
11
您还可以使用stop-line-count-after
和stop-line-count-before
设置来控制在帧停止处显示多少源上下文。
请注意,您可以在文件中创建自己的正则表达式命令别名,~/.lldbinit
其行为与树顶 lldb 的l
. 参见help command regex
语法和示例。
LLDB:[如何] 列出源代码
即:对于任何寻找“我如何让 lldb 显示我再次在哪一行?(因为我最近的命令已经掩盖了它)”的人来说,它很简单f
。键入f
以再次查看您在代码中的位置。
f
或者
frame select
来源:LLDB:列出源代码
另见帮助菜单lldb
:
help f
显示以下内容:
(lldb) help f Select the current stack frame by index from within the current thread (see 'thread backtrace'.) Syntax: f <cmd-options> [<frame-index>] Command Options Usage: f [-r <offset>] [<frame-index>] -r <offset> ( --relative <offset> ) A relative frame index offset from the current frame index. This command takes options and free-form arguments. If your arguments resemble option specifiers (i.e., they start with a - or --), you must use ' -- ' between the end of the command options and the beginning of the arguments. 'f' is an abbreviation for 'frame select'
该帮助菜单的底部显示“f
是”的缩写frame select
。
请注意,在 中gdb
,等效命令很简单:
f
或者
frame
user@hostname> lldb -o "image lookup -rvn file" -o "quit" "Name of exec-file" | grep "CompileUnit"
user@hostname> lldb -o "image lookup -rvs file" -o "quit" "Name of exec-file" | grep "CompileUnit"