* src/vm/exceptions.h (EXCEPTION_LOAD_DISP_NULLPOINTER)
[cacao.git] / src / vm / exceptions.h
1 /* src/vm/exceptions.h - exception related functions prototypes
2
3    Copyright (C) 1996-2005, 2006 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    Contact: cacao@cacaojvm.org
26
27    Authors: Christian Thalinger
28
29    Changes: Edwin Steiner
30
31    $Id: exceptions.h 6123 2006-12-05 21:10:54Z twisti $
32
33 */
34
35
36 #ifndef _EXCEPTIONS_H
37 #define _EXCEPTIONS_H
38
39 /* forward typedefs ***********************************************************/
40
41 #include "config.h"
42 #include "vm/types.h"
43
44 #include "vm/global.h"
45 #include "native/include/java_lang_String.h"
46 #include "native/include/java_lang_Throwable.h"
47 #include "vm/builtin.h"
48 #include "vm/references.h"
49 #include "vm/method.h"
50
51
52 /* hardware-exception defines **************************************************
53
54    These defines define the load-offset which indicates the given
55    exception.
56
57    ATTENTION: These offsets need NOT to be aligned to 4 or 8-byte
58    boundaries, since normal loads could have such offsets with a base
59    of NULL which should result in a NullPointerException.
60
61 *******************************************************************************/
62
63 #define EXCEPTION_LOAD_DISP_NULLPOINTER              0
64 #define EXCEPTION_LOAD_DISP_ARITHMETIC               1
65 #define EXCEPTION_LOAD_DISP_ARRAYINDEXOUTOFBOUNDS    2
66 #define EXCEPTION_LOAD_DISP_CLASSCAST                3
67
68 #define EXCEPTION_LOAD_DISP_PATCHER                  5
69
70
71 /* exception pointer **********************************************************/
72
73 #if defined(ENABLE_THREADS)
74 #define exceptionptr    &(THREADOBJECT->_exceptionptr)
75 #else
76 #define exceptionptr    &_no_threads_exceptionptr
77 #endif
78
79 #if !defined(ENABLE_THREADS)
80 extern java_objectheader *_no_threads_exceptionptr;
81 #endif
82
83
84 /* function prototypes ********************************************************/
85
86 /* load and link exceptions used in the system */
87 bool exceptions_init(void);
88
89
90 /* exception throwing functions */
91
92 void throw_exception(void);
93 void throw_exception_exit(void);
94
95 void throw_main_exception(void);
96 void throw_main_exception_exit(void);
97
98 void throw_cacao_exception_exit(const char *exception,
99                                                                 const char *message, ...);
100
101 void exceptions_throw_outofmemory_exit(void);
102
103
104 /* initialize new exceptions */
105
106 java_objectheader *new_exception(const char *classname);
107
108 java_objectheader *new_exception_message(const char *classname,
109                                                                                  const char *message);
110
111 java_objectheader *new_exception_throwable(const char *classname,
112                                                                                    java_lang_Throwable *cause);
113
114 java_objectheader *new_exception_utfmessage(const char *classname,
115                                                                                         utf *message);
116
117 java_objectheader *new_exception_javastring(const char *classname,
118                                                                                         java_lang_String *message);
119
120 java_objectheader *new_exception_int(const char *classname, s4 i);
121
122
123 /* functions to generate compiler exceptions */
124
125 java_objectheader *exceptions_new_abstractmethoderror(void);
126 java_objectheader *exceptions_asm_new_abstractmethoderror(u1 *sp, u1 *ra);
127 void exceptions_throw_abstractmethoderror(void);
128
129 java_objectheader *new_classformaterror(classinfo *c, const char *message, ...);
130 void exceptions_throw_classformaterror(classinfo *c, const char *message, ...);
131
132 java_objectheader *new_classnotfoundexception(utf *name);
133 java_objectheader *new_noclassdeffounderror(utf *name);
134 java_objectheader *exceptions_new_linkageerror(const char *message,classinfo *c);
135 java_objectheader *exceptions_new_nosuchmethoderror(classinfo *c,
136                                                                                                         utf *name, utf *desc);
137 void exceptions_throw_nosuchmethoderror(classinfo *c, utf *name, utf *desc);
138
139 java_objectheader *new_internalerror(const char *message, ...);
140
141 java_objectheader *exceptions_new_verifyerror(methodinfo *m,
142                                                                                           const char *message, ...);
143 void exceptions_throw_verifyerror(methodinfo *m, const char *message, ...);
144 void exceptions_throw_verifyerror_for_stack(methodinfo *m, int type);
145
146 java_objectheader *new_unsupportedclassversionerror(classinfo *c,
147                                                                                                         const char *message, ...);
148
149 java_objectheader *new_arithmeticexception(void);
150
151 java_objectheader *new_arrayindexoutofboundsexception(s4 index);
152 void exceptions_throw_arrayindexoutofboundsexception(void);
153
154 java_objectheader *exceptions_new_arraystoreexception(void);
155 void exceptions_throw_arraystoreexception(void);
156
157 java_objectheader *exceptions_new_classcastexception(java_objectheader *o);
158
159 java_objectheader *new_illegalargumentexception(void);
160 void exceptions_throw_illegalargumentexception(void);
161
162 java_objectheader *exceptions_new_illegalmonitorstateexception(void);
163 void               exceptions_throw_illegalmonitorstateexception(void);
164
165 java_objectheader *new_negativearraysizeexception(void);
166 void exceptions_throw_negativearraysizeexception(void);
167
168 java_objectheader *exceptions_new_nullpointerexception(void);
169 void exceptions_throw_nullpointerexception(void);
170
171 java_objectheader *exceptions_new_stringindexoutofboundsexception(void);
172 void exceptions_throw_stringindexoutofboundsexception(void);
173
174 void classnotfoundexception_to_noclassdeffounderror(void);
175
176 java_objectheader *exceptions_get_and_clear_exception(void);
177
178 void exceptions_print_exception(java_objectheader *xptr);
179
180 #endif /* _EXCEPTIONS_H */
181
182
183 /*
184  * These are local overrides for various environment variables in Emacs.
185  * Please do not remove this and leave it at the end of the file, where
186  * Emacs will automagically detect them.
187  * ---------------------------------------------------------------------
188  * Local variables:
189  * mode: c
190  * indent-tabs-mode: t
191  * c-basic-offset: 4
192  * tab-width: 4
193  * End:
194  * vim:noexpandtab:sw=4:ts=4:
195  */