blob: a8135d9a3b9dc4da69502d41ad72327c68806113 [file] [log] [blame]
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -07001/*
2 * Copyright (C) 2014 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_GC_REFERENCE_PROCESSOR_H_
18#define ART_RUNTIME_GC_REFERENCE_PROCESSOR_H_
19
20#include "base/mutex.h"
21#include "globals.h"
22#include "jni.h"
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070023#include "reference_queue.h"
24
25namespace art {
26
Andreas Gampe5d08fcc2017-06-05 17:56:46 -070027class IsMarkedVisitor;
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070028class TimingLogger;
29
30namespace mirror {
Mathieu Chartier97509952015-07-13 14:35:43 -070031class Class;
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070032class FinalizerReference;
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070033class Object;
34class Reference;
35} // namespace mirror
36
37namespace gc {
38
Mathieu Chartier97509952015-07-13 14:35:43 -070039namespace collector {
40class GarbageCollector;
41} // namespace collector
42
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070043class Heap;
44
Roland Levillain5e8d5f02016-10-18 18:03:43 +010045// Used to process java.lang.ref.Reference instances concurrently or paused.
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070046class ReferenceProcessor {
47 public:
48 explicit ReferenceProcessor();
Mathieu Chartier5d3f73a2016-10-14 14:28:47 -070049 void ProcessReferences(bool concurrent,
50 TimingLogger* timings,
51 bool clear_soft_references,
Mathieu Chartier97509952015-07-13 14:35:43 -070052 gc::collector::GarbageCollector* collector)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070053 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -070054 REQUIRES(Locks::heap_bitmap_lock_)
55 REQUIRES(!Locks::reference_processor_lock_);
Fred Shih4ee7a662014-07-11 09:59:27 -070056 // The slow path bool is contained in the reference class object, can only be set once
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070057 // Only allow setting this with mutators suspended so that we can avoid using a lock in the
58 // GetReferent fast path as an optimization.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070059 void EnableSlowPath() REQUIRES_SHARED(Locks::mutator_lock_);
Hiroshi Yamauchi0b713572015-06-16 18:29:23 -070060 void BroadcastForSlowPath(Thread* self);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070061 // Decode the referent, may block if references are being processed.
Mathieu Chartier5d3f73a2016-10-14 14:28:47 -070062 ObjPtr<mirror::Object> GetReferent(Thread* self, ObjPtr<mirror::Reference> reference)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070063 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Locks::reference_processor_lock_);
Mathieu Chartier90443472015-07-16 20:32:27 -070064 void EnqueueClearedReferences(Thread* self) REQUIRES(!Locks::mutator_lock_);
Mathieu Chartier5d3f73a2016-10-14 14:28:47 -070065 void DelayReferenceReferent(ObjPtr<mirror::Class> klass,
66 ObjPtr<mirror::Reference> ref,
Mathieu Chartier97509952015-07-13 14:35:43 -070067 collector::GarbageCollector* collector)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070068 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -070069 void UpdateRoots(IsMarkedVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070070 REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_);
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070071 // Make a circular list with reference if it is not enqueued. Uses the finalizer queue lock.
Mathieu Chartier5d3f73a2016-10-14 14:28:47 -070072 bool MakeCircularListIfUnenqueued(ObjPtr<mirror::FinalizerReference> reference)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070073 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -070074 REQUIRES(!Locks::reference_processor_lock_,
75 !Locks::reference_queue_finalizer_references_lock_);
Mathieu Chartierc9a70282016-12-13 14:44:33 -080076 void ClearReferent(ObjPtr<mirror::Reference> ref)
77 REQUIRES_SHARED(Locks::mutator_lock_)
78 REQUIRES(!Locks::reference_processor_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070079
80 private:
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070081 bool SlowPathEnabled() REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070082 // Called by ProcessReferences.
Mathieu Chartier90443472015-07-16 20:32:27 -070083 void DisableSlowPath(Thread* self) REQUIRES(Locks::reference_processor_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070084 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070085 // If we are preserving references it means that some dead objects may become live, we use start
86 // and stop preserving to block mutators using GetReferrent from getting access to these
87 // referents.
Mathieu Chartier90443472015-07-16 20:32:27 -070088 void StartPreservingReferences(Thread* self) REQUIRES(!Locks::reference_processor_lock_);
89 void StopPreservingReferences(Thread* self) REQUIRES(!Locks::reference_processor_lock_);
Mathieu Chartierc9a70282016-12-13 14:44:33 -080090 // Wait until reference processing is done.
91 void WaitUntilDoneProcessingReferences(Thread* self)
92 REQUIRES_SHARED(Locks::mutator_lock_)
93 REQUIRES(Locks::reference_processor_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -070094 // Collector which is clearing references, used by the GetReferent to return referents which are
95 // already marked.
96 collector::GarbageCollector* collector_ GUARDED_BY(Locks::reference_processor_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070097 // Boolean for whether or not we are preserving references (either soft references or finalizers).
98 // If this is true, then we cannot return a referent (see comment in GetReferent).
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070099 bool preserving_references_ GUARDED_BY(Locks::reference_processor_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700100 // Condition that people wait on if they attempt to get the referent of a reference while
101 // processing is in progress.
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -0700102 ConditionVariable condition_ GUARDED_BY(Locks::reference_processor_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700103 // Reference queues used by the GC.
104 ReferenceQueue soft_reference_queue_;
105 ReferenceQueue weak_reference_queue_;
106 ReferenceQueue finalizer_reference_queue_;
107 ReferenceQueue phantom_reference_queue_;
108 ReferenceQueue cleared_references_;
Mathieu Chartier3130cdf2015-05-03 15:20:23 -0700109
110 DISALLOW_COPY_AND_ASSIGN(ReferenceProcessor);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700111};
112
113} // namespace gc
114} // namespace art
115
116#endif // ART_RUNTIME_GC_REFERENCE_PROCESSOR_H_