diff options
author | 2022-01-13 17:49:37 +0000 | |
---|---|---|
committer | 2022-01-14 09:03:20 +0000 | |
commit | b0f63c93e44bf53a34dda90c74b8725a932922da (patch) | |
tree | e3a62f7c90ed6aacbec3387558a2e077db91a522 /runtime/class_linker.h | |
parent | 3ba3a77e4971b1ae411a18debc5e3507885c3b45 (diff) |
Revert "Use InitializeMethodsCode when we need to reinitialize a method entrypoint."
This reverts commit 82e525a4f5f08a72ea1b6907c0a10dacb77a8a87.
Reason for revert: Fails a test
Change-Id: Iab83b543b99fb6f6d5d9be22cd10d4eb88312d4b
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r-- | runtime/class_linker.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index 7ba62f4e89..b0c02e538e 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -620,6 +620,10 @@ class ClassLinker { return intern_table_; } + // Set the entrypoints up for method to the enter the interpreter. + void SetEntryPointsToInterpreter(ArtMethod* method) const + REQUIRES_SHARED(Locks::mutator_lock_); + // Set the entrypoints up for an obsolete method. void SetEntryPointsForObsoleteMethod(ArtMethod* method) const REQUIRES_SHARED(Locks::mutator_lock_); |