* src/native/jni.h: Removed.
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Runtime.cpp
1 /* src/native/vm/cldc1.1/java_lang_Runtime.cpp
2
3    Copyright (C) 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
30 #include "mm/gc.hpp"
31
32 #include "native/jni.hpp"
33 #include "native/native.h"
34
35 #if defined(ENABLE_JNI_HEADERS)
36 # include "native/include/java_lang_Runtime.h"
37 #endif
38
39 #include "vm/utf8.h"
40 #include "vm/vm.hpp"
41
42
43 // Native functions are exported as C functions.
44 extern "C" {
45
46 /*
47  * Class:     java/lang/Runtime
48  * Method:    exitInternal
49  * Signature: (I)V
50  */
51 JNIEXPORT void JNICALL Java_java_lang_Runtime_exitInternal(JNIEnv *env, jobject _this, jint status)
52 {
53         vm_shutdown(status);
54 }
55
56
57 /*
58  * Class:     java/lang/Runtime
59  * Method:    freeMemory
60  * Signature: ()J
61  */
62 JNIEXPORT jlong JNICALL Java_java_lang_Runtime_freeMemory(JNIEnv *env, jobject _this)
63 {
64         return gc_get_free_bytes();
65 }
66
67
68 /*
69  * Class:     java/lang/Runtime
70  * Method:    totalMemory
71  * Signature: ()J
72  */
73 JNIEXPORT jlong JNICALL Java_java_lang_Runtime_totalMemory(JNIEnv *env, jobject _this)
74 {
75         return gc_get_heap_size();
76 }
77
78
79 /*
80  * Class:     java/lang/Runtime
81  * Method:    gc
82  * Signature: ()V
83  */
84 JNIEXPORT void JNICALL Java_java_lang_Runtime_gc(JNIEnv *env, jobject _this)
85 {
86         gc_call();
87 }
88
89 } // extern "C"
90
91
92 /* native methods implemented by this file ************************************/
93  
94 static JNINativeMethod methods[] = {
95         { (char*) "exitInternal", (char*) "(I)V", (void*) (uintptr_t) &Java_java_lang_Runtime_exitInternal },
96         { (char*) "freeMemory",   (char*) "()J",  (void*) (uintptr_t) &Java_java_lang_Runtime_freeMemory   },
97         { (char*) "totalMemory",  (char*) "()J",  (void*) (uintptr_t) &Java_java_lang_Runtime_totalMemory  },
98         { (char*) "gc",           (char*) "()V",  (void*) (uintptr_t) &Java_java_lang_Runtime_gc           },
99 };
100  
101  
102 /* _Jv_java_lang_Runtime_init **************************************************
103  
104    Register native functions.
105  
106 *******************************************************************************/
107  
108 // FIXME
109 extern "C" {
110 void _Jv_java_lang_Runtime_init(void)
111 {
112         utf *u;
113  
114         u = utf_new_char("java/lang/Runtime");
115  
116         native_method_register(u, methods, NATIVE_METHODS_COUNT);
117 }
118 }
119
120
121 /*
122  * These are local overrides for various environment variables in Emacs.
123  * Please do not remove this and leave it at the end of the file, where
124  * Emacs will automagically detect them.
125  * ---------------------------------------------------------------------
126  * Local variables:
127  * mode: c++
128  * indent-tabs-mode: t
129  * c-basic-offset: 4
130  * tab-width: 4
131  * End:
132  * vim:noexpandtab:sw=4:ts=4:
133  */