Mobile/Android
Dalvik opcode
do9dark
2015. 12. 5. 02:30
명령어 |
설명 |
if-eq x, y, target |
x == y 인 경우, target으로 이동 (x, y 값은 정수) |
if-ne x, y, target |
x != y 인 경우, target으로 이동 (x, y 값은 정수) |
if-lt x, y, target |
x < y 인 경우, target으로 이동 (x, y 값은 정수) |
if-le x, y, target |
x <= y 인 경우, target으로 이동 (x, y 값은 정수) |
if-gt x, y, target |
x > y 인 경우, target으로 이동 (x, y 값은 정수) |
if-ge x, y, target |
x >= y 인 경우, target으로 이동 (x, y 값은 정수) |
if-eqz x, target |
x == 0 인 경우, target으로 이동 (x 값은 정수) |
if-nez x, target |
x != 0 인 경우, target으로 이동 (x 값은 정수) |
if-ltz x, target |
x < 0 인 경우, target으로 이동 (x 값은 정수) |
if-lez x, target |
x <= 0 인 경우, target으로 이동 (x 값은 정수) |
if-gtz x, target |
x > 0 인 경우, target으로 이동 (x 값은 정수) |
if-gez x, target |
x >= 0 인 경우, target으로 이동 (x 값은 정수) |
http://developer.android.com/reference/dalvik/bytecode/Opcodes.html