gcc -S
选项将以AT& T语法生成汇编代码,有没有办法用Intel语法生成文件?或者有没有办法在两者之间进行转换?
答案 0 :(得分:183)
你试过这个吗?
gcc -S -masm=intel test.c
未经测试,但我在forum找到了它,有人声称它适用于他们。
我只是在Mac上尝试了这个并且它失败了,所以我查看了我的手册页:
-masm=dialect
Output asm instructions using selected dialect. Supported choices
are intel or att (the default one). Darwin does not support intel.
它可能适用于您的平台。
对于Mac OSX:
clang++ -S -mllvm --x86-asm-syntax=intel test.cpp
答案 1 :(得分:15)
在
gcc -S -masm=intel test.c
与我合作。但我可以告诉另一种方式,虽然这与运行gcc无关。 编译可执行文件或目标代码文件,然后用objdump反汇编Intel asm语法中的目标代码,如下所示:
objdump -d --disassembler-options=intel a.out
这可能会有所帮助。
答案 2 :(得分:5)
我在CPP文件中有这段代码:
#include <conio.h>
#include <stdio.h>
#include <windows.h>
int a = 0;
int main(int argc, char *argv[]) {
asm("mov eax, 0xFF");
asm("mov _a, eax");
printf("Result of a = %d\n", a);
getch();
return 0;
};
该代码适用于此GCC命令行:
gcc.exe File.cpp -masm=intel -mconsole -o File.exe
它会产生* .exe文件,并且它符合我的经验。
Notes:
immediate operand must be use _variable in global variabel, not local variable.
example: mov _nLength, eax NOT mov $nLength, eax or mov nLength, eax
A number in hexadecimal format must use at&t syntax, cannot use intel syntax.
example: mov eax, 0xFF -> TRUE, mov eax, 0FFh -> FALSE.
这就是全部。