blob: 6b6fe341e07a7e67c010240fe450bf938ec3b064 [file] [log] [blame]
Mathieu Chartiere4275c02015-08-06 15:34:15 -07001/*
2 * Copyright (C) 2015 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#ifndef ART_RUNTIME_CLASS_TABLE_INL_H_
18#define ART_RUNTIME_CLASS_TABLE_INL_H_
19
20#include "class_table.h"
Andreas Gampe508fdf32017-06-05 16:42:13 -070021
22#include "gc_root-inl.h"
Vladimir Marko6834d342018-05-25 13:12:09 +010023#include "mirror/class.h"
Vladimir Markoaad75c62016-10-03 08:46:48 +000024#include "oat_file.h"
Mathieu Chartiere4275c02015-08-06 15:34:15 -070025
26namespace art {
27
28template<class Visitor>
29void ClassTable::VisitRoots(Visitor& visitor) {
Mathieu Chartier1609e3a2016-04-05 14:36:57 -070030 ReaderMutexLock mu(Thread::Current(), lock_);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070031 for (ClassSet& class_set : classes_) {
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080032 for (TableSlot& table_slot : class_set) {
33 table_slot.VisitRoot(visitor);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070034 }
35 }
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -070036 for (GcRoot<mirror::Object>& root : strong_roots_) {
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080037 visitor.VisitRoot(root.AddressWithoutBarrier());
38 }
Vladimir Markoaad75c62016-10-03 08:46:48 +000039 for (const OatFile* oat_file : oat_files_) {
40 for (GcRoot<mirror::Object>& root : oat_file->GetBssGcRoots()) {
41 visitor.VisitRootIfNonNull(root.AddressWithoutBarrier());
42 }
43 }
Mathieu Chartiere4275c02015-08-06 15:34:15 -070044}
45
46template<class Visitor>
47void ClassTable::VisitRoots(const Visitor& visitor) {
Mathieu Chartier1609e3a2016-04-05 14:36:57 -070048 ReaderMutexLock mu(Thread::Current(), lock_);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070049 for (ClassSet& class_set : classes_) {
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080050 for (TableSlot& table_slot : class_set) {
51 table_slot.VisitRoot(visitor);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070052 }
53 }
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -070054 for (GcRoot<mirror::Object>& root : strong_roots_) {
Mathieu Chartier00310e02015-10-17 12:46:42 -070055 visitor.VisitRoot(root.AddressWithoutBarrier());
56 }
Vladimir Markoaad75c62016-10-03 08:46:48 +000057 for (const OatFile* oat_file : oat_files_) {
58 for (GcRoot<mirror::Object>& root : oat_file->GetBssGcRoots()) {
59 visitor.VisitRootIfNonNull(root.AddressWithoutBarrier());
60 }
61 }
Mathieu Chartiere4275c02015-08-06 15:34:15 -070062}
63
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030064template <typename Visitor, ReadBarrierOption kReadBarrierOption>
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080065bool ClassTable::Visit(Visitor& visitor) {
Mathieu Chartier1609e3a2016-04-05 14:36:57 -070066 ReaderMutexLock mu(Thread::Current(), lock_);
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080067 for (ClassSet& class_set : classes_) {
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080068 for (TableSlot& table_slot : class_set) {
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030069 if (!visitor(table_slot.Read<kReadBarrierOption>())) {
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080070 return false;
71 }
72 }
73 }
74 return true;
75}
76
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030077template <typename Visitor, ReadBarrierOption kReadBarrierOption>
Mathieu Chartierdb70ce52016-12-12 11:06:59 -080078bool ClassTable::Visit(const Visitor& visitor) {
79 ReaderMutexLock mu(Thread::Current(), lock_);
80 for (ClassSet& class_set : classes_) {
81 for (TableSlot& table_slot : class_set) {
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030082 if (!visitor(table_slot.Read<kReadBarrierOption>())) {
Mathieu Chartierdb70ce52016-12-12 11:06:59 -080083 return false;
84 }
85 }
86 }
87 return true;
88}
89
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080090template<ReadBarrierOption kReadBarrierOption>
91inline mirror::Class* ClassTable::TableSlot::Read() const {
Orion Hodson88591fe2018-03-06 13:35:43 +000092 const uint32_t before = data_.load(std::memory_order_relaxed);
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080093 ObjPtr<mirror::Class> const before_ptr(ExtractPtr(before));
94 ObjPtr<mirror::Class> const after_ptr(
95 GcRoot<mirror::Class>(before_ptr).Read<kReadBarrierOption>());
96 if (kReadBarrierOption != kWithoutReadBarrier && before_ptr != after_ptr) {
97 // If another thread raced and updated the reference, do not store the read barrier updated
98 // one.
Orion Hodson4557b382018-01-03 11:47:54 +000099 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(before)));
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800100 }
101 return after_ptr.Ptr();
102}
103
104template<typename Visitor>
105inline void ClassTable::TableSlot::VisitRoot(const Visitor& visitor) const {
Orion Hodson88591fe2018-03-06 13:35:43 +0000106 const uint32_t before = data_.load(std::memory_order_relaxed);
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800107 ObjPtr<mirror::Class> before_ptr(ExtractPtr(before));
108 GcRoot<mirror::Class> root(before_ptr);
109 visitor.VisitRoot(root.AddressWithoutBarrier());
110 ObjPtr<mirror::Class> after_ptr(root.Read<kWithoutReadBarrier>());
111 if (before_ptr != after_ptr) {
112 // If another thread raced and updated the reference, do not store the read barrier updated
113 // one.
Orion Hodson4557b382018-01-03 11:47:54 +0000114 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(before)));
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800115 }
116}
117
118inline ObjPtr<mirror::Class> ClassTable::TableSlot::ExtractPtr(uint32_t data) {
119 return reinterpret_cast<mirror::Class*>(data & ~kHashMask);
120}
121
122inline uint32_t ClassTable::TableSlot::Encode(ObjPtr<mirror::Class> klass, uint32_t hash_bits) {
123 DCHECK_LE(hash_bits, kHashMask);
124 return reinterpret_cast<uintptr_t>(klass.Ptr()) | hash_bits;
125}
126
127inline ClassTable::TableSlot::TableSlot(ObjPtr<mirror::Class> klass, uint32_t descriptor_hash)
128 : data_(Encode(klass, MaskHash(descriptor_hash))) {
129 if (kIsDebugBuild) {
130 std::string temp;
131 const uint32_t hash = ComputeModifiedUtf8Hash(klass->GetDescriptor(&temp));
132 CHECK_EQ(descriptor_hash, hash);
133 }
134}
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -0800135
Mathieu Chartier72041a02017-07-14 18:23:25 -0700136template <typename Filter>
137inline void ClassTable::RemoveStrongRoots(const Filter& filter) {
138 WriterMutexLock mu(Thread::Current(), lock_);
139 strong_roots_.erase(std::remove_if(strong_roots_.begin(), strong_roots_.end(), filter),
140 strong_roots_.end());
141}
142
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700143} // namespace art
144
145#endif // ART_RUNTIME_CLASS_TABLE_INL_H_