这是我的问题:
我尝试使用scanf
(in msvcrt.dll
) 输入单个浮点值,flat assembler
然后我编写了一个简单的“scanf 程序”,如下所示 (in C
):
#include <stdio.h>
int main() {
float a;
scanf("%f", &a);
printf("Just input: %f", a);
return 0;
}
然后使用参数cl.exe
编译/FA
生成汇编文件,如下所示:
lea eax, DWORD PTR _a$[ebp]
push eax
push OFFSET $SG2935
call _scanf
add esp, 8
; Line 8
cvtss2sd xmm0, DWORD PTR _a$[ebp]
sub esp, 8
movsd QWORD PTR [esp], xmm0
push OFFSET $SG2936
call _printf
add esp, 12 ; 0000000cH
我误解的是movsd
指令。根据这里: http: //faydoc.tripod.com/cpu/movsb.htm它Move doubleword at address DS:(E)SI to address ES:(E)DI
但我没有看到任何设置esi
,edi
在这里和movsd
生成的源文件有两个参数,但在链接中的文档中它不应该。有人可以在这里解释一下吗?