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