有人可以给我一些真实的例子来帮助我理解汇编语言中的被调用者和调用者是什么?我已经通过了大多数来源,但我仍然无法区分被调用者和调用者。先感谢您。(我正在添加这个解释 - 再次感谢您!对不起,我是新来的代码,不知道如何插入代码以正确显示)我正在尝试理解这段代码 - 学习组装的基础知识。我正在尝试为每个命令添加注释(我相信像我这样的其他人也需要它:
sub_401040 proc near
.text:00401040
.text:00401040
.text:00401040 000 push ebp ; Push the content of ebp register onto the stack
.text:00401041 004 mov ebp, esp ;Allocating 8 bytes of storage ; move the esp register content into ebp register
.text:00401043 004 push ecx
.text:00401044 008 mov eax, [ebp+8]
.text:00401047 008 push eax ; Push eax contents onto the stack
.text:00401048 00C call ds:lstrlenA
.text:0040104E 008 add eax, [ebp+0Ch]
.text:00401051 008 mov edx, eax
.text:00401053 008 mov ecx, 1 ;Set buffer address
.text:00401058 008 call sub_401000
.text:0040105D 008 mov [ebp-4], eax
.text:00401060 008 mov ecx, [ebp-4]
.text:00401063 008 shl ecx, 2
.text:00401066 008 mov [ebp-4], ecx
.text:00401069 008 mov edx, [ebp-4]
.text:0040106C 008 push edx
.text:0040106D 00C push offset aResultD ; "Result: %d\n"
.text:00401072 010 call ds:printf
.text:00401078 010 add esp, 8 ; clean up the stack by adding the size of the argument to esp register
.text:0040107B 008 mov eax, 539h
.text:00401080 008 mov esp, ebp
.text:00401082 004 pop ebp ;Restore old frame pointer
.text:00401083 000 retn ; Return near
.text:00401083 sub_401040 endp
我读到了,为了定义调用约定,我需要弄清楚谁是调用者,谁是被调用者:) 我花了很多时间来理解逻辑: call ds:lstrlenA 是指被调用者吗?sub_401040 是调用者吗?我们可以在一个程序中有多个调用约定吗?像 cdecl 和 stdcall 一样?我不是程序员,也不是在写代码,我只是想了解它是如何帮助分析病毒的。