src/vm/cycles-stats.h: Switched from asm_get_cycle_count to md_get_cycle_count.
[cacao.git] / src / vm / jit / asmpart.h
index 7a4d792023ee0a75ef95ba0316966b6e0cdd392c..8769403d7392d8aae2776f220cd5489846f349d7 100644 (file)
@@ -1,9 +1,7 @@
-/* asmpart.h - prototypes for machine specfic functions
+/* src/vm/jit/asmpart.h - prototypes for machine specfic functions
 
-   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
-   M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
-   P. Tomsich, J. Wenninger
+   Copyright (C) 1996-2005, 2006, 2007, 2008
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
 
    This file is part of CACAO.
 
 
    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., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
-   Contact: cacao@complang.tuwien.ac.at
+*/
 
-   Authors: Reinhard Grafl
-            Andreas Krall
 
-   Changes: Christian Thalinger
+#ifndef _ASMPART_H
+#define _ASMPART_H
 
-   $Id: asmpart.h 1129 2004-06-05 14:37:14Z twisti $
+#include "config.h"
 
-*/
+#include <stdint.h>
 
+#include "vm/types.h"
 
-#ifndef _ASMPART_H
-#define _ASMPART_H
+#include "vm/global.h"
+#include "vm/vm.hpp"
 
-#include "global.h"
-#include "jni.h"
-#include "threads/thread.h"
 
-/* 
-   determines if the byte support instruction set (21164a and higher)
-   is available.
-*/
-int has_no_x_instr_set();
+/* function prototypes ********************************************************/
 
-void synchronize_caches();
+#ifdef __cplusplus
+extern "C" {
+#endif
 
+/* machine dependent initialization */
+s4   asm_md_init(void);
 
+#if !defined(JIT_COMPILER_VIA_SIGNAL)
 /* 
    invokes the compiler for untranslated JavaVM methods.
    Register R0 contains a pointer to the method info structure
    (prepared by createcompilerstub).
 */
-void asm_call_jit_compiler();
+void asm_call_jit_compiler(void);
+#endif
 
+#if defined(ENABLE_JIT)
+java_object_t *asm_vm_call_method(void *pv, uint64_t *array, int32_t stackargs);
+int32_t        asm_vm_call_method_int(void *pv, uint64_t *array, int32_t stackargs);
 
-/* 
-   This function calls a Java-method (which possibly needs compilation)
-   with up to 4 parameters. This function calls a Java-method (which
-   possibly needs compilation) with up to 4 parameters.
-*/
+int64_t        asm_vm_call_method_long(void *pv, uint64_t *array, int32_t stackargs);
+float          asm_vm_call_method_float(void *pv, uint64_t *array, int32_t stackargs);
+double         asm_vm_call_method_double(void *pv, uint64_t *array, int32_t stackargs);
 
-/* 
-   This function calls a Java-method (which possibly needs compilation)
-   with up to 4 parameters. This function calls a Java-method (which
-   possibly needs compilation) with up to 4 parameters. 
-   also supports a return value
-*/
-java_objectheader *asm_calljavafunction(methodinfo *m, void *arg1, void *arg2,
-                                        void *arg3, void *arg4);
-java_objectheader *asm_calljavafunction2(methodinfo *m, u4 count, u4 size, void *callblock);
-jdouble asm_calljavafunction2double(methodinfo *m, u4 count, u4 size, void *callblock);
-jlong asm_calljavafunction2long(methodinfo *m, u4 count, u4 size, void *callblock);
-
-/* We need these two labels in codegen.inc to add the asm_calljavafunction*'s
-   into the methodtable */
-#if defined(__I386__) || defined(__X86_64__)
-void calljava_xhandler();
-void calljava_xhandler2();
+void   asm_vm_call_method_exception_handler(void);
+void   asm_vm_call_method_end(void);
+#endif
+
+#if defined(ENABLE_INTRP)
+java_objectheader *intrp_asm_vm_call_method(methodinfo *m, s4 vmargscount,
+                                                                                       vm_arg *vmargs);
+
+s4     intrp_asm_vm_call_method_int(methodinfo *m, s4 vmargscount,
+                                                                       vm_arg *vmargs);
+s8     intrp_asm_vm_call_method_long(methodinfo *m, s4 vmargscount,
+                                                                        vm_arg *vmargs);
+float  intrp_asm_vm_call_method_float(methodinfo *m, s4 vmargscount,
+                                                                         vm_arg *vmargs);
+double intrp_asm_vm_call_method_double(methodinfo *m, s4 vmargscount,
+                                                                          vm_arg *vmargs);
 #endif
 
+/* exception handling functions */
 
-void asm_handle_exception();
-void asm_handle_nat_exception();
+#if defined(ENABLE_JIT)
+void asm_handle_exception(void);
+void asm_handle_nat_exception(void);
+#endif
 
-void asm_check_clinit();
+/* stub for throwing AbstractMethodError's */
+#if defined(ENABLE_JIT)
+void asm_abstractmethoderror(void);
+#endif
 
-void asm_handle_builtin_exception(classinfo *);
-void asm_throw_and_handle_exception();
-void asm_throw_and_handle_hardware_arithmetic_exception();
+#if defined(ENABLE_INTRP)
+void intrp_asm_abstractmethoderror(void);
+#endif
 
-java_objectarray* Java_java_lang_VMSecurityManager_getClassContext(JNIEnv *env, jclass clazz);
-stacktraceelement *asm_get_stackTrace();
+/* wrapper for code patching functions */
+void asm_patcher_wrapper(void);
 
-/*java_lang_ClassLoader* Java_java_lang_VMSecurityManager_currentClassLoader(JNIEnv *env, jclass clazz);*/
+/* cache flush function */
+void asm_cacheflush(void* addr, int nbytes);
 
-void *asm_switchstackandcall(void *stack, void *func, void **stacktopsave, void * p);
+void *md_asm_codegen_get_pv_from_pc(void *ra);
 
-void asm_builtin_trace();
-void asm_builtin_exittrace();
+#if defined(ENABLE_ESCAPE_CHECK)
+void asm_escape_check(java_object_t *obj);
+#endif
 
-#if defined(USE_THREADS) && defined(NATIVE_THREADS)
-extern threadcritnode *asm_criticalsections;
+#ifdef __cplusplus
+} // extern "C"
 #endif
-void asm_getclassvalues_atomic(vftbl *super, vftbl *sub, castinfo *out);
 
 #endif /* _ASMPART_H */
 
@@ -122,4 +126,5 @@ void asm_getclassvalues_atomic(vftbl *super, vftbl *sub, castinfo *out);
  * c-basic-offset: 4
  * tab-width: 4
  * End:
+ * vim:noexpandtab:sw=4:ts=4:
  */