blob: fbe403a17efea64378cdb170f8bb7fafb286097e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
|
// natStackTrace.cc - native helper methods for Throwable
/* Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
/**
* @author Andrew Haley <aph@cygnus.com>
* @author Mark Wielaard <mark@klomp.org>
*
* Native helper methods for VM specific Throwable support.
*/
#include <config.h>
#include <platform.h>
#include <string.h>
#include <jvm.h>
#include <gcj/cni.h>
#include <gnu/gcj/RawData.h>
#include <java/lang/Object.h>
#include <java-threads.h>
#include <gnu/gcj/runtime/MethodRef.h>
#include <gnu/gcj/runtime/StackTrace.h>
#include <java/lang/Thread.h>
#include <java-interp.h>
#include <java/util/IdentityHashMap.h>
#include <java/lang/ArrayIndexOutOfBoundsException.h>
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef HAVE_EXECINFO_H
#include <execinfo.h>
#endif
#include <unwind.h>
#ifdef INTERPRETER
extern "C" void *_Unwind_FindEnclosingFunction (void *pc)
__attribute__((pure));
#endif // INTERPRETER
// Fill in this stack trace with MAXLEN elements starting at offset.
void
gnu::gcj::runtime::StackTrace::fillInStackTrace (jint maxlen, jint offset)
{
#ifdef HAVE_BACKTRACE
offset += 1;
void *_p[maxlen + offset];
len = backtrace (_p, maxlen + offset) - offset;
void **p = _p + offset;
_Jv_frame_info *frame;
if (len > 0)
{
#ifdef INTERPRETER
extern void *const _Jv_StartOfInterpreter;
extern void * _Jv_EndOfInterpreter;
java::lang::Thread *thread = java::lang::Thread::currentThread();
_Jv_MethodChain *interp_frame
= (thread ? reinterpret_cast<_Jv_MethodChain *> (thread->interp_frame)
: NULL);
#endif // INTERPRETER
frame = (_Jv_frame_info *) _Jv_Malloc (len * sizeof (_Jv_frame_info));
for (int n = 0; n < len; n++)
{
void *pc = p[n];
frame[n].addr = pc;
#ifdef INTERPRETER
frame[n].interp = 0;
// If _Jv_StartOfInterpreter is NULL either we've never
// entered the intepreter or _Unwind_FindEnclosingFunction
// is broken.
if (__builtin_expect (_Jv_StartOfInterpreter != NULL, false))
{
// _Jv_StartOfInterpreter marks the very first
// instruction in the interpreter, but
// _Jv_EndOfInterpreter is an upper bound. If PC is
// less than _Jv_EndOfInterpreter it might be in the
// interpreter: we call _Unwind_FindEnclosingFunction to
// find out.
if ((_Jv_EndOfInterpreter == NULL || pc < _Jv_EndOfInterpreter)
&& (_Unwind_FindEnclosingFunction (pc)
== _Jv_StartOfInterpreter))
{
frame[n].interp = (void *) interp_frame->self;
interp_frame = interp_frame->next;
}
else
{
// We've found an address that we know is not within
// the interpreter. We use that to refine our upper
// bound on where the interpreter ends.
if (_Jv_EndOfInterpreter == NULL || pc < _Jv_EndOfInterpreter)
_Jv_EndOfInterpreter = pc;
}
}
#endif // INTERPRETER
}
}
else
frame = NULL;
addrs = reinterpret_cast<gnu::gcj::RawData *> (frame);
#else // HAVE_BACKTRACE
(void)maxlen;
(void)offset;
#endif // HAVE_BACKTRACE
}
/* Obtain the next power-of-2 of some integer. */
static inline jint
nextpowerof2 (jint n)
{
n |= (n >> 1);
n |= (n >> 2);
n |= (n >> 4);
n |= (n >> 8);
n |= (n >> 16);
return n+1;
}
#define GET_FRAME(N) \
({ \
if ((N) >= len) \
fillInStackTrace (nextpowerof2 (N), 1); \
if ((N) < 0 || (N) >= len) \
throw new ::java::lang::ArrayIndexOutOfBoundsException (); \
\
_Jv_frame_info *frame = (_Jv_frame_info *)addrs; \
&frame[N]; \
})
gnu::gcj::runtime::MethodRef *
gnu::gcj::runtime::StackTrace::getCompiledMethodRef (gnu::gcj::RawData *addr)
{
void *p = _Unwind_FindEnclosingFunction (addr);
return gnu::gcj::runtime::StackTrace
::methodAtAddress ((gnu::gcj::RawData *)p);
}
java::lang::Class *
gnu::gcj::runtime::StackTrace::getClass (gnu::gcj::RawData *p)
{
gnu::gcj::runtime::MethodRef *ref = getCompiledMethodRef (p);
if (ref)
return ref->klass;
else
return NULL;
}
java::lang::Class *
gnu::gcj::runtime::StackTrace::classAt (jint n)
{
_Jv_frame_info *frame = GET_FRAME (n);
#ifdef INTERPRETER
if (frame->interp)
{
_Jv_InterpMethod *meth
= reinterpret_cast<_Jv_InterpMethod *> (frame->interp);
return meth->defining_class;
}
#endif // INTERPRETER
return getClass ((gnu::gcj::RawData *)frame->addr);
}
java::lang::String*
gnu::gcj::runtime::StackTrace::methodAt (jint n)
{
_Jv_frame_info *frame = GET_FRAME (n);
_Jv_Method *meth = NULL;
#ifdef INTERPRETER
if (frame->interp)
{
meth
= reinterpret_cast<_Jv_InterpMethod *> (frame->interp)
->get_method();
}
#endif // INTERPRETER
if (! meth)
{
gnu::gcj::runtime::MethodRef *ref
= getCompiledMethodRef ((gnu::gcj::RawData *)frame->addr);
if (ref)
meth = (_Jv_Method *)ref->method;
}
return meth
? _Jv_NewStringUtf8Const (meth->name)
: NULL ;
}
void
gnu::gcj::runtime::StackTrace::update(void)
{
jclass klass;
while ((klass = _Jv_PopClass ()))
{
for (int i=0; i<klass->method_count; i++)
{
JvSynchronize sync (map);
_Jv_Method *meth = &(klass->methods[i]);
if (meth->ncode) // i.e. if p is not abstract
{
gnu::gcj::runtime::MethodRef *ref
= new gnu::gcj::runtime::MethodRef
((gnu::gcj::RawData *)meth, klass);
map->put ((java::lang::Object*)(meth->ncode), ref);
}
}
}
}
void
gnu::gcj::runtime::StackTrace::finalize(void)
{
if (addrs != NULL)
_Jv_Free (addrs);
}
|