/* src/native/vm/gnuclasspath/java_lang_VMThrowable.cpp Copyright (C) 1996-2005, 2006, 2007, 2008 CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO This file is part of CACAO. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include #include #include "vm/types.h" #include "native/jni.h" #include "native/llni.h" #include "native/native.h" #if defined(ENABLE_JNI_HEADERS) # include "native/vm/include/java_lang_VMThrowable.h" #endif #include "vm/array.h" #include "vm/builtin.h" #include "vm/exceptions.hpp" #include "vm/globals.hpp" #include "vm/javaobjects.hpp" #include "vm/loader.h" #include "vm/string.hpp" #include "vm/jit/code.h" #include "vm/jit/linenumbertable.h" #include "vm/jit/stacktrace.hpp" // Native functions are exported as C functions. extern "C" { /* * Class: java/lang/VMThrowable * Method: fillInStackTrace * Signature: (Ljava/lang/Throwable;)Ljava/lang/VMThrowable; */ JNIEXPORT jobject JNICALL Java_java_lang_VMThrowable_fillInStackTrace(JNIEnv *env, jclass clazz, jobject t) { java_handle_t* h; java_handle_bytearray_t* ba; h = native_new_and_init(class_java_lang_VMThrowable); if (h == NULL) return NULL; java_lang_VMThrowable vmt(h); ba = stacktrace_get_current(); if (ba == NULL) return NULL; vmt.set_vmdata(ba); return (jobject) vmt.get_handle(); } /* * Class: java/lang/VMThrowable * Method: getStackTrace * Signature: (Ljava/lang/Throwable;)[Ljava/lang/StackTraceElement; */ JNIEXPORT jobjectArray JNICALL Java_java_lang_VMThrowable_getStackTrace(JNIEnv *env, jobject _this, jobject t) { java_lang_VMThrowable vmt(_this); // Get the stacktrace from the VMThrowable object. java_handle_bytearray_t* ba = vmt.get_vmdata(); // XXX Critical GC section? stacktrace_t* st = (stacktrace_t*) LLNI_array_data(ba); assert(st != NULL); stacktrace_entry_t* ste = st->entries; /* Create the stacktrace element array. */ java_handle_objectarray_t* oa = builtin_anewarray(st->length, class_java_lang_StackTraceElement); if (oa == NULL) return NULL; for (int i = 0; i < st->length; i++, ste++) { /* Get the codeinfo and methodinfo. */ codeinfo* code = ste->code; methodinfo* m = code->m; /* Get filename. */ java_handle_t* filename; if (!(m->flags & ACC_NATIVE)) { if (m->clazz->sourcefile) filename = javastring_new(m->clazz->sourcefile); else filename = NULL; } else filename = NULL; /* get line number */ int32_t linenumber; if (m->flags & ACC_NATIVE) { linenumber = -1; } else { /* FIXME The linenumbertable_linenumber_for_pc could change the methodinfo pointer when hitting an inlined method. */ linenumber = linenumbertable_linenumber_for_pc(&m, code, ste->pc); linenumber = (linenumber == 0) ? -1 : linenumber; } /* get declaring class name */ java_handle_t* declaringclass = class_get_classname(m->clazz); /* allocate a new stacktrace element */ java_handle_t* h = builtin_new(class_java_lang_StackTraceElement); if (h == NULL) return NULL; java_lang_StackTraceElement ste(h, filename, linenumber, declaringclass, javastring_new(m->name), ((m->flags & ACC_NATIVE) ? 1 : 0)); array_objectarray_element_set(oa, i, ste.get_handle()); } return (jobjectArray) oa; } } // extern "C" /* native methods implemented by this file ************************************/ static JNINativeMethod methods[] = { { (char*) "fillInStackTrace", (char*) "(Ljava/lang/Throwable;)Ljava/lang/VMThrowable;", (void*) (uintptr_t) &Java_java_lang_VMThrowable_fillInStackTrace }, { (char*) "getStackTrace", (char*) "(Ljava/lang/Throwable;)[Ljava/lang/StackTraceElement;", (void*) (uintptr_t) &Java_java_lang_VMThrowable_getStackTrace }, }; /* _Jv_java_lang_VMThrowable_init ********************************************** Register native functions. *******************************************************************************/ extern "C" { void _Jv_java_lang_VMThrowable_init(void) { utf *u; u = utf_new_char("java/lang/VMThrowable"); native_method_register(u, methods, NATIVE_METHODS_COUNT); } } /* * These are local overrides for various environment variables in Emacs. * Please do not remove this and leave it at the end of the file, where * Emacs will automagically detect them. * --------------------------------------------------------------------- * Local variables: * mode: c++ * indent-tabs-mode: t * c-basic-offset: 4 * tab-width: 4 * End: */