gpt4 book ai didi

c - 怀疑 'gdb' 下的尾部优化代码

转载 作者:行者123 更新时间:2023-12-01 12:01:33 25 4
gpt4 key购买 nike

考虑 C 中的尾递归阶乘实现:

#include <stdio.h>

unsigned long long factorial(unsigned long long fact_so_far, unsigned long long count, unsigned long long max_count){

if (max_count==0 || max_count==1 || count >= max_count)
return fact_so_far;
else
{
printf("%llu %p \n", count, &factorial);
return factorial(fact_so_far * count, ++count, max_count);
}

}


int main(int argc, char **argv)
{
unsigned long long n;
scanf("%llu", &n);
printf("\n Factorial %llu \n",factorial(1,0,n));
return 0;

}

我在“factorial”中放置了一个断点,然后在“gdb”下运行上面的代码。断点永远不会被击中。

假设它的尾调用优化了(我已经使用 gcc -O2 编译它),它应该达到断点,至少一次,IIRC。

编辑:我在没有遇到任何断点的情况下得到了最终结果。例如,
(gdb) b factorial
Breakpoint 1 at 0x8048429: file factorial-tail.c, line 3.
(gdb) run
Starting program: /home/amit/quest/codes/factorial-tail
5
0 0x8048420
1 0x8048420
2 0x8048420
3 0x8048420
4 0x8048420

Factorial 120

Program exited normally.
(gdb)

我哪里错了?

最佳答案

对我来说很好用。您在编译时加入使用 -g 标志来添加调试信息?你还记得你必须输入一个数字来计算阶乘吗?

关于c - 怀疑 'gdb' 下的尾部优化代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/877241/

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