blob: 4c45e3839bb4abd14707c83487a594b363b58a5b [file] [log] [blame]
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "jobject_comparator.h"
18
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019#include "mirror/array-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070020#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "mirror/object-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070022#include "scoped_thread_state_change-inl.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070023
24namespace art {
25
26bool JobjectComparator::operator()(jobject jobj1, jobject jobj2) const {
27 // Ensure null references and cleared jweaks appear at the end.
Mathieu Chartier4c4d6092015-01-22 17:02:27 -080028 if (jobj1 == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070029 return true;
Mathieu Chartier4c4d6092015-01-22 17:02:27 -080030 } else if (jobj2 == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070031 return false;
32 }
33 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier4c4d6092015-01-22 17:02:27 -080034 StackHandleScope<2> hs(soa.Self());
Mathieu Chartier0795f232016-09-27 18:43:30 -070035 Handle<mirror::Object> obj1(hs.NewHandle(soa.Decode<mirror::Object>(jobj1)));
36 Handle<mirror::Object> obj2(hs.NewHandle(soa.Decode<mirror::Object>(jobj2)));
Andreas Gampefa4333d2017-02-14 11:10:34 -080037 if (obj1 == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070038 return true;
Andreas Gampefa4333d2017-02-14 11:10:34 -080039 } else if (obj2 == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070040 return false;
41 }
42 // Sort by class...
43 if (obj1->GetClass() != obj2->GetClass()) {
Mathieu Chartier3096bc52015-01-12 14:24:14 -080044 return obj1->GetClass()->IdentityHashCode() < obj2->GetClass()->IdentityHashCode();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070045 }
Mathieu Chartier4c4d6092015-01-22 17:02:27 -080046 // ...then by size...
47 const size_t count1 = obj1->SizeOf();
48 const size_t count2 = obj2->SizeOf();
49 if (count1 != count2) {
50 return count1 < count2;
51 }
52 // ...and finally by identity hash code.
53 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070054}
55
56} // namespace art