Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Unified Diff: src/heap/heap.h

Issue 1577853007: [heap] Parallel newspace evacuation, semispace copy, and compaction \o/ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Various non-functional changes Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/heap/heap.h
diff --git a/src/heap/heap.h b/src/heap/heap.h
index 470b4cee20de407dfb5a7b6ea958ce8809e0cb31..10e44487d0046eaccfef7f0d7aad91c4862240de 100644
--- a/src/heap/heap.h
+++ b/src/heap/heap.h
@@ -928,6 +928,8 @@ class Heap {
// return NULL;
inline AllocationMemento* FindAllocationMemento(HeapObject* object);
+ inline AllocationMemento* FindAllocationMementoCandidate(HeapObject* object);
+
// Returns false if not able to reserve.
bool ReserveSpace(Reservation* reservations);
@@ -1407,22 +1409,26 @@ class Heap {
void UpdateSurvivalStatistics(int start_new_space_size);
- inline void IncrementPromotedObjectsSize(int object_size) {
+ inline void IncrementPromotedObjectsSize(intptr_t object_size) {
DCHECK_GE(object_size, 0);
- promoted_objects_size_ += object_size;
+ promoted_objects_size_.Increment(object_size);
+ }
+
+ inline intptr_t promoted_objects_size() {
+ return promoted_objects_size_.Value();
}
- inline intptr_t promoted_objects_size() { return promoted_objects_size_; }
- inline void IncrementSemiSpaceCopiedObjectSize(int object_size) {
+ inline void IncrementSemiSpaceCopiedObjectSize(intptr_t object_size) {
DCHECK_GE(object_size, 0);
- semi_space_copied_object_size_ += object_size;
+ semi_space_copied_object_size_.Increment(object_size);
}
+
inline intptr_t semi_space_copied_object_size() {
- return semi_space_copied_object_size_;
+ return semi_space_copied_object_size_.Value();
}
inline intptr_t SurvivedNewSpaceObjectSize() {
- return promoted_objects_size_ + semi_space_copied_object_size_;
+ return promoted_objects_size() + semi_space_copied_object_size();
}
inline void IncrementNodesDiedInNewSpace() { nodes_died_in_new_space_++; }
@@ -1431,10 +1437,16 @@ class Heap {
inline void IncrementNodesPromoted() { nodes_promoted_++; }
- inline void IncrementYoungSurvivorsCounter(int survived) {
+ inline void IncrementYoungSurvivorsCounter(intptr_t survived) {
DCHECK(survived >= 0);
- survived_last_scavenge_ = survived;
- survived_since_last_expansion_ += survived;
+ survived_last_scavenge_.SetValue(survived);
+ survived_since_last_expansion_.Increment(survived);
+ }
+
+ intptr_t survived_last_scavenge() { return survived_last_scavenge_.Value(); }
+
+ intptr_t survived_since_last_expansion() {
+ return survived_since_last_expansion_.Value();
}
inline intptr_t PromotedTotalSize() {
@@ -2181,10 +2193,10 @@ class Heap {
// For keeping track of how much data has survived
// scavenge since last new space expansion.
- int survived_since_last_expansion_;
+ AtomicNumber<intptr_t> survived_since_last_expansion_;
// ... and since the last scavenge.
- int survived_last_scavenge_;
+ AtomicNumber<intptr_t> survived_last_scavenge_;
// This is not the depth of nested AlwaysAllocateScope's but rather a single
// count, as scopes can be acquired from multiple tasks (read: threads).
@@ -2282,10 +2294,10 @@ class Heap {
GCTracer* tracer_;
int high_survival_rate_period_length_;
- intptr_t promoted_objects_size_;
+ AtomicNumber<intptr_t> promoted_objects_size_;
double promotion_ratio_;
double promotion_rate_;
- intptr_t semi_space_copied_object_size_;
+ AtomicNumber<intptr_t> semi_space_copied_object_size_;
intptr_t previous_semi_space_copied_object_size_;
double semi_space_copied_rate_;
int nodes_died_in_new_space_;
@@ -2732,6 +2744,24 @@ class WeakObjectRetainer {
};
+class TimedScope {
+ public:
+ TimedScope(Heap* heap, double* result)
+ : heap_(heap),
+ start_(heap->MonotonicallyIncreasingTimeInMs()),
+ result_(result) {}
+
+ ~TimedScope() {
+ *result_ = heap_->MonotonicallyIncreasingTimeInMs() - start_;
+ }
+
+ private:
+ Heap* heap_;
+ double start_;
+ double* result_;
+};
+
+
#ifdef DEBUG
// Helper class for tracing paths to a search target Object from all roots.
// The TracePathFrom() method can be used to trace paths from a specific
« no previous file with comments | « src/heap/array-buffer-tracker.cc ('k') | src/heap/heap.cc » ('j') | src/heap/heap-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698