diff options
author | 2023-11-09 12:14:07 +0000 | |
---|---|---|
committer | 2023-11-10 11:37:51 +0000 | |
commit | 87fb6c91839b094d5937e79023d9204d37f46d2d (patch) | |
tree | d1c541bb108fd252b99038d7eaa57ea7bee998b5 /compiler/optimizing/intrinsic_objects.h | |
parent | 039154ecfaea7f7e61ba2bbcee8c0d77a57cd47d (diff) |
Introduce boxed primitive caches in WellKnownClasses.
Test: test.py
Change-Id: Ia8d2f03dea8dd01eeb337d4bc2e31c778b9543a2
Diffstat (limited to 'compiler/optimizing/intrinsic_objects.h')
-rw-r--r-- | compiler/optimizing/intrinsic_objects.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/intrinsic_objects.h b/compiler/optimizing/intrinsic_objects.h index d750f2934b..1cc8f4dbc3 100644 --- a/compiler/optimizing/intrinsic_objects.h +++ b/compiler/optimizing/intrinsic_objects.h @@ -57,8 +57,8 @@ class IntrinsicObjects { } // Functions for retrieving data for Integer.valueOf(). - EXPORT static ObjPtr<mirror::ObjectArray<mirror::Object>> LookupIntegerCache( - Thread* self, ClassLinker* class_linker) REQUIRES_SHARED(Locks::mutator_lock_); + EXPORT static ObjPtr<mirror::ObjectArray<mirror::Object>> LookupIntegerCache() + REQUIRES_SHARED(Locks::mutator_lock_); EXPORT static ObjPtr<mirror::ObjectArray<mirror::Object>> GetIntegerValueOfCache( ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) REQUIRES_SHARED(Locks::mutator_lock_); |