* src/vm/vm.c (vm_array_store_flt): Handle __POWERPC__ correctly.
[cacao.git] / src / vm / vm.h
1 /* src/vm/vm.h - basic JVM functions
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: finalizer.c 4357 2006-01-22 23:33:38Z twisti $
26
27 */
28
29
30 #ifndef _VM_H
31 #define _VM_H
32
33 #include "config.h"
34
35 #include <stdarg.h>
36
37 #include "vm/types.h"
38
39 #include "native/jni.h"
40
41 #include "vm/global.h"
42
43 #include "vmcore/class.h"
44 #include "vmcore/method.h"
45
46
47 /* export global variables ****************************************************/
48
49 extern _Jv_JavaVM *_Jv_jvm;
50 extern _Jv_JNIEnv *_Jv_env;
51
52 extern bool vm_initializing;
53 extern bool vm_exiting;
54
55 extern char      *cacao_prefix;
56 extern char      *cacao_libjvm;
57 extern char      *classpath_libdir;
58
59 extern char      *_Jv_bootclasspath;
60 extern char      *_Jv_classpath;
61 extern char      *_Jv_java_library_path;
62
63 extern char      *mainstring;
64 extern classinfo *mainclass;
65
66 #if defined(ENABLE_INTRP)
67 extern u1 *intrp_main_stack;
68 #endif
69
70
71 /* vm_arg **********************************************************************
72
73    Datastructure for arguments to call Java methods via vm_call_method
74    functions.
75
76 *******************************************************************************/
77
78 typedef struct vm_arg vm_arg;
79
80 struct vm_arg {
81         u8 type;
82
83         union {
84                 u8     l;
85                 float  f;
86                 double d;
87         } data;
88 };
89
90
91 /* function prototypes ********************************************************/
92
93 void usage(void);
94 void vm_printconfig(void);
95
96 bool vm_createjvm(JavaVM **p_vm, void **p_env, void *vm_args);
97 bool vm_create(JavaVMInitArgs *vm_args);
98 void vm_run(JavaVM *vm, JavaVMInitArgs *vm_args);
99 s4   vm_destroy(JavaVM *vm);
100 void vm_exit(s4 status);
101 void vm_shutdown(s4 status);
102
103 void vm_exit_handler(void);
104
105 void vm_abort(const char *text, ...);
106
107 /* Java method calling functions */
108
109 uint64_t *vm_array_from_objectarray(methodinfo *m, java_objectheader *o,
110                                                                         java_objectarray *params);
111
112 java_objectheader *vm_call_method(methodinfo *m, java_objectheader *o, ...);
113 java_objectheader *vm_call_method_valist(methodinfo *m, java_objectheader *o,
114                                                                                  va_list ap);
115 java_objectheader *vm_call_method_jvalue(methodinfo *m, java_objectheader *o,
116                                                                                  const jvalue *args);
117
118 java_objectheader *vm_call_array(methodinfo *m, uint64_t *array);
119 int32_t            vm_call_int_array(methodinfo *m, uint64_t *array);
120 int64_t            vm_call_long_array(methodinfo *m, uint64_t *array);
121 float              vm_call_float_array(methodinfo *m, uint64_t *array);
122 double             vm_call_double_array(methodinfo *m, uint64_t *array);
123
124 s4 vm_call_method_int(methodinfo *m, java_objectheader *o, ...);
125 s4 vm_call_method_int_valist(methodinfo *m, java_objectheader *o, va_list ap);
126 s4 vm_call_method_int_jvalue(methodinfo *m, java_objectheader *o,
127                                                          const jvalue *args);
128
129 s8 vm_call_method_long(methodinfo *m, java_objectheader *o, ...);
130 s8 vm_call_method_long_valist(methodinfo *m, java_objectheader *o, va_list ap);
131 s8 vm_call_method_long_jvalue(methodinfo *m, java_objectheader *o,
132                                                           const jvalue *args);
133
134 float vm_call_method_float(methodinfo *m, java_objectheader *o, ...);
135 float vm_call_method_float_valist(methodinfo *m, java_objectheader *o,
136                                                                   va_list ap);
137 float vm_call_method_float_jvalue(methodinfo *m, java_objectheader *o,
138                                                                   const jvalue *args);
139
140 double vm_call_method_double(methodinfo *m, java_objectheader *o, ...);
141 double vm_call_method_double_valist(methodinfo *m, java_objectheader *o,
142                                                                         va_list ap);
143 double vm_call_method_double_jvalue(methodinfo *m, java_objectheader *o,
144                                                                         const jvalue *args);
145
146 #endif /* _VM_H */
147
148 /*
149  * These are local overrides for various environment variables in Emacs.
150  * Please do not remove this and leave it at the end of the file, where
151  * Emacs will automagically detect them.
152  * ---------------------------------------------------------------------
153  * Local variables:
154  * mode: c
155  * indent-tabs-mode: t
156  * c-basic-offset: 4
157  * tab-width: 4
158  * End:
159  */