* Added interpreter stuff.
[cacao.git] / src / vm / jit / stacktrace.h
1 /* src/vm/jit/stacktrace.h - header file for stacktrace generation
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31    $Id: stacktrace.h 3244 2005-09-21 14:58:47Z twisti $
32
33 */
34
35
36 #ifndef _STACKTRACE_H
37 #define _STACKTRACE_H
38
39 /* forward typedefs ***********************************************************/
40
41 typedef struct exceptionentry exceptionentry;
42 typedef struct stackframeinfo stackframeinfo;
43 typedef struct stackTraceBuffer stackTraceBuffer;
44 typedef struct stacktraceelement stacktraceelement;
45
46 #include "config.h"
47 #include "vm/types.h"
48
49 #include "vm/method.h"
50
51
52 /* exceptionentry **************************************************************
53
54    Datastructure which represents an exception entry in the exception
55    table residing in the data segment.
56
57 *******************************************************************************/
58
59 struct exceptionentry {
60         classinfo *catchtype;
61         void      *handlerpc;
62         void      *endpc;
63         void      *startpc;
64 };
65
66
67 /* stackframeinfo **************************************************************
68
69    ATTENTION: Keep the number of elements of this structure even, to
70    make sure that the stack keeps aligned (e.g. 16-bytes for x86_64).
71
72 *******************************************************************************/
73
74 struct stackframeinfo {
75         stackframeinfo *prev;               /* pointer to prev stackframeinfo     */
76         methodinfo     *method;             /* methodinfo of current function     */
77         u1             *pv;                 /* PV of current function             */
78         u1             *sp;                 /* SP of parent Java function         */
79         functionptr     ra;                 /* RA to parent Java function         */
80         functionptr     xpc;                /* XPC (for inline stubs)             */
81 };
82
83
84 struct stacktraceelement {
85 #if SIZEOF_VOID_P == 8
86         u8          linenumber;
87 #else
88         u4          linenumber;
89 #endif
90         methodinfo *method;
91 };
92
93
94 struct stackTraceBuffer {
95         s4                 needsFree;
96         stacktraceelement *start;
97         s4                 size;
98         s4                 full;
99 };
100
101
102 /* function prototypes ********************************************************/
103
104 #if defined(ENABLE_INTRP)
105 void stacktrace_create_stackframeinfo(stackframeinfo *sfi, u1 *pv,
106                                                                           u1 *sp, functionptr ra);
107 #endif
108
109 void stacktrace_create_inline_stackframeinfo(stackframeinfo *sfi, u1 *pv,
110                                                                                          u1 *sp, functionptr ra,
111                                                                                          functionptr xpc);
112
113 void stacktrace_create_extern_stackframeinfo(stackframeinfo *sfi, u1 *pv,
114                                                                                          u1 *sp, functionptr ra,
115                                                                                          functionptr xpc);
116
117 void stacktrace_create_native_stackframeinfo(stackframeinfo *sfi, u1 *pv,
118                                                                                          u1 *sp, functionptr ra);
119
120 void stacktrace_remove_stackframeinfo(stackframeinfo *sfi);
121
122 /* inline exception creating functions */
123 java_objectheader *stacktrace_inline_arithmeticexception(u1 *pv, u1 *sp,
124                                                                                                                  functionptr ra,
125                                                                                                                  functionptr xpc);
126
127 java_objectheader *stacktrace_inline_arrayindexoutofboundsexception(u1 *pv,
128                                                                                                                                         u1 *sp,
129                                                                                                                                         functionptr ra,
130                                                                                                                                         functionptr xpc,
131                                                                                                                                         s4 index);
132
133 java_objectheader *stacktrace_inline_arraystoreexception(u1 *pv, u1 *sp,
134                                                                                                                  functionptr ra,
135                                                                                                                  functionptr xpc);
136
137 java_objectheader *stacktrace_inline_classcastexception(u1 *pv, u1 *sp,
138                                                                                                                 functionptr ra,
139                                                                                                                 functionptr xpc);
140
141 java_objectheader *stacktrace_inline_negativearraysizeexception(u1 *pv, u1 *sp,
142                                                                                                                                 functionptr ra,
143                                                                                                                                 functionptr xpc);
144
145 java_objectheader *stacktrace_inline_nullpointerexception(u1 *pv, u1 *sp,
146                                                                                                                   functionptr ra,
147                                                                                                                   functionptr xpc);
148
149
150 /* hardware exception creating functions */
151 java_objectheader *stacktrace_hardware_arithmeticexception(u1 *pv, u1 *sp,
152                                                                                                                    functionptr ra,
153                                                                                                                    functionptr xpc);
154
155 java_objectheader *stacktrace_hardware_nullpointerexception(u1 *pv, u1 *sp,
156                                                                                                                         functionptr ra,
157                                                                                                                         functionptr xpc);
158
159 /* refill the stacktrace of an existing exception */
160 java_objectheader *stacktrace_inline_fillInStackTrace(u1 *pv, u1 *sp,
161                                                                                                           functionptr ra,
162                                                                                                           functionptr xpc);
163
164 bool cacao_stacktrace_NormalTrace(void **target);
165 java_objectarray *cacao_createClassContextArray(void);
166 java_objectheader *cacao_currentClassLoader(void);
167 methodinfo* cacao_callingMethod(void);
168 java_objectarray *cacao_getStackForVMAccessController(void);
169 void stacktrace_dump_trace(void);
170
171 /* machine dependent functions (code in ARCH_DIR/md.c) */
172 functionptr md_stacktrace_get_returnaddress(u1 *sp, u4 framesize);
173
174 #endif /* _STACKTRACE_H */
175
176
177 /*
178  * These are local overrides for various environment variables in Emacs.
179  * Please do not remove this and leave it at the end of the file, where
180  * Emacs will automagically detect them.
181  * ---------------------------------------------------------------------
182  * Local variables:
183  * mode: c
184  * indent-tabs-mode: t
185  * c-basic-offset: 4
186  * tab-width: 4
187  * End:
188  */