Proper x86_64 mnemonics
[cacao.git] / src / vm / jit / asmpart.h
1 /* src/vm/jit/asmpart.h - prototypes for machine specfic 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 */
26
27
28 #ifndef _ASMPART_H
29 #define _ASMPART_H
30
31 #include "config.h"
32
33 #include <stdint.h>
34
35 #include "vm/types.h"
36
37 #if defined(ENABLE_THREADS)
38 # include "threads/critical.h"
39 #endif
40
41 #include "vm/global.h"
42 #include "vm/vm.h"
43
44 #include "vmcore/linker.h"
45
46
47 /* function prototypes ********************************************************/
48
49 /* machine dependent initialization */
50 s4   asm_md_init(void);
51
52 #if !defined(JIT_COMPILER_VIA_SIGNAL)
53 /* 
54    invokes the compiler for untranslated JavaVM methods.
55    Register R0 contains a pointer to the method info structure
56    (prepared by createcompilerstub).
57 */
58 void asm_call_jit_compiler(void);
59 #endif
60
61 #if defined(ENABLE_JIT)
62 java_object_t *asm_vm_call_method(void *pv, uint64_t *array, int32_t stackargs);
63 int32_t        asm_vm_call_method_int(void *pv, uint64_t *array, int32_t stackargs);
64
65 int64_t        asm_vm_call_method_long(void *pv, uint64_t *array, int32_t stackargs);
66 float          asm_vm_call_method_float(void *pv, uint64_t *array, int32_t stackargs);
67 double         asm_vm_call_method_double(void *pv, uint64_t *array, int32_t stackargs);
68
69 void   asm_vm_call_method_exception_handler(void);
70 void   asm_vm_call_method_end(void);
71 #endif
72
73 #if defined(ENABLE_INTRP)
74 java_objectheader *intrp_asm_vm_call_method(methodinfo *m, s4 vmargscount,
75                                                                                         vm_arg *vmargs);
76
77 s4     intrp_asm_vm_call_method_int(methodinfo *m, s4 vmargscount,
78                                                                         vm_arg *vmargs);
79 s8     intrp_asm_vm_call_method_long(methodinfo *m, s4 vmargscount,
80                                                                          vm_arg *vmargs);
81 float  intrp_asm_vm_call_method_float(methodinfo *m, s4 vmargscount,
82                                                                           vm_arg *vmargs);
83 double intrp_asm_vm_call_method_double(methodinfo *m, s4 vmargscount,
84                                                                            vm_arg *vmargs);
85 #endif
86
87 /* exception handling functions */
88
89 #if defined(ENABLE_JIT)
90 void asm_handle_exception(void);
91 void asm_handle_nat_exception(void);
92 #endif
93
94 /* stub for throwing AbstractMethodError's */
95 #if defined(ENABLE_JIT)
96 void asm_abstractmethoderror(void);
97 #endif
98
99 #if defined(ENABLE_INTRP)
100 void intrp_asm_abstractmethoderror(void);
101 #endif
102
103 /* wrapper for code patching functions */
104 void asm_patcher_wrapper(void);
105
106 long asm_compare_and_swap(volatile long *p, long oldval, long newval);
107 void asm_memory_barrier(void);
108
109 /* cache flush function */
110 void asm_cacheflush(u1 *addr, s4 nbytes);
111
112 u8 asm_get_cycle_count(void);
113
114 void *md_asm_codegen_get_pv_from_pc(void *ra);
115
116 #if defined(ENABLE_ESCAPE_CHECK)
117 void asm_escape_check(java_object_t *obj);
118 #endif
119
120 #endif /* _ASMPART_H */
121
122
123 /*
124  * These are local overrides for various environment variables in Emacs.
125  * Please do not remove this and leave it at the end of the file, where
126  * Emacs will automagically detect them.
127  * ---------------------------------------------------------------------
128  * Local variables:
129  * mode: c
130  * indent-tabs-mode: t
131  * c-basic-offset: 4
132  * tab-width: 4
133  * End:
134  * vim:noexpandtab:sw=4:ts=4:
135  */