fca7f8d1d783d0b9396f820adfe3ddeac5983569
[cacao.git] / src / native / vm / gnuclasspath / java_lang_VMThrowable.cpp
1 /* src/native/vm/gnuclasspath/java_lang_VMThrowable.cpp
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #include "config.h"
27
28 #include <stdint.h>
29 #include <assert.h>
30
31 #include "vm/types.h"
32
33 #include "native/jni.hpp"
34 #include "native/llni.h"
35 #include "native/native.hpp"
36
37 #if defined(ENABLE_JNI_HEADERS)
38 # include "native/vm/include/java_lang_VMThrowable.h"
39 #endif
40
41 #include "vm/array.hpp"
42 #include "vm/jit/builtin.hpp"
43 #include "vm/exceptions.hpp"
44 #include "vm/globals.hpp"
45 #include "vm/javaobjects.hpp"
46 #include "vm/loader.hpp"
47 #include "vm/string.hpp"
48
49 #include "vm/jit/code.hpp"
50 #include "vm/jit/linenumbertable.hpp"
51 #include "vm/jit/stacktrace.hpp"
52
53
54
55 // Native functions are exported as C functions.
56 extern "C" {
57
58 /*
59  * Class:     java/lang/VMThrowable
60  * Method:    fillInStackTrace
61  * Signature: (Ljava/lang/Throwable;)Ljava/lang/VMThrowable;
62  */
63 JNIEXPORT jobject JNICALL Java_java_lang_VMThrowable_fillInStackTrace(JNIEnv *env, jclass clazz, jobject t)
64 {
65         java_handle_t* h;
66         java_handle_bytearray_t* ba;
67
68         h = native_new_and_init(class_java_lang_VMThrowable);
69
70         if (h == NULL)
71                 return NULL;
72
73         java_lang_VMThrowable vmt(h);
74
75         ba = stacktrace_get_current();
76
77         if (ba == NULL)
78                 return NULL;
79
80         vmt.set_vmdata(ba);
81
82         return (jobject) vmt.get_handle();
83 }
84
85
86 /*
87  * Class:     java/lang/VMThrowable
88  * Method:    getStackTrace
89  * Signature: (Ljava/lang/Throwable;)[Ljava/lang/StackTraceElement;
90  */
91 JNIEXPORT jobjectArray JNICALL Java_java_lang_VMThrowable_getStackTrace(JNIEnv *env, jobject _this, jobject t)
92 {
93         java_lang_VMThrowable vmt(_this);
94
95         // Get the stacktrace from the VMThrowable object.
96
97         java_handle_bytearray_t* ba = vmt.get_vmdata();
98
99         // XXX Critical GC section?
100         stacktrace_t* st = (stacktrace_t*) LLNI_array_data(ba);
101
102         assert(st != NULL);
103
104         return stacktrace_get_StackTraceElements(st);
105 }
106
107 } // extern "C"
108
109
110 /* native methods implemented by this file ************************************/
111
112 static JNINativeMethod methods[] = {
113         { (char*) "fillInStackTrace", (char*) "(Ljava/lang/Throwable;)Ljava/lang/VMThrowable;",        (void*) (uintptr_t) &Java_java_lang_VMThrowable_fillInStackTrace },
114         { (char*) "getStackTrace",    (char*) "(Ljava/lang/Throwable;)[Ljava/lang/StackTraceElement;", (void*) (uintptr_t) &Java_java_lang_VMThrowable_getStackTrace    },
115 };
116
117
118 /* _Jv_java_lang_VMThrowable_init **********************************************
119
120    Register native functions.
121
122 *******************************************************************************/
123
124 void _Jv_java_lang_VMThrowable_init(void)
125 {
126         utf* u = utf_new_char("java/lang/VMThrowable");
127
128         NativeMethods& nm = VM::get_current()->get_nativemethods();
129         nm.register_methods(u, methods, NATIVE_METHODS_COUNT);
130 }
131
132
133 /*
134  * These are local overrides for various environment variables in Emacs.
135  * Please do not remove this and leave it at the end of the file, where
136  * Emacs will automagically detect them.
137  * ---------------------------------------------------------------------
138  * Local variables:
139  * mode: c++
140  * indent-tabs-mode: t
141  * c-basic-offset: 4
142  * tab-width: 4
143  * End:
144  */