8848d524577cfd27a692e1822d62f4d1c0e0c464
[cacao.git] / src / native / jni.h
1 /* src/native/jni.h - JNI types and data structures
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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: jni.h 8132 2007-06-22 11:15:47Z twisti $
26
27 */
28
29
30 /* GNU Classpath jni.h *********************************************************
31
32    ATTENTION: We include this file before we actually define our own
33    jni.h.  We do this because, otherwise we can get into unresolvable
34    circular header dependencies.
35
36    This is OK as GNU Classpath defines:
37
38    #define _CLASSPATH_JNI_H
39
40    CLASSPATH_JNI_H is in config.h defined.
41
42 *******************************************************************************/
43
44 #include "config.h"
45
46 /* XXX quick hack to not include GCJ's jni_md.h */
47 #define __GCJ_JNI_MD_H__
48
49 #include CLASSPATH_JNI_MD_H
50 #include CLASSPATH_JNI_H
51
52 #ifndef _JNI_H
53 #define _JNI_H
54
55 /* forward typedefs ***********************************************************/
56
57 typedef struct localref_table localref_table;
58
59
60 #include "vm/types.h"
61
62 #include "vm/global.h"
63
64 #include "vmcore/method.h"
65
66
67 /* _Jv_JNIEnv *****************************************************************/
68
69 typedef struct _Jv_JNIEnv _Jv_JNIEnv;
70
71 struct _Jv_JNIEnv {
72         const struct JNINativeInterface_ *env;    /* This MUST be the first entry */
73 };
74
75
76 /* _Jv_JavaVM *****************************************************************/
77
78 typedef struct _Jv_JavaVM _Jv_JavaVM;
79
80 struct _Jv_JavaVM {
81         const struct JNIInvokeInterface_ *functions;/*This MUST be the first entry*/
82
83         /* JVM instance-specific variables */
84
85         s8 starttime;                       /* VM startup time                    */
86
87         s4 Java_gnu_java_lang_management_VMClassLoadingMXBeanImpl_verbose;
88         s4 Java_gnu_java_lang_management_VMMemoryMXBeanImpl_verbose;
89         s4 java_lang_management_ThreadMXBean_PeakThreadCount;
90         s4 java_lang_management_ThreadMXBean_ThreadCount;
91         s8 java_lang_management_ThreadMXBean_TotalStartedThreadCount;
92         s4 Java_java_lang_VMClassLoader_defaultAssertionStatus;
93 };
94
95
96 /* CACAO related stuff ********************************************************/
97
98 extern const struct JNIInvokeInterface_ _Jv_JNIInvokeInterface;
99 extern struct JNINativeInterface_ _Jv_JNINativeInterface;
100
101
102 /* local reference table ******************************************************/
103
104 #define LOCALREFTABLE_CAPACITY    16
105
106 /* localref_table **************************************************************
107
108    ATTENTION: keep this structure a multiple of 8-bytes!!! This is
109    essential for the native stub on 64-bit architectures.
110
111 *******************************************************************************/
112
113 struct localref_table {
114         s4                 capacity;        /* table size                         */
115         s4                 used;            /* currently used references          */
116         s4                 localframes;     /* number of current frames           */
117         s4                 PADDING;         /* 8-byte padding                     */
118         localref_table    *prev;            /* link to prev table (LocalFrame)    */
119         java_objectheader *refs[LOCALREFTABLE_CAPACITY]; /* references            */
120 };
121
122 #if defined(ENABLE_THREADS)
123 #define LOCALREFTABLE    (THREADOBJECT->_localref_table)
124 #else
125 extern localref_table *_no_threads_localref_table;
126
127 #define LOCALREFTABLE    (_no_threads_localref_table)
128 #endif
129
130
131 /* hashtable_global_ref_entry *************************************************/
132
133 typedef struct hashtable_global_ref_entry hashtable_global_ref_entry;
134
135 struct hashtable_global_ref_entry {
136         java_objectheader          *o;      /* object pointer of global ref       */
137         s4                          refs;   /* references of the current pointer  */
138         hashtable_global_ref_entry *hashlink; /* link for external chaining       */
139 };
140
141
142 /* function prototypes ********************************************************/
143
144 /* initialize JNI subsystem */
145 bool jni_init(void);
146 bool jni_init_localref_table(void);
147
148 java_objectheader *_Jv_jni_invokeNative(methodinfo *m, java_objectheader *o,
149                                                                                 java_objectarray *params);
150
151 #endif /* _JNI_H */
152
153
154 /*
155  * These are local overrides for various environment variables in Emacs.
156  * Please do not remove this and leave it at the end of the file, where
157  * Emacs will automagically detect them.
158  * ---------------------------------------------------------------------
159  * Local variables:
160  * mode: c
161  * indent-tabs-mode: t
162  * c-basic-offset: 4
163  * tab-width: 4
164  * End:
165  */