我无法在Visual Studio 2017中编译程序集文件。 我不确定天气是由于Visual Studio还是由于我在代码中犯了一些错误,请帮助我。
我有一个用于调用的c ++主文件:
#include "stdafx.h"
#include "myStruct.h"
extern "C" __int64 CalcStructSum_(const myStruct *kekStruct);
int _tmain(int argc, _TCHAR* argv[])
{
myStruct kek;
kek.Val8 = 8;
kek.Val16 = 16;
kek.Val32 = 32;
kek.Val64 = 64;
__int64 summe = CalcStructSum_(&kek);
printf("summe betraegt: %d", summe);
getchar();
return 0;
}
mystruct.h:
#pragma once
typedef struct
{
__int8 Val8;
__int8 Pad8;
__int16 Val16;
__int32 Val32;
__int64 Val64;
}myStruct;
这里是程序集的等效项:
myStruct struct
Val8 byte ?
Pad8 byte ?
Val16 word ?
Val32 dword ?
Val64 qword ?
myStruct ends
这是程序集文件:
.model flat,c
include myStruct_.inc
.code
;prolog and function start
CalcStructSum_ proc
push ebp
mov ebp,esp
push ebx
push esi
; das struct liegt auf dem stack
; alle felder wurden auf 32 bit sign-extended
; in esi kommt anfang des speicherbereichs rein
; später wird quasi [basereg + dispatch] daraus interpretiert
mov esi, [ebp+8] ; get a pointer to "mystruct"
; load 8- and 16bit sources into 32bit registers (movsx)
; this is necassery to load struct-fields from the stack
movsx eax, byte ptr [esi + myStruct.Val8] ; [baser. + disp]
movsx ecx, word ptr [esi + myStruct.Val16]
add eax, ecx
; now sign-extend eax register to 64bit
; high part: edx , low part: eax
cdq
;save result for later
mov ebx, eax
mov ecx, edx
; now load the int-part of the struct and add it
; (it must be sign-extended to edx:eax again)
mov eax, [esi + myStruct.Val32]
cdq
; (the high-part must be added with carry, if overflown)
add eax, ebx
adc edx, ecx
; now, get the long from stack
add eax, dword ptr [esi + myStruct.Val64] ; low part
adc edx, dwprd ptr [esi + myStruct.Val64 + 4] ; high part
; we now have the sum of all structure fields in the register pair edx:eax
pop esi
pop ebx
pop ebp
ret
CalcStructSum_ endp
end
此外,我将文件包含在浏览器窗口中,如下所示(当然,还设置了构建依赖项):
我也尝试使用ml.exe从powershell进行组装,但是这里也没有运气。 另外,如果有人可以指出一种简单的方法来捕获ml.exe的输出,那就太好了,它在执行后立即消失了(一个cmd-noob)。
最后,我尝试将文件置于ANSI模式,但这根本不是问题,我只是通读了旧的stackoverflow答题器。
我想念什么?我应该回到VS2010吗?还是仅仅是白痴的语法错误?这真让我感到惊讶,因为这样一个简单的概念验证程序就不难写-.-
答案 0 :(得分:0)
好,问题解决了:
原来是第50行中的错字[[dwprd“而不是” dword“]。
已解决。 如果有人遇到像我这样的情况,他们只是找不到汇编器/ IDE提供的任何有用的提示,那么这就是我找到解决方案的方式:
[在Windows操作系统中]