java-interp.h: Added _Jv_Frame class and its two subclasses _Jv_InterpFrame and _Jv_NativeFrame.
2007-01-29 Kyle Galloway <kgallowa@redhat.com> * include/java-interp.h: Added _Jv_Frame class and its two subclasses _Jv_InterpFrame and _Jv_NativeFrame. Also moved _Jv_FrameType from java-stack.h. * include/java-stack.h: Removed _Jv_FrameType. * java/lang/Thread.java: Added frame member to hold new composite frame stack. * java/lang/Thread.h: Regenerated. * java/lang/Thread.class: Rebuilt. * jni.cc (_Jv_JNIMethod::call): Push a frame onto the stack when calling a JNI method. * jvmti.cc (_Jv_JVMTI_GetStackTrace): New Method. (_Jv_JVMTI_GetFrameCount): New method. * stacktrace.cc (UnwindTraceFn): Modified to use new _Jv_Frame classes. * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test. * testsuite/libjava.jvmti/interp/natgetstacktrace.cc: New test. * testsuite/libjava.jvmti/interp/getstacktrace.h: New test. * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test. * testsuite/libjava.jvmti/interp/getstacktrace.out: Output file for test. From-SVN: r121314
This commit is contained in:
parent
d75bf84344
commit
3927313117
15 changed files with 537 additions and 27 deletions
|
@ -131,9 +131,11 @@ _Jv_StackTrace::UnwindTraceFn (struct _Unwind_Context *context, void *state_ptr)
|
|||
if (func_addr == UNWRAP_FUNCTION_DESCRIPTOR (interp_run))
|
||||
{
|
||||
state->frames[pos].type = frame_interpreter;
|
||||
state->frames[pos].interp.meth = state->interp_frame->self;
|
||||
_Jv_Frame *frame = static_cast<_Jv_Frame *> (state->interp_frame);
|
||||
state->frames[pos].interp.meth
|
||||
= static_cast<_Jv_InterpMethod *> (frame->self);
|
||||
state->frames[pos].interp.pc = state->interp_frame->pc;
|
||||
state->interp_frame = state->interp_frame->next;
|
||||
state->interp_frame = state->interp_frame->next_interp;
|
||||
}
|
||||
else
|
||||
#endif
|
||||
|
@ -143,7 +145,7 @@ _Jv_StackTrace::UnwindTraceFn (struct _Unwind_Context *context, void *state_ptr)
|
|||
state->frames[pos].type = frame_proxy;
|
||||
state->frames[pos].proxyClass = state->interp_frame->proxyClass;
|
||||
state->frames[pos].proxyMethod = state->interp_frame->proxyMethod;
|
||||
state->interp_frame = state->interp_frame->next;
|
||||
state->interp_frame = state->interp_frame->next_interp;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue