gpt4 book ai didi

在 LLDB session 期间使用 expr 调用函数

转载 作者:行者123 更新时间:2023-12-03 10:34:57 25 4
gpt4 key购买 nike

我正在尝试更好地掌握 LLDB,目前我在调试某些代码时尝试调用本地定义的函数(使用 LLDB 的 expr)。为了简单起见,让我们考虑这个玩具代码:

testing_lldb.c:

unsigned long factorial(unsigned input) {
unsigned long ret_val = 0;

if (input == 0)
ret_val = 1;
else
ret_val = input * (factorial(input-1));

return ret_val;
}

我是这样编译的:

$ clang -g -Weverything -c lldb_test.c

然后键入以下命令运行 LLDB:

$ lldb testing_lldb.o

在我的 LLDB session 中,我希望能够调用 factorial()。我的第一次尝试:

(lldb) expr unsigned long i = factorial(i);
error: 'factorial' has unknown return type;
cast the call to its declared return type

错误信息中有明确的提示,所以我再试一次:

(lldb) expr unsigned long i = (unsigned long)factorial(i);
error: warning: function 'factorial' has internal linkage but is not defined
note: used here
error: Can't run the expression locally: Interpreter doesn't handle one of the expression's opcodes

好吧,我尝试按照这个 SO question 的答案手动定义 factorial() :

(lldb) expr typedef unsigned long (*$factorial_type)(unsigned)
(lldb) expr $factorial_type $factorial_function = ($factorial_type)0x0000000000000000
(lldb) expr unsigned long i = (unsigned long)factorial(i);
error: warning: function 'factorial' has internal linkage but is not defined
note: used here
error: Can't run the expression locally: Interpreter doesn't handle one of the expression's opcodes

这给了我与上面完全相同的错误。我通过运行再次检查了 factorial() 的起始地址:

(lldb) image lookup -Avi -n factorial 

问题

给定 testing_lldb.c 需要什么才能在 LLDB 的表达式中使用 factorial()

关于环境的一些细节:

$ uname -r
3.16.0-4-amd64
$ lldb -v
lldb version 3.4.2 ( revision )
$ clang -v
Debian clang version 3.4.2-14 (tags/RELEASE_34/dot2-final) (based on LLVM 3.4.2)
Target: x86_64-pc-linux-gnu

最佳答案

如果您正在调试实时进程,则只能使用表达式解析器来评估运行函数的表达式。您不仅没有调试实时进程,而且还调试了一个 .o 文件——它没有完全链接——所以它永远无法运行。 lldb 可以检查 .o 文件、转储符号表和类似的东西,但并不是所有的东西都能工作。

您想在“testing_lldb.c”中添加一个小的 main 函数,并构建一个可运行的程序(删除 -c 标志。)然后在 main 上设置一个断点:

(lldb) break set -n main

运行程序

(lldb) run

然后当您到达断点时,尝试调用您的函数。

关于在 LLDB session 期间使用 expr 调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30786344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com