Examples of using On the stack in English and their translations into Vietnamese
{-}
-
Colloquial
-
Ecclesiastic
-
Computer
By overwriting a local variable that is near the buffer in memory on the stack to change the behaviour of the program which may benefit the attacker.
Contents of the register are saved on the stack and SP is incremented by 1.
This will allow your JVM to store the value on the stack instead of the heap to reduce memory consumption and handle it more efficiently.
It also saves the current status of all the interrupts internally(i.e., not on the stack).
Base instruction 0xD4 conv. ovf.i Convert to a native int(on the stack as native int) and throw an exception on overflow.
ovf.i2. un Convert unsigned to an int16(on the stack as int32) and throw an exception on overflow.
Base instruction 0xD5 conv. ovf.u Convert to a native unsigned int(on the stack as native int) and throw an exception on overflow.
ovf.u. un Convert unsigned to a native unsigned int(on the stack as native int) and throw an exception on overflow.
ovf. u1 Convert to an unsigned int8(on the stack as int32) and throw an exception on overflow.
ovf.u2. un Convert unsigned to an unsigned int16(on the stack as int32) and throw an exception on overflow.
ovf. u4 Convert to an unsigned int32(on the stack as int32) and throw an exception on overflow.
Object model instruction 0xFE 0x06 ldftn Push a pointer to a method referenced by method, on the stack.
Base instruction 0x48 ldind. i2 Indirect load value of type int16 as int32 on the stack.
Base instruction 0x4C ldind. i8 Indirect load value of type int64 as int64 on the stack.
Base instruction 0x8E ldlen Push the length(of type native unsigned int) of array on the stack.
Object model instruction 0x7E ldsfld Push the value of field on the stack.
Object model instruction 0x9C stelem. i1 Replace array element at index with the int8 value on the stack.
Object model instruction 0x9D stelem. i2 Replace array element at index with the int16 value on the stack.
Object model instruction 0x9E stelem. i4 Replace array element at index with the int32 value on the stack.