diff options
author | 2021-11-02 14:52:30 +0000 | |
---|---|---|
committer | 2021-11-09 14:22:50 +0000 | |
commit | 5097f83c4719a76fdfab1044ab745273841aca45 (patch) | |
tree | adca5e53b3ef1807aa7dd9c3465ac3305fedc4fd /runtime/entrypoints_order_test.cc | |
parent | d1e6bea2c502a72dc5d0c3d16deb591ba61c9d76 (diff) |
Revert^2 "Add support for calling entry / exit hooks directly from JIT code""
This reverts commit 72be14ed06b76cd0e83392145cec9025ff43d174.
Reason for revert: A reland of
commit 2d4feeb67912d64b9e980e6687794826a5c22f9d with a fix for no-image
tests
Change-Id: I79f719f0d4d9b903db301a1636fde5689da35a29
Diffstat (limited to 'runtime/entrypoints_order_test.cc')
-rw-r--r-- | runtime/entrypoints_order_test.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/entrypoints_order_test.cc b/runtime/entrypoints_order_test.cc index 0853caef44..609f0811f4 100644 --- a/runtime/entrypoints_order_test.cc +++ b/runtime/entrypoints_order_test.cc @@ -402,9 +402,13 @@ class EntrypointsOrderTest : public CommonRuntimeTest { EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pReadBarrierMarkReg29, pReadBarrierSlow, sizeof(void*)); EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pReadBarrierSlow, pReadBarrierForRootSlow, sizeof(void*)); + EXPECT_OFFSET_DIFFNP( + QuickEntryPoints, pReadBarrierForRootSlow, pMethodEntryHook, sizeof(void*)); + EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pMethodEntryHook, pMethodExitHook, sizeof(void*)); - CHECKED(OFFSETOF_MEMBER(QuickEntryPoints, pReadBarrierForRootSlow) - + sizeof(void*) == sizeof(QuickEntryPoints), QuickEntryPoints_all); + CHECKED(OFFSETOF_MEMBER(QuickEntryPoints, pMethodExitHook) + sizeof(void*) == + sizeof(QuickEntryPoints), + QuickEntryPoints_all); } }; |