diff options
author | Vladimir Marko <vmarko@google.com> | 2018-11-09 17:12:23 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2018-11-12 15:26:21 +0000 |
commit | 104883b04617a850adf11f05e57c2fd29e09c83c (patch) | |
tree | 51d436588505a3ead506d633bdf97c9b4c934ae0 /runtime/mirror/class_ext-inl.h | |
parent | 00e96d054e2b656d4d0f99fc141d1701af4dba23 (diff) |
Clean up primitive array helpers in Object.
Refactor these helpers and avoid read barriers. Remove
Class::Is{Int,Long}ArrayClass() and use the Object helpers
instead.
Remove the AsByteSizedArray() and AsShortSizedArray()
helpers that essentially break the type system and rewrite
their users, adding appropriate notes. {Float,Double}Array
uses in Unsafe would have previously failed a DCHECK().
Test: Additional test in 004-UnsafeTest.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Change-Id: I88b7e3df7de883f64cfc5eb437a40646f2884685
Diffstat (limited to 'runtime/mirror/class_ext-inl.h')
-rw-r--r-- | runtime/mirror/class_ext-inl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/mirror/class_ext-inl.h b/runtime/mirror/class_ext-inl.h index feaac8580a..8d68dc92f9 100644 --- a/runtime/mirror/class_ext-inl.h +++ b/runtime/mirror/class_ext-inl.h @@ -32,9 +32,7 @@ void ClassExt::VisitNativeRoots(Visitor& visitor, PointerSize pointer_size) { } int32_t len = arr->GetLength(); for (int32_t i = 0; i < len; i++) { - ArtMethod* method = arr->GetElementPtrSize<ArtMethod*, - kDefaultVerifyFlags, - kReadBarrierOption>(i, pointer_size); + ArtMethod* method = arr->GetElementPtrSize<ArtMethod*, kDefaultVerifyFlags>(i, pointer_size); if (method != nullptr) { method->VisitRoots<kReadBarrierOption>(visitor, pointer_size); } |