Merged revisions 7797-7917 via svnmerge from
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Throwable.c
1 /* src/native/vm/cldc1.1/java_lang_Throwable.c - java/lang/Throwable
2
3    Copyright (C) 2006, 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: java_lang_VMThrowable.c 6213 2006-12-18 17:36:06Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33
34 #include "vm/types.h"
35
36 #include "native/jni.h"
37 #include "native/native.h"
38
39 #include "native/include/java_lang_Object.h"
40 #include "native/include/java_lang_Throwable.h"
41
42 #include "vm/exceptions.h"
43 #include "vm/jit/stacktrace.h"
44
45
46 /* native methods implemented by this file ************************************/
47  
48 static JNINativeMethod methods[] = {
49         { "printStackTrace",  "()V", (void *) (ptrint) &Java_java_lang_Throwable_printStackTrace  },
50         { "fillInStackTrace", "()V", (void *) (ptrint) &Java_java_lang_Throwable_fillInStackTrace },
51 };
52
53
54 /* _Jv_java_lang_Throwable_init ************************************************
55  
56    Register native functions.
57  
58 *******************************************************************************/
59  
60 void _Jv_java_lang_Throwable_init(void)
61 {
62         utf *u;
63  
64         u = utf_new_char("java/lang/Throwable");
65  
66         native_method_register(u, methods, NATIVE_METHODS_COUNT);
67 }
68
69
70 /*
71  * Class:     java/lang/Throwable
72  * Method:    printStackTrace
73  * Signature: ()V
74  */
75 JNIEXPORT void JNICALL Java_java_lang_Throwable_printStackTrace(JNIEnv *env, java_lang_Throwable *this)
76 {
77         java_objectheader *o;
78
79         o = (java_objectheader *) this;
80
81         exceptions_print_exception(o);
82         stacktrace_print_trace(o);
83 }
84
85
86 /*
87  * Class:     java/lang/Throwable
88  * Method:    fillInStackTrace
89  * Signature: ()V
90  */
91 JNIEXPORT void JNICALL Java_java_lang_Throwable_fillInStackTrace(JNIEnv *env, java_lang_Throwable *this)
92 {
93         stacktracecontainer *stc;
94
95         stc = stacktrace_fillInStackTrace();
96
97         if (stc == NULL)
98                 return;
99
100         this->backtrace = (java_lang_Object *) stc;
101 }
102
103
104 /*
105  * These are local overrides for various environment variables in Emacs.
106  * Please do not remove this and leave it at the end of the file, where
107  * Emacs will automagically detect them.
108  * ---------------------------------------------------------------------
109  * Local variables:
110  * mode: c
111  * indent-tabs-mode: t
112  * c-basic-offset: 4
113  * tab-width: 4
114  * End:
115  */