Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1 | /* Copyright (C) 2016 The Android Open Source Project |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 3 | * |
| 4 | * This file implements interfaces from the file jvmti.h. This implementation |
| 5 | * is licensed under the same terms as the file jvmti.h. The |
| 6 | * copyright and license information for the file jvmti.h follows. |
| 7 | * |
| 8 | * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. |
| 9 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 10 | * |
| 11 | * This code is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License version 2 only, as |
| 13 | * published by the Free Software Foundation. Oracle designates this |
| 14 | * particular file as subject to the "Classpath" exception as provided |
| 15 | * by Oracle in the LICENSE file that accompanied this code. |
| 16 | * |
| 17 | * This code is distributed in the hope that it will be useful, but WITHOUT |
| 18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 20 | * version 2 for more details (a copy is included in the LICENSE file that |
| 21 | * accompanied this code). |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License version |
| 24 | * 2 along with this work; if not, write to the Free Software Foundation, |
| 25 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 26 | * |
| 27 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 28 | * or visit www.oracle.com if you need additional information or have any |
| 29 | * questions. |
| 30 | */ |
| 31 | |
Yi Kong | c57c680 | 2018-10-29 14:28:56 -0700 | [diff] [blame] | 32 | #include <memory> |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 33 | #include <string> |
Andreas Gampe | f37e302 | 2017-01-13 17:54:46 -0800 | [diff] [blame] | 34 | #include <type_traits> |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 35 | #include <vector> |
| 36 | |
Andreas Gampe | 5794381 | 2017-12-06 21:39:13 -0800 | [diff] [blame] | 37 | #include <android-base/logging.h> |
| 38 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 39 | #include <jni.h> |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 40 | |
Andreas Gampe | 5e03a30 | 2017-03-13 13:10:00 -0700 | [diff] [blame] | 41 | #include "jvmti.h" |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 42 | |
Alex Light | 986914b | 2019-11-19 01:12:25 +0000 | [diff] [blame] | 43 | #include "alloc_manager.h" |
Andreas Gampe | db6dcb6 | 2016-09-13 09:05:59 -0700 | [diff] [blame] | 44 | #include "art_jvmti.h" |
Andreas Gampe | 170331f | 2017-12-07 18:41:03 -0800 | [diff] [blame] | 45 | #include "base/logging.h" // For gLogVerbosity. |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 46 | #include "base/mutex.h" |
| 47 | #include "events-inl.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 48 | #include "jni/jni_env_ext-inl.h" |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 49 | #include "obj_ptr-inl.h" |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 50 | #include "object_tagging.h" |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 51 | #include "runtime.h" |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 52 | #include "scoped_thread_state_change-inl.h" |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 53 | #include "thread-current-inl.h" |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 54 | #include "thread_list.h" |
Alex Light | bf64a57 | 2017-07-05 10:34:49 -0700 | [diff] [blame] | 55 | #include "ti_allocator.h" |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 56 | #include "ti_breakpoint.h" |
Andreas Gampe | e492ae3 | 2016-10-28 19:34:57 -0700 | [diff] [blame] | 57 | #include "ti_class.h" |
Andreas Gampe | eb0cea1 | 2017-01-23 08:50:04 -0800 | [diff] [blame] | 58 | #include "ti_dump.h" |
Alex Light | 3f33c0a | 2017-11-08 10:17:37 -0800 | [diff] [blame] | 59 | #include "ti_extension.h" |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 60 | #include "ti_field.h" |
Andreas Gampe | ba8df69 | 2016-11-01 10:30:44 -0700 | [diff] [blame] | 61 | #include "ti_heap.h" |
Andreas Gampe | 6f8e4f0 | 2017-01-16 18:18:14 -0800 | [diff] [blame] | 62 | #include "ti_jni.h" |
Alex Light | ae45cbb | 2018-10-18 15:49:56 -0700 | [diff] [blame] | 63 | #include "ti_logging.h" |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 64 | #include "ti_method.h" |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 65 | #include "ti_monitor.h" |
Andreas Gampe | 50a4e49 | 2017-01-06 18:00:20 -0800 | [diff] [blame] | 66 | #include "ti_object.h" |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 67 | #include "ti_phase.h" |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 68 | #include "ti_properties.h" |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 69 | #include "ti_redefine.h" |
Andreas Gampe | ce7732b | 2017-01-17 15:50:26 -0800 | [diff] [blame] | 70 | #include "ti_search.h" |
Andreas Gampe | b5eb94a | 2016-10-27 19:23:09 -0700 | [diff] [blame] | 71 | #include "ti_stack.h" |
Andreas Gampe | af13ab9 | 2017-01-11 20:57:40 -0800 | [diff] [blame] | 72 | #include "ti_thread.h" |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 73 | #include "ti_threadgroup.h" |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 74 | #include "ti_timers.h" |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 75 | #include "transform.h" |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 76 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 77 | namespace openjdkjvmti { |
| 78 | |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 79 | // NB These are heap allocated to avoid the static destructors being run if an agent calls exit(3). |
| 80 | // These should never be null. |
| 81 | EventHandler* gEventHandler; |
| 82 | DeoptManager* gDeoptManager; |
Alex Light | 986914b | 2019-11-19 01:12:25 +0000 | [diff] [blame] | 83 | AllocationManager* gAllocManager; |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 84 | |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 85 | #define ENSURE_NON_NULL(n) \ |
| 86 | do { \ |
| 87 | if ((n) == nullptr) { \ |
| 88 | return ERR(NULL_POINTER); \ |
| 89 | } \ |
| 90 | } while (false) |
| 91 | |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 92 | // Returns whether we are able to use all jvmti features. |
| 93 | static bool IsFullJvmtiAvailable() { |
| 94 | art::Runtime* runtime = art::Runtime::Current(); |
| 95 | return runtime->GetInstrumentation()->IsForcedInterpretOnly() || runtime->IsJavaDebuggable(); |
| 96 | } |
| 97 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 98 | class JvmtiFunctions { |
| 99 | private: |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 100 | static jvmtiError getEnvironmentError(jvmtiEnv* env) { |
| 101 | if (env == nullptr) { |
| 102 | return ERR(INVALID_ENVIRONMENT); |
| 103 | } else if (art::Thread::Current() == nullptr) { |
| 104 | return ERR(UNATTACHED_THREAD); |
| 105 | } else { |
| 106 | return OK; |
| 107 | } |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 110 | #define ENSURE_VALID_ENV(env) \ |
| 111 | do { \ |
| 112 | jvmtiError ensure_valid_env_ ## __LINE__ = getEnvironmentError(env); \ |
| 113 | if (ensure_valid_env_ ## __LINE__ != OK) { \ |
| 114 | return ensure_valid_env_ ## __LINE__ ; \ |
| 115 | } \ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 116 | } while (false) |
| 117 | |
| 118 | #define ENSURE_HAS_CAP(env, cap) \ |
| 119 | do { \ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 120 | if (ArtJvmTiEnv::AsArtJvmTiEnv(env)->capabilities.cap != 1) { \ |
| 121 | return ERR(MUST_POSSESS_CAPABILITY); \ |
| 122 | } \ |
| 123 | } while (false) |
| 124 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 125 | public: |
| 126 | static jvmtiError Allocate(jvmtiEnv* env, jlong size, unsigned char** mem_ptr) { |
Alex Light | 6a399f3 | 2018-01-10 16:31:55 -0800 | [diff] [blame] | 127 | jvmtiError err = getEnvironmentError(env); |
| 128 | // Allow UNATTACHED_THREAD since we don't really care about that for this function. |
| 129 | if (err != OK && err != ERR(UNATTACHED_THREAD)) { |
| 130 | return err; |
| 131 | } |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 132 | ENSURE_NON_NULL(mem_ptr); |
Alex Light | bf64a57 | 2017-07-05 10:34:49 -0700 | [diff] [blame] | 133 | return AllocUtil::Allocate(env, size, mem_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | static jvmtiError Deallocate(jvmtiEnv* env, unsigned char* mem) { |
Alex Light | 6a399f3 | 2018-01-10 16:31:55 -0800 | [diff] [blame] | 137 | jvmtiError err = getEnvironmentError(env); |
| 138 | // Allow UNATTACHED_THREAD since we don't really care about that for this function. |
| 139 | if (err != OK && err != ERR(UNATTACHED_THREAD)) { |
| 140 | return err; |
| 141 | } |
Alex Light | bf64a57 | 2017-07-05 10:34:49 -0700 | [diff] [blame] | 142 | return AllocUtil::Deallocate(env, mem); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | static jvmtiError GetThreadState(jvmtiEnv* env, jthread thread, jint* thread_state_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 146 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 72c1983 | 2017-01-12 13:22:16 -0800 | [diff] [blame] | 147 | return ThreadUtil::GetThreadState(env, thread, thread_state_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | static jvmtiError GetCurrentThread(jvmtiEnv* env, jthread* thread_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 151 | ENSURE_VALID_ENV(env); |
Andreas Gampe | af13ab9 | 2017-01-11 20:57:40 -0800 | [diff] [blame] | 152 | return ThreadUtil::GetCurrentThread(env, thread_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | static jvmtiError GetAllThreads(jvmtiEnv* env, jint* threads_count_ptr, jthread** threads_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 156 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8580744 | 2017-01-13 14:40:58 -0800 | [diff] [blame] | 157 | return ThreadUtil::GetAllThreads(env, threads_count_ptr, threads_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 160 | static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 161 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 162 | ENSURE_HAS_CAP(env, can_suspend); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 163 | return ThreadUtil::SuspendThread(env, thread); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | static jvmtiError SuspendThreadList(jvmtiEnv* env, |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 167 | jint request_count, |
| 168 | const jthread* request_list, |
| 169 | jvmtiError* results) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 170 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 171 | ENSURE_HAS_CAP(env, can_suspend); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 172 | return ThreadUtil::SuspendThreadList(env, request_count, request_list, results); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 175 | static jvmtiError ResumeThread(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 176 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 177 | ENSURE_HAS_CAP(env, can_suspend); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 178 | return ThreadUtil::ResumeThread(env, thread); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | static jvmtiError ResumeThreadList(jvmtiEnv* env, |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 182 | jint request_count, |
| 183 | const jthread* request_list, |
| 184 | jvmtiError* results) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 185 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 186 | ENSURE_HAS_CAP(env, can_suspend); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 187 | return ThreadUtil::ResumeThreadList(env, request_count, request_list, results); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 190 | static jvmtiError StopThread(jvmtiEnv* env, jthread thread, jobject exception) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 191 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 192 | ENSURE_HAS_CAP(env, can_signal_thread); |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 193 | return ThreadUtil::StopThread(env, thread, exception); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 196 | static jvmtiError InterruptThread(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 197 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 198 | ENSURE_HAS_CAP(env, can_signal_thread); |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 199 | return ThreadUtil::InterruptThread(env, thread); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 203 | ENSURE_VALID_ENV(env); |
Andreas Gampe | af13ab9 | 2017-01-11 20:57:40 -0800 | [diff] [blame] | 204 | return ThreadUtil::GetThreadInfo(env, thread, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static jvmtiError GetOwnedMonitorInfo(jvmtiEnv* env, |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 208 | jthread thread, |
| 209 | jint* owned_monitor_count_ptr, |
| 210 | jobject** owned_monitors_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 211 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 212 | ENSURE_HAS_CAP(env, can_get_owned_monitor_info); |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 213 | return StackUtil::GetOwnedMonitorInfo(env, |
| 214 | thread, |
| 215 | owned_monitor_count_ptr, |
| 216 | owned_monitors_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 219 | static jvmtiError GetOwnedMonitorStackDepthInfo(jvmtiEnv* env, |
| 220 | jthread thread, |
| 221 | jint* monitor_info_count_ptr, |
| 222 | jvmtiMonitorStackDepthInfo** monitor_info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 223 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 224 | ENSURE_HAS_CAP(env, can_get_owned_monitor_stack_depth_info); |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 225 | return StackUtil::GetOwnedMonitorStackDepthInfo(env, |
| 226 | thread, |
| 227 | monitor_info_count_ptr, |
| 228 | monitor_info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | static jvmtiError GetCurrentContendedMonitor(jvmtiEnv* env, |
Alex Light | 41006c6 | 2017-09-14 09:51:14 -0700 | [diff] [blame] | 232 | jthread thread, |
| 233 | jobject* monitor_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 234 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 235 | ENSURE_HAS_CAP(env, can_get_current_contended_monitor); |
Alex Light | 41006c6 | 2017-09-14 09:51:14 -0700 | [diff] [blame] | 236 | return MonitorUtil::GetCurrentContendedMonitor(env, thread, monitor_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | static jvmtiError RunAgentThread(jvmtiEnv* env, |
| 240 | jthread thread, |
| 241 | jvmtiStartFunction proc, |
| 242 | const void* arg, |
| 243 | jint priority) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 244 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 732b0ac | 2017-01-18 15:23:39 -0800 | [diff] [blame] | 245 | return ThreadUtil::RunAgentThread(env, thread, proc, arg, priority); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | static jvmtiError SetThreadLocalStorage(jvmtiEnv* env, jthread thread, const void* data) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 249 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 7b3b326 | 2017-01-19 20:40:42 -0800 | [diff] [blame] | 250 | return ThreadUtil::SetThreadLocalStorage(env, thread, data); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 254 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 7b3b326 | 2017-01-19 20:40:42 -0800 | [diff] [blame] | 255 | return ThreadUtil::GetThreadLocalStorage(env, thread, data_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | static jvmtiError GetTopThreadGroups(jvmtiEnv* env, |
| 259 | jint* group_count_ptr, |
| 260 | jthreadGroup** groups_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 261 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 262 | return ThreadGroupUtil::GetTopThreadGroups(env, group_count_ptr, groups_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | static jvmtiError GetThreadGroupInfo(jvmtiEnv* env, |
| 266 | jthreadGroup group, |
| 267 | jvmtiThreadGroupInfo* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 268 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 269 | return ThreadGroupUtil::GetThreadGroupInfo(env, group, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | static jvmtiError GetThreadGroupChildren(jvmtiEnv* env, |
| 273 | jthreadGroup group, |
| 274 | jint* thread_count_ptr, |
| 275 | jthread** threads_ptr, |
| 276 | jint* group_count_ptr, |
| 277 | jthreadGroup** groups_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 278 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 279 | return ThreadGroupUtil::GetThreadGroupChildren(env, |
| 280 | group, |
| 281 | thread_count_ptr, |
| 282 | threads_ptr, |
| 283 | group_count_ptr, |
| 284 | groups_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | static jvmtiError GetStackTrace(jvmtiEnv* env, |
| 288 | jthread thread, |
| 289 | jint start_depth, |
| 290 | jint max_frame_count, |
| 291 | jvmtiFrameInfo* frame_buffer, |
| 292 | jint* count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 293 | ENSURE_VALID_ENV(env); |
Andreas Gampe | b5eb94a | 2016-10-27 19:23:09 -0700 | [diff] [blame] | 294 | return StackUtil::GetStackTrace(env, |
| 295 | thread, |
| 296 | start_depth, |
| 297 | max_frame_count, |
| 298 | frame_buffer, |
| 299 | count_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | static jvmtiError GetAllStackTraces(jvmtiEnv* env, |
| 303 | jint max_frame_count, |
| 304 | jvmtiStackInfo** stack_info_ptr, |
| 305 | jint* thread_count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 306 | ENSURE_VALID_ENV(env); |
Andreas Gampe | a1a27c6 | 2017-01-11 16:37:16 -0800 | [diff] [blame] | 307 | return StackUtil::GetAllStackTraces(env, max_frame_count, stack_info_ptr, thread_count_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | static jvmtiError GetThreadListStackTraces(jvmtiEnv* env, |
| 311 | jint thread_count, |
| 312 | const jthread* thread_list, |
| 313 | jint max_frame_count, |
| 314 | jvmtiStackInfo** stack_info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 315 | ENSURE_VALID_ENV(env); |
Andreas Gampe | eba32fb | 2017-01-12 17:40:05 -0800 | [diff] [blame] | 316 | return StackUtil::GetThreadListStackTraces(env, |
| 317 | thread_count, |
| 318 | thread_list, |
| 319 | max_frame_count, |
| 320 | stack_info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | static jvmtiError GetFrameCount(jvmtiEnv* env, jthread thread, jint* count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 324 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f6f3b5f | 2017-01-13 09:21:42 -0800 | [diff] [blame] | 325 | return StackUtil::GetFrameCount(env, thread, count_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 326 | } |
| 327 | |
Alex Light | 0aa7a5a | 2018-10-10 15:58:14 +0000 | [diff] [blame] | 328 | static jvmtiError PopFrame(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 329 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 330 | ENSURE_HAS_CAP(env, can_pop_frame); |
Alex Light | 0aa7a5a | 2018-10-10 15:58:14 +0000 | [diff] [blame] | 331 | return StackUtil::PopFrame(env, thread); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | static jvmtiError GetFrameLocation(jvmtiEnv* env, |
| 335 | jthread thread, |
| 336 | jint depth, |
| 337 | jmethodID* method_ptr, |
| 338 | jlocation* location_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 339 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f6f3b5f | 2017-01-13 09:21:42 -0800 | [diff] [blame] | 340 | return StackUtil::GetFrameLocation(env, thread, depth, method_ptr, location_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 343 | static jvmtiError NotifyFramePop(jvmtiEnv* env, jthread thread, jint depth) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 344 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 345 | ENSURE_HAS_CAP(env, can_generate_frame_pop_events); |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 346 | return StackUtil::NotifyFramePop(env, thread, depth); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 349 | static jvmtiError ForceEarlyReturnObject(jvmtiEnv* env, jthread thread, jobject value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 350 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 351 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 352 | return StackUtil::ForceEarlyReturn(env, gEventHandler, thread, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 353 | } |
| 354 | |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 355 | static jvmtiError ForceEarlyReturnInt(jvmtiEnv* env, jthread thread, jint value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 356 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 357 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 358 | return StackUtil::ForceEarlyReturn(env, gEventHandler, thread, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 359 | } |
| 360 | |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 361 | static jvmtiError ForceEarlyReturnLong(jvmtiEnv* env, jthread thread, jlong value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 362 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 363 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 364 | return StackUtil::ForceEarlyReturn(env, gEventHandler, thread, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 367 | static jvmtiError ForceEarlyReturnFloat(jvmtiEnv* env, jthread thread, jfloat value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 368 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 369 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 370 | return StackUtil::ForceEarlyReturn(env, gEventHandler, thread, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 371 | } |
| 372 | |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 373 | static jvmtiError ForceEarlyReturnDouble(jvmtiEnv* env, jthread thread, jdouble value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 374 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 375 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 376 | return StackUtil::ForceEarlyReturn(env, gEventHandler, thread, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 379 | static jvmtiError ForceEarlyReturnVoid(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 380 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 381 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 382 | return StackUtil::ForceEarlyReturn<nullptr_t>(env, gEventHandler, thread, nullptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | static jvmtiError FollowReferences(jvmtiEnv* env, |
| 386 | jint heap_filter, |
| 387 | jclass klass, |
| 388 | jobject initial_object, |
| 389 | const jvmtiHeapCallbacks* callbacks, |
| 390 | const void* user_data) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 391 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 392 | ENSURE_HAS_CAP(env, can_tag_objects); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 393 | HeapUtil heap_util(ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Andreas Gampe | 70bfc8a | 2016-11-03 11:04:15 -0700 | [diff] [blame] | 394 | return heap_util.FollowReferences(env, |
| 395 | heap_filter, |
| 396 | klass, |
| 397 | initial_object, |
| 398 | callbacks, |
| 399 | user_data); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | static jvmtiError IterateThroughHeap(jvmtiEnv* env, |
| 403 | jint heap_filter, |
| 404 | jclass klass, |
| 405 | const jvmtiHeapCallbacks* callbacks, |
| 406 | const void* user_data) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 407 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 408 | ENSURE_HAS_CAP(env, can_tag_objects); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 409 | HeapUtil heap_util(ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Andreas Gampe | e54d992 | 2016-10-11 19:55:37 -0700 | [diff] [blame] | 410 | return heap_util.IterateThroughHeap(env, heap_filter, klass, callbacks, user_data); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | static jvmtiError GetTag(jvmtiEnv* env, jobject object, jlong* tag_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 414 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 415 | ENSURE_HAS_CAP(env, can_tag_objects); |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 416 | |
| 417 | JNIEnv* jni_env = GetJniEnv(env); |
| 418 | if (jni_env == nullptr) { |
| 419 | return ERR(INTERNAL); |
| 420 | } |
| 421 | |
| 422 | art::ScopedObjectAccess soa(jni_env); |
| 423 | art::ObjPtr<art::mirror::Object> obj = soa.Decode<art::mirror::Object>(object); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 424 | if (!ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table->GetTag(obj.Ptr(), tag_ptr)) { |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 425 | *tag_ptr = 0; |
| 426 | } |
| 427 | |
| 428 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | static jvmtiError SetTag(jvmtiEnv* env, jobject object, jlong tag) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 432 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 433 | ENSURE_HAS_CAP(env, can_tag_objects); |
| 434 | |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 435 | if (object == nullptr) { |
| 436 | return ERR(NULL_POINTER); |
| 437 | } |
| 438 | |
| 439 | JNIEnv* jni_env = GetJniEnv(env); |
| 440 | if (jni_env == nullptr) { |
| 441 | return ERR(INTERNAL); |
| 442 | } |
| 443 | |
| 444 | art::ScopedObjectAccess soa(jni_env); |
| 445 | art::ObjPtr<art::mirror::Object> obj = soa.Decode<art::mirror::Object>(object); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 446 | ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table->Set(obj.Ptr(), tag); |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 447 | |
| 448 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | static jvmtiError GetObjectsWithTags(jvmtiEnv* env, |
| 452 | jint tag_count, |
| 453 | const jlong* tags, |
| 454 | jint* count_ptr, |
| 455 | jobject** object_result_ptr, |
| 456 | jlong** tag_result_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 457 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 458 | ENSURE_HAS_CAP(env, can_tag_objects); |
| 459 | |
Andreas Gampe | 5e6046b | 2016-10-25 12:05:53 -0700 | [diff] [blame] | 460 | JNIEnv* jni_env = GetJniEnv(env); |
| 461 | if (jni_env == nullptr) { |
| 462 | return ERR(INTERNAL); |
| 463 | } |
| 464 | |
| 465 | art::ScopedObjectAccess soa(jni_env); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 466 | return ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table->GetTaggedObjects(env, |
| 467 | tag_count, |
| 468 | tags, |
| 469 | count_ptr, |
| 470 | object_result_ptr, |
| 471 | tag_result_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | static jvmtiError ForceGarbageCollection(jvmtiEnv* env) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 475 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8da6d03 | 2016-10-31 19:31:03 -0700 | [diff] [blame] | 476 | return HeapUtil::ForceGarbageCollection(env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | static jvmtiError IterateOverObjectsReachableFromObject( |
| 480 | jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 481 | jobject object ATTRIBUTE_UNUSED, |
| 482 | jvmtiObjectReferenceCallback object_reference_callback ATTRIBUTE_UNUSED, |
| 483 | const void* user_data ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 484 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 485 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 486 | return ERR(NOT_IMPLEMENTED); |
| 487 | } |
| 488 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 489 | static jvmtiError IterateOverReachableObjects( |
| 490 | jvmtiEnv* env, |
| 491 | jvmtiHeapRootCallback heap_root_callback ATTRIBUTE_UNUSED, |
| 492 | jvmtiStackReferenceCallback stack_ref_callback ATTRIBUTE_UNUSED, |
| 493 | jvmtiObjectReferenceCallback object_ref_callback ATTRIBUTE_UNUSED, |
| 494 | const void* user_data ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 495 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 496 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 497 | return ERR(NOT_IMPLEMENTED); |
| 498 | } |
| 499 | |
| 500 | static jvmtiError IterateOverHeap(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 501 | jvmtiHeapObjectFilter object_filter ATTRIBUTE_UNUSED, |
| 502 | jvmtiHeapObjectCallback heap_object_callback ATTRIBUTE_UNUSED, |
| 503 | const void* user_data ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 504 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 505 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 506 | return ERR(NOT_IMPLEMENTED); |
| 507 | } |
| 508 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 509 | static jvmtiError IterateOverInstancesOfClass( |
| 510 | jvmtiEnv* env, |
Alex Light | bbbcb53 | 2018-08-30 12:50:27 -0700 | [diff] [blame] | 511 | jclass klass, |
| 512 | jvmtiHeapObjectFilter object_filter, |
| 513 | jvmtiHeapObjectCallback heap_object_callback, |
| 514 | const void* user_data) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 515 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 516 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | bbbcb53 | 2018-08-30 12:50:27 -0700 | [diff] [blame] | 517 | HeapUtil heap_util(ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
| 518 | return heap_util.IterateOverInstancesOfClass( |
| 519 | env, klass, object_filter, heap_object_callback, user_data); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | static jvmtiError GetLocalObject(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 523 | jthread thread, |
| 524 | jint depth, |
| 525 | jint slot, |
| 526 | jobject* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 527 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 528 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 529 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | static jvmtiError GetLocalInstance(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 533 | jthread thread, |
| 534 | jint depth, |
| 535 | jobject* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 536 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 537 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 538 | return MethodUtil::GetLocalInstance(env, thread, depth, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | static jvmtiError GetLocalInt(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 542 | jthread thread, |
| 543 | jint depth, |
| 544 | jint slot, |
| 545 | jint* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 546 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 547 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 548 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | static jvmtiError GetLocalLong(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 552 | jthread thread, |
| 553 | jint depth, |
| 554 | jint slot, |
| 555 | jlong* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 556 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 557 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 558 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | static jvmtiError GetLocalFloat(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 562 | jthread thread, |
| 563 | jint depth, |
| 564 | jint slot, |
| 565 | jfloat* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 566 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 567 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 568 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | static jvmtiError GetLocalDouble(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 572 | jthread thread, |
| 573 | jint depth, |
| 574 | jint slot, |
| 575 | jdouble* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 576 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 577 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 578 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | static jvmtiError SetLocalObject(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 582 | jthread thread, |
| 583 | jint depth, |
| 584 | jint slot, |
| 585 | jobject value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 586 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 587 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 588 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | static jvmtiError SetLocalInt(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 592 | jthread thread, |
| 593 | jint depth, |
| 594 | jint slot, |
| 595 | jint value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 596 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 597 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 598 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | static jvmtiError SetLocalLong(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 602 | jthread thread, |
| 603 | jint depth, |
| 604 | jint slot, |
| 605 | jlong value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 606 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 607 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 608 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | static jvmtiError SetLocalFloat(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 612 | jthread thread, |
| 613 | jint depth, |
| 614 | jint slot, |
| 615 | jfloat value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 616 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 617 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 618 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | static jvmtiError SetLocalDouble(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 622 | jthread thread, |
| 623 | jint depth, |
| 624 | jint slot, |
| 625 | jdouble value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 626 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 627 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 628 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 629 | } |
| 630 | |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 631 | |
| 632 | static jvmtiError SetBreakpoint(jvmtiEnv* env, jmethodID method, jlocation location) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 633 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 634 | ENSURE_HAS_CAP(env, can_generate_breakpoint_events); |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 635 | return BreakpointUtil::SetBreakpoint(env, method, location); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 636 | } |
| 637 | |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 638 | static jvmtiError ClearBreakpoint(jvmtiEnv* env, jmethodID method, jlocation location) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 639 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 640 | ENSURE_HAS_CAP(env, can_generate_breakpoint_events); |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 641 | return BreakpointUtil::ClearBreakpoint(env, method, location); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 642 | } |
| 643 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 644 | static jvmtiError SetFieldAccessWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 645 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 646 | ENSURE_HAS_CAP(env, can_generate_field_access_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 647 | return FieldUtil::SetFieldAccessWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 648 | } |
| 649 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 650 | static jvmtiError ClearFieldAccessWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 651 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 652 | ENSURE_HAS_CAP(env, can_generate_field_access_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 653 | return FieldUtil::ClearFieldAccessWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 654 | } |
| 655 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 656 | static jvmtiError SetFieldModificationWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 657 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 658 | ENSURE_HAS_CAP(env, can_generate_field_modification_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 659 | return FieldUtil::SetFieldModificationWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 660 | } |
| 661 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 662 | static jvmtiError ClearFieldModificationWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 663 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 664 | ENSURE_HAS_CAP(env, can_generate_field_modification_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 665 | return FieldUtil::ClearFieldModificationWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | static jvmtiError GetLoadedClasses(jvmtiEnv* env, jint* class_count_ptr, jclass** classes_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 669 | ENSURE_VALID_ENV(env); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 670 | HeapUtil heap_util(ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Andreas Gampe | aa8b60c | 2016-10-12 12:51:25 -0700 | [diff] [blame] | 671 | return heap_util.GetLoadedClasses(env, class_count_ptr, classes_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | static jvmtiError GetClassLoaderClasses(jvmtiEnv* env, |
| 675 | jobject initiating_loader, |
| 676 | jint* class_count_ptr, |
| 677 | jclass** classes_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 678 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 70f1639 | 2017-01-16 14:20:10 -0800 | [diff] [blame] | 679 | return ClassUtil::GetClassLoaderClasses(env, initiating_loader, class_count_ptr, classes_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | static jvmtiError GetClassSignature(jvmtiEnv* env, |
| 683 | jclass klass, |
| 684 | char** signature_ptr, |
| 685 | char** generic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 686 | ENSURE_VALID_ENV(env); |
Andreas Gampe | e492ae3 | 2016-10-28 19:34:57 -0700 | [diff] [blame] | 687 | return ClassUtil::GetClassSignature(env, klass, signature_ptr, generic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 688 | } |
| 689 | |
| 690 | static jvmtiError GetClassStatus(jvmtiEnv* env, jclass klass, jint* status_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 691 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ff9d209 | 2017-01-06 09:12:49 -0800 | [diff] [blame] | 692 | return ClassUtil::GetClassStatus(env, klass, status_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 693 | } |
| 694 | |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 695 | static jvmtiError GetSourceFileName(jvmtiEnv* env, jclass klass, char** source_name_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 696 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 697 | ENSURE_HAS_CAP(env, can_get_source_file_name); |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 698 | return ClassUtil::GetSourceFileName(env, klass, source_name_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | static jvmtiError GetClassModifiers(jvmtiEnv* env, jclass klass, jint* modifiers_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 702 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 64013e5 | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 703 | return ClassUtil::GetClassModifiers(env, klass, modifiers_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | static jvmtiError GetClassMethods(jvmtiEnv* env, |
| 707 | jclass klass, |
| 708 | jint* method_count_ptr, |
| 709 | jmethodID** methods_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 710 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 18fee4d | 2017-01-06 11:36:35 -0800 | [diff] [blame] | 711 | return ClassUtil::GetClassMethods(env, klass, method_count_ptr, methods_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | static jvmtiError GetClassFields(jvmtiEnv* env, |
| 715 | jclass klass, |
| 716 | jint* field_count_ptr, |
| 717 | jfieldID** fields_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 718 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ac58727 | 2017-01-05 15:21:34 -0800 | [diff] [blame] | 719 | return ClassUtil::GetClassFields(env, klass, field_count_ptr, fields_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | static jvmtiError GetImplementedInterfaces(jvmtiEnv* env, |
| 723 | jclass klass, |
| 724 | jint* interface_count_ptr, |
| 725 | jclass** interfaces_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 726 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8b07e47 | 2017-01-06 14:20:39 -0800 | [diff] [blame] | 727 | return ClassUtil::GetImplementedInterfaces(env, klass, interface_count_ptr, interfaces_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | static jvmtiError GetClassVersionNumbers(jvmtiEnv* env, |
| 731 | jclass klass, |
| 732 | jint* minor_version_ptr, |
| 733 | jint* major_version_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 734 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 812a244 | 2017-01-19 22:04:46 -0800 | [diff] [blame] | 735 | return ClassUtil::GetClassVersionNumbers(env, klass, minor_version_ptr, major_version_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | static jvmtiError GetConstantPool(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 739 | jclass klass ATTRIBUTE_UNUSED, |
| 740 | jint* constant_pool_count_ptr ATTRIBUTE_UNUSED, |
| 741 | jint* constant_pool_byte_count_ptr ATTRIBUTE_UNUSED, |
| 742 | unsigned char** constant_pool_bytes_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 743 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 744 | ENSURE_HAS_CAP(env, can_get_constant_pool); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 745 | return ERR(NOT_IMPLEMENTED); |
| 746 | } |
| 747 | |
| 748 | static jvmtiError IsInterface(jvmtiEnv* env, jclass klass, jboolean* is_interface_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 749 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 4fd66ec | 2017-01-05 14:42:13 -0800 | [diff] [blame] | 750 | return ClassUtil::IsInterface(env, klass, is_interface_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 751 | } |
| 752 | |
| 753 | static jvmtiError IsArrayClass(jvmtiEnv* env, |
| 754 | jclass klass, |
| 755 | jboolean* is_array_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 756 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 4fd66ec | 2017-01-05 14:42:13 -0800 | [diff] [blame] | 757 | return ClassUtil::IsArrayClass(env, klass, is_array_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 758 | } |
| 759 | |
| 760 | static jvmtiError IsModifiableClass(jvmtiEnv* env, |
| 761 | jclass klass, |
| 762 | jboolean* is_modifiable_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 763 | ENSURE_VALID_ENV(env); |
Alex Light | e4a8863 | 2017-01-10 07:41:24 -0800 | [diff] [blame] | 764 | return Redefiner::IsModifiableClass(env, klass, is_modifiable_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | static jvmtiError GetClassLoader(jvmtiEnv* env, jclass klass, jobject* classloader_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 768 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8f5b603 | 2017-01-06 15:50:55 -0800 | [diff] [blame] | 769 | return ClassUtil::GetClassLoader(env, klass, classloader_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | static jvmtiError GetSourceDebugExtension(jvmtiEnv* env, |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 773 | jclass klass, |
| 774 | char** source_debug_extension_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 775 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 776 | ENSURE_HAS_CAP(env, can_get_source_debug_extension); |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 777 | return ClassUtil::GetSourceDebugExtension(env, klass, source_debug_extension_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | static jvmtiError RetransformClasses(jvmtiEnv* env, jint class_count, const jclass* classes) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 781 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 782 | ENSURE_HAS_CAP(env, can_retransform_classes); |
Alex Light | 3732beb | 2019-10-04 13:35:34 -0700 | [diff] [blame] | 783 | return Transformer::RetransformClasses(env, class_count, classes); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | static jvmtiError RedefineClasses(jvmtiEnv* env, |
| 787 | jint class_count, |
| 788 | const jvmtiClassDefinition* class_definitions) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 789 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 790 | ENSURE_HAS_CAP(env, can_redefine_classes); |
Alex Light | 3732beb | 2019-10-04 13:35:34 -0700 | [diff] [blame] | 791 | return Redefiner::RedefineClasses(env, class_count, class_definitions); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | static jvmtiError GetObjectSize(jvmtiEnv* env, jobject object, jlong* size_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 795 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 50a4e49 | 2017-01-06 18:00:20 -0800 | [diff] [blame] | 796 | return ObjectUtil::GetObjectSize(env, object, size_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | static jvmtiError GetObjectHashCode(jvmtiEnv* env, jobject object, jint* hash_code_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 800 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 50a4e49 | 2017-01-06 18:00:20 -0800 | [diff] [blame] | 801 | return ObjectUtil::GetObjectHashCode(env, object, hash_code_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | static jvmtiError GetObjectMonitorUsage(jvmtiEnv* env, |
Alex Light | ce56864 | 2017-09-05 16:54:25 -0700 | [diff] [blame] | 805 | jobject object, |
| 806 | jvmtiMonitorUsage* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 807 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 808 | ENSURE_HAS_CAP(env, can_get_monitor_info); |
Alex Light | ce56864 | 2017-09-05 16:54:25 -0700 | [diff] [blame] | 809 | return ObjectUtil::GetObjectMonitorUsage(env, object, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | static jvmtiError GetFieldName(jvmtiEnv* env, |
| 813 | jclass klass, |
| 814 | jfieldID field, |
| 815 | char** name_ptr, |
| 816 | char** signature_ptr, |
| 817 | char** generic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 818 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 819 | return FieldUtil::GetFieldName(env, klass, field, name_ptr, signature_ptr, generic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | static jvmtiError GetFieldDeclaringClass(jvmtiEnv* env, |
| 823 | jclass klass, |
| 824 | jfieldID field, |
| 825 | jclass* declaring_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 826 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 827 | return FieldUtil::GetFieldDeclaringClass(env, klass, field, declaring_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | static jvmtiError GetFieldModifiers(jvmtiEnv* env, |
| 831 | jclass klass, |
| 832 | jfieldID field, |
| 833 | jint* modifiers_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 834 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 835 | return FieldUtil::GetFieldModifiers(env, klass, field, modifiers_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | static jvmtiError IsFieldSynthetic(jvmtiEnv* env, |
| 839 | jclass klass, |
| 840 | jfieldID field, |
| 841 | jboolean* is_synthetic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 842 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 843 | ENSURE_HAS_CAP(env, can_get_synthetic_attribute); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 844 | return FieldUtil::IsFieldSynthetic(env, klass, field, is_synthetic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | static jvmtiError GetMethodName(jvmtiEnv* env, |
| 848 | jmethodID method, |
| 849 | char** name_ptr, |
| 850 | char** signature_ptr, |
| 851 | char** generic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 852 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 853 | return MethodUtil::GetMethodName(env, method, name_ptr, signature_ptr, generic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | static jvmtiError GetMethodDeclaringClass(jvmtiEnv* env, |
| 857 | jmethodID method, |
| 858 | jclass* declaring_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 859 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 368a208 | 2016-10-28 17:33:13 -0700 | [diff] [blame] | 860 | return MethodUtil::GetMethodDeclaringClass(env, method, declaring_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 861 | } |
| 862 | |
| 863 | static jvmtiError GetMethodModifiers(jvmtiEnv* env, |
| 864 | jmethodID method, |
| 865 | jint* modifiers_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 866 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 36bcd4f | 2016-10-28 18:07:18 -0700 | [diff] [blame] | 867 | return MethodUtil::GetMethodModifiers(env, method, modifiers_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 868 | } |
| 869 | |
| 870 | static jvmtiError GetMaxLocals(jvmtiEnv* env, |
| 871 | jmethodID method, |
| 872 | jint* max_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 873 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 874 | return MethodUtil::GetMaxLocals(env, method, max_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | static jvmtiError GetArgumentsSize(jvmtiEnv* env, |
| 878 | jmethodID method, |
| 879 | jint* size_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 880 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 881 | return MethodUtil::GetArgumentsSize(env, method, size_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | static jvmtiError GetLineNumberTable(jvmtiEnv* env, |
| 885 | jmethodID method, |
| 886 | jint* entry_count_ptr, |
| 887 | jvmtiLineNumberEntry** table_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 888 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 889 | ENSURE_HAS_CAP(env, can_get_line_numbers); |
Andreas Gampe | da3e561 | 2016-12-13 19:00:53 -0800 | [diff] [blame] | 890 | return MethodUtil::GetLineNumberTable(env, method, entry_count_ptr, table_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 891 | } |
| 892 | |
| 893 | static jvmtiError GetMethodLocation(jvmtiEnv* env, |
| 894 | jmethodID method, |
| 895 | jlocation* start_location_ptr, |
| 896 | jlocation* end_location_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 897 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 898 | return MethodUtil::GetMethodLocation(env, method, start_location_ptr, end_location_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | static jvmtiError GetLocalVariableTable(jvmtiEnv* env, |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 902 | jmethodID method, |
| 903 | jint* entry_count_ptr, |
| 904 | jvmtiLocalVariableEntry** table_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 905 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 906 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 907 | return MethodUtil::GetLocalVariableTable(env, method, entry_count_ptr, table_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 908 | } |
| 909 | |
| 910 | static jvmtiError GetBytecodes(jvmtiEnv* env, |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 911 | jmethodID method, |
| 912 | jint* bytecode_count_ptr, |
| 913 | unsigned char** bytecodes_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 914 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 915 | ENSURE_HAS_CAP(env, can_get_bytecodes); |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 916 | return MethodUtil::GetBytecodes(env, method, bytecode_count_ptr, bytecodes_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | static jvmtiError IsMethodNative(jvmtiEnv* env, jmethodID method, jboolean* is_native_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 920 | ENSURE_VALID_ENV(env); |
Andreas Gampe | fdeef52 | 2017-01-09 14:40:25 -0800 | [diff] [blame] | 921 | return MethodUtil::IsMethodNative(env, method, is_native_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | static jvmtiError IsMethodSynthetic(jvmtiEnv* env, jmethodID method, jboolean* is_synthetic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 925 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 926 | ENSURE_HAS_CAP(env, can_get_synthetic_attribute); |
Andreas Gampe | fdeef52 | 2017-01-09 14:40:25 -0800 | [diff] [blame] | 927 | return MethodUtil::IsMethodSynthetic(env, method, is_synthetic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | static jvmtiError IsMethodObsolete(jvmtiEnv* env, jmethodID method, jboolean* is_obsolete_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 931 | ENSURE_VALID_ENV(env); |
Andreas Gampe | fdeef52 | 2017-01-09 14:40:25 -0800 | [diff] [blame] | 932 | return MethodUtil::IsMethodObsolete(env, method, is_obsolete_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 933 | } |
| 934 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 935 | static jvmtiError SetNativeMethodPrefix(jvmtiEnv* env, const char* prefix ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 936 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 937 | ENSURE_HAS_CAP(env, can_set_native_method_prefix); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 938 | return ERR(NOT_IMPLEMENTED); |
| 939 | } |
| 940 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 941 | static jvmtiError SetNativeMethodPrefixes(jvmtiEnv* env, |
| 942 | jint prefix_count ATTRIBUTE_UNUSED, |
| 943 | char** prefixes ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 944 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 945 | ENSURE_HAS_CAP(env, can_set_native_method_prefix); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 946 | return ERR(NOT_IMPLEMENTED); |
| 947 | } |
| 948 | |
| 949 | static jvmtiError CreateRawMonitor(jvmtiEnv* env, const char* name, jrawMonitorID* monitor_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 950 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 951 | return MonitorUtil::CreateRawMonitor(env, name, monitor_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 952 | } |
| 953 | |
| 954 | static jvmtiError DestroyRawMonitor(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 955 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 956 | return MonitorUtil::DestroyRawMonitor(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 957 | } |
| 958 | |
| 959 | static jvmtiError RawMonitorEnter(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 960 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 961 | return MonitorUtil::RawMonitorEnter(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | static jvmtiError RawMonitorExit(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 965 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 966 | return MonitorUtil::RawMonitorExit(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 967 | } |
| 968 | |
| 969 | static jvmtiError RawMonitorWait(jvmtiEnv* env, jrawMonitorID monitor, jlong millis) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 970 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 971 | return MonitorUtil::RawMonitorWait(env, monitor, millis); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | static jvmtiError RawMonitorNotify(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 975 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 976 | return MonitorUtil::RawMonitorNotify(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | static jvmtiError RawMonitorNotifyAll(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 980 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 981 | return MonitorUtil::RawMonitorNotifyAll(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | static jvmtiError SetJNIFunctionTable(jvmtiEnv* env, const jniNativeInterface* function_table) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 985 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 6f8e4f0 | 2017-01-16 18:18:14 -0800 | [diff] [blame] | 986 | return JNIUtil::SetJNIFunctionTable(env, function_table); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 987 | } |
| 988 | |
| 989 | static jvmtiError GetJNIFunctionTable(jvmtiEnv* env, jniNativeInterface** function_table) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 990 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 6f8e4f0 | 2017-01-16 18:18:14 -0800 | [diff] [blame] | 991 | return JNIUtil::GetJNIFunctionTable(env, function_table); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 992 | } |
| 993 | |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 994 | // TODO: This will require locking, so that an agent can't remove callbacks when we're dispatching |
| 995 | // an event. |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 996 | static jvmtiError SetEventCallbacks(jvmtiEnv* env, |
| 997 | const jvmtiEventCallbacks* callbacks, |
| 998 | jint size_of_callbacks) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 999 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1000 | if (size_of_callbacks < 0) { |
| 1001 | return ERR(ILLEGAL_ARGUMENT); |
| 1002 | } |
| 1003 | |
| 1004 | if (callbacks == nullptr) { |
| 1005 | ArtJvmTiEnv::AsArtJvmTiEnv(env)->event_callbacks.reset(); |
| 1006 | return ERR(NONE); |
| 1007 | } |
| 1008 | |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 1009 | // Lock the event_info_mutex_ while we replace the callbacks. |
| 1010 | ArtJvmTiEnv* art_env = ArtJvmTiEnv::AsArtJvmTiEnv(env); |
| 1011 | art::WriterMutexLock lk(art::Thread::Current(), art_env->event_info_mutex_); |
| 1012 | std::unique_ptr<ArtJvmtiEventCallbacks> tmp(new ArtJvmtiEventCallbacks()); |
| 1013 | // Copy over the extension events. |
| 1014 | tmp->CopyExtensionsFrom(art_env->event_callbacks.get()); |
| 1015 | // Never overwrite the extension events. |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1016 | size_t copy_size = std::min(sizeof(jvmtiEventCallbacks), |
| 1017 | static_cast<size_t>(size_of_callbacks)); |
| 1018 | copy_size = art::RoundDown(copy_size, sizeof(void*)); |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 1019 | // Copy non-extension events. |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1020 | memcpy(tmp.get(), callbacks, copy_size); |
| 1021 | |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 1022 | // replace the event table. |
| 1023 | art_env->event_callbacks = std::move(tmp); |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1024 | |
| 1025 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1026 | } |
| 1027 | |
| 1028 | static jvmtiError SetEventNotificationMode(jvmtiEnv* env, |
| 1029 | jvmtiEventMode mode, |
| 1030 | jvmtiEvent event_type, |
| 1031 | jthread event_thread, |
| 1032 | ...) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1033 | ENSURE_VALID_ENV(env); |
Alex Light | 40d87f4 | 2017-01-18 10:27:06 -0800 | [diff] [blame] | 1034 | ArtJvmTiEnv* art_env = ArtJvmTiEnv::AsArtJvmTiEnv(env); |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1035 | return gEventHandler->SetEvent(art_env, |
Alex Light | 3dacdd6 | 2019-03-12 15:45:47 +0000 | [diff] [blame] | 1036 | event_thread, |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1037 | GetArtJvmtiEvent(art_env, event_type), |
| 1038 | mode); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1041 | static jvmtiError GenerateEvents(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1042 | jvmtiEvent event_type ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1043 | ENSURE_VALID_ENV(env); |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1044 | return OK; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1047 | static jvmtiError GetExtensionFunctions(jvmtiEnv* env, |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1048 | jint* extension_count_ptr, |
| 1049 | jvmtiExtensionFunctionInfo** extensions) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1050 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d73aba4 | 2017-05-03 21:40:26 -0700 | [diff] [blame] | 1051 | ENSURE_NON_NULL(extension_count_ptr); |
| 1052 | ENSURE_NON_NULL(extensions); |
Alex Light | 3f33c0a | 2017-11-08 10:17:37 -0800 | [diff] [blame] | 1053 | return ExtensionUtil::GetExtensionFunctions(env, extension_count_ptr, extensions); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1054 | } |
| 1055 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1056 | static jvmtiError GetExtensionEvents(jvmtiEnv* env, |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1057 | jint* extension_count_ptr, |
| 1058 | jvmtiExtensionEventInfo** extensions) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1059 | ENSURE_VALID_ENV(env); |
Alex Light | 3f33c0a | 2017-11-08 10:17:37 -0800 | [diff] [blame] | 1060 | ENSURE_NON_NULL(extension_count_ptr); |
| 1061 | ENSURE_NON_NULL(extensions); |
| 1062 | return ExtensionUtil::GetExtensionEvents(env, extension_count_ptr, extensions); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1065 | static jvmtiError SetExtensionEventCallback(jvmtiEnv* env, |
Alex Light | 3f33c0a | 2017-11-08 10:17:37 -0800 | [diff] [blame] | 1066 | jint extension_event_index, |
| 1067 | jvmtiExtensionEvent callback) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1068 | ENSURE_VALID_ENV(env); |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 1069 | return ExtensionUtil::SetExtensionEventCallback(env, |
| 1070 | extension_event_index, |
| 1071 | callback, |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1072 | gEventHandler); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1075 | #define FOR_ALL_CAPABILITIES(FUN) \ |
| 1076 | FUN(can_tag_objects) \ |
| 1077 | FUN(can_generate_field_modification_events) \ |
| 1078 | FUN(can_generate_field_access_events) \ |
| 1079 | FUN(can_get_bytecodes) \ |
| 1080 | FUN(can_get_synthetic_attribute) \ |
| 1081 | FUN(can_get_owned_monitor_info) \ |
| 1082 | FUN(can_get_current_contended_monitor) \ |
| 1083 | FUN(can_get_monitor_info) \ |
| 1084 | FUN(can_pop_frame) \ |
| 1085 | FUN(can_redefine_classes) \ |
| 1086 | FUN(can_signal_thread) \ |
| 1087 | FUN(can_get_source_file_name) \ |
| 1088 | FUN(can_get_line_numbers) \ |
| 1089 | FUN(can_get_source_debug_extension) \ |
| 1090 | FUN(can_access_local_variables) \ |
| 1091 | FUN(can_maintain_original_method_order) \ |
| 1092 | FUN(can_generate_single_step_events) \ |
| 1093 | FUN(can_generate_exception_events) \ |
| 1094 | FUN(can_generate_frame_pop_events) \ |
| 1095 | FUN(can_generate_breakpoint_events) \ |
| 1096 | FUN(can_suspend) \ |
| 1097 | FUN(can_redefine_any_class) \ |
| 1098 | FUN(can_get_current_thread_cpu_time) \ |
| 1099 | FUN(can_get_thread_cpu_time) \ |
| 1100 | FUN(can_generate_method_entry_events) \ |
| 1101 | FUN(can_generate_method_exit_events) \ |
| 1102 | FUN(can_generate_all_class_hook_events) \ |
| 1103 | FUN(can_generate_compiled_method_load_events) \ |
| 1104 | FUN(can_generate_monitor_events) \ |
| 1105 | FUN(can_generate_vm_object_alloc_events) \ |
| 1106 | FUN(can_generate_native_method_bind_events) \ |
| 1107 | FUN(can_generate_garbage_collection_events) \ |
| 1108 | FUN(can_generate_object_free_events) \ |
| 1109 | FUN(can_force_early_return) \ |
| 1110 | FUN(can_get_owned_monitor_stack_depth_info) \ |
| 1111 | FUN(can_get_constant_pool) \ |
| 1112 | FUN(can_set_native_method_prefix) \ |
| 1113 | FUN(can_retransform_classes) \ |
| 1114 | FUN(can_retransform_any_class) \ |
| 1115 | FUN(can_generate_resource_exhaustion_heap_events) \ |
| 1116 | FUN(can_generate_resource_exhaustion_threads_events) |
| 1117 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1118 | static jvmtiError GetPotentialCapabilities(jvmtiEnv* env, jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1119 | ENSURE_VALID_ENV(env); |
| 1120 | ENSURE_NON_NULL(capabilities_ptr); |
| 1121 | *capabilities_ptr = kPotentialCapabilities; |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1122 | if (UNLIKELY(!IsFullJvmtiAvailable())) { |
| 1123 | #define REMOVE_NONDEBUGGABLE_UNSUPPORTED(e) \ |
| 1124 | do { \ |
| 1125 | if (kNonDebuggableUnsupportedCapabilities.e == 1) { \ |
| 1126 | capabilities_ptr->e = 0; \ |
| 1127 | } \ |
| 1128 | } while (false); |
| 1129 | |
| 1130 | FOR_ALL_CAPABILITIES(REMOVE_NONDEBUGGABLE_UNSUPPORTED); |
| 1131 | #undef REMOVE_NONDEBUGGABLE_UNSUPPORTED |
| 1132 | } |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1133 | return OK; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1134 | } |
| 1135 | |
| 1136 | static jvmtiError AddCapabilities(jvmtiEnv* env, const jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1137 | ENSURE_VALID_ENV(env); |
| 1138 | ENSURE_NON_NULL(capabilities_ptr); |
| 1139 | ArtJvmTiEnv* art_env = static_cast<ArtJvmTiEnv*>(env); |
| 1140 | jvmtiError ret = OK; |
Alex Light | 34d8e08 | 2017-03-27 09:50:36 -0700 | [diff] [blame] | 1141 | jvmtiCapabilities changed = {}; |
| 1142 | jvmtiCapabilities potential_capabilities = {}; |
Alex Light | 1d22496 | 2017-02-27 10:26:35 -0800 | [diff] [blame] | 1143 | ret = env->GetPotentialCapabilities(&potential_capabilities); |
| 1144 | if (ret != OK) { |
| 1145 | return ret; |
| 1146 | } |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1147 | #define ADD_CAPABILITY(e) \ |
| 1148 | do { \ |
| 1149 | if (capabilities_ptr->e == 1) { \ |
Alex Light | 1d22496 | 2017-02-27 10:26:35 -0800 | [diff] [blame] | 1150 | if (potential_capabilities.e == 1) { \ |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 1151 | if (art_env->capabilities.e != 1) { \ |
| 1152 | art_env->capabilities.e = 1; \ |
| 1153 | changed.e = 1; \ |
| 1154 | }\ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1155 | } else { \ |
| 1156 | ret = ERR(NOT_AVAILABLE); \ |
| 1157 | } \ |
| 1158 | } \ |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1159 | } while (false); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1160 | |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1161 | FOR_ALL_CAPABILITIES(ADD_CAPABILITY); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1162 | #undef ADD_CAPABILITY |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1163 | gEventHandler->HandleChangedCapabilities(ArtJvmTiEnv::AsArtJvmTiEnv(env), |
| 1164 | changed, |
Andreas Gampe | 6e89776 | 2018-10-16 13:09:32 -0700 | [diff] [blame] | 1165 | /*added=*/true); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1166 | return ret; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1167 | } |
| 1168 | |
| 1169 | static jvmtiError RelinquishCapabilities(jvmtiEnv* env, |
| 1170 | const jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1171 | ENSURE_VALID_ENV(env); |
| 1172 | ENSURE_NON_NULL(capabilities_ptr); |
| 1173 | ArtJvmTiEnv* art_env = reinterpret_cast<ArtJvmTiEnv*>(env); |
Alex Light | 34d8e08 | 2017-03-27 09:50:36 -0700 | [diff] [blame] | 1174 | jvmtiCapabilities changed = {}; |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1175 | #define DEL_CAPABILITY(e) \ |
| 1176 | do { \ |
| 1177 | if (capabilities_ptr->e == 1) { \ |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 1178 | if (art_env->capabilities.e == 1) { \ |
| 1179 | art_env->capabilities.e = 0;\ |
| 1180 | changed.e = 1; \ |
| 1181 | } \ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1182 | } \ |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1183 | } while (false); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1184 | |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1185 | FOR_ALL_CAPABILITIES(DEL_CAPABILITY); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1186 | #undef DEL_CAPABILITY |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1187 | gEventHandler->HandleChangedCapabilities(ArtJvmTiEnv::AsArtJvmTiEnv(env), |
| 1188 | changed, |
Andreas Gampe | 6e89776 | 2018-10-16 13:09:32 -0700 | [diff] [blame] | 1189 | /*added=*/false); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1190 | return OK; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1193 | #undef FOR_ALL_CAPABILITIES |
| 1194 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1195 | static jvmtiError GetCapabilities(jvmtiEnv* env, jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1196 | ENSURE_VALID_ENV(env); |
| 1197 | ENSURE_NON_NULL(capabilities_ptr); |
| 1198 | ArtJvmTiEnv* artenv = reinterpret_cast<ArtJvmTiEnv*>(env); |
| 1199 | *capabilities_ptr = artenv->capabilities; |
| 1200 | return OK; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1201 | } |
| 1202 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1203 | static jvmtiError GetCurrentThreadCpuTimerInfo(jvmtiEnv* env, |
| 1204 | jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1205 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1206 | ENSURE_HAS_CAP(env, can_get_current_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1207 | return ERR(NOT_IMPLEMENTED); |
| 1208 | } |
| 1209 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1210 | static jvmtiError GetCurrentThreadCpuTime(jvmtiEnv* env, jlong* nanos_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1211 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1212 | ENSURE_HAS_CAP(env, can_get_current_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1213 | return ERR(NOT_IMPLEMENTED); |
| 1214 | } |
| 1215 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1216 | static jvmtiError GetThreadCpuTimerInfo(jvmtiEnv* env, |
| 1217 | jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1218 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1219 | ENSURE_HAS_CAP(env, can_get_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1220 | return ERR(NOT_IMPLEMENTED); |
| 1221 | } |
| 1222 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1223 | static jvmtiError GetThreadCpuTime(jvmtiEnv* env, |
| 1224 | jthread thread ATTRIBUTE_UNUSED, |
| 1225 | jlong* nanos_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1226 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1227 | ENSURE_HAS_CAP(env, can_get_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1228 | return ERR(NOT_IMPLEMENTED); |
| 1229 | } |
| 1230 | |
| 1231 | static jvmtiError GetTimerInfo(jvmtiEnv* env, jvmtiTimerInfo* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1232 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 1233 | return TimerUtil::GetTimerInfo(env, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | static jvmtiError GetTime(jvmtiEnv* env, jlong* nanos_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1237 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 1238 | return TimerUtil::GetTime(env, nanos_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1239 | } |
| 1240 | |
| 1241 | static jvmtiError GetAvailableProcessors(jvmtiEnv* env, jint* processor_count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1242 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 1243 | return TimerUtil::GetAvailableProcessors(env, processor_count_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | static jvmtiError AddToBootstrapClassLoaderSearch(jvmtiEnv* env, const char* segment) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1247 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ce7732b | 2017-01-17 15:50:26 -0800 | [diff] [blame] | 1248 | return SearchUtil::AddToBootstrapClassLoaderSearch(env, segment); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1249 | } |
| 1250 | |
| 1251 | static jvmtiError AddToSystemClassLoaderSearch(jvmtiEnv* env, const char* segment) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1252 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ce7732b | 2017-01-17 15:50:26 -0800 | [diff] [blame] | 1253 | return SearchUtil::AddToSystemClassLoaderSearch(env, segment); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | static jvmtiError GetSystemProperties(jvmtiEnv* env, jint* count_ptr, char*** property_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1257 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 1258 | return PropertiesUtil::GetSystemProperties(env, count_ptr, property_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1259 | } |
| 1260 | |
| 1261 | static jvmtiError GetSystemProperty(jvmtiEnv* env, const char* property, char** value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1262 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 1263 | return PropertiesUtil::GetSystemProperty(env, property, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | static jvmtiError SetSystemProperty(jvmtiEnv* env, const char* property, const char* value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1267 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 1268 | return PropertiesUtil::SetSystemProperty(env, property, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1269 | } |
| 1270 | |
| 1271 | static jvmtiError GetPhase(jvmtiEnv* env, jvmtiPhase* phase_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1272 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1273 | return PhaseUtil::GetPhase(env, phase_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1274 | } |
| 1275 | |
| 1276 | static jvmtiError DisposeEnvironment(jvmtiEnv* env) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1277 | ENSURE_VALID_ENV(env); |
Alex Light | 092a404 | 2017-07-12 08:46:44 -0700 | [diff] [blame] | 1278 | ArtJvmTiEnv* tienv = ArtJvmTiEnv::AsArtJvmTiEnv(env); |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1279 | gEventHandler->RemoveArtJvmTiEnv(tienv); |
Alex Light | 092a404 | 2017-07-12 08:46:44 -0700 | [diff] [blame] | 1280 | art::Runtime::Current()->RemoveSystemWeakHolder(tienv->object_tag_table.get()); |
| 1281 | ThreadUtil::RemoveEnvironment(tienv); |
| 1282 | delete tienv; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1283 | return OK; |
| 1284 | } |
| 1285 | |
| 1286 | static jvmtiError SetEnvironmentLocalStorage(jvmtiEnv* env, const void* data) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1287 | ENSURE_VALID_ENV(env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1288 | reinterpret_cast<ArtJvmTiEnv*>(env)->local_data = const_cast<void*>(data); |
| 1289 | return OK; |
| 1290 | } |
| 1291 | |
| 1292 | static jvmtiError GetEnvironmentLocalStorage(jvmtiEnv* env, void** data_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1293 | ENSURE_VALID_ENV(env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1294 | *data_ptr = reinterpret_cast<ArtJvmTiEnv*>(env)->local_data; |
| 1295 | return OK; |
| 1296 | } |
| 1297 | |
| 1298 | static jvmtiError GetVersionNumber(jvmtiEnv* env, jint* version_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1299 | ENSURE_VALID_ENV(env); |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1300 | *version_ptr = ArtJvmTiEnv::AsArtJvmTiEnv(env)->ti_version; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1301 | return OK; |
| 1302 | } |
| 1303 | |
| 1304 | static jvmtiError GetErrorName(jvmtiEnv* env, jvmtiError error, char** name_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1305 | ENSURE_NON_NULL(name_ptr); |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1306 | auto copy_fn = [&](const char* name_cstr) { |
| 1307 | jvmtiError res; |
| 1308 | JvmtiUniquePtr<char[]> copy = CopyString(env, name_cstr, &res); |
| 1309 | if (copy == nullptr) { |
| 1310 | *name_ptr = nullptr; |
| 1311 | return res; |
| 1312 | } else { |
| 1313 | *name_ptr = copy.release(); |
| 1314 | return OK; |
| 1315 | } |
| 1316 | }; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1317 | switch (error) { |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1318 | #define ERROR_CASE(e) case (JVMTI_ERROR_ ## e) : \ |
| 1319 | return copy_fn("JVMTI_ERROR_"#e); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1320 | ERROR_CASE(NONE); |
| 1321 | ERROR_CASE(INVALID_THREAD); |
| 1322 | ERROR_CASE(INVALID_THREAD_GROUP); |
| 1323 | ERROR_CASE(INVALID_PRIORITY); |
| 1324 | ERROR_CASE(THREAD_NOT_SUSPENDED); |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1325 | ERROR_CASE(THREAD_SUSPENDED); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1326 | ERROR_CASE(THREAD_NOT_ALIVE); |
| 1327 | ERROR_CASE(INVALID_OBJECT); |
| 1328 | ERROR_CASE(INVALID_CLASS); |
| 1329 | ERROR_CASE(CLASS_NOT_PREPARED); |
| 1330 | ERROR_CASE(INVALID_METHODID); |
| 1331 | ERROR_CASE(INVALID_LOCATION); |
| 1332 | ERROR_CASE(INVALID_FIELDID); |
| 1333 | ERROR_CASE(NO_MORE_FRAMES); |
| 1334 | ERROR_CASE(OPAQUE_FRAME); |
| 1335 | ERROR_CASE(TYPE_MISMATCH); |
| 1336 | ERROR_CASE(INVALID_SLOT); |
| 1337 | ERROR_CASE(DUPLICATE); |
| 1338 | ERROR_CASE(NOT_FOUND); |
| 1339 | ERROR_CASE(INVALID_MONITOR); |
| 1340 | ERROR_CASE(NOT_MONITOR_OWNER); |
| 1341 | ERROR_CASE(INTERRUPT); |
| 1342 | ERROR_CASE(INVALID_CLASS_FORMAT); |
| 1343 | ERROR_CASE(CIRCULAR_CLASS_DEFINITION); |
| 1344 | ERROR_CASE(FAILS_VERIFICATION); |
| 1345 | ERROR_CASE(UNSUPPORTED_REDEFINITION_METHOD_ADDED); |
| 1346 | ERROR_CASE(UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED); |
| 1347 | ERROR_CASE(INVALID_TYPESTATE); |
| 1348 | ERROR_CASE(UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED); |
| 1349 | ERROR_CASE(UNSUPPORTED_REDEFINITION_METHOD_DELETED); |
| 1350 | ERROR_CASE(UNSUPPORTED_VERSION); |
| 1351 | ERROR_CASE(NAMES_DONT_MATCH); |
| 1352 | ERROR_CASE(UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED); |
| 1353 | ERROR_CASE(UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED); |
| 1354 | ERROR_CASE(UNMODIFIABLE_CLASS); |
| 1355 | ERROR_CASE(NOT_AVAILABLE); |
| 1356 | ERROR_CASE(MUST_POSSESS_CAPABILITY); |
| 1357 | ERROR_CASE(NULL_POINTER); |
| 1358 | ERROR_CASE(ABSENT_INFORMATION); |
| 1359 | ERROR_CASE(INVALID_EVENT_TYPE); |
| 1360 | ERROR_CASE(ILLEGAL_ARGUMENT); |
| 1361 | ERROR_CASE(NATIVE_METHOD); |
| 1362 | ERROR_CASE(CLASS_LOADER_UNSUPPORTED); |
| 1363 | ERROR_CASE(OUT_OF_MEMORY); |
| 1364 | ERROR_CASE(ACCESS_DENIED); |
| 1365 | ERROR_CASE(WRONG_PHASE); |
| 1366 | ERROR_CASE(INTERNAL); |
| 1367 | ERROR_CASE(UNATTACHED_THREAD); |
| 1368 | ERROR_CASE(INVALID_ENVIRONMENT); |
| 1369 | #undef ERROR_CASE |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1370 | } |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1371 | |
| 1372 | return ERR(ILLEGAL_ARGUMENT); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1373 | } |
| 1374 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1375 | static jvmtiError SetVerboseFlag(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1376 | jvmtiVerboseFlag flag, |
| 1377 | jboolean value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1378 | ENSURE_VALID_ENV(env); |
Alex Light | 8f95183 | 2020-02-24 14:31:54 -0800 | [diff] [blame] | 1379 | return LogUtil::SetVerboseFlag(env, flag, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1380 | } |
| 1381 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1382 | static jvmtiError GetJLocationFormat(jvmtiEnv* env, jvmtiJlocationFormat* format_ptr) { |
| 1383 | ENSURE_VALID_ENV(env); |
Andreas Gampe | acfc957 | 2017-01-17 18:36:56 -0800 | [diff] [blame] | 1384 | // Report BCI as jlocation format. We report dex bytecode indices. |
| 1385 | if (format_ptr == nullptr) { |
| 1386 | return ERR(NULL_POINTER); |
| 1387 | } |
| 1388 | *format_ptr = jvmtiJlocationFormat::JVMTI_JLOCATION_JVMBCI; |
| 1389 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1390 | } |
| 1391 | }; |
| 1392 | |
| 1393 | static bool IsJvmtiVersion(jint version) { |
| 1394 | return version == JVMTI_VERSION_1 || |
| 1395 | version == JVMTI_VERSION_1_0 || |
| 1396 | version == JVMTI_VERSION_1_1 || |
| 1397 | version == JVMTI_VERSION_1_2 || |
| 1398 | version == JVMTI_VERSION; |
| 1399 | } |
| 1400 | |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1401 | extern const jvmtiInterface_1 gJvmtiInterface; |
Alex Light | 092a404 | 2017-07-12 08:46:44 -0700 | [diff] [blame] | 1402 | |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1403 | ArtJvmTiEnv::ArtJvmTiEnv(art::JavaVMExt* runtime, EventHandler* event_handler, jint version) |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1404 | : art_vm(runtime), |
| 1405 | local_data(nullptr), |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1406 | ti_version(version), |
Alex Light | b6106d5 | 2017-10-18 15:02:15 -0700 | [diff] [blame] | 1407 | capabilities(), |
Alex Light | ae45cbb | 2018-10-18 15:49:56 -0700 | [diff] [blame] | 1408 | event_info_mutex_("jvmtiEnv_EventInfoMutex"), |
| 1409 | last_error_mutex_("jvmtiEnv_LastErrorMutex", art::LockLevel::kGenericBottomLock) { |
Yi Kong | c57c680 | 2018-10-29 14:28:56 -0700 | [diff] [blame] | 1410 | object_tag_table = std::make_unique<ObjectTagTable>(event_handler, this); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1411 | functions = &gJvmtiInterface; |
| 1412 | } |
| 1413 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1414 | // Creates a jvmtiEnv and returns it with the art::ti::Env that is associated with it. new_art_ti |
| 1415 | // is a pointer to the uninitialized memory for an art::ti::Env. |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1416 | static void CreateArtJvmTiEnv(art::JavaVMExt* vm, jint version, /*out*/void** new_jvmtiEnv) { |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1417 | struct ArtJvmTiEnv* env = new ArtJvmTiEnv(vm, gEventHandler, version); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1418 | *new_jvmtiEnv = env; |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1419 | |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1420 | gEventHandler->RegisterArtJvmTiEnv(env); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1421 | |
| 1422 | art::Runtime::Current()->AddSystemWeakHolder( |
| 1423 | ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1424 | } |
| 1425 | |
| 1426 | // A hook that the runtime uses to allow plugins to handle GetEnv calls. It returns true and |
| 1427 | // places the return value in 'env' if this library can handle the GetEnv request. Otherwise |
| 1428 | // returns false and does not modify the 'env' pointer. |
| 1429 | static jint GetEnvHandler(art::JavaVMExt* vm, /*out*/void** env, jint version) { |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1430 | // JavaDebuggable will either be set by the runtime as it is starting up or the plugin if it's |
| 1431 | // loaded early enough. If this is false we cannot guarantee conformance to all JVMTI behaviors |
| 1432 | // due to optimizations. We will only allow agents to get ArtTiEnvs using the kArtTiVersion. |
| 1433 | if (IsFullJvmtiAvailable() && IsJvmtiVersion(version)) { |
| 1434 | CreateArtJvmTiEnv(vm, JVMTI_VERSION, env); |
| 1435 | return JNI_OK; |
| 1436 | } else if (version == kArtTiVersion) { |
| 1437 | CreateArtJvmTiEnv(vm, kArtTiVersion, env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1438 | return JNI_OK; |
| 1439 | } else { |
| 1440 | printf("version 0x%x is not valid!", version); |
Alex Light | 0fba186 | 2021-01-27 16:14:30 -0800 | [diff] [blame] | 1441 | if (IsJvmtiVersion(version)) { |
| 1442 | LOG(ERROR) << "JVMTI Version 0x" << std::hex << version << " requested but the runtime is not" |
| 1443 | << " debuggable! Only limited, best effort kArtTiVersion" |
| 1444 | << " (0x" << std::hex << kArtTiVersion << ") environments are available. If" |
| 1445 | << " possible, rebuild your apk in debuggable mode or start the runtime with" |
| 1446 | << " the `-Xcompiler-option --debuggable` flags."; |
| 1447 | } |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1448 | return JNI_EVERSION; |
| 1449 | } |
| 1450 | } |
| 1451 | |
| 1452 | // The plugin initialization function. This adds the jvmti environment. |
| 1453 | extern "C" bool ArtPlugin_Initialize() { |
Andreas Gampe | e08a2be | 2016-10-06 13:13:30 -0700 | [diff] [blame] | 1454 | art::Runtime* runtime = art::Runtime::Current(); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1455 | |
Alex Light | 986914b | 2019-11-19 01:12:25 +0000 | [diff] [blame] | 1456 | gAllocManager = new AllocationManager; |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1457 | gDeoptManager = new DeoptManager; |
| 1458 | gEventHandler = new EventHandler; |
| 1459 | |
| 1460 | gDeoptManager->Setup(); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1461 | if (runtime->IsStarted()) { |
| 1462 | PhaseUtil::SetToLive(); |
| 1463 | } else { |
| 1464 | PhaseUtil::SetToOnLoad(); |
| 1465 | } |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1466 | PhaseUtil::Register(gEventHandler); |
| 1467 | ThreadUtil::Register(gEventHandler); |
| 1468 | ClassUtil::Register(gEventHandler); |
| 1469 | DumpUtil::Register(gEventHandler); |
| 1470 | MethodUtil::Register(gEventHandler); |
Alex Light | 72d7e94 | 2019-07-23 13:10:20 -0700 | [diff] [blame] | 1471 | HeapExtensions::Register(gEventHandler); |
Andreas Gampe | cefaa14 | 2017-01-23 15:04:59 -0800 | [diff] [blame] | 1472 | SearchUtil::Register(); |
Andreas Gampe | 9e38a50 | 2017-03-06 08:19:26 -0800 | [diff] [blame] | 1473 | HeapUtil::Register(); |
Alex Light | c18eba3 | 2019-09-24 14:36:27 -0700 | [diff] [blame] | 1474 | FieldUtil::Register(gEventHandler); |
| 1475 | BreakpointUtil::Register(gEventHandler); |
Alex Light | 3732beb | 2019-10-04 13:35:34 -0700 | [diff] [blame] | 1476 | Transformer::Register(gEventHandler); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1477 | |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1478 | { |
| 1479 | // Make sure we can deopt anything we need to. |
Nicolas Geoffray | 226805d | 2018-12-14 10:59:02 +0000 | [diff] [blame] | 1480 | art::ScopedSuspendAll ssa(__FUNCTION__); |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1481 | gDeoptManager->FinishSetup(); |
Alex Light | 2ce6fc8 | 2017-12-18 16:42:36 -0800 | [diff] [blame] | 1482 | } |
| 1483 | |
Andreas Gampe | e08a2be | 2016-10-06 13:13:30 -0700 | [diff] [blame] | 1484 | runtime->GetJavaVM()->AddEnvironmentHook(GetEnvHandler); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1485 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1486 | return true; |
| 1487 | } |
| 1488 | |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1489 | extern "C" bool ArtPlugin_Deinitialize() { |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1490 | gEventHandler->Shutdown(); |
| 1491 | gDeoptManager->Shutdown(); |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1492 | PhaseUtil::Unregister(); |
| 1493 | ThreadUtil::Unregister(); |
Andreas Gampe | e637746 | 2017-01-20 17:37:50 -0800 | [diff] [blame] | 1494 | ClassUtil::Unregister(); |
Andreas Gampe | eb0cea1 | 2017-01-23 08:50:04 -0800 | [diff] [blame] | 1495 | DumpUtil::Unregister(); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 1496 | MethodUtil::Unregister(); |
Andreas Gampe | cefaa14 | 2017-01-23 15:04:59 -0800 | [diff] [blame] | 1497 | SearchUtil::Unregister(); |
Andreas Gampe | 9e38a50 | 2017-03-06 08:19:26 -0800 | [diff] [blame] | 1498 | HeapUtil::Unregister(); |
Alex Light | c18eba3 | 2019-09-24 14:36:27 -0700 | [diff] [blame] | 1499 | FieldUtil::Unregister(); |
| 1500 | BreakpointUtil::Unregister(); |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1501 | |
Alex Light | 0e84118 | 2018-02-12 17:42:50 +0000 | [diff] [blame] | 1502 | // TODO It would be good to delete the gEventHandler and gDeoptManager here but we cannot since |
| 1503 | // daemon threads might be suspended and we want to make sure that even if they wake up briefly |
| 1504 | // they won't hit deallocated memory. By this point none of the functions will do anything since |
| 1505 | // they have already shutdown. |
| 1506 | |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1507 | return true; |
| 1508 | } |
| 1509 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1510 | // The actual struct holding all of the entrypoints into the jvmti interface. |
| 1511 | const jvmtiInterface_1 gJvmtiInterface = { |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 1512 | nullptr, // reserved1 |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1513 | JvmtiFunctions::SetEventNotificationMode, |
Alex Light | 0e69273 | 2017-01-10 15:00:05 -0800 | [diff] [blame] | 1514 | nullptr, // reserved3 |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1515 | JvmtiFunctions::GetAllThreads, |
| 1516 | JvmtiFunctions::SuspendThread, |
| 1517 | JvmtiFunctions::ResumeThread, |
| 1518 | JvmtiFunctions::StopThread, |
| 1519 | JvmtiFunctions::InterruptThread, |
| 1520 | JvmtiFunctions::GetThreadInfo, |
| 1521 | JvmtiFunctions::GetOwnedMonitorInfo, // 10 |
| 1522 | JvmtiFunctions::GetCurrentContendedMonitor, |
| 1523 | JvmtiFunctions::RunAgentThread, |
| 1524 | JvmtiFunctions::GetTopThreadGroups, |
| 1525 | JvmtiFunctions::GetThreadGroupInfo, |
| 1526 | JvmtiFunctions::GetThreadGroupChildren, |
| 1527 | JvmtiFunctions::GetFrameCount, |
| 1528 | JvmtiFunctions::GetThreadState, |
| 1529 | JvmtiFunctions::GetCurrentThread, |
| 1530 | JvmtiFunctions::GetFrameLocation, |
| 1531 | JvmtiFunctions::NotifyFramePop, // 20 |
| 1532 | JvmtiFunctions::GetLocalObject, |
| 1533 | JvmtiFunctions::GetLocalInt, |
| 1534 | JvmtiFunctions::GetLocalLong, |
| 1535 | JvmtiFunctions::GetLocalFloat, |
| 1536 | JvmtiFunctions::GetLocalDouble, |
| 1537 | JvmtiFunctions::SetLocalObject, |
| 1538 | JvmtiFunctions::SetLocalInt, |
| 1539 | JvmtiFunctions::SetLocalLong, |
| 1540 | JvmtiFunctions::SetLocalFloat, |
| 1541 | JvmtiFunctions::SetLocalDouble, // 30 |
| 1542 | JvmtiFunctions::CreateRawMonitor, |
| 1543 | JvmtiFunctions::DestroyRawMonitor, |
| 1544 | JvmtiFunctions::RawMonitorEnter, |
| 1545 | JvmtiFunctions::RawMonitorExit, |
| 1546 | JvmtiFunctions::RawMonitorWait, |
| 1547 | JvmtiFunctions::RawMonitorNotify, |
| 1548 | JvmtiFunctions::RawMonitorNotifyAll, |
| 1549 | JvmtiFunctions::SetBreakpoint, |
| 1550 | JvmtiFunctions::ClearBreakpoint, |
| 1551 | nullptr, // reserved40 |
| 1552 | JvmtiFunctions::SetFieldAccessWatch, |
| 1553 | JvmtiFunctions::ClearFieldAccessWatch, |
| 1554 | JvmtiFunctions::SetFieldModificationWatch, |
| 1555 | JvmtiFunctions::ClearFieldModificationWatch, |
| 1556 | JvmtiFunctions::IsModifiableClass, |
| 1557 | JvmtiFunctions::Allocate, |
| 1558 | JvmtiFunctions::Deallocate, |
| 1559 | JvmtiFunctions::GetClassSignature, |
| 1560 | JvmtiFunctions::GetClassStatus, |
| 1561 | JvmtiFunctions::GetSourceFileName, // 50 |
| 1562 | JvmtiFunctions::GetClassModifiers, |
| 1563 | JvmtiFunctions::GetClassMethods, |
| 1564 | JvmtiFunctions::GetClassFields, |
| 1565 | JvmtiFunctions::GetImplementedInterfaces, |
| 1566 | JvmtiFunctions::IsInterface, |
| 1567 | JvmtiFunctions::IsArrayClass, |
| 1568 | JvmtiFunctions::GetClassLoader, |
| 1569 | JvmtiFunctions::GetObjectHashCode, |
| 1570 | JvmtiFunctions::GetObjectMonitorUsage, |
| 1571 | JvmtiFunctions::GetFieldName, // 60 |
| 1572 | JvmtiFunctions::GetFieldDeclaringClass, |
| 1573 | JvmtiFunctions::GetFieldModifiers, |
| 1574 | JvmtiFunctions::IsFieldSynthetic, |
| 1575 | JvmtiFunctions::GetMethodName, |
| 1576 | JvmtiFunctions::GetMethodDeclaringClass, |
| 1577 | JvmtiFunctions::GetMethodModifiers, |
| 1578 | nullptr, // reserved67 |
| 1579 | JvmtiFunctions::GetMaxLocals, |
| 1580 | JvmtiFunctions::GetArgumentsSize, |
| 1581 | JvmtiFunctions::GetLineNumberTable, // 70 |
| 1582 | JvmtiFunctions::GetMethodLocation, |
| 1583 | JvmtiFunctions::GetLocalVariableTable, |
| 1584 | JvmtiFunctions::SetNativeMethodPrefix, |
| 1585 | JvmtiFunctions::SetNativeMethodPrefixes, |
| 1586 | JvmtiFunctions::GetBytecodes, |
| 1587 | JvmtiFunctions::IsMethodNative, |
| 1588 | JvmtiFunctions::IsMethodSynthetic, |
| 1589 | JvmtiFunctions::GetLoadedClasses, |
| 1590 | JvmtiFunctions::GetClassLoaderClasses, |
| 1591 | JvmtiFunctions::PopFrame, // 80 |
| 1592 | JvmtiFunctions::ForceEarlyReturnObject, |
| 1593 | JvmtiFunctions::ForceEarlyReturnInt, |
| 1594 | JvmtiFunctions::ForceEarlyReturnLong, |
| 1595 | JvmtiFunctions::ForceEarlyReturnFloat, |
| 1596 | JvmtiFunctions::ForceEarlyReturnDouble, |
| 1597 | JvmtiFunctions::ForceEarlyReturnVoid, |
| 1598 | JvmtiFunctions::RedefineClasses, |
| 1599 | JvmtiFunctions::GetVersionNumber, |
| 1600 | JvmtiFunctions::GetCapabilities, |
| 1601 | JvmtiFunctions::GetSourceDebugExtension, // 90 |
| 1602 | JvmtiFunctions::IsMethodObsolete, |
| 1603 | JvmtiFunctions::SuspendThreadList, |
| 1604 | JvmtiFunctions::ResumeThreadList, |
| 1605 | nullptr, // reserved94 |
| 1606 | nullptr, // reserved95 |
| 1607 | nullptr, // reserved96 |
| 1608 | nullptr, // reserved97 |
| 1609 | nullptr, // reserved98 |
| 1610 | nullptr, // reserved99 |
| 1611 | JvmtiFunctions::GetAllStackTraces, // 100 |
| 1612 | JvmtiFunctions::GetThreadListStackTraces, |
| 1613 | JvmtiFunctions::GetThreadLocalStorage, |
| 1614 | JvmtiFunctions::SetThreadLocalStorage, |
| 1615 | JvmtiFunctions::GetStackTrace, |
| 1616 | nullptr, // reserved105 |
| 1617 | JvmtiFunctions::GetTag, |
| 1618 | JvmtiFunctions::SetTag, |
| 1619 | JvmtiFunctions::ForceGarbageCollection, |
| 1620 | JvmtiFunctions::IterateOverObjectsReachableFromObject, |
| 1621 | JvmtiFunctions::IterateOverReachableObjects, // 110 |
| 1622 | JvmtiFunctions::IterateOverHeap, |
| 1623 | JvmtiFunctions::IterateOverInstancesOfClass, |
| 1624 | nullptr, // reserved113 |
| 1625 | JvmtiFunctions::GetObjectsWithTags, |
| 1626 | JvmtiFunctions::FollowReferences, |
| 1627 | JvmtiFunctions::IterateThroughHeap, |
| 1628 | nullptr, // reserved117 |
| 1629 | nullptr, // reserved118 |
| 1630 | nullptr, // reserved119 |
| 1631 | JvmtiFunctions::SetJNIFunctionTable, // 120 |
| 1632 | JvmtiFunctions::GetJNIFunctionTable, |
| 1633 | JvmtiFunctions::SetEventCallbacks, |
| 1634 | JvmtiFunctions::GenerateEvents, |
| 1635 | JvmtiFunctions::GetExtensionFunctions, |
| 1636 | JvmtiFunctions::GetExtensionEvents, |
| 1637 | JvmtiFunctions::SetExtensionEventCallback, |
| 1638 | JvmtiFunctions::DisposeEnvironment, |
| 1639 | JvmtiFunctions::GetErrorName, |
| 1640 | JvmtiFunctions::GetJLocationFormat, |
| 1641 | JvmtiFunctions::GetSystemProperties, // 130 |
| 1642 | JvmtiFunctions::GetSystemProperty, |
| 1643 | JvmtiFunctions::SetSystemProperty, |
| 1644 | JvmtiFunctions::GetPhase, |
| 1645 | JvmtiFunctions::GetCurrentThreadCpuTimerInfo, |
| 1646 | JvmtiFunctions::GetCurrentThreadCpuTime, |
| 1647 | JvmtiFunctions::GetThreadCpuTimerInfo, |
| 1648 | JvmtiFunctions::GetThreadCpuTime, |
| 1649 | JvmtiFunctions::GetTimerInfo, |
| 1650 | JvmtiFunctions::GetTime, |
| 1651 | JvmtiFunctions::GetPotentialCapabilities, // 140 |
| 1652 | nullptr, // reserved141 |
| 1653 | JvmtiFunctions::AddCapabilities, |
| 1654 | JvmtiFunctions::RelinquishCapabilities, |
| 1655 | JvmtiFunctions::GetAvailableProcessors, |
| 1656 | JvmtiFunctions::GetClassVersionNumbers, |
| 1657 | JvmtiFunctions::GetConstantPool, |
| 1658 | JvmtiFunctions::GetEnvironmentLocalStorage, |
| 1659 | JvmtiFunctions::SetEnvironmentLocalStorage, |
| 1660 | JvmtiFunctions::AddToBootstrapClassLoaderSearch, |
| 1661 | JvmtiFunctions::SetVerboseFlag, // 150 |
| 1662 | JvmtiFunctions::AddToSystemClassLoaderSearch, |
| 1663 | JvmtiFunctions::RetransformClasses, |
| 1664 | JvmtiFunctions::GetOwnedMonitorStackDepthInfo, |
| 1665 | JvmtiFunctions::GetObjectSize, |
| 1666 | JvmtiFunctions::GetLocalInstance, |
| 1667 | }; |
| 1668 | |
| 1669 | }; // namespace openjdkjvmti |