blob: 6c3103ce05682d0eed6f003dadfed5bb18f58288 (
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
|
// java-stack.h - Definitions for unwinding & inspecting the call stack.
/* Copyright (C) 2003 Free Software Foundation
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. */
#ifndef __JV_STACKTRACE_H__
#define __JV_STACKTRACE_H__
#include <unwind.h>
#include <gcj/cni.h>
#include <gcj/javaprims.h>
#include <java-interp.h>
#include <java/lang/Class.h>
#include <java/lang/StackTraceElement.h>
#include <java/lang/Throwable.h>
#include <gnu/gcj/runtime/NameFinder.h>
using namespace gnu::gcj::runtime;
enum _Jv_FrameType
{
frame_native,
frame_interpreter
};
#ifdef INTERPRETER
struct _Jv_InterpFrameInfo
{
_Jv_InterpMethod *meth;
pc_t pc;
};
#endif
union _Jv_FrameInfo
{
};
struct _Jv_StackFrame
{
_Jv_FrameType type; /* Native or interpreted. */
union {
#ifdef INTERPRETER
_Jv_InterpFrameInfo interp;
#endif
void *ip;
};
// _Jv_FrameInfo info; /* Frame-type specific data. */
jclass klass;
_Jv_Method *meth;
};
class _Jv_StackTrace
{
private:
int length;
_Jv_StackFrame frames[];
static void UpdateNCodeMap ();
static jclass ClassForIP (void *ip, void **ncode);
static void FillInFrameInfo (_Jv_StackFrame *frame);
static void getLineNumberForFrame(_Jv_StackFrame *frame, NameFinder *finder,
jstring *sourceFileName, jint *lineNum);
static _Unwind_Reason_Code UnwindTraceFn (struct _Unwind_Context *context,
void *state_ptr);
public:
static _Jv_StackTrace *GetStackTrace (void);
static JArray< ::java::lang::StackTraceElement *>*
GetStackTraceElements (_Jv_StackTrace *trace,
java::lang::Throwable *throwable);
static jclass GetCallingClass (void);
};
#endif /* __JV_STACKTRACE_H__ */
|