blob: 9d2592a675459fe753e0a775edb189a48246e926 [file] [log] [blame]
Andreas Gampe27fa96c2016-10-07 15:05:24 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070017#include <pthread.h>
18
19#include <cstdio>
Andreas Gampe27fa96c2016-10-07 15:05:24 -070020#include <iostream>
Igor Murashkin5573c372017-11-16 13:34:30 -080021#include <mutex>
Andreas Gampe27fa96c2016-10-07 15:05:24 -070022#include <vector>
23
Andreas Gampe027444b2017-03-31 12:49:07 -070024#include "android-base/logging.h"
Andreas Gampe115b4982017-04-12 19:06:12 -070025#include "android-base/stringprintf.h"
Andreas Gampe27fa96c2016-10-07 15:05:24 -070026#include "jni.h"
Andreas Gampe5e03a302017-03-13 13:10:00 -070027#include "jvmti.h"
Andreas Gampe027444b2017-03-31 12:49:07 -070028#include "scoped_local_ref.h"
29#include "scoped_utf_chars.h"
Andreas Gampe27fa96c2016-10-07 15:05:24 -070030
Andreas Gampe3f46c962017-03-30 10:26:59 -070031// Test infrastructure
32#include "jvmti_helper.h"
33#include "test_env.h"
34
Andreas Gampe27fa96c2016-10-07 15:05:24 -070035namespace art {
36namespace Test904ObjectAllocation {
37
Andreas Gampe27fa96c2016-10-07 15:05:24 -070038static std::string GetClassName(JNIEnv* jni_env, jclass cls) {
39 ScopedLocalRef<jclass> class_class(jni_env, jni_env->GetObjectClass(cls));
40 jmethodID mid = jni_env->GetMethodID(class_class.get(), "getName", "()Ljava/lang/String;");
41 ScopedLocalRef<jstring> str(
42 jni_env, reinterpret_cast<jstring>(jni_env->CallObjectMethod(cls, mid)));
43 ScopedUtfChars utf_chars(jni_env, str.get());
44 return utf_chars.c_str();
45}
46
Andreas Gampe115b4982017-04-12 19:06:12 -070047static std::mutex gEventsMutex;
48static std::vector<std::string> gEvents;
49
Andreas Gampe27fa96c2016-10-07 15:05:24 -070050static void JNICALL ObjectAllocated(jvmtiEnv* ti_env ATTRIBUTE_UNUSED,
51 JNIEnv* jni_env,
52 jthread thread ATTRIBUTE_UNUSED,
53 jobject object,
54 jclass object_klass,
55 jlong size) {
56 std::string object_klass_descriptor = GetClassName(jni_env, object_klass);
57 ScopedLocalRef<jclass> object_klass2(jni_env, jni_env->GetObjectClass(object));
58 std::string object_klass_descriptor2 = GetClassName(jni_env, object_klass2.get());
59
Andreas Gampe115b4982017-04-12 19:06:12 -070060 std::lock_guard<std::mutex> guard(gEventsMutex);
61 gEvents.push_back(android::base::StringPrintf("ObjectAllocated type %s/%s size %zu",
62 object_klass_descriptor.c_str(),
63 object_klass_descriptor2.c_str(),
64 static_cast<size_t>(size)));
Andreas Gampe27fa96c2016-10-07 15:05:24 -070065}
66
Andreas Gampe46651672017-04-07 09:00:04 -070067extern "C" JNIEXPORT void JNICALL Java_art_Test904_setupObjectAllocCallback(
Andreas Gampe3f46c962017-03-30 10:26:59 -070068 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jboolean enable) {
Andreas Gampe27fa96c2016-10-07 15:05:24 -070069 jvmtiEventCallbacks callbacks;
70 memset(&callbacks, 0, sizeof(jvmtiEventCallbacks));
Andreas Gampe2427aae2016-10-17 18:05:19 -070071 callbacks.VMObjectAlloc = enable ? ObjectAllocated : nullptr;
Andreas Gampe27fa96c2016-10-07 15:05:24 -070072
73 jvmtiError ret = jvmti_env->SetEventCallbacks(&callbacks, sizeof(callbacks));
Andreas Gampe3f46c962017-03-30 10:26:59 -070074 JvmtiErrorToException(env, jvmti_env, ret);
Andreas Gampe27fa96c2016-10-07 15:05:24 -070075}
76
Andreas Gampe46651672017-04-07 09:00:04 -070077extern "C" JNIEXPORT void JNICALL Java_art_Test904_enableAllocationTracking(
78 JNIEnv* env, jclass, jthread thread, jboolean enable) {
Andreas Gampe27fa96c2016-10-07 15:05:24 -070079 jvmtiError ret = jvmti_env->SetEventNotificationMode(
80 enable ? JVMTI_ENABLE : JVMTI_DISABLE,
81 JVMTI_EVENT_VM_OBJECT_ALLOC,
82 thread);
Andreas Gampe3f46c962017-03-30 10:26:59 -070083 JvmtiErrorToException(env, jvmti_env, ret);
Andreas Gampe27fa96c2016-10-07 15:05:24 -070084}
85
Andreas Gampe115b4982017-04-12 19:06:12 -070086extern "C" JNIEXPORT jobjectArray JNICALL Java_art_Test904_getTrackingEventMessages(
87 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED) {
88 std::lock_guard<std::mutex> guard(gEventsMutex);
89 jobjectArray ret = CreateObjectArray(env,
90 static_cast<jint>(gEvents.size()),
91 "java/lang/String",
92 [&](jint i) {
93 return env->NewStringUTF(gEvents[i].c_str());
94 });
95 gEvents.clear();
96 return ret;
97}
98
Andreas Gampe27fa96c2016-10-07 15:05:24 -070099} // namespace Test904ObjectAllocation
100} // namespace art