Merged revisions 7797-7917 via svnmerge from
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Object.c
1 /* src/native/vm/cldc1.1/java_lang_Object.c
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_VMRuntime.c 5900 2006-11-04 17:30:44Z michi $
26
27 */
28
29
30 #include "config.h"
31
32 #include <stdlib.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_String.h"             /* required by j.l.C */
40 #include "native/include/java_lang_Class.h"
41
42 #include "native/include/java_lang_Object.h"
43
44 #include "native/vm/java_lang_Object.h"
45
46
47 /* native methods implemented by this file ************************************/
48  
49 static JNINativeMethod methods[] = {
50         { "getClass",  "()Ljava/lang/Class;",                   (void *) (ptrint) &Java_java_lang_Object_getClass  },
51         { "hashCode",  "()I",                                   (void *) (ptrint) &Java_java_lang_Object_hashCode  },
52         { "notify",    "()V",                                   (void *) (ptrint) &Java_java_lang_Object_notify    },
53         { "notifyAll", "()V",                                   (void *) (ptrint) &Java_java_lang_Object_notifyAll },
54         { "wait",      "(J)V",                                  (void *) (ptrint) &Java_java_lang_Object_wait      },
55 };
56  
57  
58 /* _Jv_java_lang_Object_init ***************************************************
59  
60    Register native functions.
61  
62 *******************************************************************************/
63  
64 void _Jv_java_lang_Object_init(void)
65 {
66         utf *u;
67  
68         u = utf_new_char("java/lang/Object");
69  
70         native_method_register(u, methods, NATIVE_METHODS_COUNT);
71 }
72
73
74 /*
75  * Class:     java/lang/Object
76  * Method:    getClass
77  * Signature: ()Ljava/lang/Class;
78  */
79 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_Object_getClass(JNIEnv *env, java_lang_Object *obj)
80 {
81         java_objectheader *o;
82         classinfo         *c;
83
84         o = (java_objectheader *) obj;
85
86         if (o == NULL)
87                 return NULL;
88
89         c = o->vftbl->class;
90
91         return (java_lang_Class *) c;
92 }
93
94
95 /*
96  * Class:     java/lang/Object
97  * Method:    hashCode
98  * Signature: ()I
99  */
100 JNIEXPORT s4 JNICALL Java_java_lang_Object_hashCode(JNIEnv *env, java_lang_Object *this)
101 {
102 #if defined(ENABLE_GC_CACAO)
103         assert(0);
104 #else
105         return (s4) ((ptrint) this);
106 #endif
107 }
108
109
110 /*
111  * Class:     java/lang/Object
112  * Method:    notify
113  * Signature: ()V
114  */
115 JNIEXPORT void JNICALL Java_java_lang_Object_notify(JNIEnv *env, java_lang_Object *this)
116 {
117         _Jv_java_lang_Object_notify(this);
118 }
119
120
121 /*
122  * Class:     java/lang/Object
123  * Method:    notifyAll
124  * Signature: ()V
125  */
126 JNIEXPORT void JNICALL Java_java_lang_Object_notifyAll(JNIEnv *env, java_lang_Object *this)
127 {
128         _Jv_java_lang_Object_notifyAll(this);
129 }
130
131
132 /*
133  * Class:     java/lang/Object
134  * Method:    wait
135  * Signature: (J)V
136  */
137 JNIEXPORT void JNICALL Java_java_lang_Object_wait(JNIEnv *env, java_lang_Object *this, s8 timeout)
138 {
139         _Jv_java_lang_Object_wait(this, timeout, 0);
140 }
141
142
143 /*
144  * These are local overrides for various environment variables in Emacs.
145  * Please do not remove this and leave it at the end of the file, where
146  * Emacs will automagically detect them.
147  * ---------------------------------------------------------------------
148  * Local variables:
149  * mode: c
150  * indent-tabs-mode: t
151  * c-basic-offset: 4
152  * tab-width: 4
153  * End:
154  * vim:noexpandtab:sw=4:ts=4:
155  */