I'm reading the instruction
imul 0xffffffd4(%ebp, %ebx, 4), %eax
and I'm baffled by what it's doing exactly. I understand that imul multiplies, but I can't figure out the syntax.
|
I'm reading the instruction
and I'm baffled by what it's doing exactly. I understand that imul multiplies, but I can't figure out the syntax.
| ||||
|
feedback
|
|
Hooray for AT&T assembly base/index syntax! It's not a 3-operand multiply at all. It's the same 2-operand one you know and love, it's just that the first one is a bit complicated. It means:
Or:
To be a bit clearer (and in base 10). The AT&T base/index syntax breaks down as:
| |||||||
feedback
|
|
(I know and prefer Intel/MASM syntax, so I will use that. Note that the order of operands is different to AT&T.) Your instruction is actually a two-operand
Where This instruction is multiplying a register by the integer in an array. Most likely this appears in a loop and the array is a local variable. The three-operand
The | |||
feedback
|