blob: d043af36fe885df412f87a03d257ddc916c86ab4 [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
Andreas Gampe88dbad32018-06-26 19:54:12 -070022#include "base/mutex-inl.h"
Andreas Gampe508fdf32017-06-05 16:42:13 -070023#include "gc_root-inl.h"
Vladimir Marko6834d342018-05-25 13:12:09 +010024#include "mirror/class.h"
Vladimir Markoaad75c62016-10-03 08:46:48 +000025#include "oat_file.h"
Vladimir Marko1fe58392019-04-10 16:14:56 +010026#include "obj_ptr-inl.h"
Mathieu Chartiere4275c02015-08-06 15:34:15 -070027
28namespace art {
29
30template<class Visitor>
31void ClassTable::VisitRoots(Visitor& visitor) {
Mathieu Chartier1609e3a2016-04-05 14:36:57 -070032 ReaderMutexLock mu(Thread::Current(), lock_);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070033 for (ClassSet& class_set : classes_) {
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080034 for (TableSlot& table_slot : class_set) {
35 table_slot.VisitRoot(visitor);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070036 }
37 }
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -070038 for (GcRoot<mirror::Object>& root : strong_roots_) {
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080039 visitor.VisitRoot(root.AddressWithoutBarrier());
40 }
Vladimir Markoaad75c62016-10-03 08:46:48 +000041 for (const OatFile* oat_file : oat_files_) {
42 for (GcRoot<mirror::Object>& root : oat_file->GetBssGcRoots()) {
43 visitor.VisitRootIfNonNull(root.AddressWithoutBarrier());
44 }
45 }
Mathieu Chartiere4275c02015-08-06 15:34:15 -070046}
47
48template<class Visitor>
49void ClassTable::VisitRoots(const Visitor& visitor) {
Mathieu Chartier1609e3a2016-04-05 14:36:57 -070050 ReaderMutexLock mu(Thread::Current(), lock_);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070051 for (ClassSet& class_set : classes_) {
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080052 for (TableSlot& table_slot : class_set) {
53 table_slot.VisitRoot(visitor);
Mathieu Chartiere4275c02015-08-06 15:34:15 -070054 }
55 }
Mathieu Chartierc9dbb1d2016-06-03 17:47:32 -070056 for (GcRoot<mirror::Object>& root : strong_roots_) {
Mathieu Chartier00310e02015-10-17 12:46:42 -070057 visitor.VisitRoot(root.AddressWithoutBarrier());
58 }
Vladimir Markoaad75c62016-10-03 08:46:48 +000059 for (const OatFile* oat_file : oat_files_) {
60 for (GcRoot<mirror::Object>& root : oat_file->GetBssGcRoots()) {
61 visitor.VisitRootIfNonNull(root.AddressWithoutBarrier());
62 }
63 }
Mathieu Chartiere4275c02015-08-06 15:34:15 -070064}
65
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030066template <typename Visitor, ReadBarrierOption kReadBarrierOption>
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080067bool ClassTable::Visit(Visitor& visitor) {
Mathieu Chartier1609e3a2016-04-05 14:36:57 -070068 ReaderMutexLock mu(Thread::Current(), lock_);
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080069 for (ClassSet& class_set : classes_) {
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080070 for (TableSlot& table_slot : class_set) {
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030071 if (!visitor(table_slot.Read<kReadBarrierOption>())) {
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -080072 return false;
73 }
74 }
75 }
76 return true;
77}
78
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030079template <typename Visitor, ReadBarrierOption kReadBarrierOption>
Mathieu Chartierdb70ce52016-12-12 11:06:59 -080080bool ClassTable::Visit(const Visitor& visitor) {
81 ReaderMutexLock mu(Thread::Current(), lock_);
82 for (ClassSet& class_set : classes_) {
83 for (TableSlot& table_slot : class_set) {
Alexey Grebenkinbe4c2bd2018-02-01 19:09:59 +030084 if (!visitor(table_slot.Read<kReadBarrierOption>())) {
Mathieu Chartierdb70ce52016-12-12 11:06:59 -080085 return false;
86 }
87 }
88 }
89 return true;
90}
91
Vladimir Markoc6934e32019-04-10 11:40:01 +010092inline bool ClassTable::TableSlot::IsNull() const {
93 return Read<kWithoutReadBarrier>() == nullptr;
94}
95
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -080096template<ReadBarrierOption kReadBarrierOption>
Vladimir Marko1fe58392019-04-10 16:14:56 +010097inline ObjPtr<mirror::Class> ClassTable::TableSlot::Read() const {
Orion Hodson88591fe2018-03-06 13:35:43 +000098 const uint32_t before = data_.load(std::memory_order_relaxed);
Vladimir Marko0984e482019-03-27 16:41:41 +000099 const ObjPtr<mirror::Class> before_ptr(ExtractPtr(before));
100 const ObjPtr<mirror::Class> after_ptr(
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800101 GcRoot<mirror::Class>(before_ptr).Read<kReadBarrierOption>());
102 if (kReadBarrierOption != kWithoutReadBarrier && before_ptr != after_ptr) {
103 // If another thread raced and updated the reference, do not store the read barrier updated
104 // one.
Orion Hodson4557b382018-01-03 11:47:54 +0000105 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(before)));
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800106 }
Vladimir Marko1fe58392019-04-10 16:14:56 +0100107 return after_ptr;
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800108}
109
110template<typename Visitor>
111inline void ClassTable::TableSlot::VisitRoot(const Visitor& visitor) const {
Orion Hodson88591fe2018-03-06 13:35:43 +0000112 const uint32_t before = data_.load(std::memory_order_relaxed);
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800113 ObjPtr<mirror::Class> before_ptr(ExtractPtr(before));
114 GcRoot<mirror::Class> root(before_ptr);
115 visitor.VisitRoot(root.AddressWithoutBarrier());
116 ObjPtr<mirror::Class> after_ptr(root.Read<kWithoutReadBarrier>());
117 if (before_ptr != after_ptr) {
118 // If another thread raced and updated the reference, do not store the read barrier updated
119 // one.
Orion Hodson4557b382018-01-03 11:47:54 +0000120 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(before)));
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800121 }
122}
123
124inline ObjPtr<mirror::Class> ClassTable::TableSlot::ExtractPtr(uint32_t data) {
125 return reinterpret_cast<mirror::Class*>(data & ~kHashMask);
126}
127
128inline uint32_t ClassTable::TableSlot::Encode(ObjPtr<mirror::Class> klass, uint32_t hash_bits) {
129 DCHECK_LE(hash_bits, kHashMask);
130 return reinterpret_cast<uintptr_t>(klass.Ptr()) | hash_bits;
131}
132
133inline ClassTable::TableSlot::TableSlot(ObjPtr<mirror::Class> klass, uint32_t descriptor_hash)
134 : data_(Encode(klass, MaskHash(descriptor_hash))) {
Vladimir Markoc6934e32019-04-10 11:40:01 +0100135 DCHECK_EQ(descriptor_hash, HashDescriptor(klass));
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800136}
Mathieu Chartier1aa8ec22016-02-01 10:34:47 -0800137
Mathieu Chartier72041a02017-07-14 18:23:25 -0700138template <typename Filter>
139inline void ClassTable::RemoveStrongRoots(const Filter& filter) {
140 WriterMutexLock mu(Thread::Current(), lock_);
141 strong_roots_.erase(std::remove_if(strong_roots_.begin(), strong_roots_.end(), filter),
142 strong_roots_.end());
143}
144
Mathieu Chartiere4275c02015-08-06 15:34:15 -0700145} // namespace art
146
147#endif // ART_RUNTIME_CLASS_TABLE_INL_H_