diff options
Diffstat (limited to 'runtime/stack.h')
-rw-r--r-- | runtime/stack.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/stack.h b/runtime/stack.h index b495f03..13bd47f 100644 --- a/runtime/stack.h +++ b/runtime/stack.h @@ -25,7 +25,6 @@ #include "gc_root.h" #include "mirror/object_reference.h" #include "read_barrier.h" -#include "throw_location.h" #include "utils.h" #include "verify_object.h" @@ -40,6 +39,7 @@ class Context; class ShadowFrame; class HandleScope; class ScopedObjectAccess; +class StackVisitor; class Thread; // The kind of vreg being accessed in calls to Set/GetVReg. @@ -258,8 +258,6 @@ class ShadowFrame { mirror::Object* GetThisObject(uint16_t num_ins) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - ThrowLocation GetCurrentLocationForThrow() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const { if (HasReferenceArray()) { return ((&References()[0] <= shadow_frame_entry_obj) && |