How does MASM .DATA? directive work internally [du

2019-05-14 09:57发布

This question already has an answer here:

In Kip Irvines book I came across the following :

The .DATA? directive declares uninitialized data. When defining a large block of uninitialized data, the .DATA? directive reduces the size of a compiled program. For example, the followingcode is declared efficiently:

.data?

bigArray DWORD 5000 DUP(?) ; 20,000 bytes, not initialized

The following code, on the other hand, produces a compiled program 20,000 bytes larger:

.data

bigArray DWORD 5000 DUP(?) ; 20,000 bytes

What exactly is the .data? directive doing under the hood in the above example to make the program 20k smaller.

1条回答
Melony?
2楼-- · 2019-05-14 10:25

The uninitialized data need not be in the compiled binary, just a byte count that the OS loader allocates at run-time when executing your program.

查看更多
登录 后发表回答