首页
社区
课程
招聘
[分享]int 在 Stack 所占的空間
发表于: 2010-11-9 14:28 3010

[分享]int 在 Stack 所占的空間

2010-11-9 14:28
3010
Test Code :
// VarWidth.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include
using namespace std;

int AddFunc(int x, int y) {
int a = 0, b = 0, c = 0;

cout << "x addr : " << &x << endl;
cout << "y addr : " << &y << endl;

cout << "a addr : " << &a << endl;
cout << "b addr : " << &b << endl;
cout << "c addr : " << &c << endl;

__asm{
mov eax, dword ptr[esp+4]
mov ebx, dword ptr[esp+8]
add eax, ebx
}
return 0;
}

int main(int argc, char* argv[])
{
int iRet = 0;
int x = 1, y = 2;
iRet = AddFunc(x, y);
// printf("Hello World!\n");
return 0;
}


Default 情況下 :





Default 情況下 V$.net Debug Version 會用掉 12 Bytes, 如果 Debug / Release 都只要 4 Bytes 的話(例如直接用 esp + offset Access Variable)可以 follow 這一篇 : http://www.eggheadcafe.com/software/aspnet/29178215/an-int-that-is-4-bytes-in-native-and-12-bytes-in-net-huh.aspx

PS : gcc.2 --> gcc 4.2

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//