Chromium Code Reviews| Index: src/heap.h |
| diff --git a/src/heap.h b/src/heap.h |
| index 49cce59916d641bd8a0571e3da25658012f84284..a51cecd2158636c566894cfab5047d4e6b0484be 100644 |
| --- a/src/heap.h |
| +++ b/src/heap.h |
| @@ -2295,6 +2295,12 @@ class Heap { |
| unsigned int gc_count_at_last_idle_gc_; |
| int scavenges_since_last_idle_round_; |
| + // If the --deopt_every_n_garbage_collections flag is set to a positive value, |
| + // this variable holds the number of garbage collections since the last |
| + // deoptimization triggered by garbage collection. |
| + int gcs_since_last_deopt_; |
| + |
|
Michael Starzinger
2013/04/23 15:15:23
nit: Drop one of the two empty newlines.
|
| + |
| #ifdef VERIFY_HEAP |
| int no_weak_embedded_maps_verification_scope_depth_; |
| #endif |