티스토리 뷰
명령어 |
설명 |
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
'Mobile > Android' 카테고리의 다른 글
Android Hidden Menu (0) | 2017.11.12 |
---|---|
Android NDK를 이용한 소스코드 크로스 컴파일 (0) | 2017.08.22 |
Android에서 사용 가능한 GDB, GDBSERVER (0) | 2016.09.05 |
APK 분석 (0) | 2015.12.06 |
Android 디바이스에서 Burp Suite를 이용한 HTTP 프록시 설정 (HTTPS 포함) (0) | 2015.11.14 |
댓글