blob: 759b7e129c8f337092ae845c2c2e20741ae91eac [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"
23#include "object_callbacks.h"
24#include "reference_queue.h"
25
26namespace art {
27
28class 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
45// Used to process java.lang.References concurrently or paused.
46class 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 Chartier78f7b4c2014-05-06 10:57:27 -070076
77 private:
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070078 bool SlowPathEnabled() REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070079 // Called by ProcessReferences.
Mathieu Chartier90443472015-07-16 20:32:27 -070080 void DisableSlowPath(Thread* self) REQUIRES(Locks::reference_processor_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070081 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070082 // If we are preserving references it means that some dead objects may become live, we use start
83 // and stop preserving to block mutators using GetReferrent from getting access to these
84 // referents.
Mathieu Chartier90443472015-07-16 20:32:27 -070085 void StartPreservingReferences(Thread* self) REQUIRES(!Locks::reference_processor_lock_);
86 void StopPreservingReferences(Thread* self) REQUIRES(!Locks::reference_processor_lock_);
Mathieu Chartier97509952015-07-13 14:35:43 -070087 // Collector which is clearing references, used by the GetReferent to return referents which are
88 // already marked.
89 collector::GarbageCollector* collector_ GUARDED_BY(Locks::reference_processor_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070090 // Boolean for whether or not we are preserving references (either soft references or finalizers).
91 // If this is true, then we cannot return a referent (see comment in GetReferent).
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070092 bool preserving_references_ GUARDED_BY(Locks::reference_processor_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070093 // Condition that people wait on if they attempt to get the referent of a reference while
94 // processing is in progress.
Mathieu Chartiera5a53ef2014-09-12 12:58:05 -070095 ConditionVariable condition_ GUARDED_BY(Locks::reference_processor_lock_);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -070096 // Reference queues used by the GC.
97 ReferenceQueue soft_reference_queue_;
98 ReferenceQueue weak_reference_queue_;
99 ReferenceQueue finalizer_reference_queue_;
100 ReferenceQueue phantom_reference_queue_;
101 ReferenceQueue cleared_references_;
Mathieu Chartier3130cdf2015-05-03 15:20:23 -0700102
103 DISALLOW_COPY_AND_ASSIGN(ReferenceProcessor);
Mathieu Chartier78f7b4c2014-05-06 10:57:27 -0700104};
105
106} // namespace gc
107} // namespace art
108
109#endif // ART_RUNTIME_GC_REFERENCE_PROCESSOR_H_