interpret.cc (_Jv_InterpMethod::check_handler): New method.
2007-02-15 Kyle Galloway <kgallowa@redhat.com> * interpret.cc (_Jv_InterpMethod::check_handler): New method. * interpret-run.cc: Change the catch section to report exception events and to use the new check_handler method. * include/java-interp.h (_Jv_InterpMethod): Add check_handler. * gnu/gcj/jvmti/ExceptionEvent.java: New file. * gnu/gcj/jvmti/ExceptionEvent.h: New file. * gnu/gcj/jvmti/natExceptionEvent.cc: New file. * libjava/classpath/lib/gnu/gcj/jvmti/ExceptionEvent.class: New file. * sources.am: Added ExceptionEvent.java. * Makefile.am: Added natExceptionEvent.cc * Makefile.in: Regenerated. * include/Makefile.in: Regenerated. * gcj/Makefile.in: Regenerated. From-SVN: r122019
This commit is contained in:
parent
5039610b96
commit
7a1bf87c6e
14 changed files with 345 additions and 60 deletions
|
@ -229,6 +229,11 @@ class _Jv_InterpMethod : public _Jv_MethodBase
|
|||
// Convenience function for indexing bytecode PC/insn slots in
|
||||
// line tables for JDWP
|
||||
jlong insn_index (pc_t pc);
|
||||
|
||||
// Helper function used to check if there is a handler for an exception
|
||||
// present at this code index
|
||||
jboolean check_handler (pc_t *pc, _Jv_InterpMethod *meth,
|
||||
java::lang::Throwable *ex);
|
||||
|
||||
/* Get the line table for this method.
|
||||
* start is the lowest index in the method
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue