aa6a427e0f5f5f228034dad7aa3fb6e0c298d966
[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: vm.h 8399 2007-08-22 18:24:23Z 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      *mainstring;
56 extern classinfo *mainclass;
57
58 #if defined(ENABLE_INTRP)
59 extern u1 *intrp_main_stack;
60 #endif
61
62
63 /* function prototypes ********************************************************/
64
65 void usage(void);
66 void vm_printconfig(void);
67
68 bool vm_createjvm(JavaVM **p_vm, void **p_env, void *vm_args);
69 bool vm_create(JavaVMInitArgs *vm_args);
70 void vm_run(JavaVM *vm, JavaVMInitArgs *vm_args);
71 s4   vm_destroy(JavaVM *vm);
72 void vm_exit(s4 status);
73 void vm_shutdown(s4 status);
74
75 void vm_exit_handler(void);
76
77 void vm_abort(const char *text, ...);
78
79 /* Java method calling functions */
80
81 uint64_t *vm_array_from_objectarray(methodinfo *m, java_handle_t *o,
82                                                                         java_handle_objectarray_t *params);
83
84 java_handle_t *vm_call_method(methodinfo *m, java_handle_t *o, ...);
85 java_handle_t *vm_call_method_valist(methodinfo *m, java_handle_t *o,
86                                                                                  va_list ap);
87 java_handle_t *vm_call_method_jvalue(methodinfo *m, java_handle_t *o,
88                                                                                  const jvalue *args);
89
90 java_handle_t     *vm_call_array(methodinfo *m, uint64_t *array);
91 int32_t            vm_call_int_array(methodinfo *m, uint64_t *array);
92 int64_t            vm_call_long_array(methodinfo *m, uint64_t *array);
93 float              vm_call_float_array(methodinfo *m, uint64_t *array);
94 double             vm_call_double_array(methodinfo *m, uint64_t *array);
95
96 int32_t vm_call_method_int(methodinfo *m, java_handle_t *o, ...);
97 int32_t vm_call_method_int_valist(methodinfo *m, java_handle_t *o, va_list ap);
98 int32_t vm_call_method_int_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args);
99
100 int64_t vm_call_method_long(methodinfo *m, java_handle_t *o, ...);
101 int64_t vm_call_method_long_valist(methodinfo *m, java_handle_t *o, va_list ap);
102 int64_t vm_call_method_long_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args);
103
104 float   vm_call_method_float(methodinfo *m, java_handle_t *o, ...);
105 float   vm_call_method_float_valist(methodinfo *m, java_handle_t *o, va_list ap);
106 float   vm_call_method_float_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args);
107
108 double  vm_call_method_double(methodinfo *m, java_handle_t *o, ...);
109 double  vm_call_method_double_valist(methodinfo *m, java_handle_t *o, va_list ap);
110 double  vm_call_method_double_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args);
111
112 #endif /* _VM_H */
113
114 /*
115  * These are local overrides for various environment variables in Emacs.
116  * Please do not remove this and leave it at the end of the file, where
117  * Emacs will automagically detect them.
118  * ---------------------------------------------------------------------
119  * Local variables:
120  * mode: c
121  * indent-tabs-mode: t
122  * c-basic-offset: 4
123  * tab-width: 4
124  * End:
125  */