2004-11-25 04:47:08 +01:00
|
|
|
// java-stack.h - Definitions for unwinding & inspecting the call stack.
|
|
|
|
|
2006-06-29 16:57:39 +02:00
|
|
|
/* Copyright (C) 2005, 2006 Free Software Foundation
|
2004-11-25 04:47:08 +01:00
|
|
|
|
|
|
|
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__
|
|
|
|
|
2006-06-29 16:57:39 +02:00
|
|
|
#include <stdlib.h>
|
2004-11-25 04:47:08 +01:00
|
|
|
#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>
|
2005-03-10 20:02:21 +01:00
|
|
|
#include <java/lang/Thread.h>
|
2006-10-28 04:15:12 +02:00
|
|
|
#include <java/util/IdentityHashMap.h>
|
2004-11-25 04:47:08 +01:00
|
|
|
|
|
|
|
#include <gnu/gcj/runtime/NameFinder.h>
|
|
|
|
|
|
|
|
using namespace gnu::gcj::runtime;
|
2005-03-10 20:02:21 +01:00
|
|
|
using namespace java::lang;
|
2004-11-25 04:47:08 +01:00
|
|
|
|
2007-01-09 20:58:05 +01:00
|
|
|
extern "Java"
|
|
|
|
{
|
|
|
|
namespace gnu
|
|
|
|
{
|
|
|
|
namespace classpath
|
|
|
|
{
|
|
|
|
class VMStackWalker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-25 04:47:08 +01:00
|
|
|
#ifdef INTERPRETER
|
|
|
|
struct _Jv_InterpFrameInfo
|
|
|
|
{
|
|
|
|
_Jv_InterpMethod *meth;
|
|
|
|
pc_t pc;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct _Jv_StackFrame
|
|
|
|
{
|
|
|
|
_Jv_FrameType type; /* Native or interpreted. */
|
|
|
|
union {
|
|
|
|
#ifdef INTERPRETER
|
|
|
|
_Jv_InterpFrameInfo interp;
|
|
|
|
#endif
|
2007-01-09 20:58:05 +01:00
|
|
|
struct {
|
|
|
|
jclass proxyClass;
|
|
|
|
_Jv_Method *proxyMethod;
|
|
|
|
};
|
2005-03-10 20:02:21 +01:00
|
|
|
struct {
|
|
|
|
void *ip;
|
|
|
|
void *start_ip;
|
|
|
|
};
|
2004-11-25 04:47:08 +01:00
|
|
|
};
|
|
|
|
jclass klass;
|
|
|
|
_Jv_Method *meth;
|
|
|
|
};
|
|
|
|
|
2007-05-17 05:53:45 +02:00
|
|
|
struct _Jv_UnwindState;
|
2005-03-10 20:02:21 +01:00
|
|
|
typedef _Unwind_Reason_Code (*_Jv_TraceFn) (_Jv_UnwindState *);
|
|
|
|
|
|
|
|
struct _Jv_UnwindState
|
|
|
|
{
|
|
|
|
jint length; // length of FRAMES
|
|
|
|
jint pos; // current position in FRAMES
|
|
|
|
_Jv_StackFrame *frames; // array of stack frame data to be filled.
|
2005-03-16 19:18:59 +01:00
|
|
|
#ifdef INTERPRETER
|
2005-03-10 20:02:21 +01:00
|
|
|
_Jv_InterpFrame *interp_frame; // current frame in the interpreter stack.
|
2005-03-16 19:18:59 +01:00
|
|
|
#endif
|
2005-03-10 20:02:21 +01:00
|
|
|
_Jv_TraceFn trace_function; // function to call back after each frame
|
|
|
|
// is enumerated. May be NULL.
|
|
|
|
void *trace_data; // additional state data for trace_function.
|
|
|
|
|
|
|
|
_Jv_UnwindState (jint ln)
|
|
|
|
{
|
|
|
|
length = ln;
|
|
|
|
pos = 0;
|
|
|
|
frames = NULL;
|
2007-01-09 20:58:05 +01:00
|
|
|
#ifdef INTERPRETER
|
2005-03-10 20:02:21 +01:00
|
|
|
Thread *thread = Thread::currentThread();
|
|
|
|
// Check for NULL currentThread(), in case an exception is created
|
|
|
|
// very early during the runtime startup.
|
|
|
|
if (thread)
|
|
|
|
interp_frame = (_Jv_InterpFrame *) thread->interp_frame;
|
2007-01-09 20:58:05 +01:00
|
|
|
else
|
|
|
|
interp_frame = NULL;
|
2005-03-16 19:18:59 +01:00
|
|
|
#endif
|
2005-03-10 20:02:21 +01:00
|
|
|
trace_function = NULL;
|
|
|
|
trace_data = NULL;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2004-11-25 04:47:08 +01:00
|
|
|
class _Jv_StackTrace
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
int length;
|
|
|
|
_Jv_StackFrame frames[];
|
|
|
|
|
2006-10-28 04:15:12 +02:00
|
|
|
static java::util::IdentityHashMap *ncodeMap;
|
2004-11-25 04:47:08 +01:00
|
|
|
static void UpdateNCodeMap ();
|
2005-03-10 20:02:21 +01:00
|
|
|
static jclass ClassForFrame (_Jv_StackFrame *frame);
|
2004-11-25 04:47:08 +01:00
|
|
|
static void FillInFrameInfo (_Jv_StackFrame *frame);
|
|
|
|
static void getLineNumberForFrame(_Jv_StackFrame *frame, NameFinder *finder,
|
2006-02-17 14:01:40 +01:00
|
|
|
jstring *sourceFileName, jint *lineNum,
|
|
|
|
jstring *methodName);
|
2004-11-25 04:47:08 +01:00
|
|
|
|
|
|
|
static _Unwind_Reason_Code UnwindTraceFn (struct _Unwind_Context *context,
|
|
|
|
void *state_ptr);
|
2005-03-10 20:02:21 +01:00
|
|
|
|
|
|
|
static _Unwind_Reason_Code calling_class_trace_fn (_Jv_UnwindState *state);
|
|
|
|
static _Unwind_Reason_Code non_system_trace_fn (_Jv_UnwindState *state);
|
2006-08-09 10:38:28 +02:00
|
|
|
static _Unwind_Reason_Code accesscontrol_trace_fn (_Jv_UnwindState *state);
|
2007-01-09 20:58:05 +01:00
|
|
|
static _Unwind_Reason_Code stackwalker_trace_fn (_Jv_UnwindState *state);
|
|
|
|
static _Unwind_Reason_Code stackwalker_nnl_trace_fn (_Jv_UnwindState *state);
|
2004-11-25 04:47:08 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
static _Jv_StackTrace *GetStackTrace (void);
|
|
|
|
static JArray< ::java::lang::StackTraceElement *>*
|
|
|
|
GetStackTraceElements (_Jv_StackTrace *trace,
|
|
|
|
java::lang::Throwable *throwable);
|
2005-03-10 20:02:21 +01:00
|
|
|
static jclass GetCallingClass (jclass);
|
|
|
|
static void GetCallerInfo (jclass checkClass, jclass *, _Jv_Method **);
|
|
|
|
static ClassLoader *GetFirstNonSystemClassLoader (void);
|
2006-08-10 11:56:03 +02:00
|
|
|
static jobjectArray GetAccessControlStack ();
|
2007-01-09 20:58:05 +01:00
|
|
|
static JArray<jclass> *GetStackWalkerStack ();
|
|
|
|
static jclass GetStackWalkerCallingClass ();
|
|
|
|
static ClassLoader *GetStackWalkerFirstNonNullLoader ();
|
2006-10-28 04:15:12 +02:00
|
|
|
|
|
|
|
friend jclass _Jv_GetMethodDeclaringClass (jmethodID);
|
2007-01-09 20:58:05 +01:00
|
|
|
friend class gnu::classpath::VMStackWalker;
|
2004-11-25 04:47:08 +01:00
|
|
|
};
|
|
|
|
|
2006-06-29 16:57:39 +02:00
|
|
|
// Information about a given address.
|
|
|
|
struct _Jv_AddrInfo
|
|
|
|
{
|
|
|
|
// File name of the defining module.
|
|
|
|
const char *file_name;
|
|
|
|
|
|
|
|
// Base address of the loaded module.
|
|
|
|
void *base;
|
|
|
|
|
|
|
|
// Name of the nearest symbol.
|
|
|
|
const char *sym_name;
|
|
|
|
|
|
|
|
// Address of the nearest symbol.
|
|
|
|
void *sym_addr;
|
|
|
|
|
|
|
|
~_Jv_AddrInfo (void)
|
|
|
|
{
|
|
|
|
// On systems with a real dladdr(), the file and symbol names given by
|
|
|
|
// _Jv_platform_dladdr() are not dynamically allocated. On Windows,
|
|
|
|
// they are.
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
if (file_name)
|
|
|
|
free ((void *)file_name);
|
|
|
|
|
|
|
|
if (sym_name)
|
|
|
|
free ((void *)sym_name);
|
|
|
|
#endif /* WIN32 */
|
|
|
|
}
|
|
|
|
};
|
2005-03-10 20:02:21 +01:00
|
|
|
|
2004-11-25 04:47:08 +01:00
|
|
|
#endif /* __JV_STACKTRACE_H__ */
|