* src/vm/vm.h (vm_arg): Removed.
[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 /* function prototypes ********************************************************/
72
73 void usage(void);
74 void vm_printconfig(void);
75
76 bool vm_createjvm(JavaVM **p_vm, void **p_env, void *vm_args);
77 bool vm_create(JavaVMInitArgs *vm_args);
78 void vm_run(JavaVM *vm, JavaVMInitArgs *vm_args);
79 s4   vm_destroy(JavaVM *vm);
80 void vm_exit(s4 status);
81 void vm_shutdown(s4 status);
82
83 void vm_exit_handler(void);
84
85 void vm_abort(const char *text, ...);
86
87 /* Java method calling functions */
88
89 uint64_t *vm_array_from_objectarray(methodinfo *m, java_objectheader *o,
90                                                                         java_objectarray *params);
91
92 java_objectheader *vm_call_method(methodinfo *m, java_objectheader *o, ...);
93 java_objectheader *vm_call_method_valist(methodinfo *m, java_objectheader *o,
94                                                                                  va_list ap);
95 java_objectheader *vm_call_method_jvalue(methodinfo *m, java_objectheader *o,
96                                                                                  const jvalue *args);
97
98 java_objectheader *vm_call_array(methodinfo *m, uint64_t *array);
99 int32_t            vm_call_int_array(methodinfo *m, uint64_t *array);
100 int64_t            vm_call_long_array(methodinfo *m, uint64_t *array);
101 float              vm_call_float_array(methodinfo *m, uint64_t *array);
102 double             vm_call_double_array(methodinfo *m, uint64_t *array);
103
104 s4 vm_call_method_int(methodinfo *m, java_objectheader *o, ...);
105 s4 vm_call_method_int_valist(methodinfo *m, java_objectheader *o, va_list ap);
106 s4 vm_call_method_int_jvalue(methodinfo *m, java_objectheader *o,
107                                                          const jvalue *args);
108
109 s8 vm_call_method_long(methodinfo *m, java_objectheader *o, ...);
110 s8 vm_call_method_long_valist(methodinfo *m, java_objectheader *o, va_list ap);
111 s8 vm_call_method_long_jvalue(methodinfo *m, java_objectheader *o,
112                                                           const jvalue *args);
113
114 float vm_call_method_float(methodinfo *m, java_objectheader *o, ...);
115 float vm_call_method_float_valist(methodinfo *m, java_objectheader *o,
116                                                                   va_list ap);
117 float vm_call_method_float_jvalue(methodinfo *m, java_objectheader *o,
118                                                                   const jvalue *args);
119
120 double vm_call_method_double(methodinfo *m, java_objectheader *o, ...);
121 double vm_call_method_double_valist(methodinfo *m, java_objectheader *o,
122                                                                         va_list ap);
123 double vm_call_method_double_jvalue(methodinfo *m, java_objectheader *o,
124                                                                         const jvalue *args);
125
126 #endif /* _VM_H */
127
128 /*
129  * These are local overrides for various environment variables in Emacs.
130  * Please do not remove this and leave it at the end of the file, where
131  * Emacs will automagically detect them.
132  * ---------------------------------------------------------------------
133  * Local variables:
134  * mode: c
135  * indent-tabs-mode: t
136  * c-basic-offset: 4
137  * tab-width: 4
138  * End:
139  */