imul :
multiply two integers : index : visitInsn()
- Description
- Pops the top two integers from the operand stack, multiplies them, and
pushes the integer result back onto the stack. On overflow, imul produces a
result whose low order bits are correct, but whose sign bit may be incorrect.
- See also
- lmul fmul dmul
- Stack
Before
|
After |
value1 |
result |
value2 |
... |
... |
... |
- Bytecode
Type
|
Description |
u1
|
imul
opcode = 0x68 (104)
|