blob: 933a5d5b10907d22d0f16979b343a5a32f84b82e [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "class_loader.h"
#include "jni_internal.h"
#include "nth_caller_visitor.h"
#include "object.h"
#include "scoped_heap_lock.h"
#include "scoped_jni_thread_state.h"
#include "scoped_thread_list_lock.h"
#include "thread_list.h"
namespace art {
static jobject GetThreadStack(JNIEnv* env, jobject javaThread) {
ScopedJniThreadState ts(env);
ScopedHeapLock heap_lock;
ScopedThreadListLock thread_list_lock;
Thread* thread = Thread::FromManagedThread(ts, javaThread);
return (thread != NULL) ? GetThreadStack(ts, thread) : NULL;
}
static jint VMStack_fillStackTraceElements(JNIEnv* env, jclass, jobject javaThread, jobjectArray javaSteArray) {
jobject trace = GetThreadStack(env, javaThread);
if (trace == NULL) {
return 0;
}
int32_t depth;
Thread::InternalStackTraceToStackTraceElementArray(env, trace, javaSteArray, &depth);
return depth;
}
// Returns the defining class loader of the caller's caller.
static jobject VMStack_getCallingClassLoader(JNIEnv* env, jclass) {
ScopedJniThreadState ts(env);
NthCallerVisitor visitor(ts.Self()->GetManagedStack(), ts.Self()->GetTraceStack(), 2);
visitor.WalkStack();
return ts.AddLocalReference<jobject>(visitor.caller->GetDeclaringClass()->GetClassLoader());
}
static jobject VMStack_getClosestUserClassLoader(JNIEnv* env, jclass, jobject javaBootstrap, jobject javaSystem) {
struct ClosestUserClassLoaderVisitor : public StackVisitor {
ClosestUserClassLoaderVisitor(const ManagedStack* stack,
const std::vector<TraceStackFrame>* trace_stack,
Object* bootstrap, Object* system)
: StackVisitor(stack, trace_stack), bootstrap(bootstrap), system(system),
class_loader(NULL) {}
bool VisitFrame() {
DCHECK(class_loader == NULL);
Class* c = GetMethod()->GetDeclaringClass();
Object* cl = c->GetClassLoader();
if (cl != NULL && cl != bootstrap && cl != system) {
class_loader = cl;
return false;
}
return true;
}
Object* bootstrap;
Object* system;
Object* class_loader;
};
ScopedJniThreadState ts(env);
Object* bootstrap = ts.Decode<Object*>(javaBootstrap);
Object* system = ts.Decode<Object*>(javaSystem);
ClosestUserClassLoaderVisitor visitor(ts.Self()->GetManagedStack(), ts.Self()->GetTraceStack(),
bootstrap, system);
visitor.WalkStack();
return ts.AddLocalReference<jobject>(visitor.class_loader);
}
// Returns the class of the caller's caller's caller.
static jclass VMStack_getStackClass2(JNIEnv* env, jclass) {
ScopedJniThreadState ts(env);
NthCallerVisitor visitor(ts.Self()->GetManagedStack(), ts.Self()->GetTraceStack(), 3);
visitor.WalkStack();
return ts.AddLocalReference<jclass>(visitor.caller->GetDeclaringClass());
}
static jobjectArray VMStack_getThreadStackTrace(JNIEnv* env, jclass, jobject javaThread) {
jobject trace = GetThreadStack(env, javaThread);
if (trace == NULL) {
return NULL;
}
return Thread::InternalStackTraceToStackTraceElementArray(env, trace);
}
static JNINativeMethod gMethods[] = {
NATIVE_METHOD(VMStack, fillStackTraceElements, "(Ljava/lang/Thread;[Ljava/lang/StackTraceElement;)I"),
NATIVE_METHOD(VMStack, getCallingClassLoader, "()Ljava/lang/ClassLoader;"),
NATIVE_METHOD(VMStack, getClosestUserClassLoader, "(Ljava/lang/ClassLoader;Ljava/lang/ClassLoader;)Ljava/lang/ClassLoader;"),
NATIVE_METHOD(VMStack, getStackClass2, "()Ljava/lang/Class;"),
NATIVE_METHOD(VMStack, getThreadStackTrace, "(Ljava/lang/Thread;)[Ljava/lang/StackTraceElement;"),
};
void register_dalvik_system_VMStack(JNIEnv* env) {
REGISTER_NATIVE_METHODS("dalvik/system/VMStack");
}
} // namespace art