diff options
author | 2022-12-16 18:38:16 +0000 | |
---|---|---|
committer | 2023-01-16 09:52:42 +0000 | |
commit | e52e4fb74e9f13009af4ffbfb2e5103ce035a94b (patch) | |
tree | f8ed6faeb6204eb3e3c67b1b88f49a4482a43ebe /runtime/class_linker.cc | |
parent | e92bc531dc1eeb50cd4f46e2fb4ea581a24b45ac (diff) |
We no longer use instrumentation stubs remove the support code
Remove the code to handle instrumentation stubs. We no longer use them.
Bug: 206029744
Test: art/test.py
Change-Id: I2b7eabf80bd34989314c0d2b299d7b1b35de0b85
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index f5a4ce689c..e109a505b6 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -1195,11 +1195,6 @@ void ClassLinker::RunRootClinits(Thread* self) { for (ArtField* field : static_fields_of_classes_to_initialize) { EnsureRootInitialized(this, self, field->GetDeclaringClass()); } - - // This invariant is important since otherwise we will have the entire proxy invoke system - // confused. - DCHECK_NE(WellKnownClasses::java_lang_reflect_Proxy_init->GetEntryPointFromQuickCompiledCode(), - GetQuickInstrumentationEntryPoint()); } ALWAYS_INLINE |