summaryrefslogtreecommitdiffstats
path: root/src/asm_support.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2011-10-31 16:19:55 -0700
committerIan Rogers <irogers@google.com>2011-10-31 16:19:55 -0700
commitb093c6b27f8ea9bbe2d49c03ebe345203a121199 (patch)
tree34e49f46eb30a2aee8590dbf11365c8b5824c16b /src/asm_support.h
parent95e4ef7cebf2e33b6e73a3957089f958e41771f5 (diff)
downloadart-b093c6b27f8ea9bbe2d49c03ebe345203a121199.zip
art-b093c6b27f8ea9bbe2d49c03ebe345203a121199.tar.gz
art-b093c6b27f8ea9bbe2d49c03ebe345203a121199.tar.bz2
Support for access check in checkcast and instanceof.
Change-Id: Ie15216618b35cace7d351be2b0a1c466ed6db489
Diffstat (limited to 'src/asm_support.h')
-rw-r--r--src/asm_support.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/asm_support.h b/src/asm_support.h
index f81966f..8d29a35 100644
--- a/src/asm_support.h
+++ b/src/asm_support.h
@@ -10,13 +10,13 @@
#define rSELF r9
#define rLR r14
// Offset of field Thread::suspend_count_ verified in InitCpu
-#define THREAD_SUSPEND_COUNT_OFFSET 388
+#define THREAD_SUSPEND_COUNT_OFFSET 392
// Offset of field Thread::suspend_count_ verified in InitCpu
-#define THREAD_EXCEPTION_OFFSET 384
+#define THREAD_EXCEPTION_OFFSET 388
#elif defined(__i386__)
// Offset of field Thread::self_ verified in InitCpu
-#define THREAD_SELF_OFFSET 376
+#define THREAD_SELF_OFFSET 380
#endif
#endif // ART_SRC_ASM_SUPPORT_H_