Could someone explain what this means? (Intel Syntax, x86, Windows)

and     dword ptr [ebp-4], 0
link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

The "dword ptr" part is called a size directive. This page explains them, but it wasn't possible to direct-link to the correct section.

Basically, it means "the size of the target operand is 32 bits", so this will bitwise-AND the 32-bit value at the address computed by taking the contents of the ebp register and subtracting four with 0.

link|improve this answer
2  
The "d" in "dword" stands for "double". A word is 16 bits. – JeremyP Jun 7 '10 at 9:40
feedback

Consider the figure enclosed in this other question. ebp-4 is your first local variable and, seen as a dword pointer, it is the address of a 32 bit integer that has to be cleared. Maybe your source starts with

Object x = null;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.