gpt4 book ai didi

c++ - g++ 不正确的循环?

转载 作者:太空狗 更新时间:2023-10-29 23:36:57 25 4
gpt4 key购买 nike

我有一个与此类似的真实程序,我将其称为 test.cpp:

#include <stdlib.h>

extern void f(size_t i);

int sample(size_t x)
{
size_t a = x;
size_t i;

for (i = a-2; i>=0; i--) {
f(i);
}
}

我的问题是 i 是一个无限循环。

如果我运行以下命令:

g++ -S -o test.s test.cpp

我得到以下装配顺序:

        .file   "test.cpp"
.text
.globl _Z6samplem
.type _Z6samplem, @function
_Z6samplem:
.LFB0:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $32, %rsp
movq %rdi, -24(%rbp)
movq -24(%rbp), %rax
movq %rax, -8(%rbp)
movq -8(%rbp), %rax
subq $2, %rax
movq %rax, -16(%rbp)
.L2:
movq -16(%rbp), %rax
movq %rax, %rdi
call _Z1fm
subq $1, -16(%rbp)
jmp .L2
.cfi_endproc
.LFE0:
.size _Z6samplem, .-_Z6samplem
.ident "GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3"
.section .note.GNU-stack,"",@progbits

我不是汇编语言专家,但我希望看到比较 i >= 0 和条件跳出循环的代码。这是怎么回事??

Ubuntu Linux 上的 GNU C++ 4.6.3

最佳答案

size_t 是无符号的,所以条件 i>=0 总是 truei 不可能为负数。

关于c++ - g++ 不正确的循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11265272/

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