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