/* src/vm/vm.hpp - basic JVM functions Copyright (C) 1996-2005, 2006, 2007, 2008 CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO This file is part of CACAO. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _VM_HPP #define _VM_HPP #include "config.h" #include #include #include "vm/types.h" #include "native/jni.h" #include "vm/global.h" #include "vmcore/class.h" #include "vmcore/method.h" #ifdef __cplusplus /** * Represent an instance of a VM. */ class VM { private: // JNI variables. JavaVM* _javavm; JNIEnv* _jnienv; // VM variables. bool _initializing; bool _created; bool _exiting; int64_t _starttime; public: // Constructor, Destructor. VM(JavaVMInitArgs*); ~VM(); // Static methods. static bool create(JavaVM** p_vm, void** p_env, void* vm_args); // Getters for private members. JavaVM* get_javavm() { return _javavm; } JNIEnv* get_jnienv() { return _jnienv; } bool is_initializing() { return _initializing; } bool is_created() { return _created; } bool is_exiting() { return _exiting; } int64_t get_starttime() { return _starttime; } }; /** * This is _the_ instance of the VM. */ extern VM* vm; #else JavaVM* VM_get_javavm(); JNIEnv* VM_get_jnienv(); bool VM_is_initializing(); bool VM_is_created(); int64_t VM_get_starttime(); #endif /* These C methods are the exported interface. ********************************/ #ifdef __cplusplus extern "C" { #endif bool VM_create(JavaVM** p_vm, void** p_env, void* vm_args); #ifdef __cplusplus } #endif /* export global variables ****************************************************/ #if defined(ENABLE_INTRP) extern u1 *intrp_main_stack; #endif /* function prototypes ********************************************************/ #ifdef __cplusplus extern "C" { #endif void usage(void); bool vm_create(JavaVMInitArgs *vm_args); void vm_run(JavaVM *vm, JavaVMInitArgs *vm_args); s4 vm_destroy(JavaVM *vm); void vm_exit(s4 status); void vm_shutdown(s4 status); void vm_exit_handler(void); void vm_abort(const char *text, ...); void vm_abort_errnum(int errnum, const char *text, ...); void vm_abort_errno(const char *text, ...); void vm_abort_disassemble(void *pc, int count, const char *text, ...); /* Java method calling functions */ java_handle_t *vm_call_method(methodinfo *m, java_handle_t *o, ...); java_handle_t *vm_call_method_valist(methodinfo *m, java_handle_t *o, va_list ap); java_handle_t *vm_call_method_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args); int32_t vm_call_method_int(methodinfo *m, java_handle_t *o, ...); int32_t vm_call_method_int_valist(methodinfo *m, java_handle_t *o, va_list ap); int32_t vm_call_method_int_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args); int64_t vm_call_method_long(methodinfo *m, java_handle_t *o, ...); int64_t vm_call_method_long_valist(methodinfo *m, java_handle_t *o, va_list ap); int64_t vm_call_method_long_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args); float vm_call_method_float(methodinfo *m, java_handle_t *o, ...); float vm_call_method_float_valist(methodinfo *m, java_handle_t *o, va_list ap); float vm_call_method_float_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args); double vm_call_method_double(methodinfo *m, java_handle_t *o, ...); double vm_call_method_double_valist(methodinfo *m, java_handle_t *o, va_list ap); double vm_call_method_double_jvalue(methodinfo *m, java_handle_t *o, const jvalue *args); java_handle_t *vm_call_method_objectarray(methodinfo *m, java_handle_t *o, java_handle_objectarray_t *params); #ifdef __cplusplus } #endif #endif // _VM_HPP /* * These are local overrides for various environment variables in Emacs. * Please do not remove this and leave it at the end of the file, where * Emacs will automagically detect them. * --------------------------------------------------------------------- * Local variables: * mode: c++ * indent-tabs-mode: t * c-basic-offset: 4 * tab-width: 4 * End: * vim:noexpandtab:sw=4:ts=4: */