Merged subtype branch to new head.
[cacao.git] / src / native / vm / gnuclasspath / java_lang_VMObject.cpp
1 /* src/native/vm/gnuclasspath/java_lang_VMObject.cpp - java/lang/VMObject
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
30 #include "native/jni.hpp"
31 #include "native/llni.h"
32 #include "native/native.h"
33
34 #if defined(ENABLE_JNI_HEADERS)
35 # include "native/vm/include/java_lang_VMObject.h"
36 #endif
37
38 #include "threads/lock-common.h"
39
40 #include "vm/jit/builtin.hpp"
41 #include "vm/exceptions.hpp"
42 #include "vm/javaobjects.hpp"
43 #include "vm/utf8.h"
44
45
46 // Native functions are exported as C functions.
47 extern "C" {
48
49 /*
50  * Class:     java/lang/VMObject
51  * Method:    getClass
52  * Signature: (Ljava/lang/Object;)Ljava/lang/Class;
53  */
54 JNIEXPORT jclass JNICALL Java_java_lang_VMObject_getClass(JNIEnv *env, jclass clazz, jobject obj)
55 {
56         if (obj == NULL) {
57                 exceptions_throw_nullpointerexception();
58                 return NULL;
59         }
60
61         java_lang_Object o(obj);
62
63         return (jclass) LLNI_classinfo_wrap(o.get_Class());
64 }
65
66
67 /*
68  * Class:     java/lang/VMObject
69  * Method:    clone
70  * Signature: (Ljava/lang/Cloneable;)Ljava/lang/Object;
71  */
72 JNIEXPORT jobject JNICALL Java_java_lang_VMObject_clone(JNIEnv *env, jclass clazz, jobject _this)
73 {
74         java_handle_t *o;
75         java_handle_t *co;
76
77         o = (java_handle_t *) _this;
78
79         co = builtin_clone(NULL, o);
80
81         return (jobject) co;
82 }
83
84
85 /*
86  * Class:     java/lang/VMObject
87  * Method:    notify
88  * Signature: (Ljava/lang/Object;)V
89  */
90 JNIEXPORT void JNICALL Java_java_lang_VMObject_notify(JNIEnv *env, jclass clazz, jobject _this)
91 {
92 #if defined(ENABLE_THREADS)
93         lock_notify_object((java_handle_t *) _this);
94 #endif
95 }
96
97
98 /*
99  * Class:     java/lang/VMObject
100  * Method:    notifyAll
101  * Signature: (Ljava/lang/Object;)V
102  */
103 JNIEXPORT void JNICALL Java_java_lang_VMObject_notifyAll(JNIEnv *env, jclass clazz, jobject _this)
104 {
105 #if defined(ENABLE_THREADS)
106         lock_notify_all_object((java_handle_t *) _this);
107 #endif
108 }
109
110
111 /*
112  * Class:     java/lang/VMObject
113  * Method:    wait
114  * Signature: (Ljava/lang/Object;JI)V
115  */
116 JNIEXPORT void JNICALL Java_java_lang_VMObject_wait(JNIEnv *env, jclass clazz, jobject o, jlong ms, jint ns)
117 {
118 #if defined(ENABLE_JVMTI)
119         /* Monitor Wait */
120         if (jvmti) jvmti_MonitorWaiting(true, o, ms);
121 #endif
122
123 #if defined(ENABLE_THREADS)
124         lock_wait_for_object((java_handle_t *) o, ms, ns);
125 #endif
126
127 #if defined(ENABLE_JVMTI)
128         /* Monitor Waited */
129         /* XXX: How do you know if wait timed out ?*/
130         if (jvmti) jvmti_MonitorWaiting(false, o, 0);
131 #endif
132 }
133
134 } // extern "C"
135
136
137 /* native methods implemented by this file ************************************/
138
139 static JNINativeMethod methods[] = {
140         { (char*) "getClass",  (char*) "(Ljava/lang/Object;)Ljava/lang/Class;",     (void*) (uintptr_t) &Java_java_lang_VMObject_getClass  },
141         { (char*) "clone",     (char*) "(Ljava/lang/Cloneable;)Ljava/lang/Object;", (void*) (uintptr_t) &Java_java_lang_VMObject_clone     },
142         { (char*) "notify",    (char*) "(Ljava/lang/Object;)V",                     (void*) (uintptr_t) &Java_java_lang_VMObject_notify    },
143         { (char*) "notifyAll", (char*) "(Ljava/lang/Object;)V",                     (void*) (uintptr_t) &Java_java_lang_VMObject_notifyAll },
144         { (char*) "wait",      (char*) "(Ljava/lang/Object;JI)V",                   (void*) (uintptr_t) &Java_java_lang_VMObject_wait      },
145 };
146
147
148 /* _Jv_java_lang_VMObject_init *************************************************
149
150    Register native functions.
151
152 *******************************************************************************/
153
154 // FIXME
155 extern "C" {
156 void _Jv_java_lang_VMObject_init(void)
157 {
158         utf *u;
159
160         u = utf_new_char("java/lang/VMObject");
161
162         native_method_register(u, methods, NATIVE_METHODS_COUNT);
163 }
164 }
165
166
167 /*
168  * These are local overrides for various environment variables in Emacs.
169  * Please do not remove this and leave it at the end of the file, where
170  * Emacs will automagically detect them.
171  * ---------------------------------------------------------------------
172  * Local variables:
173  * mode: c++
174  * indent-tabs-mode: t
175  * c-basic-offset: 4
176  * tab-width: 4
177  * End:
178  */