cast_lock removed (using asm_getclassvalues_atomic now)
[cacao.git] / asmpart.h
1 /* asmpart.h - prototypes for machine specfic functions
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
5    M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
6    P. Tomsich, J. Wenninger
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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Reinhard Grafl
28             Andreas Krall
29
30    Changes: Christian Thalinger
31
32    $Id: asmpart.h 1072 2004-05-19 17:20:12Z stefan $
33
34 */
35
36
37 #ifndef _ASMPART_H
38 #define _ASMPART_H
39
40 #include "global.h"
41 #include "jni.h"
42 #include "threads/thread.h"
43
44 /* 
45    determines if the byte support instruction set (21164a and higher)
46    is available.
47 */
48 int has_no_x_instr_set();
49
50 void synchronize_caches();
51
52
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();
59
60
61 /* 
62    This function calls a Java-method (which possibly needs compilation)
63    with up to 4 parameters. This function calls a Java-method (which
64    possibly needs compilation) with up to 4 parameters.
65 */
66
67 /* 
68    This function calls a Java-method (which possibly needs compilation)
69    with up to 4 parameters. This function calls a Java-method (which
70    possibly needs compilation) with up to 4 parameters. 
71    also supports a return value
72 */
73 java_objectheader *asm_calljavafunction(methodinfo *m, void *arg1, void *arg2,
74                                         void *arg3, void *arg4);
75 java_objectheader *asm_calljavafunction2(methodinfo *m, u4 count, u4 size, void *callblock);
76 jdouble asm_calljavafunction2double(methodinfo *m, u4 count, u4 size, void *callblock);
77 jlong asm_calljavafunction2long(methodinfo *m, u4 count, u4 size, void *callblock);
78
79
80
81 void asm_handle_exception();
82 void asm_handle_nat_exception();
83
84 void asm_check_clinit();
85
86 void asm_handle_builtin_exception(classinfo *);
87
88 java_objectarray* Java_java_lang_VMSecurityManager_getClassContext(JNIEnv *env, jclass clazz);
89 stacktraceelement *asm_get_stackTrace();
90
91 /*java_lang_ClassLoader* Java_java_lang_VMSecurityManager_currentClassLoader(JNIEnv *env, jclass clazz);*/
92
93 void *asm_switchstackandcall(void *stack, void *func, void **stacktopsave, void * p);
94
95 void asm_builtin_trace();
96 void asm_builtin_exittrace();
97
98 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
99 extern threadcritnode *asm_criticalsections;
100 #endif
101 void asm_getclassvalues_atomic(vftbl *super, vftbl *sub, castinfo *out);
102
103 #endif /* _ASMPART_H */
104
105
106 /*
107  * These are local overrides for various environment variables in Emacs.
108  * Please do not remove this and leave it at the end of the file, where
109  * Emacs will automagically detect them.
110  * ---------------------------------------------------------------------
111  * Local variables:
112  * mode: c
113  * indent-tabs-mode: t
114  * c-basic-offset: 4
115  * tab-width: 4
116  * End:
117  */