• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 #ifndef ART_RUNTIME_GC_COLLECTOR_GARBAGE_COLLECTOR_H_
18 #define ART_RUNTIME_GC_COLLECTOR_GARBAGE_COLLECTOR_H_
19 
20 #include <stdint.h>
21 #include <vector>
22 
23 #include "base/histogram.h"
24 #include "base/mutex.h"
25 #include "base/timing_logger.h"
26 #include "gc/collector_type.h"
27 #include "gc/gc_cause.h"
28 #include "gc_root.h"
29 #include "gc_type.h"
30 #include "object_callbacks.h"
31 
32 namespace art {
33 
34 namespace mirror {
35 class Class;
36 class Object;
37 class Reference;
38 }  // namespace mirror
39 
40 namespace gc {
41 
42 class Heap;
43 
44 namespace collector {
45 
46 struct ObjectBytePair {
47   ObjectBytePair(uint64_t num_objects = 0, int64_t num_bytes = 0)
objectsObjectBytePair48       : objects(num_objects), bytes(num_bytes) {}
AddObjectBytePair49   void Add(const ObjectBytePair& other) {
50     objects += other.objects;
51     bytes += other.bytes;
52   }
53   // Number of objects which were freed.
54   uint64_t objects;
55   // Freed bytes are signed since the GC can free negative bytes if it promotes objects to a space
56   // which has a larger allocation size.
57   int64_t bytes;
58 };
59 
60 // A information related single garbage collector iteration. Since we only ever have one GC running
61 // at any given time, we can have a single iteration info.
62 class Iteration {
63  public:
64   Iteration();
65   // Returns how long the mutators were paused in nanoseconds.
GetPauseTimes()66   const std::vector<uint64_t>& GetPauseTimes() const {
67     return pause_times_;
68   }
GetTimings()69   TimingLogger* GetTimings() {
70     return &timings_;
71   }
72   // Returns how long the GC took to complete in nanoseconds.
GetDurationNs()73   uint64_t GetDurationNs() const {
74     return duration_ns_;
75   }
GetFreedBytes()76   int64_t GetFreedBytes() const {
77     return freed_.bytes;
78   }
GetFreedLargeObjectBytes()79   int64_t GetFreedLargeObjectBytes() const {
80     return freed_los_.bytes;
81   }
GetFreedObjects()82   uint64_t GetFreedObjects() const {
83     return freed_.objects;
84   }
GetFreedLargeObjects()85   uint64_t GetFreedLargeObjects() const {
86     return freed_los_.objects;
87   }
GetFreedRevokeBytes()88   uint64_t GetFreedRevokeBytes() const {
89     return freed_bytes_revoke_;
90   }
SetFreedRevoke(uint64_t freed)91   void SetFreedRevoke(uint64_t freed) {
92     freed_bytes_revoke_ = freed;
93   }
94   void Reset(GcCause gc_cause, bool clear_soft_references);
95   // Returns the estimated throughput of the iteration.
96   uint64_t GetEstimatedThroughput() const;
GetClearSoftReferences()97   bool GetClearSoftReferences() const {
98     return clear_soft_references_;
99   }
SetClearSoftReferences(bool clear_soft_references)100   void SetClearSoftReferences(bool clear_soft_references) {
101     clear_soft_references_ = clear_soft_references;
102   }
GetGcCause()103   GcCause GetGcCause() const {
104     return gc_cause_;
105   }
106 
107  private:
SetDurationNs(uint64_t duration)108   void SetDurationNs(uint64_t duration) {
109     duration_ns_ = duration;
110   }
111 
112   GcCause gc_cause_;
113   bool clear_soft_references_;
114   uint64_t duration_ns_;
115   TimingLogger timings_;
116   ObjectBytePair freed_;
117   ObjectBytePair freed_los_;
118   uint64_t freed_bytes_revoke_;  // see Heap::num_bytes_freed_revoke_.
119   std::vector<uint64_t> pause_times_;
120 
121   friend class GarbageCollector;
122   DISALLOW_COPY_AND_ASSIGN(Iteration);
123 };
124 
125 class GarbageCollector : public RootVisitor, public IsMarkedVisitor, public MarkObjectVisitor {
126  public:
127   class SCOPED_LOCKABLE ScopedPause {
128    public:
129     explicit ScopedPause(GarbageCollector* collector) EXCLUSIVE_LOCK_FUNCTION(Locks::mutator_lock_);
130     ~ScopedPause() UNLOCK_FUNCTION();
131 
132    private:
133     const uint64_t start_time_;
134     GarbageCollector* const collector_;
135   };
136 
137   GarbageCollector(Heap* heap, const std::string& name);
~GarbageCollector()138   virtual ~GarbageCollector() { }
GetName()139   const char* GetName() const {
140     return name_.c_str();
141   }
142   virtual GcType GetGcType() const = 0;
143   virtual CollectorType GetCollectorType() const = 0;
144   // Run the garbage collector.
145   void Run(GcCause gc_cause, bool clear_soft_references) REQUIRES(!pause_histogram_lock_);
GetHeap()146   Heap* GetHeap() const {
147     return heap_;
148   }
149   void RegisterPause(uint64_t nano_length);
GetCumulativeTimings()150   const CumulativeLogger& GetCumulativeTimings() const {
151     return cumulative_timings_;
152   }
153   void ResetCumulativeStatistics() REQUIRES(!pause_histogram_lock_);
154   // Swap the live and mark bitmaps of spaces that are active for the collector. For partial GC,
155   // this is the allocation space, for full GC then we swap the zygote bitmaps too.
156   void SwapBitmaps()
157       REQUIRES(Locks::heap_bitmap_lock_)
158       SHARED_REQUIRES(Locks::mutator_lock_);
159   uint64_t GetTotalPausedTimeNs() REQUIRES(!pause_histogram_lock_);
GetTotalFreedBytes()160   int64_t GetTotalFreedBytes() const {
161     return total_freed_bytes_;
162   }
GetTotalFreedObjects()163   uint64_t GetTotalFreedObjects() const {
164     return total_freed_objects_;
165   }
166   // Reset the cumulative timings and pause histogram.
167   void ResetMeasurements() REQUIRES(!pause_histogram_lock_);
168   // Returns the estimated throughput in bytes / second.
169   uint64_t GetEstimatedMeanThroughput() const;
170   // Returns how many GC iterations have been run.
NumberOfIterations()171   size_t NumberOfIterations() const {
172     return GetCumulativeTimings().GetIterations();
173   }
174   // Returns the current GC iteration and assocated info.
175   Iteration* GetCurrentIteration();
176   const Iteration* GetCurrentIteration() const;
GetTimings()177   TimingLogger* GetTimings() {
178     return &GetCurrentIteration()->timings_;
179   }
180   // Record a free of normal objects.
181   void RecordFree(const ObjectBytePair& freed);
182   // Record a free of large objects.
183   void RecordFreeLOS(const ObjectBytePair& freed);
184   void DumpPerformanceInfo(std::ostream& os) REQUIRES(!pause_histogram_lock_);
185 
186   // Helper functions for querying if objects are marked. These are used for processing references,
187   // and will be used for reading system weaks while the GC is running.
188   virtual mirror::Object* IsMarked(mirror::Object* obj)
189       SHARED_REQUIRES(Locks::mutator_lock_) = 0;
190   virtual bool IsMarkedHeapReference(mirror::HeapReference<mirror::Object>* obj)
191       SHARED_REQUIRES(Locks::mutator_lock_) = 0;
192   // Used by reference processor.
193   virtual void ProcessMarkStack() SHARED_REQUIRES(Locks::mutator_lock_) = 0;
194   // Force mark an object.
195   virtual mirror::Object* MarkObject(mirror::Object* obj)
196       SHARED_REQUIRES(Locks::mutator_lock_) = 0;
197   virtual void MarkHeapReference(mirror::HeapReference<mirror::Object>* obj)
198       SHARED_REQUIRES(Locks::mutator_lock_) = 0;
199   virtual void DelayReferenceReferent(mirror::Class* klass, mirror::Reference* reference)
200       SHARED_REQUIRES(Locks::mutator_lock_) = 0;
201 
202  protected:
203   // Run all of the GC phases.
204   virtual void RunPhases() = 0;
205   // Revoke all the thread-local buffers.
206   virtual void RevokeAllThreadLocalBuffers() = 0;
207 
208   static constexpr size_t kPauseBucketSize = 500;
209   static constexpr size_t kPauseBucketCount = 32;
210 
211   Heap* const heap_;
212   std::string name_;
213   // Cumulative statistics.
214   Histogram<uint64_t> pause_histogram_ GUARDED_BY(pause_histogram_lock_);
215   uint64_t total_time_ns_;
216   uint64_t total_freed_objects_;
217   int64_t total_freed_bytes_;
218   CumulativeLogger cumulative_timings_;
219   mutable Mutex pause_histogram_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
220 
221  private:
222   DISALLOW_IMPLICIT_CONSTRUCTORS(GarbageCollector);
223 };
224 
225 }  // namespace collector
226 }  // namespace gc
227 }  // namespace art
228 
229 #endif  // ART_RUNTIME_GC_COLLECTOR_GARBAGE_COLLECTOR_H_
230