CACAO
java_lang_Throwable.cpp
Go to the documentation of this file.
1 /* src/native/vm/cldc1.1/java_lang_Throwable.cpp
2 
3  Copyright (C) 2006-2013
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 <assert.h>
29 #include <stdint.h>
30 
31 #include "native/jni.hpp"
32 #include "native/llni.hpp"
33 #include "native/native.hpp"
34 
35 #if defined(ENABLE_JNI_HEADERS)
36 # include "native/include/java_lang_Throwable.h"
37 #endif
38 
39 #include "vm/exceptions.hpp"
40 #include "vm/javaobjects.hpp"
41 
42 #include "vm/jit/stacktrace.hpp"
43 
44 
45 // Native functions are exported as C functions.
46 extern "C" {
47 
48 /*
49  * Class: java/lang/Throwable
50  * Method: printStackTrace
51  * Signature: ()V
52  */
53 JNIEXPORT void JNICALL Java_java_lang_Throwable_printStackTrace(JNIEnv *env, jobject _this)
54 {
55  java_lang_Throwable jlt(_this);
56 
59 }
60 
61 
62 /*
63  * Class: java/lang/Throwable
64  * Method: fillInStackTrace
65  * Signature: ()V
66  */
67 JNIEXPORT void JNICALL Java_java_lang_Throwable_fillInStackTrace(JNIEnv *env, jobject _this)
68 {
70 
71  if (ba == NULL)
72  return;
73 
74  java_lang_Throwable jlt(_this);
75  jlt.set_backtrace(ba);
76 }
77 
78 } // extern "C"
79 
80 
81 /* native methods implemented by this file ************************************/
82 
83 static JNINativeMethod methods[] = {
84  { (char*) "printStackTrace", (char*) "()V", (void*) (uintptr_t) &Java_java_lang_Throwable_printStackTrace },
85  { (char*) "fillInStackTrace", (char*) "()V", (void*) (uintptr_t) &Java_java_lang_Throwable_fillInStackTrace },
86 };
87 
88 
89 /* _Jv_java_lang_Throwable_init ************************************************
90 
91  Register native functions.
92 
93 *******************************************************************************/
94 
96 {
97  Utf8String u = Utf8String::from_utf8("java/lang/Throwable");
98 
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  */
JNIEXPORT void JNICALL Java_java_lang_Throwable_printStackTrace(JNIEnv *env, jobject _this)
virtual java_handle_t * get_handle() const
Table containing all native methods registered with the VM.
Definition: native.hpp:132
NativeMethods & get_nativemethods()
Definition: vm.hpp:128
void register_methods(Utf8String classname, const JNINativeMethod *methods, size_t count)
Register native methods with the VM.
Definition: native.cpp:242
_Jv_JNIEnv JNIEnv
Definition: jni.hpp:112
#define NATIVE_METHODS_COUNT
Definition: native.hpp:45
JNIEXPORT void JNICALL Java_java_lang_Throwable_fillInStackTrace(JNIEnv *env, jobject _this)
void stacktrace_print_exception(java_handle_t *h)
static JNINativeMethod methods[]
static Utf8String from_utf8(const char *, size_t)
Definition: utf8.cpp:335
GNU Classpath java/lang/Throwable.
void _Jv_java_lang_Throwable_init(void)
void exceptions_print_exception(java_handle_t *xptr)
java_handle_bytearray_t * stacktrace_get_current(void)
Definition: stacktrace.cpp:635
static VM * get_current()
Definition: vm.hpp:99