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 | |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 32 | #include <string> |
Andreas Gampe | f37e302 | 2017-01-13 17:54:46 -0800 | [diff] [blame] | 33 | #include <type_traits> |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 34 | #include <vector> |
| 35 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 36 | #include <jni.h> |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 37 | |
Andreas Gampe | 5e03a30 | 2017-03-13 13:10:00 -0700 | [diff] [blame] | 38 | #include "jvmti.h" |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 39 | |
Andreas Gampe | db6dcb6 | 2016-09-13 09:05:59 -0700 | [diff] [blame] | 40 | #include "art_jvmti.h" |
Andreas Gampe | f37e302 | 2017-01-13 17:54:46 -0800 | [diff] [blame] | 41 | #include "base/logging.h" |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 42 | #include "base/mutex.h" |
| 43 | #include "events-inl.h" |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 44 | #include "jni_env_ext-inl.h" |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 45 | #include "obj_ptr-inl.h" |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 46 | #include "object_tagging.h" |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 47 | #include "runtime.h" |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 48 | #include "scoped_thread_state_change-inl.h" |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 49 | #include "thread-current-inl.h" |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 50 | #include "thread_list.h" |
Alex Light | bf64a57 | 2017-07-05 10:34:49 -0700 | [diff] [blame] | 51 | #include "ti_allocator.h" |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 52 | #include "ti_breakpoint.h" |
Andreas Gampe | e492ae3 | 2016-10-28 19:34:57 -0700 | [diff] [blame] | 53 | #include "ti_class.h" |
Andreas Gampe | eb0cea1 | 2017-01-23 08:50:04 -0800 | [diff] [blame] | 54 | #include "ti_dump.h" |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 55 | #include "ti_field.h" |
Andreas Gampe | ba8df69 | 2016-11-01 10:30:44 -0700 | [diff] [blame] | 56 | #include "ti_heap.h" |
Andreas Gampe | 6f8e4f0 | 2017-01-16 18:18:14 -0800 | [diff] [blame] | 57 | #include "ti_jni.h" |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 58 | #include "ti_method.h" |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 59 | #include "ti_monitor.h" |
Andreas Gampe | 50a4e49 | 2017-01-06 18:00:20 -0800 | [diff] [blame] | 60 | #include "ti_object.h" |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 61 | #include "ti_phase.h" |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 62 | #include "ti_properties.h" |
Alex Light | a01de59 | 2016-11-15 10:43:06 -0800 | [diff] [blame] | 63 | #include "ti_redefine.h" |
Andreas Gampe | ce7732b | 2017-01-17 15:50:26 -0800 | [diff] [blame] | 64 | #include "ti_search.h" |
Andreas Gampe | b5eb94a | 2016-10-27 19:23:09 -0700 | [diff] [blame] | 65 | #include "ti_stack.h" |
Andreas Gampe | af13ab9 | 2017-01-11 20:57:40 -0800 | [diff] [blame] | 66 | #include "ti_thread.h" |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 67 | #include "ti_threadgroup.h" |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 68 | #include "ti_timers.h" |
Alex Light | 9c20a14 | 2016-08-23 15:05:12 -0700 | [diff] [blame] | 69 | #include "transform.h" |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 70 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 71 | namespace openjdkjvmti { |
| 72 | |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 73 | EventHandler gEventHandler; |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 74 | |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 75 | #define ENSURE_NON_NULL(n) \ |
| 76 | do { \ |
| 77 | if ((n) == nullptr) { \ |
| 78 | return ERR(NULL_POINTER); \ |
| 79 | } \ |
| 80 | } while (false) |
| 81 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 82 | class JvmtiFunctions { |
| 83 | private: |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 84 | static jvmtiError getEnvironmentError(jvmtiEnv* env) { |
| 85 | if (env == nullptr) { |
| 86 | return ERR(INVALID_ENVIRONMENT); |
| 87 | } else if (art::Thread::Current() == nullptr) { |
| 88 | return ERR(UNATTACHED_THREAD); |
| 89 | } else { |
| 90 | return OK; |
| 91 | } |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 94 | #define ENSURE_VALID_ENV(env) \ |
| 95 | do { \ |
| 96 | jvmtiError ensure_valid_env_ ## __LINE__ = getEnvironmentError(env); \ |
| 97 | if (ensure_valid_env_ ## __LINE__ != OK) { \ |
| 98 | return ensure_valid_env_ ## __LINE__ ; \ |
| 99 | } \ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 100 | } while (false) |
| 101 | |
| 102 | #define ENSURE_HAS_CAP(env, cap) \ |
| 103 | do { \ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 104 | if (ArtJvmTiEnv::AsArtJvmTiEnv(env)->capabilities.cap != 1) { \ |
| 105 | return ERR(MUST_POSSESS_CAPABILITY); \ |
| 106 | } \ |
| 107 | } while (false) |
| 108 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 109 | public: |
| 110 | static jvmtiError Allocate(jvmtiEnv* env, jlong size, unsigned char** mem_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 111 | ENSURE_VALID_ENV(env); |
| 112 | ENSURE_NON_NULL(mem_ptr); |
Alex Light | bf64a57 | 2017-07-05 10:34:49 -0700 | [diff] [blame] | 113 | return AllocUtil::Allocate(env, size, mem_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | static jvmtiError Deallocate(jvmtiEnv* env, unsigned char* mem) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 117 | ENSURE_VALID_ENV(env); |
Alex Light | bf64a57 | 2017-07-05 10:34:49 -0700 | [diff] [blame] | 118 | return AllocUtil::Deallocate(env, mem); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static jvmtiError GetThreadState(jvmtiEnv* env, jthread thread, jint* thread_state_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 122 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 72c1983 | 2017-01-12 13:22:16 -0800 | [diff] [blame] | 123 | return ThreadUtil::GetThreadState(env, thread, thread_state_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | static jvmtiError GetCurrentThread(jvmtiEnv* env, jthread* thread_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 127 | ENSURE_VALID_ENV(env); |
Andreas Gampe | af13ab9 | 2017-01-11 20:57:40 -0800 | [diff] [blame] | 128 | return ThreadUtil::GetCurrentThread(env, thread_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | static jvmtiError GetAllThreads(jvmtiEnv* env, jint* threads_count_ptr, jthread** threads_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 132 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8580744 | 2017-01-13 14:40:58 -0800 | [diff] [blame] | 133 | return ThreadUtil::GetAllThreads(env, threads_count_ptr, threads_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 136 | static jvmtiError SuspendThread(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 137 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 138 | ENSURE_HAS_CAP(env, can_suspend); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 139 | return ThreadUtil::SuspendThread(env, thread); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | static jvmtiError SuspendThreadList(jvmtiEnv* env, |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 143 | jint request_count, |
| 144 | const jthread* request_list, |
| 145 | jvmtiError* results) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 146 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 147 | ENSURE_HAS_CAP(env, can_suspend); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 148 | return ThreadUtil::SuspendThreadList(env, request_count, request_list, results); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 151 | static jvmtiError ResumeThread(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 152 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 153 | ENSURE_HAS_CAP(env, can_suspend); |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 154 | return ThreadUtil::ResumeThread(env, thread); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | static jvmtiError ResumeThreadList(jvmtiEnv* env, |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 158 | jint request_count, |
| 159 | const jthread* request_list, |
| 160 | jvmtiError* results) { |
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::ResumeThreadList(env, request_count, request_list, results); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 166 | static jvmtiError StopThread(jvmtiEnv* env, jthread thread, jobject exception) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 167 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 168 | ENSURE_HAS_CAP(env, can_signal_thread); |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 169 | return ThreadUtil::StopThread(env, thread, exception); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 172 | static jvmtiError InterruptThread(jvmtiEnv* env, jthread thread) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 173 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 174 | ENSURE_HAS_CAP(env, can_signal_thread); |
Alex Light | 54d39dc | 2017-09-25 17:00:16 -0700 | [diff] [blame] | 175 | return ThreadUtil::InterruptThread(env, thread); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | static jvmtiError GetThreadInfo(jvmtiEnv* env, jthread thread, jvmtiThreadInfo* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 179 | ENSURE_VALID_ENV(env); |
Andreas Gampe | af13ab9 | 2017-01-11 20:57:40 -0800 | [diff] [blame] | 180 | return ThreadUtil::GetThreadInfo(env, thread, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | static jvmtiError GetOwnedMonitorInfo(jvmtiEnv* env, |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 184 | jthread thread, |
| 185 | jint* owned_monitor_count_ptr, |
| 186 | jobject** owned_monitors_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 187 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 188 | ENSURE_HAS_CAP(env, can_get_owned_monitor_info); |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 189 | return StackUtil::GetOwnedMonitorInfo(env, |
| 190 | thread, |
| 191 | owned_monitor_count_ptr, |
| 192 | owned_monitors_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 195 | static jvmtiError GetOwnedMonitorStackDepthInfo(jvmtiEnv* env, |
| 196 | jthread thread, |
| 197 | jint* monitor_info_count_ptr, |
| 198 | jvmtiMonitorStackDepthInfo** monitor_info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 199 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 200 | ENSURE_HAS_CAP(env, can_get_owned_monitor_stack_depth_info); |
Alex Light | 88e1ddd | 2017-08-21 13:09:55 -0700 | [diff] [blame] | 201 | return StackUtil::GetOwnedMonitorStackDepthInfo(env, |
| 202 | thread, |
| 203 | monitor_info_count_ptr, |
| 204 | monitor_info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static jvmtiError GetCurrentContendedMonitor(jvmtiEnv* env, |
Alex Light | 41006c6 | 2017-09-14 09:51:14 -0700 | [diff] [blame] | 208 | jthread thread, |
| 209 | jobject* monitor_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 210 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 211 | ENSURE_HAS_CAP(env, can_get_current_contended_monitor); |
Alex Light | 41006c6 | 2017-09-14 09:51:14 -0700 | [diff] [blame] | 212 | return MonitorUtil::GetCurrentContendedMonitor(env, thread, monitor_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | static jvmtiError RunAgentThread(jvmtiEnv* env, |
| 216 | jthread thread, |
| 217 | jvmtiStartFunction proc, |
| 218 | const void* arg, |
| 219 | jint priority) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 220 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 732b0ac | 2017-01-18 15:23:39 -0800 | [diff] [blame] | 221 | return ThreadUtil::RunAgentThread(env, thread, proc, arg, priority); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | static jvmtiError SetThreadLocalStorage(jvmtiEnv* env, jthread thread, const void* data) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 225 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 7b3b326 | 2017-01-19 20:40:42 -0800 | [diff] [blame] | 226 | return ThreadUtil::SetThreadLocalStorage(env, thread, data); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | static jvmtiError GetThreadLocalStorage(jvmtiEnv* env, jthread thread, void** data_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 230 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 7b3b326 | 2017-01-19 20:40:42 -0800 | [diff] [blame] | 231 | return ThreadUtil::GetThreadLocalStorage(env, thread, data_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | static jvmtiError GetTopThreadGroups(jvmtiEnv* env, |
| 235 | jint* group_count_ptr, |
| 236 | jthreadGroup** groups_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 237 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 238 | return ThreadGroupUtil::GetTopThreadGroups(env, group_count_ptr, groups_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static jvmtiError GetThreadGroupInfo(jvmtiEnv* env, |
| 242 | jthreadGroup group, |
| 243 | jvmtiThreadGroupInfo* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 244 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 245 | return ThreadGroupUtil::GetThreadGroupInfo(env, group, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | static jvmtiError GetThreadGroupChildren(jvmtiEnv* env, |
| 249 | jthreadGroup group, |
| 250 | jint* thread_count_ptr, |
| 251 | jthread** threads_ptr, |
| 252 | jint* group_count_ptr, |
| 253 | jthreadGroup** groups_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 254 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d18d9e2 | 2017-01-16 16:08:45 +0000 | [diff] [blame] | 255 | return ThreadGroupUtil::GetThreadGroupChildren(env, |
| 256 | group, |
| 257 | thread_count_ptr, |
| 258 | threads_ptr, |
| 259 | group_count_ptr, |
| 260 | groups_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | static jvmtiError GetStackTrace(jvmtiEnv* env, |
| 264 | jthread thread, |
| 265 | jint start_depth, |
| 266 | jint max_frame_count, |
| 267 | jvmtiFrameInfo* frame_buffer, |
| 268 | jint* count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 269 | ENSURE_VALID_ENV(env); |
Andreas Gampe | b5eb94a | 2016-10-27 19:23:09 -0700 | [diff] [blame] | 270 | return StackUtil::GetStackTrace(env, |
| 271 | thread, |
| 272 | start_depth, |
| 273 | max_frame_count, |
| 274 | frame_buffer, |
| 275 | count_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | static jvmtiError GetAllStackTraces(jvmtiEnv* env, |
| 279 | jint max_frame_count, |
| 280 | jvmtiStackInfo** stack_info_ptr, |
| 281 | jint* thread_count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 282 | ENSURE_VALID_ENV(env); |
Andreas Gampe | a1a27c6 | 2017-01-11 16:37:16 -0800 | [diff] [blame] | 283 | 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] | 284 | } |
| 285 | |
| 286 | static jvmtiError GetThreadListStackTraces(jvmtiEnv* env, |
| 287 | jint thread_count, |
| 288 | const jthread* thread_list, |
| 289 | jint max_frame_count, |
| 290 | jvmtiStackInfo** stack_info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 291 | ENSURE_VALID_ENV(env); |
Andreas Gampe | eba32fb | 2017-01-12 17:40:05 -0800 | [diff] [blame] | 292 | return StackUtil::GetThreadListStackTraces(env, |
| 293 | thread_count, |
| 294 | thread_list, |
| 295 | max_frame_count, |
| 296 | stack_info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | static jvmtiError GetFrameCount(jvmtiEnv* env, jthread thread, jint* count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 300 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f6f3b5f | 2017-01-13 09:21:42 -0800 | [diff] [blame] | 301 | return StackUtil::GetFrameCount(env, thread, count_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 304 | static jvmtiError PopFrame(jvmtiEnv* env, jthread thread ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 305 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 306 | ENSURE_HAS_CAP(env, can_pop_frame); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 307 | return ERR(NOT_IMPLEMENTED); |
| 308 | } |
| 309 | |
| 310 | static jvmtiError GetFrameLocation(jvmtiEnv* env, |
| 311 | jthread thread, |
| 312 | jint depth, |
| 313 | jmethodID* method_ptr, |
| 314 | jlocation* location_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 315 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f6f3b5f | 2017-01-13 09:21:42 -0800 | [diff] [blame] | 316 | return StackUtil::GetFrameLocation(env, thread, depth, method_ptr, location_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 317 | } |
| 318 | |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 319 | static jvmtiError NotifyFramePop(jvmtiEnv* env, jthread thread, jint depth) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 320 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 321 | ENSURE_HAS_CAP(env, can_generate_frame_pop_events); |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 322 | return StackUtil::NotifyFramePop(env, thread, depth); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 323 | } |
| 324 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 325 | static jvmtiError ForceEarlyReturnObject(jvmtiEnv* env, |
| 326 | jthread thread ATTRIBUTE_UNUSED, |
| 327 | jobject value ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 328 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 329 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 330 | return ERR(NOT_IMPLEMENTED); |
| 331 | } |
| 332 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 333 | static jvmtiError ForceEarlyReturnInt(jvmtiEnv* env, |
| 334 | jthread thread ATTRIBUTE_UNUSED, |
| 335 | jint value ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 336 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 337 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 338 | return ERR(NOT_IMPLEMENTED); |
| 339 | } |
| 340 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 341 | static jvmtiError ForceEarlyReturnLong(jvmtiEnv* env, |
| 342 | jthread thread ATTRIBUTE_UNUSED, |
| 343 | jlong value ATTRIBUTE_UNUSED) { |
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_force_early_return); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 346 | return ERR(NOT_IMPLEMENTED); |
| 347 | } |
| 348 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 349 | static jvmtiError ForceEarlyReturnFloat(jvmtiEnv* env, |
| 350 | jthread thread ATTRIBUTE_UNUSED, |
| 351 | jfloat value ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 352 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 353 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 354 | return ERR(NOT_IMPLEMENTED); |
| 355 | } |
| 356 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 357 | static jvmtiError ForceEarlyReturnDouble(jvmtiEnv* env, |
| 358 | jthread thread ATTRIBUTE_UNUSED, |
| 359 | jdouble value ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 360 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 361 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 362 | return ERR(NOT_IMPLEMENTED); |
| 363 | } |
| 364 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 365 | static jvmtiError ForceEarlyReturnVoid(jvmtiEnv* env, jthread thread ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 366 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 367 | ENSURE_HAS_CAP(env, can_force_early_return); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 368 | return ERR(NOT_IMPLEMENTED); |
| 369 | } |
| 370 | |
| 371 | static jvmtiError FollowReferences(jvmtiEnv* env, |
| 372 | jint heap_filter, |
| 373 | jclass klass, |
| 374 | jobject initial_object, |
| 375 | const jvmtiHeapCallbacks* callbacks, |
| 376 | const void* user_data) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 377 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 378 | ENSURE_HAS_CAP(env, can_tag_objects); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 379 | HeapUtil heap_util(ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Andreas Gampe | 70bfc8a | 2016-11-03 11:04:15 -0700 | [diff] [blame] | 380 | return heap_util.FollowReferences(env, |
| 381 | heap_filter, |
| 382 | klass, |
| 383 | initial_object, |
| 384 | callbacks, |
| 385 | user_data); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | static jvmtiError IterateThroughHeap(jvmtiEnv* env, |
| 389 | jint heap_filter, |
| 390 | jclass klass, |
| 391 | const jvmtiHeapCallbacks* callbacks, |
| 392 | const void* user_data) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 393 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 394 | ENSURE_HAS_CAP(env, can_tag_objects); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 395 | HeapUtil heap_util(ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Andreas Gampe | e54d992 | 2016-10-11 19:55:37 -0700 | [diff] [blame] | 396 | return heap_util.IterateThroughHeap(env, heap_filter, klass, callbacks, user_data); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | static jvmtiError GetTag(jvmtiEnv* env, jobject object, jlong* tag_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 400 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 401 | ENSURE_HAS_CAP(env, can_tag_objects); |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 402 | |
| 403 | JNIEnv* jni_env = GetJniEnv(env); |
| 404 | if (jni_env == nullptr) { |
| 405 | return ERR(INTERNAL); |
| 406 | } |
| 407 | |
| 408 | art::ScopedObjectAccess soa(jni_env); |
| 409 | art::ObjPtr<art::mirror::Object> obj = soa.Decode<art::mirror::Object>(object); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 410 | if (!ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table->GetTag(obj.Ptr(), tag_ptr)) { |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 411 | *tag_ptr = 0; |
| 412 | } |
| 413 | |
| 414 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | static jvmtiError SetTag(jvmtiEnv* env, jobject object, jlong tag) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 418 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 419 | ENSURE_HAS_CAP(env, can_tag_objects); |
| 420 | |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 421 | if (object == nullptr) { |
| 422 | return ERR(NULL_POINTER); |
| 423 | } |
| 424 | |
| 425 | JNIEnv* jni_env = GetJniEnv(env); |
| 426 | if (jni_env == nullptr) { |
| 427 | return ERR(INTERNAL); |
| 428 | } |
| 429 | |
| 430 | art::ScopedObjectAccess soa(jni_env); |
| 431 | art::ObjPtr<art::mirror::Object> obj = soa.Decode<art::mirror::Object>(object); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 432 | ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table->Set(obj.Ptr(), tag); |
Andreas Gampe | 6dee92e | 2016-09-12 19:58:13 -0700 | [diff] [blame] | 433 | |
| 434 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | static jvmtiError GetObjectsWithTags(jvmtiEnv* env, |
| 438 | jint tag_count, |
| 439 | const jlong* tags, |
| 440 | jint* count_ptr, |
| 441 | jobject** object_result_ptr, |
| 442 | jlong** tag_result_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 443 | ENSURE_VALID_ENV(env); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 444 | ENSURE_HAS_CAP(env, can_tag_objects); |
| 445 | |
Andreas Gampe | 5e6046b | 2016-10-25 12:05:53 -0700 | [diff] [blame] | 446 | JNIEnv* jni_env = GetJniEnv(env); |
| 447 | if (jni_env == nullptr) { |
| 448 | return ERR(INTERNAL); |
| 449 | } |
| 450 | |
| 451 | art::ScopedObjectAccess soa(jni_env); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 452 | return ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table->GetTaggedObjects(env, |
| 453 | tag_count, |
| 454 | tags, |
| 455 | count_ptr, |
| 456 | object_result_ptr, |
| 457 | tag_result_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | static jvmtiError ForceGarbageCollection(jvmtiEnv* env) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 461 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8da6d03 | 2016-10-31 19:31:03 -0700 | [diff] [blame] | 462 | return HeapUtil::ForceGarbageCollection(env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | static jvmtiError IterateOverObjectsReachableFromObject( |
| 466 | jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 467 | jobject object ATTRIBUTE_UNUSED, |
| 468 | jvmtiObjectReferenceCallback object_reference_callback ATTRIBUTE_UNUSED, |
| 469 | const void* user_data ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 470 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 471 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 472 | return ERR(NOT_IMPLEMENTED); |
| 473 | } |
| 474 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 475 | static jvmtiError IterateOverReachableObjects( |
| 476 | jvmtiEnv* env, |
| 477 | jvmtiHeapRootCallback heap_root_callback ATTRIBUTE_UNUSED, |
| 478 | jvmtiStackReferenceCallback stack_ref_callback ATTRIBUTE_UNUSED, |
| 479 | jvmtiObjectReferenceCallback object_ref_callback ATTRIBUTE_UNUSED, |
| 480 | const void* user_data ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 481 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 482 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 483 | return ERR(NOT_IMPLEMENTED); |
| 484 | } |
| 485 | |
| 486 | static jvmtiError IterateOverHeap(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 487 | jvmtiHeapObjectFilter object_filter ATTRIBUTE_UNUSED, |
| 488 | jvmtiHeapObjectCallback heap_object_callback ATTRIBUTE_UNUSED, |
| 489 | const void* user_data ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 490 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 491 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 492 | return ERR(NOT_IMPLEMENTED); |
| 493 | } |
| 494 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 495 | static jvmtiError IterateOverInstancesOfClass( |
| 496 | jvmtiEnv* env, |
| 497 | jclass klass ATTRIBUTE_UNUSED, |
| 498 | jvmtiHeapObjectFilter object_filter ATTRIBUTE_UNUSED, |
| 499 | jvmtiHeapObjectCallback heap_object_callback ATTRIBUTE_UNUSED, |
| 500 | const void* user_data ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 501 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 502 | ENSURE_HAS_CAP(env, can_tag_objects); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 503 | return ERR(NOT_IMPLEMENTED); |
| 504 | } |
| 505 | |
| 506 | static jvmtiError GetLocalObject(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 507 | jthread thread, |
| 508 | jint depth, |
| 509 | jint slot, |
| 510 | jobject* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 511 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 512 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 513 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | static jvmtiError GetLocalInstance(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 517 | jthread thread, |
| 518 | jint depth, |
| 519 | jobject* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 520 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 521 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 522 | return MethodUtil::GetLocalInstance(env, thread, depth, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | static jvmtiError GetLocalInt(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 526 | jthread thread, |
| 527 | jint depth, |
| 528 | jint slot, |
| 529 | jint* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 530 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 531 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 532 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | static jvmtiError GetLocalLong(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 536 | jthread thread, |
| 537 | jint depth, |
| 538 | jint slot, |
| 539 | jlong* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 540 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 541 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 542 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | static jvmtiError GetLocalFloat(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 546 | jthread thread, |
| 547 | jint depth, |
| 548 | jint slot, |
| 549 | jfloat* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 550 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 551 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 552 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | static jvmtiError GetLocalDouble(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 556 | jthread thread, |
| 557 | jint depth, |
| 558 | jint slot, |
| 559 | jdouble* value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 560 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 561 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 562 | return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | static jvmtiError SetLocalObject(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 566 | jthread thread, |
| 567 | jint depth, |
| 568 | jint slot, |
| 569 | jobject value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 570 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 571 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 572 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | static jvmtiError SetLocalInt(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 576 | jthread thread, |
| 577 | jint depth, |
| 578 | jint slot, |
| 579 | jint value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 580 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 581 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 582 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | static jvmtiError SetLocalLong(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 586 | jthread thread, |
| 587 | jint depth, |
| 588 | jint slot, |
| 589 | jlong value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 590 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 591 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 592 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | static jvmtiError SetLocalFloat(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 596 | jthread thread, |
| 597 | jint depth, |
| 598 | jint slot, |
| 599 | jfloat value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 600 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 601 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 602 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | static jvmtiError SetLocalDouble(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 606 | jthread thread, |
| 607 | jint depth, |
| 608 | jint slot, |
| 609 | jdouble value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 610 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 611 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 612 | return MethodUtil::SetLocalVariable(env, thread, depth, slot, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 613 | } |
| 614 | |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 615 | |
| 616 | static jvmtiError SetBreakpoint(jvmtiEnv* env, jmethodID method, jlocation location) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 617 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 618 | ENSURE_HAS_CAP(env, can_generate_breakpoint_events); |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 619 | return BreakpointUtil::SetBreakpoint(env, method, location); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 620 | } |
| 621 | |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 622 | static jvmtiError ClearBreakpoint(jvmtiEnv* env, jmethodID method, jlocation location) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 623 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 624 | ENSURE_HAS_CAP(env, can_generate_breakpoint_events); |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 625 | return BreakpointUtil::ClearBreakpoint(env, method, location); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 626 | } |
| 627 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 628 | static jvmtiError SetFieldAccessWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 629 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 630 | ENSURE_HAS_CAP(env, can_generate_field_access_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 631 | return FieldUtil::SetFieldAccessWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 632 | } |
| 633 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 634 | static jvmtiError ClearFieldAccessWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 635 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 636 | ENSURE_HAS_CAP(env, can_generate_field_access_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 637 | return FieldUtil::ClearFieldAccessWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 638 | } |
| 639 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 640 | static jvmtiError SetFieldModificationWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 641 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 642 | ENSURE_HAS_CAP(env, can_generate_field_modification_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 643 | return FieldUtil::SetFieldModificationWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 646 | static jvmtiError ClearFieldModificationWatch(jvmtiEnv* env, jclass klass, jfieldID field) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 647 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 648 | ENSURE_HAS_CAP(env, can_generate_field_modification_events); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 649 | return FieldUtil::ClearFieldModificationWatch(env, klass, field); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | static jvmtiError GetLoadedClasses(jvmtiEnv* env, jint* class_count_ptr, jclass** classes_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 653 | ENSURE_VALID_ENV(env); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 654 | HeapUtil heap_util(ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Andreas Gampe | aa8b60c | 2016-10-12 12:51:25 -0700 | [diff] [blame] | 655 | return heap_util.GetLoadedClasses(env, class_count_ptr, classes_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | static jvmtiError GetClassLoaderClasses(jvmtiEnv* env, |
| 659 | jobject initiating_loader, |
| 660 | jint* class_count_ptr, |
| 661 | jclass** classes_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 662 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 70f1639 | 2017-01-16 14:20:10 -0800 | [diff] [blame] | 663 | return ClassUtil::GetClassLoaderClasses(env, initiating_loader, class_count_ptr, classes_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | static jvmtiError GetClassSignature(jvmtiEnv* env, |
| 667 | jclass klass, |
| 668 | char** signature_ptr, |
| 669 | char** generic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 670 | ENSURE_VALID_ENV(env); |
Andreas Gampe | e492ae3 | 2016-10-28 19:34:57 -0700 | [diff] [blame] | 671 | return ClassUtil::GetClassSignature(env, klass, signature_ptr, generic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | static jvmtiError GetClassStatus(jvmtiEnv* env, jclass klass, jint* status_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 675 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ff9d209 | 2017-01-06 09:12:49 -0800 | [diff] [blame] | 676 | return ClassUtil::GetClassStatus(env, klass, status_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 677 | } |
| 678 | |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 679 | static jvmtiError GetSourceFileName(jvmtiEnv* env, jclass klass, char** source_name_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 680 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 681 | ENSURE_HAS_CAP(env, can_get_source_file_name); |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 682 | return ClassUtil::GetSourceFileName(env, klass, source_name_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | static jvmtiError GetClassModifiers(jvmtiEnv* env, jclass klass, jint* modifiers_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 686 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 64013e5 | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 687 | return ClassUtil::GetClassModifiers(env, klass, modifiers_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 688 | } |
| 689 | |
| 690 | static jvmtiError GetClassMethods(jvmtiEnv* env, |
| 691 | jclass klass, |
| 692 | jint* method_count_ptr, |
| 693 | jmethodID** methods_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 694 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 18fee4d | 2017-01-06 11:36:35 -0800 | [diff] [blame] | 695 | return ClassUtil::GetClassMethods(env, klass, method_count_ptr, methods_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | static jvmtiError GetClassFields(jvmtiEnv* env, |
| 699 | jclass klass, |
| 700 | jint* field_count_ptr, |
| 701 | jfieldID** fields_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 702 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ac58727 | 2017-01-05 15:21:34 -0800 | [diff] [blame] | 703 | return ClassUtil::GetClassFields(env, klass, field_count_ptr, fields_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | static jvmtiError GetImplementedInterfaces(jvmtiEnv* env, |
| 707 | jclass klass, |
| 708 | jint* interface_count_ptr, |
| 709 | jclass** interfaces_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 710 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8b07e47 | 2017-01-06 14:20:39 -0800 | [diff] [blame] | 711 | return ClassUtil::GetImplementedInterfaces(env, klass, interface_count_ptr, interfaces_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | static jvmtiError GetClassVersionNumbers(jvmtiEnv* env, |
| 715 | jclass klass, |
| 716 | jint* minor_version_ptr, |
| 717 | jint* major_version_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 718 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 812a244 | 2017-01-19 22:04:46 -0800 | [diff] [blame] | 719 | return ClassUtil::GetClassVersionNumbers(env, klass, minor_version_ptr, major_version_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | static jvmtiError GetConstantPool(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 723 | jclass klass ATTRIBUTE_UNUSED, |
| 724 | jint* constant_pool_count_ptr ATTRIBUTE_UNUSED, |
| 725 | jint* constant_pool_byte_count_ptr ATTRIBUTE_UNUSED, |
| 726 | unsigned char** constant_pool_bytes_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 727 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 728 | ENSURE_HAS_CAP(env, can_get_constant_pool); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 729 | return ERR(NOT_IMPLEMENTED); |
| 730 | } |
| 731 | |
| 732 | static jvmtiError IsInterface(jvmtiEnv* env, jclass klass, jboolean* is_interface_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 733 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 4fd66ec | 2017-01-05 14:42:13 -0800 | [diff] [blame] | 734 | return ClassUtil::IsInterface(env, klass, is_interface_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | static jvmtiError IsArrayClass(jvmtiEnv* env, |
| 738 | jclass klass, |
| 739 | jboolean* is_array_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 740 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 4fd66ec | 2017-01-05 14:42:13 -0800 | [diff] [blame] | 741 | return ClassUtil::IsArrayClass(env, klass, is_array_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | static jvmtiError IsModifiableClass(jvmtiEnv* env, |
| 745 | jclass klass, |
| 746 | jboolean* is_modifiable_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 747 | ENSURE_VALID_ENV(env); |
Alex Light | e4a8863 | 2017-01-10 07:41:24 -0800 | [diff] [blame] | 748 | return Redefiner::IsModifiableClass(env, klass, is_modifiable_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | static jvmtiError GetClassLoader(jvmtiEnv* env, jclass klass, jobject* classloader_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 752 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 8f5b603 | 2017-01-06 15:50:55 -0800 | [diff] [blame] | 753 | return ClassUtil::GetClassLoader(env, klass, classloader_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | static jvmtiError GetSourceDebugExtension(jvmtiEnv* env, |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 757 | jclass klass, |
| 758 | char** source_debug_extension_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 759 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 760 | ENSURE_HAS_CAP(env, can_get_source_debug_extension); |
Alex Light | 6fa7b81 | 2017-06-16 09:04:29 -0700 | [diff] [blame] | 761 | return ClassUtil::GetSourceDebugExtension(env, klass, source_debug_extension_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | static jvmtiError RetransformClasses(jvmtiEnv* env, jint class_count, const jclass* classes) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 765 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 766 | ENSURE_HAS_CAP(env, can_retransform_classes); |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 767 | std::string error_msg; |
| 768 | jvmtiError res = Transformer::RetransformClasses(ArtJvmTiEnv::AsArtJvmTiEnv(env), |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 769 | &gEventHandler, |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 770 | art::Runtime::Current(), |
| 771 | art::Thread::Current(), |
| 772 | class_count, |
| 773 | classes, |
| 774 | &error_msg); |
| 775 | if (res != OK) { |
| 776 | LOG(WARNING) << "FAILURE TO RETRANFORM " << error_msg; |
| 777 | } |
| 778 | return res; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | static jvmtiError RedefineClasses(jvmtiEnv* env, |
| 782 | jint class_count, |
| 783 | const jvmtiClassDefinition* class_definitions) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 784 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 785 | ENSURE_HAS_CAP(env, can_redefine_classes); |
Alex Light | 0e69273 | 2017-01-10 15:00:05 -0800 | [diff] [blame] | 786 | std::string error_msg; |
| 787 | jvmtiError res = Redefiner::RedefineClasses(ArtJvmTiEnv::AsArtJvmTiEnv(env), |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 788 | &gEventHandler, |
Alex Light | 0e69273 | 2017-01-10 15:00:05 -0800 | [diff] [blame] | 789 | art::Runtime::Current(), |
| 790 | art::Thread::Current(), |
| 791 | class_count, |
| 792 | class_definitions, |
| 793 | &error_msg); |
| 794 | if (res != OK) { |
| 795 | LOG(WARNING) << "FAILURE TO REDEFINE " << error_msg; |
| 796 | } |
| 797 | return res; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | static jvmtiError GetObjectSize(jvmtiEnv* env, jobject object, jlong* size_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 801 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 50a4e49 | 2017-01-06 18:00:20 -0800 | [diff] [blame] | 802 | return ObjectUtil::GetObjectSize(env, object, size_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | static jvmtiError GetObjectHashCode(jvmtiEnv* env, jobject object, jint* hash_code_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 806 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 50a4e49 | 2017-01-06 18:00:20 -0800 | [diff] [blame] | 807 | return ObjectUtil::GetObjectHashCode(env, object, hash_code_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | static jvmtiError GetObjectMonitorUsage(jvmtiEnv* env, |
Alex Light | ce56864 | 2017-09-05 16:54:25 -0700 | [diff] [blame] | 811 | jobject object, |
| 812 | jvmtiMonitorUsage* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 813 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 814 | ENSURE_HAS_CAP(env, can_get_monitor_info); |
Alex Light | ce56864 | 2017-09-05 16:54:25 -0700 | [diff] [blame] | 815 | return ObjectUtil::GetObjectMonitorUsage(env, object, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | static jvmtiError GetFieldName(jvmtiEnv* env, |
| 819 | jclass klass, |
| 820 | jfieldID field, |
| 821 | char** name_ptr, |
| 822 | char** signature_ptr, |
| 823 | char** generic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 824 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 825 | return FieldUtil::GetFieldName(env, klass, field, name_ptr, signature_ptr, generic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | static jvmtiError GetFieldDeclaringClass(jvmtiEnv* env, |
| 829 | jclass klass, |
| 830 | jfieldID field, |
| 831 | jclass* declaring_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 832 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 833 | return FieldUtil::GetFieldDeclaringClass(env, klass, field, declaring_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static jvmtiError GetFieldModifiers(jvmtiEnv* env, |
| 837 | jclass klass, |
| 838 | jfieldID field, |
| 839 | jint* modifiers_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 840 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 841 | return FieldUtil::GetFieldModifiers(env, klass, field, modifiers_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | static jvmtiError IsFieldSynthetic(jvmtiEnv* env, |
| 845 | jclass klass, |
| 846 | jfieldID field, |
| 847 | jboolean* is_synthetic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 848 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 849 | ENSURE_HAS_CAP(env, can_get_synthetic_attribute); |
Andreas Gampe | ab2f0d0 | 2017-01-05 17:23:45 -0800 | [diff] [blame] | 850 | return FieldUtil::IsFieldSynthetic(env, klass, field, is_synthetic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | static jvmtiError GetMethodName(jvmtiEnv* env, |
| 854 | jmethodID method, |
| 855 | char** name_ptr, |
| 856 | char** signature_ptr, |
| 857 | char** generic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 858 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 859 | return MethodUtil::GetMethodName(env, method, name_ptr, signature_ptr, generic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 860 | } |
| 861 | |
| 862 | static jvmtiError GetMethodDeclaringClass(jvmtiEnv* env, |
| 863 | jmethodID method, |
| 864 | jclass* declaring_class_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 865 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 368a208 | 2016-10-28 17:33:13 -0700 | [diff] [blame] | 866 | return MethodUtil::GetMethodDeclaringClass(env, method, declaring_class_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | static jvmtiError GetMethodModifiers(jvmtiEnv* env, |
| 870 | jmethodID method, |
| 871 | jint* modifiers_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 872 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 36bcd4f | 2016-10-28 18:07:18 -0700 | [diff] [blame] | 873 | return MethodUtil::GetMethodModifiers(env, method, modifiers_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | static jvmtiError GetMaxLocals(jvmtiEnv* env, |
| 877 | jmethodID method, |
| 878 | jint* max_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 879 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 880 | return MethodUtil::GetMaxLocals(env, method, max_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 881 | } |
| 882 | |
| 883 | static jvmtiError GetArgumentsSize(jvmtiEnv* env, |
| 884 | jmethodID method, |
| 885 | jint* size_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 886 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 887 | return MethodUtil::GetArgumentsSize(env, method, size_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 888 | } |
| 889 | |
| 890 | static jvmtiError GetLineNumberTable(jvmtiEnv* env, |
| 891 | jmethodID method, |
| 892 | jint* entry_count_ptr, |
| 893 | jvmtiLineNumberEntry** table_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 894 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 895 | ENSURE_HAS_CAP(env, can_get_line_numbers); |
Andreas Gampe | da3e561 | 2016-12-13 19:00:53 -0800 | [diff] [blame] | 896 | return MethodUtil::GetLineNumberTable(env, method, entry_count_ptr, table_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 897 | } |
| 898 | |
| 899 | static jvmtiError GetMethodLocation(jvmtiEnv* env, |
| 900 | jmethodID method, |
| 901 | jlocation* start_location_ptr, |
| 902 | jlocation* end_location_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 903 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 904 | return MethodUtil::GetMethodLocation(env, method, start_location_ptr, end_location_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | static jvmtiError GetLocalVariableTable(jvmtiEnv* env, |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 908 | jmethodID method, |
| 909 | jint* entry_count_ptr, |
| 910 | jvmtiLocalVariableEntry** table_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 911 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 912 | ENSURE_HAS_CAP(env, can_access_local_variables); |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 913 | return MethodUtil::GetLocalVariableTable(env, method, entry_count_ptr, table_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | static jvmtiError GetBytecodes(jvmtiEnv* env, |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 917 | jmethodID method, |
| 918 | jint* bytecode_count_ptr, |
| 919 | unsigned char** bytecodes_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 920 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 921 | ENSURE_HAS_CAP(env, can_get_bytecodes); |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 922 | return MethodUtil::GetBytecodes(env, method, bytecode_count_ptr, bytecodes_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | static jvmtiError IsMethodNative(jvmtiEnv* env, jmethodID method, jboolean* is_native_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 926 | ENSURE_VALID_ENV(env); |
Andreas Gampe | fdeef52 | 2017-01-09 14:40:25 -0800 | [diff] [blame] | 927 | return MethodUtil::IsMethodNative(env, method, is_native_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | static jvmtiError IsMethodSynthetic(jvmtiEnv* env, jmethodID method, jboolean* is_synthetic_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 931 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 932 | ENSURE_HAS_CAP(env, can_get_synthetic_attribute); |
Andreas Gampe | fdeef52 | 2017-01-09 14:40:25 -0800 | [diff] [blame] | 933 | return MethodUtil::IsMethodSynthetic(env, method, is_synthetic_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | static jvmtiError IsMethodObsolete(jvmtiEnv* env, jmethodID method, jboolean* is_obsolete_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 937 | ENSURE_VALID_ENV(env); |
Andreas Gampe | fdeef52 | 2017-01-09 14:40:25 -0800 | [diff] [blame] | 938 | return MethodUtil::IsMethodObsolete(env, method, is_obsolete_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 939 | } |
| 940 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 941 | static jvmtiError SetNativeMethodPrefix(jvmtiEnv* env, const char* prefix ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 942 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 943 | ENSURE_HAS_CAP(env, can_set_native_method_prefix); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 944 | return ERR(NOT_IMPLEMENTED); |
| 945 | } |
| 946 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 947 | static jvmtiError SetNativeMethodPrefixes(jvmtiEnv* env, |
| 948 | jint prefix_count ATTRIBUTE_UNUSED, |
| 949 | char** prefixes ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 950 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 951 | ENSURE_HAS_CAP(env, can_set_native_method_prefix); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 952 | return ERR(NOT_IMPLEMENTED); |
| 953 | } |
| 954 | |
| 955 | static jvmtiError CreateRawMonitor(jvmtiEnv* env, const char* name, jrawMonitorID* monitor_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 956 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 957 | return MonitorUtil::CreateRawMonitor(env, name, monitor_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | static jvmtiError DestroyRawMonitor(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 961 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 962 | return MonitorUtil::DestroyRawMonitor(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 963 | } |
| 964 | |
| 965 | static jvmtiError RawMonitorEnter(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 966 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 967 | return MonitorUtil::RawMonitorEnter(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | static jvmtiError RawMonitorExit(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 971 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 972 | return MonitorUtil::RawMonitorExit(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 973 | } |
| 974 | |
| 975 | static jvmtiError RawMonitorWait(jvmtiEnv* env, jrawMonitorID monitor, jlong millis) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 976 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 977 | return MonitorUtil::RawMonitorWait(env, monitor, millis); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | static jvmtiError RawMonitorNotify(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 981 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 982 | return MonitorUtil::RawMonitorNotify(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 983 | } |
| 984 | |
| 985 | static jvmtiError RawMonitorNotifyAll(jvmtiEnv* env, jrawMonitorID monitor) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 986 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 319dbe8 | 2017-01-09 16:42:21 -0800 | [diff] [blame] | 987 | return MonitorUtil::RawMonitorNotifyAll(env, monitor); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 988 | } |
| 989 | |
| 990 | static jvmtiError SetJNIFunctionTable(jvmtiEnv* env, const jniNativeInterface* function_table) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 991 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 6f8e4f0 | 2017-01-16 18:18:14 -0800 | [diff] [blame] | 992 | return JNIUtil::SetJNIFunctionTable(env, function_table); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | static jvmtiError GetJNIFunctionTable(jvmtiEnv* env, jniNativeInterface** function_table) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 996 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 6f8e4f0 | 2017-01-16 18:18:14 -0800 | [diff] [blame] | 997 | return JNIUtil::GetJNIFunctionTable(env, function_table); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1000 | // TODO: This will require locking, so that an agent can't remove callbacks when we're dispatching |
| 1001 | // an event. |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1002 | static jvmtiError SetEventCallbacks(jvmtiEnv* env, |
| 1003 | const jvmtiEventCallbacks* callbacks, |
| 1004 | jint size_of_callbacks) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1005 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1006 | if (size_of_callbacks < 0) { |
| 1007 | return ERR(ILLEGAL_ARGUMENT); |
| 1008 | } |
| 1009 | |
| 1010 | if (callbacks == nullptr) { |
| 1011 | ArtJvmTiEnv::AsArtJvmTiEnv(env)->event_callbacks.reset(); |
| 1012 | return ERR(NONE); |
| 1013 | } |
| 1014 | |
| 1015 | std::unique_ptr<jvmtiEventCallbacks> tmp(new jvmtiEventCallbacks()); |
| 1016 | memset(tmp.get(), 0, sizeof(jvmtiEventCallbacks)); |
| 1017 | size_t copy_size = std::min(sizeof(jvmtiEventCallbacks), |
| 1018 | static_cast<size_t>(size_of_callbacks)); |
| 1019 | copy_size = art::RoundDown(copy_size, sizeof(void*)); |
| 1020 | memcpy(tmp.get(), callbacks, copy_size); |
| 1021 | |
| 1022 | ArtJvmTiEnv::AsArtJvmTiEnv(env)->event_callbacks = std::move(tmp); |
| 1023 | |
| 1024 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | static jvmtiError SetEventNotificationMode(jvmtiEnv* env, |
| 1028 | jvmtiEventMode mode, |
| 1029 | jvmtiEvent event_type, |
| 1030 | jthread event_thread, |
| 1031 | ...) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1032 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1033 | art::Thread* art_thread = nullptr; |
| 1034 | if (event_thread != nullptr) { |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 1035 | // TODO The locking around this call is less then what we really want. |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1036 | art::ScopedObjectAccess soa(art::Thread::Current()); |
| 1037 | art::MutexLock mu(soa.Self(), *art::Locks::thread_list_lock_); |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 1038 | jvmtiError err = ERR(INTERNAL); |
| 1039 | if (!ThreadUtil::GetAliveNativeThread(event_thread, soa, &art_thread, &err)) { |
| 1040 | return err; |
| 1041 | } else if (art_thread->IsStillStarting()) { |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1042 | return ERR(THREAD_NOT_ALIVE); |
| 1043 | } |
| 1044 | } |
| 1045 | |
Alex Light | 40d87f4 | 2017-01-18 10:27:06 -0800 | [diff] [blame] | 1046 | ArtJvmTiEnv* art_env = ArtJvmTiEnv::AsArtJvmTiEnv(env); |
| 1047 | return gEventHandler.SetEvent(art_env, art_thread, GetArtJvmtiEvent(art_env, event_type), mode); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1048 | } |
| 1049 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1050 | static jvmtiError GenerateEvents(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1051 | jvmtiEvent event_type ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1052 | ENSURE_VALID_ENV(env); |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1053 | return OK; |
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 GetExtensionFunctions(jvmtiEnv* env, |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1057 | jint* extension_count_ptr, |
| 1058 | jvmtiExtensionFunctionInfo** extensions) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1059 | ENSURE_VALID_ENV(env); |
Andreas Gampe | d73aba4 | 2017-05-03 21:40:26 -0700 | [diff] [blame] | 1060 | ENSURE_NON_NULL(extension_count_ptr); |
| 1061 | ENSURE_NON_NULL(extensions); |
| 1062 | |
| 1063 | std::vector<jvmtiExtensionFunctionInfo> ext_vector; |
| 1064 | |
| 1065 | // Holders for allocated values. |
| 1066 | std::vector<JvmtiUniquePtr<char[]>> char_buffers; |
| 1067 | std::vector<JvmtiUniquePtr<jvmtiParamInfo[]>> param_buffers; |
| 1068 | std::vector<JvmtiUniquePtr<jvmtiError[]>> error_buffers; |
| 1069 | |
| 1070 | // Add a helper struct that takes an arbitrary const char*. add_extension will use Allocate |
| 1071 | // appropriately. |
| 1072 | struct CParamInfo { |
| 1073 | const char* name; |
| 1074 | jvmtiParamKind kind; |
| 1075 | jvmtiParamTypes base_type; |
| 1076 | jboolean null_ok; |
| 1077 | }; |
| 1078 | |
| 1079 | auto add_extension = [&](jvmtiExtensionFunction func, |
| 1080 | const char* id, |
| 1081 | const char* short_description, |
| 1082 | jint param_count, |
| 1083 | const std::vector<CParamInfo>& params, |
| 1084 | jint error_count, |
| 1085 | const std::vector<jvmtiError>& errors) { |
| 1086 | jvmtiExtensionFunctionInfo func_info; |
| 1087 | jvmtiError error; |
| 1088 | |
| 1089 | func_info.func = func; |
| 1090 | |
| 1091 | JvmtiUniquePtr<char[]> id_ptr = CopyString(env, id, &error); |
| 1092 | if (id_ptr == nullptr) { |
| 1093 | return error; |
| 1094 | } |
| 1095 | func_info.id = id_ptr.get(); |
| 1096 | char_buffers.push_back(std::move(id_ptr)); |
| 1097 | |
| 1098 | JvmtiUniquePtr<char[]> descr = CopyString(env, short_description, &error); |
| 1099 | if (descr == nullptr) { |
| 1100 | return error; |
| 1101 | } |
| 1102 | func_info.short_description = descr.get(); |
| 1103 | char_buffers.push_back(std::move(descr)); |
| 1104 | |
| 1105 | func_info.param_count = param_count; |
| 1106 | if (param_count > 0) { |
| 1107 | JvmtiUniquePtr<jvmtiParamInfo[]> params_ptr = |
| 1108 | AllocJvmtiUniquePtr<jvmtiParamInfo[]>(env, param_count, &error); |
| 1109 | if (params_ptr == nullptr) { |
| 1110 | return error; |
| 1111 | } |
| 1112 | func_info.params = params_ptr.get(); |
| 1113 | param_buffers.push_back(std::move(params_ptr)); |
| 1114 | |
| 1115 | for (jint i = 0; i != param_count; ++i) { |
| 1116 | JvmtiUniquePtr<char[]> param_name = CopyString(env, params[i].name, &error); |
| 1117 | if (param_name == nullptr) { |
| 1118 | return error; |
| 1119 | } |
| 1120 | func_info.params[i].name = param_name.get(); |
| 1121 | char_buffers.push_back(std::move(param_name)); |
| 1122 | |
| 1123 | func_info.params[i].kind = params[i].kind; |
| 1124 | func_info.params[i].base_type = params[i].base_type; |
| 1125 | func_info.params[i].null_ok = params[i].null_ok; |
| 1126 | } |
| 1127 | } else { |
| 1128 | func_info.params = nullptr; |
| 1129 | } |
| 1130 | |
| 1131 | func_info.error_count = error_count; |
| 1132 | if (error_count > 0) { |
| 1133 | JvmtiUniquePtr<jvmtiError[]> errors_ptr = |
| 1134 | AllocJvmtiUniquePtr<jvmtiError[]>(env, error_count, &error); |
| 1135 | if (errors_ptr == nullptr) { |
| 1136 | return error; |
| 1137 | } |
| 1138 | func_info.errors = errors_ptr.get(); |
| 1139 | error_buffers.push_back(std::move(errors_ptr)); |
| 1140 | |
| 1141 | for (jint i = 0; i != error_count; ++i) { |
| 1142 | func_info.errors[i] = errors[i]; |
| 1143 | } |
| 1144 | } else { |
| 1145 | func_info.errors = nullptr; |
| 1146 | } |
| 1147 | |
| 1148 | ext_vector.push_back(func_info); |
| 1149 | |
| 1150 | return ERR(NONE); |
| 1151 | }; |
| 1152 | |
| 1153 | jvmtiError error; |
| 1154 | |
| 1155 | // Heap extensions. |
| 1156 | error = add_extension( |
| 1157 | reinterpret_cast<jvmtiExtensionFunction>(HeapExtensions::GetObjectHeapId), |
| 1158 | "com.android.art.heap.get_object_heap_id", |
| 1159 | "Retrieve the heap id of the the object tagged with the given argument. An " |
| 1160 | "arbitrary object is chosen if multiple objects exist with the same tag.", |
| 1161 | 2, |
| 1162 | { // NOLINT [whitespace/braces] [4] |
| 1163 | { "tag", JVMTI_KIND_IN, JVMTI_TYPE_JLONG, false}, |
| 1164 | { "heap_id", JVMTI_KIND_OUT, JVMTI_TYPE_JINT, false} |
| 1165 | }, |
| 1166 | 1, |
| 1167 | { JVMTI_ERROR_NOT_FOUND }); |
| 1168 | if (error != ERR(NONE)) { |
| 1169 | return error; |
| 1170 | } |
| 1171 | |
| 1172 | error = add_extension( |
| 1173 | reinterpret_cast<jvmtiExtensionFunction>(HeapExtensions::GetHeapName), |
| 1174 | "com.android.art.heap.get_heap_name", |
| 1175 | "Retrieve the name of the heap with the given id.", |
| 1176 | 2, |
| 1177 | { // NOLINT [whitespace/braces] [4] |
| 1178 | { "heap_id", JVMTI_KIND_IN, JVMTI_TYPE_JINT, false}, |
| 1179 | { "heap_name", JVMTI_KIND_ALLOC_BUF, JVMTI_TYPE_CCHAR, false} |
| 1180 | }, |
| 1181 | 1, |
| 1182 | { JVMTI_ERROR_ILLEGAL_ARGUMENT }); |
| 1183 | if (error != ERR(NONE)) { |
| 1184 | return error; |
| 1185 | } |
| 1186 | |
Andreas Gampe | 2eb25e4 | 2017-05-09 17:14:58 -0700 | [diff] [blame] | 1187 | error = add_extension( |
| 1188 | reinterpret_cast<jvmtiExtensionFunction>(HeapExtensions::IterateThroughHeapExt), |
| 1189 | "com.android.art.heap.iterate_through_heap_ext", |
| 1190 | "Iterate through a heap. This is equivalent to the standard IterateThroughHeap function," |
| 1191 | " except for additionally passing the heap id of the current object. The jvmtiHeapCallbacks" |
| 1192 | " structure is reused, with the callbacks field overloaded to a signature of " |
| 1193 | "jint (*)(jlong, jlong, jlong*, jint length, void*, jint).", |
| 1194 | 4, |
| 1195 | { // NOLINT [whitespace/braces] [4] |
| 1196 | { "heap_filter", JVMTI_KIND_IN, JVMTI_TYPE_JINT, false}, |
| 1197 | { "klass", JVMTI_KIND_IN, JVMTI_TYPE_JCLASS, true}, |
| 1198 | { "callbacks", JVMTI_KIND_IN_PTR, JVMTI_TYPE_CVOID, false}, |
| 1199 | { "user_data", JVMTI_KIND_IN_PTR, JVMTI_TYPE_CVOID, true} |
| 1200 | }, |
| 1201 | 3, |
| 1202 | { // NOLINT [whitespace/braces] [4] |
| 1203 | JVMTI_ERROR_MUST_POSSESS_CAPABILITY, |
| 1204 | JVMTI_ERROR_INVALID_CLASS, |
| 1205 | JVMTI_ERROR_NULL_POINTER |
| 1206 | }); |
| 1207 | if (error != ERR(NONE)) { |
| 1208 | return error; |
| 1209 | } |
| 1210 | |
Alex Light | 8ddfd9f | 2017-07-05 16:33:46 -0700 | [diff] [blame] | 1211 | error = add_extension( |
| 1212 | reinterpret_cast<jvmtiExtensionFunction>(AllocUtil::GetGlobalJvmtiAllocationState), |
| 1213 | "com.android.art.alloc.get_global_jvmti_allocation_state", |
| 1214 | "Returns the total amount of memory currently allocated by all jvmtiEnvs through the" |
| 1215 | " 'Allocate' jvmti function. This does not include any memory that has been deallocated" |
| 1216 | " through the 'Deallocate' function. This number is approximate and might not correspond" |
| 1217 | " exactly to the sum of the sizes of all not freed allocations.", |
| 1218 | 1, |
| 1219 | { // NOLINT [whitespace/braces] [4] |
| 1220 | { "currently_allocated", JVMTI_KIND_OUT, JVMTI_TYPE_JLONG, false}, |
| 1221 | }, |
| 1222 | 1, |
| 1223 | { ERR(NULL_POINTER) }); |
| 1224 | if (error != ERR(NONE)) { |
| 1225 | return error; |
| 1226 | } |
| 1227 | |
Andreas Gampe | d73aba4 | 2017-05-03 21:40:26 -0700 | [diff] [blame] | 1228 | // Copy into output buffer. |
| 1229 | |
| 1230 | *extension_count_ptr = ext_vector.size(); |
| 1231 | JvmtiUniquePtr<jvmtiExtensionFunctionInfo[]> out_data = |
| 1232 | AllocJvmtiUniquePtr<jvmtiExtensionFunctionInfo[]>(env, ext_vector.size(), &error); |
| 1233 | if (out_data == nullptr) { |
| 1234 | return error; |
| 1235 | } |
| 1236 | memcpy(out_data.get(), |
| 1237 | ext_vector.data(), |
| 1238 | ext_vector.size() * sizeof(jvmtiExtensionFunctionInfo)); |
| 1239 | *extensions = out_data.release(); |
| 1240 | |
| 1241 | // Release all the buffer holders, we're OK now. |
| 1242 | for (auto& holder : char_buffers) { |
| 1243 | holder.release(); |
| 1244 | } |
| 1245 | for (auto& holder : param_buffers) { |
| 1246 | holder.release(); |
| 1247 | } |
| 1248 | for (auto& holder : error_buffers) { |
| 1249 | holder.release(); |
| 1250 | } |
Andreas Gampe | e4c3384 | 2017-01-09 10:50:17 -0800 | [diff] [blame] | 1251 | |
| 1252 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1253 | } |
| 1254 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1255 | static jvmtiError GetExtensionEvents(jvmtiEnv* env, |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1256 | jint* extension_count_ptr, |
| 1257 | jvmtiExtensionEventInfo** extensions) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1258 | ENSURE_VALID_ENV(env); |
Andreas Gampe | e4c3384 | 2017-01-09 10:50:17 -0800 | [diff] [blame] | 1259 | // We do not have any extension events. |
| 1260 | *extension_count_ptr = 0; |
| 1261 | *extensions = nullptr; |
| 1262 | |
| 1263 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1264 | } |
| 1265 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1266 | static jvmtiError SetExtensionEventCallback(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1267 | jint extension_event_index ATTRIBUTE_UNUSED, |
| 1268 | jvmtiExtensionEvent callback ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1269 | ENSURE_VALID_ENV(env); |
Andreas Gampe | e4c3384 | 2017-01-09 10:50:17 -0800 | [diff] [blame] | 1270 | // We do not have any extension events, so any call is illegal. |
| 1271 | return ERR(ILLEGAL_ARGUMENT); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | static jvmtiError GetPotentialCapabilities(jvmtiEnv* env, jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1275 | ENSURE_VALID_ENV(env); |
| 1276 | ENSURE_NON_NULL(capabilities_ptr); |
| 1277 | *capabilities_ptr = kPotentialCapabilities; |
| 1278 | return OK; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1279 | } |
| 1280 | |
| 1281 | static jvmtiError AddCapabilities(jvmtiEnv* env, const jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1282 | ENSURE_VALID_ENV(env); |
| 1283 | ENSURE_NON_NULL(capabilities_ptr); |
| 1284 | ArtJvmTiEnv* art_env = static_cast<ArtJvmTiEnv*>(env); |
| 1285 | jvmtiError ret = OK; |
Alex Light | 34d8e08 | 2017-03-27 09:50:36 -0700 | [diff] [blame] | 1286 | jvmtiCapabilities changed = {}; |
| 1287 | jvmtiCapabilities potential_capabilities = {}; |
Alex Light | 1d22496 | 2017-02-27 10:26:35 -0800 | [diff] [blame] | 1288 | ret = env->GetPotentialCapabilities(&potential_capabilities); |
| 1289 | if (ret != OK) { |
| 1290 | return ret; |
| 1291 | } |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1292 | #define ADD_CAPABILITY(e) \ |
| 1293 | do { \ |
| 1294 | if (capabilities_ptr->e == 1) { \ |
Alex Light | 1d22496 | 2017-02-27 10:26:35 -0800 | [diff] [blame] | 1295 | if (potential_capabilities.e == 1) { \ |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 1296 | if (art_env->capabilities.e != 1) { \ |
| 1297 | art_env->capabilities.e = 1; \ |
| 1298 | changed.e = 1; \ |
| 1299 | }\ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1300 | } else { \ |
| 1301 | ret = ERR(NOT_AVAILABLE); \ |
| 1302 | } \ |
| 1303 | } \ |
| 1304 | } while (false) |
| 1305 | |
| 1306 | ADD_CAPABILITY(can_tag_objects); |
| 1307 | ADD_CAPABILITY(can_generate_field_modification_events); |
| 1308 | ADD_CAPABILITY(can_generate_field_access_events); |
| 1309 | ADD_CAPABILITY(can_get_bytecodes); |
| 1310 | ADD_CAPABILITY(can_get_synthetic_attribute); |
| 1311 | ADD_CAPABILITY(can_get_owned_monitor_info); |
| 1312 | ADD_CAPABILITY(can_get_current_contended_monitor); |
| 1313 | ADD_CAPABILITY(can_get_monitor_info); |
| 1314 | ADD_CAPABILITY(can_pop_frame); |
| 1315 | ADD_CAPABILITY(can_redefine_classes); |
| 1316 | ADD_CAPABILITY(can_signal_thread); |
| 1317 | ADD_CAPABILITY(can_get_source_file_name); |
| 1318 | ADD_CAPABILITY(can_get_line_numbers); |
| 1319 | ADD_CAPABILITY(can_get_source_debug_extension); |
| 1320 | ADD_CAPABILITY(can_access_local_variables); |
| 1321 | ADD_CAPABILITY(can_maintain_original_method_order); |
| 1322 | ADD_CAPABILITY(can_generate_single_step_events); |
| 1323 | ADD_CAPABILITY(can_generate_exception_events); |
| 1324 | ADD_CAPABILITY(can_generate_frame_pop_events); |
| 1325 | ADD_CAPABILITY(can_generate_breakpoint_events); |
| 1326 | ADD_CAPABILITY(can_suspend); |
| 1327 | ADD_CAPABILITY(can_redefine_any_class); |
| 1328 | ADD_CAPABILITY(can_get_current_thread_cpu_time); |
| 1329 | ADD_CAPABILITY(can_get_thread_cpu_time); |
| 1330 | ADD_CAPABILITY(can_generate_method_entry_events); |
| 1331 | ADD_CAPABILITY(can_generate_method_exit_events); |
| 1332 | ADD_CAPABILITY(can_generate_all_class_hook_events); |
| 1333 | ADD_CAPABILITY(can_generate_compiled_method_load_events); |
| 1334 | ADD_CAPABILITY(can_generate_monitor_events); |
| 1335 | ADD_CAPABILITY(can_generate_vm_object_alloc_events); |
| 1336 | ADD_CAPABILITY(can_generate_native_method_bind_events); |
| 1337 | ADD_CAPABILITY(can_generate_garbage_collection_events); |
| 1338 | ADD_CAPABILITY(can_generate_object_free_events); |
| 1339 | ADD_CAPABILITY(can_force_early_return); |
| 1340 | ADD_CAPABILITY(can_get_owned_monitor_stack_depth_info); |
| 1341 | ADD_CAPABILITY(can_get_constant_pool); |
| 1342 | ADD_CAPABILITY(can_set_native_method_prefix); |
| 1343 | ADD_CAPABILITY(can_retransform_classes); |
| 1344 | ADD_CAPABILITY(can_retransform_any_class); |
| 1345 | ADD_CAPABILITY(can_generate_resource_exhaustion_heap_events); |
| 1346 | ADD_CAPABILITY(can_generate_resource_exhaustion_threads_events); |
| 1347 | #undef ADD_CAPABILITY |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 1348 | gEventHandler.HandleChangedCapabilities(ArtJvmTiEnv::AsArtJvmTiEnv(env), |
| 1349 | changed, |
| 1350 | /*added*/true); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1351 | return ret; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1352 | } |
| 1353 | |
| 1354 | static jvmtiError RelinquishCapabilities(jvmtiEnv* env, |
| 1355 | const jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1356 | ENSURE_VALID_ENV(env); |
| 1357 | ENSURE_NON_NULL(capabilities_ptr); |
| 1358 | ArtJvmTiEnv* art_env = reinterpret_cast<ArtJvmTiEnv*>(env); |
Alex Light | 34d8e08 | 2017-03-27 09:50:36 -0700 | [diff] [blame] | 1359 | jvmtiCapabilities changed = {}; |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1360 | #define DEL_CAPABILITY(e) \ |
| 1361 | do { \ |
| 1362 | if (capabilities_ptr->e == 1) { \ |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 1363 | if (art_env->capabilities.e == 1) { \ |
| 1364 | art_env->capabilities.e = 0;\ |
| 1365 | changed.e = 1; \ |
| 1366 | } \ |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1367 | } \ |
| 1368 | } while (false) |
| 1369 | |
| 1370 | DEL_CAPABILITY(can_tag_objects); |
| 1371 | DEL_CAPABILITY(can_generate_field_modification_events); |
| 1372 | DEL_CAPABILITY(can_generate_field_access_events); |
| 1373 | DEL_CAPABILITY(can_get_bytecodes); |
| 1374 | DEL_CAPABILITY(can_get_synthetic_attribute); |
| 1375 | DEL_CAPABILITY(can_get_owned_monitor_info); |
| 1376 | DEL_CAPABILITY(can_get_current_contended_monitor); |
| 1377 | DEL_CAPABILITY(can_get_monitor_info); |
| 1378 | DEL_CAPABILITY(can_pop_frame); |
| 1379 | DEL_CAPABILITY(can_redefine_classes); |
| 1380 | DEL_CAPABILITY(can_signal_thread); |
| 1381 | DEL_CAPABILITY(can_get_source_file_name); |
| 1382 | DEL_CAPABILITY(can_get_line_numbers); |
| 1383 | DEL_CAPABILITY(can_get_source_debug_extension); |
| 1384 | DEL_CAPABILITY(can_access_local_variables); |
| 1385 | DEL_CAPABILITY(can_maintain_original_method_order); |
| 1386 | DEL_CAPABILITY(can_generate_single_step_events); |
| 1387 | DEL_CAPABILITY(can_generate_exception_events); |
| 1388 | DEL_CAPABILITY(can_generate_frame_pop_events); |
| 1389 | DEL_CAPABILITY(can_generate_breakpoint_events); |
| 1390 | DEL_CAPABILITY(can_suspend); |
| 1391 | DEL_CAPABILITY(can_redefine_any_class); |
| 1392 | DEL_CAPABILITY(can_get_current_thread_cpu_time); |
| 1393 | DEL_CAPABILITY(can_get_thread_cpu_time); |
| 1394 | DEL_CAPABILITY(can_generate_method_entry_events); |
| 1395 | DEL_CAPABILITY(can_generate_method_exit_events); |
| 1396 | DEL_CAPABILITY(can_generate_all_class_hook_events); |
| 1397 | DEL_CAPABILITY(can_generate_compiled_method_load_events); |
| 1398 | DEL_CAPABILITY(can_generate_monitor_events); |
| 1399 | DEL_CAPABILITY(can_generate_vm_object_alloc_events); |
| 1400 | DEL_CAPABILITY(can_generate_native_method_bind_events); |
| 1401 | DEL_CAPABILITY(can_generate_garbage_collection_events); |
| 1402 | DEL_CAPABILITY(can_generate_object_free_events); |
| 1403 | DEL_CAPABILITY(can_force_early_return); |
| 1404 | DEL_CAPABILITY(can_get_owned_monitor_stack_depth_info); |
| 1405 | DEL_CAPABILITY(can_get_constant_pool); |
| 1406 | DEL_CAPABILITY(can_set_native_method_prefix); |
| 1407 | DEL_CAPABILITY(can_retransform_classes); |
| 1408 | DEL_CAPABILITY(can_retransform_any_class); |
| 1409 | DEL_CAPABILITY(can_generate_resource_exhaustion_heap_events); |
| 1410 | DEL_CAPABILITY(can_generate_resource_exhaustion_threads_events); |
| 1411 | #undef DEL_CAPABILITY |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 1412 | gEventHandler.HandleChangedCapabilities(ArtJvmTiEnv::AsArtJvmTiEnv(env), |
| 1413 | changed, |
| 1414 | /*added*/false); |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1415 | return OK; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1416 | } |
| 1417 | |
| 1418 | static jvmtiError GetCapabilities(jvmtiEnv* env, jvmtiCapabilities* capabilities_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1419 | ENSURE_VALID_ENV(env); |
| 1420 | ENSURE_NON_NULL(capabilities_ptr); |
| 1421 | ArtJvmTiEnv* artenv = reinterpret_cast<ArtJvmTiEnv*>(env); |
| 1422 | *capabilities_ptr = artenv->capabilities; |
| 1423 | return OK; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1424 | } |
| 1425 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1426 | static jvmtiError GetCurrentThreadCpuTimerInfo(jvmtiEnv* env, |
| 1427 | jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1428 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1429 | ENSURE_HAS_CAP(env, can_get_current_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1430 | return ERR(NOT_IMPLEMENTED); |
| 1431 | } |
| 1432 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1433 | static jvmtiError GetCurrentThreadCpuTime(jvmtiEnv* env, jlong* nanos_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1434 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1435 | ENSURE_HAS_CAP(env, can_get_current_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1436 | return ERR(NOT_IMPLEMENTED); |
| 1437 | } |
| 1438 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1439 | static jvmtiError GetThreadCpuTimerInfo(jvmtiEnv* env, |
| 1440 | jvmtiTimerInfo* info_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1441 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1442 | ENSURE_HAS_CAP(env, can_get_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1443 | return ERR(NOT_IMPLEMENTED); |
| 1444 | } |
| 1445 | |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1446 | static jvmtiError GetThreadCpuTime(jvmtiEnv* env, |
| 1447 | jthread thread ATTRIBUTE_UNUSED, |
| 1448 | jlong* nanos_ptr ATTRIBUTE_UNUSED) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1449 | ENSURE_VALID_ENV(env); |
Alex Light | 9db679d | 2017-01-25 15:28:04 -0800 | [diff] [blame] | 1450 | ENSURE_HAS_CAP(env, can_get_thread_cpu_time); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1451 | return ERR(NOT_IMPLEMENTED); |
| 1452 | } |
| 1453 | |
| 1454 | static jvmtiError GetTimerInfo(jvmtiEnv* env, jvmtiTimerInfo* info_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1455 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 1456 | return TimerUtil::GetTimerInfo(env, info_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1457 | } |
| 1458 | |
| 1459 | static jvmtiError GetTime(jvmtiEnv* env, jlong* nanos_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1460 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 1461 | return TimerUtil::GetTime(env, nanos_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1462 | } |
| 1463 | |
| 1464 | static jvmtiError GetAvailableProcessors(jvmtiEnv* env, jint* processor_count_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1465 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 35bcf81 | 2017-01-13 16:24:17 -0800 | [diff] [blame] | 1466 | return TimerUtil::GetAvailableProcessors(env, processor_count_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | static jvmtiError AddToBootstrapClassLoaderSearch(jvmtiEnv* env, const char* segment) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1470 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ce7732b | 2017-01-17 15:50:26 -0800 | [diff] [blame] | 1471 | return SearchUtil::AddToBootstrapClassLoaderSearch(env, segment); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1472 | } |
| 1473 | |
| 1474 | static jvmtiError AddToSystemClassLoaderSearch(jvmtiEnv* env, const char* segment) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1475 | ENSURE_VALID_ENV(env); |
Andreas Gampe | ce7732b | 2017-01-17 15:50:26 -0800 | [diff] [blame] | 1476 | return SearchUtil::AddToSystemClassLoaderSearch(env, segment); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1477 | } |
| 1478 | |
| 1479 | static jvmtiError GetSystemProperties(jvmtiEnv* env, jint* count_ptr, char*** property_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1480 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 1481 | return PropertiesUtil::GetSystemProperties(env, count_ptr, property_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1482 | } |
| 1483 | |
| 1484 | static jvmtiError GetSystemProperty(jvmtiEnv* env, const char* property, char** value_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1485 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 1486 | return PropertiesUtil::GetSystemProperty(env, property, value_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1487 | } |
| 1488 | |
| 1489 | static jvmtiError SetSystemProperty(jvmtiEnv* env, const char* property, const char* value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1490 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 1bdaf73 | 2017-01-09 19:21:06 -0800 | [diff] [blame] | 1491 | return PropertiesUtil::SetSystemProperty(env, property, value); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1492 | } |
| 1493 | |
| 1494 | static jvmtiError GetPhase(jvmtiEnv* env, jvmtiPhase* phase_ptr) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1495 | ENSURE_VALID_ENV(env); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1496 | return PhaseUtil::GetPhase(env, phase_ptr); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | static jvmtiError DisposeEnvironment(jvmtiEnv* env) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1500 | ENSURE_VALID_ENV(env); |
Alex Light | 092a404 | 2017-07-12 08:46:44 -0700 | [diff] [blame] | 1501 | ArtJvmTiEnv* tienv = ArtJvmTiEnv::AsArtJvmTiEnv(env); |
| 1502 | gEventHandler.RemoveArtJvmTiEnv(tienv); |
| 1503 | art::Runtime::Current()->RemoveSystemWeakHolder(tienv->object_tag_table.get()); |
| 1504 | ThreadUtil::RemoveEnvironment(tienv); |
| 1505 | delete tienv; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1506 | return OK; |
| 1507 | } |
| 1508 | |
| 1509 | static jvmtiError SetEnvironmentLocalStorage(jvmtiEnv* env, const void* data) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1510 | ENSURE_VALID_ENV(env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1511 | reinterpret_cast<ArtJvmTiEnv*>(env)->local_data = const_cast<void*>(data); |
| 1512 | return OK; |
| 1513 | } |
| 1514 | |
| 1515 | static jvmtiError GetEnvironmentLocalStorage(jvmtiEnv* env, void** data_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1516 | ENSURE_VALID_ENV(env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1517 | *data_ptr = reinterpret_cast<ArtJvmTiEnv*>(env)->local_data; |
| 1518 | return OK; |
| 1519 | } |
| 1520 | |
| 1521 | static jvmtiError GetVersionNumber(jvmtiEnv* env, jint* version_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1522 | ENSURE_VALID_ENV(env); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1523 | *version_ptr = JVMTI_VERSION; |
| 1524 | return OK; |
| 1525 | } |
| 1526 | |
| 1527 | static jvmtiError GetErrorName(jvmtiEnv* env, jvmtiError error, char** name_ptr) { |
Alex Light | e657424 | 2016-08-17 09:56:24 -0700 | [diff] [blame] | 1528 | ENSURE_NON_NULL(name_ptr); |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1529 | auto copy_fn = [&](const char* name_cstr) { |
| 1530 | jvmtiError res; |
| 1531 | JvmtiUniquePtr<char[]> copy = CopyString(env, name_cstr, &res); |
| 1532 | if (copy == nullptr) { |
| 1533 | *name_ptr = nullptr; |
| 1534 | return res; |
| 1535 | } else { |
| 1536 | *name_ptr = copy.release(); |
| 1537 | return OK; |
| 1538 | } |
| 1539 | }; |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1540 | switch (error) { |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1541 | #define ERROR_CASE(e) case (JVMTI_ERROR_ ## e) : \ |
| 1542 | return copy_fn("JVMTI_ERROR_"#e); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1543 | ERROR_CASE(NONE); |
| 1544 | ERROR_CASE(INVALID_THREAD); |
| 1545 | ERROR_CASE(INVALID_THREAD_GROUP); |
| 1546 | ERROR_CASE(INVALID_PRIORITY); |
| 1547 | ERROR_CASE(THREAD_NOT_SUSPENDED); |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1548 | ERROR_CASE(THREAD_SUSPENDED); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1549 | ERROR_CASE(THREAD_NOT_ALIVE); |
| 1550 | ERROR_CASE(INVALID_OBJECT); |
| 1551 | ERROR_CASE(INVALID_CLASS); |
| 1552 | ERROR_CASE(CLASS_NOT_PREPARED); |
| 1553 | ERROR_CASE(INVALID_METHODID); |
| 1554 | ERROR_CASE(INVALID_LOCATION); |
| 1555 | ERROR_CASE(INVALID_FIELDID); |
| 1556 | ERROR_CASE(NO_MORE_FRAMES); |
| 1557 | ERROR_CASE(OPAQUE_FRAME); |
| 1558 | ERROR_CASE(TYPE_MISMATCH); |
| 1559 | ERROR_CASE(INVALID_SLOT); |
| 1560 | ERROR_CASE(DUPLICATE); |
| 1561 | ERROR_CASE(NOT_FOUND); |
| 1562 | ERROR_CASE(INVALID_MONITOR); |
| 1563 | ERROR_CASE(NOT_MONITOR_OWNER); |
| 1564 | ERROR_CASE(INTERRUPT); |
| 1565 | ERROR_CASE(INVALID_CLASS_FORMAT); |
| 1566 | ERROR_CASE(CIRCULAR_CLASS_DEFINITION); |
| 1567 | ERROR_CASE(FAILS_VERIFICATION); |
| 1568 | ERROR_CASE(UNSUPPORTED_REDEFINITION_METHOD_ADDED); |
| 1569 | ERROR_CASE(UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED); |
| 1570 | ERROR_CASE(INVALID_TYPESTATE); |
| 1571 | ERROR_CASE(UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED); |
| 1572 | ERROR_CASE(UNSUPPORTED_REDEFINITION_METHOD_DELETED); |
| 1573 | ERROR_CASE(UNSUPPORTED_VERSION); |
| 1574 | ERROR_CASE(NAMES_DONT_MATCH); |
| 1575 | ERROR_CASE(UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED); |
| 1576 | ERROR_CASE(UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED); |
| 1577 | ERROR_CASE(UNMODIFIABLE_CLASS); |
| 1578 | ERROR_CASE(NOT_AVAILABLE); |
| 1579 | ERROR_CASE(MUST_POSSESS_CAPABILITY); |
| 1580 | ERROR_CASE(NULL_POINTER); |
| 1581 | ERROR_CASE(ABSENT_INFORMATION); |
| 1582 | ERROR_CASE(INVALID_EVENT_TYPE); |
| 1583 | ERROR_CASE(ILLEGAL_ARGUMENT); |
| 1584 | ERROR_CASE(NATIVE_METHOD); |
| 1585 | ERROR_CASE(CLASS_LOADER_UNSUPPORTED); |
| 1586 | ERROR_CASE(OUT_OF_MEMORY); |
| 1587 | ERROR_CASE(ACCESS_DENIED); |
| 1588 | ERROR_CASE(WRONG_PHASE); |
| 1589 | ERROR_CASE(INTERNAL); |
| 1590 | ERROR_CASE(UNATTACHED_THREAD); |
| 1591 | ERROR_CASE(INVALID_ENVIRONMENT); |
| 1592 | #undef ERROR_CASE |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1593 | } |
Andreas Gampe | 95c466d | 2017-05-08 14:50:47 -0700 | [diff] [blame] | 1594 | |
| 1595 | return ERR(ILLEGAL_ARGUMENT); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1596 | } |
| 1597 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1598 | static jvmtiError SetVerboseFlag(jvmtiEnv* env, |
Alex Light | 6a3fd51 | 2017-02-27 14:34:32 -0800 | [diff] [blame] | 1599 | jvmtiVerboseFlag flag, |
| 1600 | jboolean value) { |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1601 | ENSURE_VALID_ENV(env); |
Andreas Gampe | f37e302 | 2017-01-13 17:54:46 -0800 | [diff] [blame] | 1602 | if (flag == jvmtiVerboseFlag::JVMTI_VERBOSE_OTHER) { |
| 1603 | // OTHER is special, as it's 0, so can't do a bit check. |
| 1604 | bool val = (value == JNI_TRUE) ? true : false; |
| 1605 | |
| 1606 | art::gLogVerbosity.collector = val; |
| 1607 | art::gLogVerbosity.compiler = val; |
| 1608 | art::gLogVerbosity.deopt = val; |
| 1609 | art::gLogVerbosity.heap = val; |
| 1610 | art::gLogVerbosity.jdwp = val; |
| 1611 | art::gLogVerbosity.jit = val; |
| 1612 | art::gLogVerbosity.monitor = val; |
| 1613 | art::gLogVerbosity.oat = val; |
| 1614 | art::gLogVerbosity.profiler = val; |
| 1615 | art::gLogVerbosity.signals = val; |
| 1616 | art::gLogVerbosity.simulator = val; |
| 1617 | art::gLogVerbosity.startup = val; |
| 1618 | art::gLogVerbosity.third_party_jni = val; |
| 1619 | art::gLogVerbosity.threads = val; |
| 1620 | art::gLogVerbosity.verifier = val; |
| 1621 | art::gLogVerbosity.image = val; |
| 1622 | |
| 1623 | // Note: can't switch systrace_lock_logging. That requires changing entrypoints. |
| 1624 | |
| 1625 | art::gLogVerbosity.agents = val; |
| 1626 | } else { |
| 1627 | // Spec isn't clear whether "flag" is a mask or supposed to be single. We implement the mask |
| 1628 | // semantics. |
| 1629 | constexpr std::underlying_type<jvmtiVerboseFlag>::type kMask = |
| 1630 | jvmtiVerboseFlag::JVMTI_VERBOSE_GC | |
| 1631 | jvmtiVerboseFlag::JVMTI_VERBOSE_CLASS | |
| 1632 | jvmtiVerboseFlag::JVMTI_VERBOSE_JNI; |
| 1633 | if ((flag & ~kMask) != 0) { |
| 1634 | return ERR(ILLEGAL_ARGUMENT); |
| 1635 | } |
| 1636 | |
| 1637 | bool val = (value == JNI_TRUE) ? true : false; |
| 1638 | |
| 1639 | if ((flag & jvmtiVerboseFlag::JVMTI_VERBOSE_GC) != 0) { |
| 1640 | art::gLogVerbosity.gc = val; |
| 1641 | } |
| 1642 | |
| 1643 | if ((flag & jvmtiVerboseFlag::JVMTI_VERBOSE_CLASS) != 0) { |
| 1644 | art::gLogVerbosity.class_linker = val; |
| 1645 | } |
| 1646 | |
| 1647 | if ((flag & jvmtiVerboseFlag::JVMTI_VERBOSE_JNI) != 0) { |
| 1648 | art::gLogVerbosity.jni = val; |
| 1649 | } |
| 1650 | } |
| 1651 | |
| 1652 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1653 | } |
| 1654 | |
Alex Light | 1edc8cf | 2017-03-24 14:22:56 -0700 | [diff] [blame] | 1655 | static jvmtiError GetJLocationFormat(jvmtiEnv* env, jvmtiJlocationFormat* format_ptr) { |
| 1656 | ENSURE_VALID_ENV(env); |
Andreas Gampe | acfc957 | 2017-01-17 18:36:56 -0800 | [diff] [blame] | 1657 | // Report BCI as jlocation format. We report dex bytecode indices. |
| 1658 | if (format_ptr == nullptr) { |
| 1659 | return ERR(NULL_POINTER); |
| 1660 | } |
| 1661 | *format_ptr = jvmtiJlocationFormat::JVMTI_JLOCATION_JVMBCI; |
| 1662 | return ERR(NONE); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1663 | } |
| 1664 | }; |
| 1665 | |
| 1666 | static bool IsJvmtiVersion(jint version) { |
| 1667 | return version == JVMTI_VERSION_1 || |
| 1668 | version == JVMTI_VERSION_1_0 || |
| 1669 | version == JVMTI_VERSION_1_1 || |
| 1670 | version == JVMTI_VERSION_1_2 || |
| 1671 | version == JVMTI_VERSION; |
| 1672 | } |
| 1673 | |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1674 | extern const jvmtiInterface_1 gJvmtiInterface; |
Alex Light | 092a404 | 2017-07-12 08:46:44 -0700 | [diff] [blame] | 1675 | |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1676 | ArtJvmTiEnv::ArtJvmTiEnv(art::JavaVMExt* runtime, EventHandler* event_handler) |
| 1677 | : art_vm(runtime), |
| 1678 | local_data(nullptr), |
Andreas Gampe | a1705ea | 2017-03-28 20:12:13 -0700 | [diff] [blame] | 1679 | capabilities() { |
| 1680 | object_tag_table = std::unique_ptr<ObjectTagTable>(new ObjectTagTable(event_handler, this)); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1681 | functions = &gJvmtiInterface; |
| 1682 | } |
| 1683 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1684 | // Creates a jvmtiEnv and returns it with the art::ti::Env that is associated with it. new_art_ti |
| 1685 | // is a pointer to the uninitialized memory for an art::ti::Env. |
| 1686 | static void CreateArtJvmTiEnv(art::JavaVMExt* vm, /*out*/void** new_jvmtiEnv) { |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1687 | struct ArtJvmTiEnv* env = new ArtJvmTiEnv(vm, &gEventHandler); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1688 | *new_jvmtiEnv = env; |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1689 | |
| 1690 | gEventHandler.RegisterArtJvmTiEnv(env); |
Andreas Gampe | de19eb9 | 2017-02-24 16:21:18 -0800 | [diff] [blame] | 1691 | |
| 1692 | art::Runtime::Current()->AddSystemWeakHolder( |
| 1693 | ArtJvmTiEnv::AsArtJvmTiEnv(env)->object_tag_table.get()); |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1694 | } |
| 1695 | |
| 1696 | // A hook that the runtime uses to allow plugins to handle GetEnv calls. It returns true and |
| 1697 | // places the return value in 'env' if this library can handle the GetEnv request. Otherwise |
| 1698 | // returns false and does not modify the 'env' pointer. |
| 1699 | static jint GetEnvHandler(art::JavaVMExt* vm, /*out*/void** env, jint version) { |
| 1700 | if (IsJvmtiVersion(version)) { |
| 1701 | CreateArtJvmTiEnv(vm, env); |
| 1702 | return JNI_OK; |
| 1703 | } else { |
| 1704 | printf("version 0x%x is not valid!", version); |
| 1705 | return JNI_EVERSION; |
| 1706 | } |
| 1707 | } |
| 1708 | |
| 1709 | // The plugin initialization function. This adds the jvmti environment. |
| 1710 | extern "C" bool ArtPlugin_Initialize() { |
Andreas Gampe | e08a2be | 2016-10-06 13:13:30 -0700 | [diff] [blame] | 1711 | art::Runtime* runtime = art::Runtime::Current(); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1712 | |
| 1713 | if (runtime->IsStarted()) { |
| 1714 | PhaseUtil::SetToLive(); |
| 1715 | } else { |
| 1716 | PhaseUtil::SetToOnLoad(); |
| 1717 | } |
Andreas Gampe | 3a7eb14 | 2017-01-19 21:59:22 -0800 | [diff] [blame] | 1718 | PhaseUtil::Register(&gEventHandler); |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1719 | ThreadUtil::Register(&gEventHandler); |
Andreas Gampe | e637746 | 2017-01-20 17:37:50 -0800 | [diff] [blame] | 1720 | ClassUtil::Register(&gEventHandler); |
Andreas Gampe | eb0cea1 | 2017-01-23 08:50:04 -0800 | [diff] [blame] | 1721 | DumpUtil::Register(&gEventHandler); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 1722 | MethodUtil::Register(&gEventHandler); |
Andreas Gampe | cefaa14 | 2017-01-23 15:04:59 -0800 | [diff] [blame] | 1723 | SearchUtil::Register(); |
Andreas Gampe | 9e38a50 | 2017-03-06 08:19:26 -0800 | [diff] [blame] | 1724 | HeapUtil::Register(); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1725 | |
Andreas Gampe | e08a2be | 2016-10-06 13:13:30 -0700 | [diff] [blame] | 1726 | runtime->GetJavaVM()->AddEnvironmentHook(GetEnvHandler); |
Andreas Gampe | 96eca78 | 2017-01-19 19:45:30 -0800 | [diff] [blame] | 1727 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1728 | return true; |
| 1729 | } |
| 1730 | |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1731 | extern "C" bool ArtPlugin_Deinitialize() { |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 1732 | gEventHandler.Shutdown(); |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1733 | PhaseUtil::Unregister(); |
| 1734 | ThreadUtil::Unregister(); |
Andreas Gampe | e637746 | 2017-01-20 17:37:50 -0800 | [diff] [blame] | 1735 | ClassUtil::Unregister(); |
Andreas Gampe | eb0cea1 | 2017-01-23 08:50:04 -0800 | [diff] [blame] | 1736 | DumpUtil::Unregister(); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 1737 | MethodUtil::Unregister(); |
Andreas Gampe | cefaa14 | 2017-01-23 15:04:59 -0800 | [diff] [blame] | 1738 | SearchUtil::Unregister(); |
Andreas Gampe | 9e38a50 | 2017-03-06 08:19:26 -0800 | [diff] [blame] | 1739 | HeapUtil::Unregister(); |
Andreas Gampe | eafaf57 | 2017-01-20 12:34:15 -0800 | [diff] [blame] | 1740 | |
| 1741 | return true; |
| 1742 | } |
| 1743 | |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1744 | // The actual struct holding all of the entrypoints into the jvmti interface. |
| 1745 | const jvmtiInterface_1 gJvmtiInterface = { |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 1746 | nullptr, // reserved1 |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1747 | JvmtiFunctions::SetEventNotificationMode, |
Alex Light | 0e69273 | 2017-01-10 15:00:05 -0800 | [diff] [blame] | 1748 | nullptr, // reserved3 |
Alex Light | 49948e9 | 2016-08-11 15:35:28 -0700 | [diff] [blame] | 1749 | JvmtiFunctions::GetAllThreads, |
| 1750 | JvmtiFunctions::SuspendThread, |
| 1751 | JvmtiFunctions::ResumeThread, |
| 1752 | JvmtiFunctions::StopThread, |
| 1753 | JvmtiFunctions::InterruptThread, |
| 1754 | JvmtiFunctions::GetThreadInfo, |
| 1755 | JvmtiFunctions::GetOwnedMonitorInfo, // 10 |
| 1756 | JvmtiFunctions::GetCurrentContendedMonitor, |
| 1757 | JvmtiFunctions::RunAgentThread, |
| 1758 | JvmtiFunctions::GetTopThreadGroups, |
| 1759 | JvmtiFunctions::GetThreadGroupInfo, |
| 1760 | JvmtiFunctions::GetThreadGroupChildren, |
| 1761 | JvmtiFunctions::GetFrameCount, |
| 1762 | JvmtiFunctions::GetThreadState, |
| 1763 | JvmtiFunctions::GetCurrentThread, |
| 1764 | JvmtiFunctions::GetFrameLocation, |
| 1765 | JvmtiFunctions::NotifyFramePop, // 20 |
| 1766 | JvmtiFunctions::GetLocalObject, |
| 1767 | JvmtiFunctions::GetLocalInt, |
| 1768 | JvmtiFunctions::GetLocalLong, |
| 1769 | JvmtiFunctions::GetLocalFloat, |
| 1770 | JvmtiFunctions::GetLocalDouble, |
| 1771 | JvmtiFunctions::SetLocalObject, |
| 1772 | JvmtiFunctions::SetLocalInt, |
| 1773 | JvmtiFunctions::SetLocalLong, |
| 1774 | JvmtiFunctions::SetLocalFloat, |
| 1775 | JvmtiFunctions::SetLocalDouble, // 30 |
| 1776 | JvmtiFunctions::CreateRawMonitor, |
| 1777 | JvmtiFunctions::DestroyRawMonitor, |
| 1778 | JvmtiFunctions::RawMonitorEnter, |
| 1779 | JvmtiFunctions::RawMonitorExit, |
| 1780 | JvmtiFunctions::RawMonitorWait, |
| 1781 | JvmtiFunctions::RawMonitorNotify, |
| 1782 | JvmtiFunctions::RawMonitorNotifyAll, |
| 1783 | JvmtiFunctions::SetBreakpoint, |
| 1784 | JvmtiFunctions::ClearBreakpoint, |
| 1785 | nullptr, // reserved40 |
| 1786 | JvmtiFunctions::SetFieldAccessWatch, |
| 1787 | JvmtiFunctions::ClearFieldAccessWatch, |
| 1788 | JvmtiFunctions::SetFieldModificationWatch, |
| 1789 | JvmtiFunctions::ClearFieldModificationWatch, |
| 1790 | JvmtiFunctions::IsModifiableClass, |
| 1791 | JvmtiFunctions::Allocate, |
| 1792 | JvmtiFunctions::Deallocate, |
| 1793 | JvmtiFunctions::GetClassSignature, |
| 1794 | JvmtiFunctions::GetClassStatus, |
| 1795 | JvmtiFunctions::GetSourceFileName, // 50 |
| 1796 | JvmtiFunctions::GetClassModifiers, |
| 1797 | JvmtiFunctions::GetClassMethods, |
| 1798 | JvmtiFunctions::GetClassFields, |
| 1799 | JvmtiFunctions::GetImplementedInterfaces, |
| 1800 | JvmtiFunctions::IsInterface, |
| 1801 | JvmtiFunctions::IsArrayClass, |
| 1802 | JvmtiFunctions::GetClassLoader, |
| 1803 | JvmtiFunctions::GetObjectHashCode, |
| 1804 | JvmtiFunctions::GetObjectMonitorUsage, |
| 1805 | JvmtiFunctions::GetFieldName, // 60 |
| 1806 | JvmtiFunctions::GetFieldDeclaringClass, |
| 1807 | JvmtiFunctions::GetFieldModifiers, |
| 1808 | JvmtiFunctions::IsFieldSynthetic, |
| 1809 | JvmtiFunctions::GetMethodName, |
| 1810 | JvmtiFunctions::GetMethodDeclaringClass, |
| 1811 | JvmtiFunctions::GetMethodModifiers, |
| 1812 | nullptr, // reserved67 |
| 1813 | JvmtiFunctions::GetMaxLocals, |
| 1814 | JvmtiFunctions::GetArgumentsSize, |
| 1815 | JvmtiFunctions::GetLineNumberTable, // 70 |
| 1816 | JvmtiFunctions::GetMethodLocation, |
| 1817 | JvmtiFunctions::GetLocalVariableTable, |
| 1818 | JvmtiFunctions::SetNativeMethodPrefix, |
| 1819 | JvmtiFunctions::SetNativeMethodPrefixes, |
| 1820 | JvmtiFunctions::GetBytecodes, |
| 1821 | JvmtiFunctions::IsMethodNative, |
| 1822 | JvmtiFunctions::IsMethodSynthetic, |
| 1823 | JvmtiFunctions::GetLoadedClasses, |
| 1824 | JvmtiFunctions::GetClassLoaderClasses, |
| 1825 | JvmtiFunctions::PopFrame, // 80 |
| 1826 | JvmtiFunctions::ForceEarlyReturnObject, |
| 1827 | JvmtiFunctions::ForceEarlyReturnInt, |
| 1828 | JvmtiFunctions::ForceEarlyReturnLong, |
| 1829 | JvmtiFunctions::ForceEarlyReturnFloat, |
| 1830 | JvmtiFunctions::ForceEarlyReturnDouble, |
| 1831 | JvmtiFunctions::ForceEarlyReturnVoid, |
| 1832 | JvmtiFunctions::RedefineClasses, |
| 1833 | JvmtiFunctions::GetVersionNumber, |
| 1834 | JvmtiFunctions::GetCapabilities, |
| 1835 | JvmtiFunctions::GetSourceDebugExtension, // 90 |
| 1836 | JvmtiFunctions::IsMethodObsolete, |
| 1837 | JvmtiFunctions::SuspendThreadList, |
| 1838 | JvmtiFunctions::ResumeThreadList, |
| 1839 | nullptr, // reserved94 |
| 1840 | nullptr, // reserved95 |
| 1841 | nullptr, // reserved96 |
| 1842 | nullptr, // reserved97 |
| 1843 | nullptr, // reserved98 |
| 1844 | nullptr, // reserved99 |
| 1845 | JvmtiFunctions::GetAllStackTraces, // 100 |
| 1846 | JvmtiFunctions::GetThreadListStackTraces, |
| 1847 | JvmtiFunctions::GetThreadLocalStorage, |
| 1848 | JvmtiFunctions::SetThreadLocalStorage, |
| 1849 | JvmtiFunctions::GetStackTrace, |
| 1850 | nullptr, // reserved105 |
| 1851 | JvmtiFunctions::GetTag, |
| 1852 | JvmtiFunctions::SetTag, |
| 1853 | JvmtiFunctions::ForceGarbageCollection, |
| 1854 | JvmtiFunctions::IterateOverObjectsReachableFromObject, |
| 1855 | JvmtiFunctions::IterateOverReachableObjects, // 110 |
| 1856 | JvmtiFunctions::IterateOverHeap, |
| 1857 | JvmtiFunctions::IterateOverInstancesOfClass, |
| 1858 | nullptr, // reserved113 |
| 1859 | JvmtiFunctions::GetObjectsWithTags, |
| 1860 | JvmtiFunctions::FollowReferences, |
| 1861 | JvmtiFunctions::IterateThroughHeap, |
| 1862 | nullptr, // reserved117 |
| 1863 | nullptr, // reserved118 |
| 1864 | nullptr, // reserved119 |
| 1865 | JvmtiFunctions::SetJNIFunctionTable, // 120 |
| 1866 | JvmtiFunctions::GetJNIFunctionTable, |
| 1867 | JvmtiFunctions::SetEventCallbacks, |
| 1868 | JvmtiFunctions::GenerateEvents, |
| 1869 | JvmtiFunctions::GetExtensionFunctions, |
| 1870 | JvmtiFunctions::GetExtensionEvents, |
| 1871 | JvmtiFunctions::SetExtensionEventCallback, |
| 1872 | JvmtiFunctions::DisposeEnvironment, |
| 1873 | JvmtiFunctions::GetErrorName, |
| 1874 | JvmtiFunctions::GetJLocationFormat, |
| 1875 | JvmtiFunctions::GetSystemProperties, // 130 |
| 1876 | JvmtiFunctions::GetSystemProperty, |
| 1877 | JvmtiFunctions::SetSystemProperty, |
| 1878 | JvmtiFunctions::GetPhase, |
| 1879 | JvmtiFunctions::GetCurrentThreadCpuTimerInfo, |
| 1880 | JvmtiFunctions::GetCurrentThreadCpuTime, |
| 1881 | JvmtiFunctions::GetThreadCpuTimerInfo, |
| 1882 | JvmtiFunctions::GetThreadCpuTime, |
| 1883 | JvmtiFunctions::GetTimerInfo, |
| 1884 | JvmtiFunctions::GetTime, |
| 1885 | JvmtiFunctions::GetPotentialCapabilities, // 140 |
| 1886 | nullptr, // reserved141 |
| 1887 | JvmtiFunctions::AddCapabilities, |
| 1888 | JvmtiFunctions::RelinquishCapabilities, |
| 1889 | JvmtiFunctions::GetAvailableProcessors, |
| 1890 | JvmtiFunctions::GetClassVersionNumbers, |
| 1891 | JvmtiFunctions::GetConstantPool, |
| 1892 | JvmtiFunctions::GetEnvironmentLocalStorage, |
| 1893 | JvmtiFunctions::SetEnvironmentLocalStorage, |
| 1894 | JvmtiFunctions::AddToBootstrapClassLoaderSearch, |
| 1895 | JvmtiFunctions::SetVerboseFlag, // 150 |
| 1896 | JvmtiFunctions::AddToSystemClassLoaderSearch, |
| 1897 | JvmtiFunctions::RetransformClasses, |
| 1898 | JvmtiFunctions::GetOwnedMonitorStackDepthInfo, |
| 1899 | JvmtiFunctions::GetObjectSize, |
| 1900 | JvmtiFunctions::GetLocalInstance, |
| 1901 | }; |
| 1902 | |
| 1903 | }; // namespace openjdkjvmti |