94.

prev next contents
ior

integer bitwise or

Jasmin Syntax
     ior 
Stack

Before

After
value1
result
value2
...
...

Description

Computes the bitwise or of value1 and value2 (which must be ints). The int result replaces value1 and value2 on the stack.

Example

 ; This is like the Java code: ;       int x; ;       x |= 2; ; iload_1          ; load local variable 1 onto stack iconst_2         ; push the integer 2 onto the stack ior              ; compute the bitwise or istore_1         ; store the result in local variable 1 
Bytecode

Type

Description
u1
ior opcode = 0x80 (128)
See Also

ishl, ishr, iushr, lshl, lshr, lushr, iand, land, lor, ixor, lxor


prev next contents
Java Virtual Machine, by Jon Meyer and Troy Downing, O'Reilly Associates


Java Virtual Machine
Java Virtual Machine (Java Series)
ISBN: 1565921941
EAN: 2147483647
Year: 1996
Pages: 171

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net