-
-
[求助]求高手帮我找函数入口地址
-
发表于:
2012-10-25 22:11
5058
-
在vs2005编译的程序(release),我的目的就是查看函数myfunction在release模式下的反汇编代码。
#include "stdafx.h"
int myfunction(int a[3][3],int b[3][3],int c[3][3])
{
int i,j;
for (i = 0; i < 3; i++)
{
for (j = 0; j < 3; j++)
{
c[i][j] = a[i][0]*b[0][j] + a[i][1]*b[1][j] + a[i][2]*b[2][j];
}
}
return 0;
}
int _tmain(int argc, _TCHAR* argv[])
{
int a[3][3];
int b[3][3];
int c[3][3];
myfunction(a,b,c[0]);
return 0;
}
ida中
text:00401000 ; int __cdecl main(int argc, const char **argv, const char **envp)
.text:00401000 _main proc near ; CODE XREF: __tmainCRTStartup+10Ap
.text:00401000
.text:00401000 argc = dword ptr 4
.text:00401000 argv = dword ptr 8
.text:00401000 envp = dword ptr 0Ch
.text:00401000
.text:00401000 xor eax, eax
.text:00401002 retn
.text:00401002 _main endp
.text:00401002
在IDA的main函数找不到myfunctiong函数调用,main函数中,ida中看到的根本就没有调用myfunction函数,请问这是为什么,请高手指教,下面是编译好的release版本的可执行文件。
[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)