diff options
Diffstat (limited to 'runtime/debugger.cc')
| -rw-r--r-- | runtime/debugger.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/debugger.cc b/runtime/debugger.cc index 6e11cf88c4..a0f875d6b8 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -230,11 +230,11 @@ class DebugInstrumentationListener FINAL : public instrumentation::Instrumentati Dbg::PostException(exception_object); } - // We only care about how many backward branches were executed in the Jit. - void BackwardBranch(Thread* /*thread*/, ArtMethod* method, int32_t dex_pc_offset) + // We only care about branches in the Jit. + void Branch(Thread* /*thread*/, ArtMethod* method, uint32_t dex_pc, int32_t dex_pc_offset) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { - LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method) - << " " << dex_pc_offset; + LOG(ERROR) << "Unexpected branch event in debugger " << PrettyMethod(method) + << " " << dex_pc << ", " << dex_pc_offset; } // We only care about invokes in the Jit. |