在内联汇编中访问C结构成员

时间:2012-08-06 03:16:19

标签: c++ c inline-assembly masm

在以下代码中,rEDX, rEBX, rEBP, rESI and rEDI是结构scratch_space的成员。 scratch_space_arg是结构scratch_space的对象。

lea eax, scratch_space_arg
mov [ecx+[eax].rEDX], edx
mov [ecx+[eax].rEBX], ebx
mov [ecx+[eax].rEBP], ebp
mov [ecx+[eax].rESI], esi
mov [ecx+[eax].rEDI], edi

这段代码给了我一个:

error C2426: '[' : illegal operator in 'first operand'

表示所有mov语句。知道如何解决这个问题吗?

PS:我使用this article来访问struct成员。

1 个答案:

答案 0 :(得分:2)

我建议反汇编一些引用结构元素的C代码:

struct scratch_space scratch_space_arg = { 0, 0, 0, 0, 0 };
int rEDX = scratch_space_arg.rEDX;
int rEBX = scratch_space_arg.rEBX;
int rEBP = scratch_space_arg.rEBP;
int rESI = scratch_space_arg.rESI;
int rEDI = scratch_space_arg.rEDI;
printf("%d %d %d %d %d\n", rEDX, rEBX, rEBP, rESI, rEDI);

然后你就会知道自己使用的正确表示法。