* Removed all Id tags.
[cacao.git] / src / vm / jit / stacktrace.h
1 /* src/vm/jit/stacktrace.h - header file for stacktrace generation
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 */
26
27
28 #ifndef _STACKTRACE_H
29 #define _STACKTRACE_H
30
31 /* forward typedefs ***********************************************************/
32
33 typedef struct stackframeinfo stackframeinfo;
34 typedef struct stacktracebuffer stacktracebuffer;
35 typedef struct stacktrace_entry stacktrace_entry;
36
37 #include "config.h"
38 #include "vm/types.h"
39
40 #include "vmcore/class.h"
41 #include "vmcore/method.h"
42
43
44 /* stackframeinfo **************************************************************
45
46    ATTENTION: Keep the number of elements of this structure even, to
47    make sure that the stack keeps aligned (e.g. 16-bytes for x86_64).
48
49 *******************************************************************************/
50
51 struct stackframeinfo {
52         stackframeinfo *prev;               /* pointer to prev stackframeinfo     */
53         methodinfo     *method;             /* methodinfo of current function     */
54         u1             *pv;                 /* PV of current function             */
55         u1             *sp;                 /* SP of parent Java function         */
56         u1             *ra;                 /* RA to parent Java function         */
57         u1             *xpc;                /* XPC (for inline stubs)             */
58 };
59
60
61 /* stacktrace_entry ***********************************************************/
62
63 struct stacktrace_entry {
64 #if SIZEOF_VOID_P == 8
65         u8          linenumber;
66 #else
67         u4          linenumber;
68 #endif
69         methodinfo *method;
70 };
71
72
73 /* stacktracebuffer ***********************************************************/
74
75 #define STACKTRACE_CAPACITY_DEFAULT      80
76 #define STACKTRACE_CAPACITY_INCREMENT    80
77
78 struct stacktracebuffer {
79         s4                capacity;         /* size of the buffer                 */
80         s4                used;             /* current entries in the buffer      */
81         stacktrace_entry *entries;          /* the actual entries                 */
82 };
83
84
85 /* stacktracecontainer ********************************************************
86
87    ATTENTION: Use the stacktracecontainer to place a stacktrace onto the heap
88    with stacktrace_fillInStackTrace() so that the GC does not get confused.
89
90 *******************************************************************************/
91
92 typedef struct stacktracecontainer {
93         java_array_t            header;     /* default array header for the GC    */
94         struct stacktracebuffer stb;        /* let entries point to data below    */
95         stacktrace_entry        data[1];    /* the actual array of entries        */
96 } stacktracecontainer;
97
98
99 /* function prototypes ********************************************************/
100
101 #if defined(ENABLE_INTRP)
102 void stacktrace_create_stackframeinfo(stackframeinfo *sfi, u1 *pv, u1 *sp,
103                                                                           u1 *ra);
104 #endif
105
106 void stacktrace_create_extern_stackframeinfo(stackframeinfo *sfi, u1 *pv,
107                                                                                          u1 *sp, u1 *ra, u1 *xpc);
108
109 void stacktrace_create_native_stackframeinfo(stackframeinfo *sfi, u1 *pv,
110                                                                                          u1 *sp, u1 *ra);
111
112 void stacktrace_remove_stackframeinfo(stackframeinfo *sfi);
113
114
115 stacktracebuffer *stacktrace_create(stackframeinfo *sfi);
116
117 stacktracecontainer *stacktrace_fillInStackTrace(void);
118
119 #if defined(ENABLE_JAVASE)
120 java_handle_objectarray_t *stacktrace_getClassContext(void);
121 classinfo                 *stacktrace_getCurrentClass(void);
122 java_handle_objectarray_t *stacktrace_getStack(void);
123 #endif
124
125 void stacktrace_print_trace_from_buffer(stacktracebuffer *stb);
126 void stacktrace_print_trace(java_handle_t *xptr);
127
128 /* machine dependent functions (code in ARCH_DIR/md.c) */
129
130 #if defined(ENABLE_JIT)
131 u1 *md_stacktrace_get_returnaddress(u1 *sp, u4 framesize);
132 # if defined(__SPARC_64__)
133 u1 *md_get_framepointer(u1 *sp);
134 u1 *md_get_pv_from_stackframe(u1 *sp);
135 # endif
136 #endif
137
138 #if defined(ENABLE_INTRP)
139 u1 *intrp_md_stacktrace_get_returnaddress(u1 *sp, u4 framesize);
140 #endif
141
142 #if defined(ENABLE_CYCLES_STATS)
143 void stacktrace_print_cycles_stats(FILE *file);
144 #endif
145
146 #endif /* _STACKTRACE_H */
147
148
149 /*
150  * These are local overrides for various environment variables in Emacs.
151  * Please do not remove this and leave it at the end of the file, where
152  * Emacs will automagically detect them.
153  * ---------------------------------------------------------------------
154  * Local variables:
155  * mode: c
156  * indent-tabs-mode: t
157  * c-basic-offset: 4
158  * tab-width: 4
159  * End:
160  */