diff options
author | 2024-06-07 13:59:09 +0000 | |
---|---|---|
committer | 2024-06-07 15:11:06 +0000 | |
commit | e5d59342bcfdb7f6d2e7d7b4a4ce8dd97ca39091 (patch) | |
tree | 707cc19d4fb2f49d2fb0435bf6b33fca35751e5c /compiler/jit/jit_compiler.cc | |
parent | 8d1b1a862dd8093bb0be00f8b424dea5698b2c75 (diff) |
Revert "Rewrite how we identify hot methods."
This reverts commit 85ee2c92239fbafc22c2c47b22faa817a0a4b034.
Bug: 345267352
Reason for revert: b/345267352
Change-Id: If5b5057e86493aea97ed3ffd02d7069da0187ce7
Diffstat (limited to 'compiler/jit/jit_compiler.cc')
-rw-r--r-- | compiler/jit/jit_compiler.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/jit/jit_compiler.cc b/compiler/jit/jit_compiler.cc index 4b2f8d2e14..051368cc8a 100644 --- a/compiler/jit/jit_compiler.cc +++ b/compiler/jit/jit_compiler.cc @@ -178,8 +178,7 @@ bool JitCompiler::CompileMethod( Thread* self, JitMemoryRegion* region, ArtMethod* method, CompilationKind compilation_kind) { SCOPED_TRACE << "JIT compiling " << method->PrettyMethod() - << " (kind=" << compilation_kind << ")" - << " from " << method->GetDexFile()->GetLocation(); + << " (kind=" << compilation_kind << ")"; DCHECK(!method->IsProxyMethod()); DCHECK(method->GetDeclaringClass()->IsResolved()); |