3

我一直在编写一个简单的 c++ 程序,它使用 Assembly 获取 2 个数字的 GCD 并将它们作为我观看的教程中使用的示例输出。我明白它在做什么,但我不明白为什么它不起作用。编辑:应该在运行时添加它,它根本不输出任何东西。

#include <iostream>
using namespace std;

int gcd(int a, int b)
{
int result;
_asm
{
    push ebp
    mov ebp, esp
    mov eax, a
    mov ebx, b
looptop:
    cmp eax, 0
    je goback
    cmp eax, ebx
    jge modulo
    xchg eax, ebx
modulo:
    idiv ebx
    mov eax, edx
    jmp looptop
goback:
    mov eax, ebx
    mov esp, ebp
    pop ebp

    mov result, edx
}

return result;
}

int main()
{
cout << gcd(46,90) << endl;
    return 0;
}

我在 32 位 Windows 系统上运行它,任何帮助将不胜感激。编译时出现4个错误:

warning C4731: 'gcd' : frame pointer register 'ebp' modified by inline assembly code
warning C4731: 'gcd' : frame pointer register 'ebp' modified by inline assembly code
warning C4731: 'main' : frame pointer register 'ebp' modified by inline assembly code
warning C4731: 'main' : frame pointer register 'ebp' modified by inline assembly code
4

1 回答 1

3

编译器将在函数的开头和结尾为您插入这些或等效指令:

push ebp
mov ebp, esp
...
mov esp, ebp
pop ebp

如果您手动添加它们,您将无法通过 访问函数的参数ebp,这就是编译器发出警告的原因。

删除这 4 条指令。

另外,开始使用调试器。今天。

于 2012-10-16T10:49:39.997 回答