diff options
author | 2018-10-15 18:03:55 +0100 | |
---|---|---|
committer | 2018-10-16 15:13:44 +0100 | |
commit | 776f3f7bfa33e0449e4e2c5535bae1babfdbaf83 (patch) | |
tree | 274d20979e48c772327258b7cbeab92b276df84e /runtime/entrypoints_order_test.cc | |
parent | d88f5f7b22571511b93206f02806568648138a35 (diff) |
Remove mterp "alternate" opcode handlers.
They are currently unused and I don't have plans to use them.
The alternate table made it possible to enable extra mterp checks.
However, it is possible to move the debug checks to the main path.
Test: test.py -b -r --interpreter -t 001-HelloWorld
Change-Id: I45a39ec73abaefaecf5b8c636f3f9d519a0a8bb0
Diffstat (limited to 'runtime/entrypoints_order_test.cc')
-rw-r--r-- | runtime/entrypoints_order_test.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/entrypoints_order_test.cc b/runtime/entrypoints_order_test.cc index 50c65ea505..f45197834f 100644 --- a/runtime/entrypoints_order_test.cc +++ b/runtime/entrypoints_order_test.cc @@ -127,9 +127,7 @@ class EntrypointsOrderTest : public CommonRuntimeTest { EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_objects, jni_entrypoints, sizeof(size_t)); // Skip across the entrypoints structures. - EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, mterp_current_ibase, mterp_default_ibase, sizeof(void*)); - EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, mterp_default_ibase, mterp_alt_ibase, sizeof(void*)); - EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, mterp_alt_ibase, rosalloc_runs, sizeof(void*)); + EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, mterp_current_ibase, rosalloc_runs, sizeof(void*)); EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, rosalloc_runs, thread_local_alloc_stack_top, sizeof(void*) * kNumRosAllocThreadLocalSizeBracketsInThread); EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_alloc_stack_top, thread_local_alloc_stack_end, |