Merged revisions 7501-7598 via svnmerge from
[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    $Id: asmpart.h 7596 2007-03-28 21:05:53Z twisti $
26
27 */
28
29
30 #ifndef _ASMPART_H
31 #define _ASMPART_H
32
33 #include "config.h"
34 #include "vm/types.h"
35
36 #if defined(ENABLE_THREADS)
37 # include "threads/critical.h"
38 #endif
39
40 #include "vm/global.h"
41 #include "vm/vm.h"
42
43 #include "vm/jit/replace.h"
44
45 #include "vmcore/linker.h"
46
47
48 /* some macros ****************************************************************/
49
50 #if defined(ENABLE_JIT)
51 # if defined(ENABLE_INTRP)
52
53 #  define ASM_GETCLASSVALUES_ATOMIC(super,sub,out) \
54     do { \
55         if (opt_intrp) \
56             intrp_asm_getclassvalues_atomic((super), (sub), (out)); \
57         else \
58             asm_getclassvalues_atomic((super), (sub), (out)); \
59     } while (0)
60
61 # else /* defined(ENABLE_INTRP) */
62
63 #  define ASM_GETCLASSVALUES_ATOMIC(super,sub,out) \
64     asm_getclassvalues_atomic((super), (sub), (out))
65
66 # endif /* defined(ENABLE_INTRP) */
67
68 #else /* defined(ENABLE_JIT) */
69
70 #  define ASM_GETCLASSVALUES_ATOMIC(super,sub,out) \
71     intrp_asm_getclassvalues_atomic((super), (sub), (out))
72
73 #endif /* defined(ENABLE_JIT) */
74
75
76 /* function prototypes ********************************************************/
77
78 /* machine dependent initialization */
79 s4   asm_md_init(void);
80
81 /* 
82    invokes the compiler for untranslated JavaVM methods.
83    Register R0 contains a pointer to the method info structure
84    (prepared by createcompilerstub).
85 */
86 void asm_call_jit_compiler(void);
87
88 #if defined(ENABLE_JIT)
89 java_objectheader *asm_vm_call_method(methodinfo *m, s4 vmargscount,
90                                                                           vm_arg *vmargs);
91
92 s4     asm_vm_call_method_int(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
93 s8     asm_vm_call_method_long(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
94 float  asm_vm_call_method_float(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
95 double asm_vm_call_method_double(methodinfo *m, s4 vmargscount, vm_arg *vmargs);
96
97 void   asm_vm_call_method_exception_handler(void);
98
99 /* asm_vm_call_method_end is a dummy symbol marking the end of the asm_vm_call_method
100  * function and is used to insert the coderange into the avl tree.
101  */
102 void   asm_vm_call_method_end(void);
103 #endif
104
105 #if defined(ENABLE_INTRP)
106 java_objectheader *intrp_asm_vm_call_method(methodinfo *m, s4 vmargscount,
107                                                                                         vm_arg *vmargs);
108
109 s4     intrp_asm_vm_call_method_int(methodinfo *m, s4 vmargscount,
110                                                                         vm_arg *vmargs);
111 s8     intrp_asm_vm_call_method_long(methodinfo *m, s4 vmargscount,
112                                                                          vm_arg *vmargs);
113 float  intrp_asm_vm_call_method_float(methodinfo *m, s4 vmargscount,
114                                                                           vm_arg *vmargs);
115 double intrp_asm_vm_call_method_double(methodinfo *m, s4 vmargscount,
116                                                                            vm_arg *vmargs);
117 #endif
118
119 /* exception handling functions */
120
121 #if defined(ENABLE_JIT)
122 void asm_handle_exception(void);
123 void asm_handle_nat_exception(void);
124 #endif
125
126 /* stub for throwing AbstractMethodError's */
127 #if defined(ENABLE_JIT)
128 void asm_abstractmethoderror(void);
129 #endif
130
131 #if defined(ENABLE_INTRP)
132 void intrp_asm_abstractmethoderror(void);
133 #endif
134
135 /* wrapper for code patching functions */
136 void asm_patcher_wrapper(void);
137
138 /* functions for on-stack replacement */
139 #if defined(ENABLE_REPLACEMENT)
140 void asm_replacement_out(void);
141 void asm_replacement_in(executionstate_t *es, replace_safestack_t *st);
142 #endif
143
144 long asm_compare_and_swap(volatile long *p, long oldval, long newval);
145 void asm_memory_barrier(void);
146
147 #if defined(ENABLE_THREADS)
148 extern critical_section_node_t asm_criticalsections;
149 #endif
150
151 #if defined(ENABLE_JIT)
152 void asm_getclassvalues_atomic(vftbl_t *super, vftbl_t *sub, castinfo *out);
153 #endif
154
155 #if defined(ENABLE_INTRP)
156 void intrp_asm_getclassvalues_atomic(vftbl_t *super, vftbl_t *sub, castinfo *out);
157 #endif
158
159 /* cache flush function */
160 void asm_cacheflush(u1 *addr, s4 nbytes);
161
162 u8 asm_get_cycle_count(void);
163
164 #endif /* _ASMPART_H */
165
166
167 /*
168  * These are local overrides for various environment variables in Emacs.
169  * Please do not remove this and leave it at the end of the file, where
170  * Emacs will automagically detect them.
171  * ---------------------------------------------------------------------
172  * Local variables:
173  * mode: c
174  * indent-tabs-mode: t
175  * c-basic-offset: 4
176  * tab-width: 4
177  * End:
178  * vim:noexpandtab:sw=4:ts=4:
179  */