blob: 13132632bb39e2af91b2a641bf8a5291a1b501fe [file] [log] [blame]
Andreas Gampe4352b452014-06-04 18:59:01 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <memory>
Dave Allison8ce6b902014-08-26 11:07:58 -070018#include <setjmp.h>
Andreas Gampe4352b452014-06-04 18:59:01 -070019
20#include "base/macros.h"
21#include "common_runtime_test.h"
22#include "thread.h"
23
24// This test checks the offsets of values in the thread TLS and entrypoint structures. A failure
25// of this test means that offsets have changed from the last update of the test. This indicates
26// that an oat version bump may be in order, and some defines should be carefully checked (or their
27// corresponding tests run).
28
29namespace art {
30
31// OFFSETOF_MEMBER uses reinterpret_cast. This means it is not a constexpr. So we cannot use
32// compile-time assertions. Once we find another way, adjust the define accordingly.
33#define CHECKED(expr, name) \
34 EXPECT_TRUE(expr) << #name
35
36// Macro to check whether two fields have an expected difference in offsets. The error is named
37// name.
38#define EXPECT_OFFSET_DIFF(first_type, first_field, second_type, second_field, diff, name) \
39 CHECKED(OFFSETOF_MEMBER(second_type, second_field) \
40 - OFFSETOF_MEMBER(first_type, first_field) == diff, name)
41
42// Helper macro for when the fields are from the same type.
43#define EXPECT_OFFSET_DIFFNP(type, first_field, second_field, diff) \
44 EXPECT_OFFSET_DIFF(type, first_field, type, second_field, diff, \
45 type ## _ ## first_field ## _ ## second_field)
46
47// Helper macro for when the fields are from the same type and in the same member of said type.
48#define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \
49 EXPECT_OFFSET_DIFF(type, prefix . first_field, type, prefix . second_field, diff, \
50 type ## _ ## prefix ## _ ## first_field ## _ ## second_field)
51
52// Macro to check whether two fields have at least an expected difference in offsets. The error is
53// named name.
54#define EXPECT_OFFSET_DIFF_GT(first_type, first_field, second_type, second_field, diff, name) \
55 CHECKED(OFFSETOF_MEMBER(second_type, second_field) \
56 - OFFSETOF_MEMBER(first_type, first_field) >= diff, name)
57
58// Helper macro for when the fields are from the same type.
59#define EXPECT_OFFSET_DIFF_GT3(type, first_field, second_field, diff, name) \
60 EXPECT_OFFSET_DIFF_GT(type, first_field, type, second_field, diff, name)
61
62class EntrypointsOrderTest : public CommonRuntimeTest {
63 protected:
64 void CheckThreadOffsets() {
65 CHECKED(OFFSETOF_MEMBER(Thread, tls32_.state_and_flags) == 0, thread_flags_at_zero);
66 EXPECT_OFFSET_DIFFP(Thread, tls32_, state_and_flags, suspend_count, 4);
67 EXPECT_OFFSET_DIFFP(Thread, tls32_, suspend_count, debug_suspend_count, 4);
68 EXPECT_OFFSET_DIFFP(Thread, tls32_, debug_suspend_count, thin_lock_thread_id, 4);
69 EXPECT_OFFSET_DIFFP(Thread, tls32_, thin_lock_thread_id, tid, 4);
70 EXPECT_OFFSET_DIFFP(Thread, tls32_, tid, daemon, 4);
71 EXPECT_OFFSET_DIFFP(Thread, tls32_, daemon, throwing_OutOfMemoryError, 4);
72 EXPECT_OFFSET_DIFFP(Thread, tls32_, throwing_OutOfMemoryError, no_thread_suspension, 4);
73 EXPECT_OFFSET_DIFFP(Thread, tls32_, no_thread_suspension, thread_exit_check_count, 4);
Dave Allison648d7112014-07-25 16:15:27 -070074 EXPECT_OFFSET_DIFFP(Thread, tls32_, thread_exit_check_count,
75 is_exception_reported_to_instrumentation_, 4);
76 EXPECT_OFFSET_DIFFP(Thread, tls32_, is_exception_reported_to_instrumentation_,
77 handling_signal_, 4);
Andreas Gampe4352b452014-06-04 18:59:01 -070078
79 // TODO: Better connection. Take alignment into account.
80 EXPECT_OFFSET_DIFF_GT3(Thread, tls32_.thread_exit_check_count, tls64_.trace_clock_base, 4,
81 thread_tls32_to_tls64);
82
83 EXPECT_OFFSET_DIFFP(Thread, tls64_, trace_clock_base, deoptimization_return_value, 8);
84 EXPECT_OFFSET_DIFFP(Thread, tls64_, deoptimization_return_value, stats, 8);
85
86 // TODO: Better connection. Take alignment into account.
87 EXPECT_OFFSET_DIFF_GT3(Thread, tls64_.stats, tlsPtr_.card_table, 8, thread_tls64_to_tlsptr);
88
Ian Rogers13735952014-10-08 12:43:28 -070089 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, card_table, exception, sizeof(void*));
90 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, exception, stack_end, sizeof(void*));
91 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, stack_end, managed_stack, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -070092 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, managed_stack, suspend_trigger, sizeof(ManagedStack));
Ian Rogers13735952014-10-08 12:43:28 -070093 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, suspend_trigger, jni_env, sizeof(void*));
94 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, jni_env, self, sizeof(void*));
95 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, self, opeer, sizeof(void*));
96 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, opeer, jpeer, sizeof(void*));
97 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, jpeer, stack_begin, sizeof(void*));
98 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, stack_begin, stack_size, sizeof(void*));
99 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, stack_size, throw_location, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700100 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, throw_location, stack_trace_sample, sizeof(ThrowLocation));
Ian Rogers13735952014-10-08 12:43:28 -0700101 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, stack_trace_sample, wait_next, sizeof(void*));
102 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, wait_next, monitor_enter_object, sizeof(void*));
103 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, monitor_enter_object, top_handle_scope, sizeof(void*));
104 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, top_handle_scope, class_loader_override, sizeof(void*));
105 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, class_loader_override, long_jump_context, sizeof(void*));
106 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, long_jump_context, instrumentation_stack, sizeof(void*));
107 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, instrumentation_stack, debug_invoke_req, sizeof(void*));
108 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, debug_invoke_req, single_step_control, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700109 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, single_step_control, deoptimization_shadow_frame,
Ian Rogers13735952014-10-08 12:43:28 -0700110 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700111 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, deoptimization_shadow_frame,
Ian Rogers13735952014-10-08 12:43:28 -0700112 shadow_frame_under_construction, sizeof(void*));
113 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, shadow_frame_under_construction, name, sizeof(void*));
114 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, name, pthread_self, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700115 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, pthread_self, last_no_thread_suspension_cause,
Ian Rogers13735952014-10-08 12:43:28 -0700116 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700117 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, last_no_thread_suspension_cause, checkpoint_functions,
Ian Rogers13735952014-10-08 12:43:28 -0700118 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700119 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, checkpoint_functions, interpreter_entrypoints,
Ian Rogers13735952014-10-08 12:43:28 -0700120 sizeof(void*) * 3);
Andreas Gampe4352b452014-06-04 18:59:01 -0700121
122 // Skip across the entrypoints structures.
123
Ian Rogers13735952014-10-08 12:43:28 -0700124 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_start, thread_local_pos, sizeof(void*));
125 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_pos, thread_local_end, sizeof(void*));
126 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_end, thread_local_objects, sizeof(void*));
127 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_objects, rosalloc_runs, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700128 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, rosalloc_runs, thread_local_alloc_stack_top,
Ian Rogers13735952014-10-08 12:43:28 -0700129 sizeof(void*) * kNumRosAllocThreadLocalSizeBrackets);
Andreas Gampe4352b452014-06-04 18:59:01 -0700130 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_alloc_stack_top, thread_local_alloc_stack_end,
Ian Rogers13735952014-10-08 12:43:28 -0700131 sizeof(void*));
132 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_alloc_stack_end, held_mutexes, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700133 EXPECT_OFFSET_DIFF(Thread, tlsPtr_.held_mutexes, Thread, wait_mutex_,
Ian Rogers13735952014-10-08 12:43:28 -0700134 sizeof(void*) * kLockLevelCount + sizeof(void*), thread_tlsptr_end);
Andreas Gampe4352b452014-06-04 18:59:01 -0700135 }
136
137 void CheckInterpreterEntryPoints() {
138 CHECKED(OFFSETOF_MEMBER(InterpreterEntryPoints, pInterpreterToInterpreterBridge) == 0,
139 InterpreterEntryPoints_start_with_i2i);
140 EXPECT_OFFSET_DIFFNP(InterpreterEntryPoints, pInterpreterToInterpreterBridge,
Ian Rogers13735952014-10-08 12:43:28 -0700141 pInterpreterToCompiledCodeBridge, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700142 CHECKED(OFFSETOF_MEMBER(InterpreterEntryPoints, pInterpreterToCompiledCodeBridge)
Ian Rogers13735952014-10-08 12:43:28 -0700143 + sizeof(void*) == sizeof(InterpreterEntryPoints), InterpreterEntryPoints_all);
Andreas Gampe4352b452014-06-04 18:59:01 -0700144 }
145
146 void CheckJniEntryPoints() {
147 CHECKED(OFFSETOF_MEMBER(JniEntryPoints, pDlsymLookup) == 0,
148 JniEntryPoints_start_with_dlsymlookup);
149 CHECKED(OFFSETOF_MEMBER(JniEntryPoints, pDlsymLookup)
Ian Rogers13735952014-10-08 12:43:28 -0700150 + sizeof(void*) == sizeof(JniEntryPoints), JniEntryPoints_all);
Andreas Gampe4352b452014-06-04 18:59:01 -0700151 }
152
Andreas Gampe4352b452014-06-04 18:59:01 -0700153 void CheckQuickEntryPoints() {
154 CHECKED(OFFSETOF_MEMBER(QuickEntryPoints, pAllocArray) == 0,
155 QuickEntryPoints_start_with_allocarray);
Ian Rogers13735952014-10-08 12:43:28 -0700156 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocArray, pAllocArrayResolved, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700157 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocArrayResolved, pAllocArrayWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700158 sizeof(void*));
159 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocArrayWithAccessCheck, pAllocObject, sizeof(void*));
160 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocObject, pAllocObjectResolved, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700161 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocObjectResolved, pAllocObjectInitialized,
Ian Rogers13735952014-10-08 12:43:28 -0700162 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700163 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocObjectInitialized, pAllocObjectWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700164 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700165 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocObjectWithAccessCheck, pCheckAndAllocArray,
Ian Rogers13735952014-10-08 12:43:28 -0700166 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700167 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pCheckAndAllocArray, pCheckAndAllocArrayWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700168 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700169 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pCheckAndAllocArrayWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700170 pInstanceofNonTrivial, sizeof(void*));
171 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInstanceofNonTrivial, pCheckCast, sizeof(void*));
172 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pCheckCast, pInitializeStaticStorage, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700173 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInitializeStaticStorage, pInitializeTypeAndVerifyAccess,
Ian Rogers13735952014-10-08 12:43:28 -0700174 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700175 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInitializeTypeAndVerifyAccess, pInitializeType,
Ian Rogers13735952014-10-08 12:43:28 -0700176 sizeof(void*));
177 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInitializeType, pResolveString, sizeof(void*));
178 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pResolveString, pSet8Instance, sizeof(void*));
179 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet8Instance, pSet8Static, sizeof(void*));
180 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet8Static, pSet16Instance, sizeof(void*));
181 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet16Instance, pSet16Static, sizeof(void*));
182 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet16Static, pSet32Instance, sizeof(void*));
183 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet32Instance, pSet32Static, sizeof(void*));
184 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet32Static, pSet64Instance, sizeof(void*));
185 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet64Instance, pSet64Static, sizeof(void*));
186 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSet64Static, pSetObjInstance, sizeof(void*));
187 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSetObjInstance, pSetObjStatic, sizeof(void*));
188 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pSetObjStatic, pGetByteInstance, sizeof(void*));
189 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetByteInstance, pGetBooleanInstance, sizeof(void*));
190 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetBooleanInstance, pGetByteStatic, sizeof(void*));
191 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetByteStatic, pGetBooleanStatic, sizeof(void*));
192 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetBooleanStatic, pGetShortInstance, sizeof(void*));
193 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetShortInstance, pGetCharInstance, sizeof(void*));
194 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetCharInstance, pGetShortStatic, sizeof(void*));
195 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetShortStatic, pGetCharStatic, sizeof(void*));
196 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetCharStatic, pGet32Instance, sizeof(void*));
197 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGet32Instance, pGet32Static, sizeof(void*));
198 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGet32Static, pGet64Instance, sizeof(void*));
199 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGet64Instance, pGet64Static, sizeof(void*));
200 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGet64Static, pGetObjInstance, sizeof(void*));
201 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetObjInstance, pGetObjStatic, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700202 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pGetObjStatic, pAputObjectWithNullAndBoundCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700203 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700204 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAputObjectWithNullAndBoundCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700205 pAputObjectWithBoundCheck, sizeof(void*));
206 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAputObjectWithBoundCheck, pAputObject, sizeof(void*));
207 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAputObject, pHandleFillArrayData, sizeof(void*));
208 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pHandleFillArrayData, pJniMethodStart, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700209 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pJniMethodStart, pJniMethodStartSynchronized,
Ian Rogers13735952014-10-08 12:43:28 -0700210 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700211 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pJniMethodStartSynchronized, pJniMethodEnd,
Ian Rogers13735952014-10-08 12:43:28 -0700212 sizeof(void*));
213 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pJniMethodEnd, pJniMethodEndSynchronized, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700214 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pJniMethodEndSynchronized, pJniMethodEndWithReference,
Ian Rogers13735952014-10-08 12:43:28 -0700215 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700216 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pJniMethodEndWithReference,
Ian Rogers13735952014-10-08 12:43:28 -0700217 pJniMethodEndWithReferenceSynchronized, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700218 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pJniMethodEndWithReferenceSynchronized,
Ian Rogers13735952014-10-08 12:43:28 -0700219 pQuickGenericJniTrampoline, sizeof(void*));
220 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pQuickGenericJniTrampoline, pLockObject, sizeof(void*));
221 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pLockObject, pUnlockObject, sizeof(void*));
222 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pUnlockObject, pCmpgDouble, sizeof(void*));
223 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pCmpgDouble, pCmpgFloat, sizeof(void*));
224 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pCmpgFloat, pCmplDouble, sizeof(void*));
225 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pCmplDouble, pCmplFloat, sizeof(void*));
226 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pCmplFloat, pFmod, sizeof(void*));
227 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pFmod, pL2d, sizeof(void*));
228 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pL2d, pFmodf, sizeof(void*));
229 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pFmodf, pL2f, sizeof(void*));
230 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pL2f, pD2iz, sizeof(void*));
231 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pD2iz, pF2iz, sizeof(void*));
232 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pF2iz, pIdivmod, sizeof(void*));
233 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pIdivmod, pD2l, sizeof(void*));
234 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pD2l, pF2l, sizeof(void*));
235 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pF2l, pLdiv, sizeof(void*));
236 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pLdiv, pLmod, sizeof(void*));
237 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pLmod, pLmul, sizeof(void*));
238 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pLmul, pShlLong, sizeof(void*));
239 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pShlLong, pShrLong, sizeof(void*));
240 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pShrLong, pUshrLong, sizeof(void*));
241 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pUshrLong, pIndexOf, sizeof(void*));
242 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pIndexOf, pStringCompareTo, sizeof(void*));
243 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pStringCompareTo, pMemcpy, sizeof(void*));
244 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pMemcpy, pQuickImtConflictTrampoline, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700245 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pQuickImtConflictTrampoline, pQuickResolutionTrampoline,
Ian Rogers13735952014-10-08 12:43:28 -0700246 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700247 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pQuickResolutionTrampoline, pQuickToInterpreterBridge,
Ian Rogers13735952014-10-08 12:43:28 -0700248 sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700249 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pQuickToInterpreterBridge,
Ian Rogers13735952014-10-08 12:43:28 -0700250 pInvokeDirectTrampolineWithAccessCheck, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700251 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInvokeDirectTrampolineWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700252 pInvokeInterfaceTrampolineWithAccessCheck, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700253 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInvokeInterfaceTrampolineWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700254 pInvokeStaticTrampolineWithAccessCheck, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700255 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInvokeStaticTrampolineWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700256 pInvokeSuperTrampolineWithAccessCheck, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700257 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInvokeSuperTrampolineWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700258 pInvokeVirtualTrampolineWithAccessCheck, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700259 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pInvokeVirtualTrampolineWithAccessCheck,
Ian Rogers13735952014-10-08 12:43:28 -0700260 pTestSuspend, sizeof(void*));
261 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pTestSuspend, pDeliverException, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700262
Ian Rogers13735952014-10-08 12:43:28 -0700263 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pDeliverException, pThrowArrayBounds, sizeof(void*));
264 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowArrayBounds, pThrowDivZero, sizeof(void*));
265 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowDivZero, pThrowNoSuchMethod, sizeof(void*));
266 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowNoSuchMethod, pThrowNullPointer, sizeof(void*));
267 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowNullPointer, pThrowStackOverflow, sizeof(void*));
268 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowStackOverflow, pA64Load, sizeof(void*));
269 EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pA64Load, pA64Store, sizeof(void*));
Andreas Gampe4352b452014-06-04 18:59:01 -0700270
Douglas Leungd9cb8ae2014-07-09 14:28:35 -0700271 CHECKED(OFFSETOF_MEMBER(QuickEntryPoints, pA64Store)
Ian Rogers13735952014-10-08 12:43:28 -0700272 + sizeof(void*) == sizeof(QuickEntryPoints), QuickEntryPoints_all);
Andreas Gampe4352b452014-06-04 18:59:01 -0700273 }
274};
275
276TEST_F(EntrypointsOrderTest, ThreadOffsets) {
277 CheckThreadOffsets();
278}
279
280TEST_F(EntrypointsOrderTest, InterpreterEntryPoints) {
281 CheckInterpreterEntryPoints();
282}
283
284TEST_F(EntrypointsOrderTest, JniEntryPoints) {
285 CheckJniEntryPoints();
286}
287
Andreas Gampe4352b452014-06-04 18:59:01 -0700288TEST_F(EntrypointsOrderTest, QuickEntryPoints) {
289 CheckQuickEntryPoints();
290}
291
292} // namespace art