Chromium Code Reviews| Index: src/heap/incremental-marking-job.cc |
| diff --git a/src/heap/incremental-marking-job.cc b/src/heap/incremental-marking-job.cc |
| index 393b9cce7eeace05b893679d448bfb54490261df..05214d1f60c9b10061b43411cbab50c436fa5341 100644 |
| --- a/src/heap/incremental-marking-job.cc |
| +++ b/src/heap/incremental-marking-job.cc |
| @@ -10,6 +10,7 @@ |
| #include "src/heap/incremental-marking.h" |
| #include "src/isolate.h" |
| #include "src/v8.h" |
| +#include "src/vm-state-inl.h" |
| namespace v8 { |
| namespace internal { |
| @@ -42,6 +43,9 @@ void IncrementalMarkingJob::Task::Step(Heap* heap) { |
| } |
| void IncrementalMarkingJob::Task::RunInternal() { |
| + VMState<GC> state(isolate()); |
| + RuntimeCallTimerScope(isolate(), &RuntimeCallStats::GC); |
|
Camillo Bruni
2017/05/03 16:25:56
we could even add a separate timer? GC_Incremeneta
Michael Lippautz
2017/05/03 16:32:00
GC_IncrementalMarkingJob (can do sweep and/or mark
|
| + |
| Heap* heap = isolate()->heap(); |
| job_->NotifyTask(); |
| IncrementalMarking* incremental_marking = heap->incremental_marking(); |