CACAO
java_lang_Runtime.cpp
Go to the documentation of this file.
1 /* src/native/vm/cldc1.1/java_lang_Runtime.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 <stdint.h>
29 
30 #include "mm/gc.hpp"
31 
32 #include "native/jni.hpp"
33 #include "native/native.hpp"
34 
35 #if defined(ENABLE_JNI_HEADERS)
36 # include "native/include/java_lang_Runtime.h"
37 #endif
38 
39 #include "vm/utf8.hpp"
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 
109 {
110  Utf8String u = Utf8String::from_utf8("java/lang/Runtime");
111 
114 }
115 
116 
117 /*
118  * These are local overrides for various environment variables in Emacs.
119  * Please do not remove this and leave it at the end of the file, where
120  * Emacs will automagically detect them.
121  * ---------------------------------------------------------------------
122  * Local variables:
123  * mode: c++
124  * indent-tabs-mode: t
125  * c-basic-offset: 4
126  * tab-width: 4
127  * End:
128  * vim:noexpandtab:sw=4:ts=4:
129  */
void gc_call(void)
Definition: gc.c:492
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
JNIEXPORT jlong JNICALL Java_java_lang_Runtime_totalMemory(JNIEnv *env, jobject _this)
_Jv_JNIEnv JNIEnv
Definition: jni.hpp:112
#define NATIVE_METHODS_COUNT
Definition: native.hpp:45
void vm_shutdown()
Hook point before the VM is actually destroyed.
Definition: hook.hpp:168
s8 gc_get_free_bytes(void)
Definition: gc.c:553
static Utf8String from_utf8(const char *, size_t)
Definition: utf8.cpp:335
JNIEXPORT void JNICALL Java_java_lang_Runtime_exitInternal(JNIEnv *env, jobject _this, jint status)
s8 gc_get_heap_size(void)
Definition: gc.c:552
static JNINativeMethod methods[]
JNIEXPORT void JNICALL Java_java_lang_Runtime_gc(JNIEnv *env, jobject _this)
JNIEXPORT jlong JNICALL Java_java_lang_Runtime_freeMemory(JNIEnv *env, jobject _this)
void _Jv_java_lang_Runtime_init(void)
static VM * get_current()
Definition: vm.hpp:99