OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/scavenger.h" | 5 #include "vm/scavenger.h" |
6 | 6 |
7 #include "vm/dart.h" | 7 #include "vm/dart.h" |
8 #include "vm/dart_api_state.h" | 8 #include "vm/dart_api_state.h" |
9 #include "vm/isolate.h" | 9 #include "vm/isolate.h" |
10 #include "vm/object.h" | 10 #include "vm/object.h" |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 | 373 |
374 void Scavenger::Scavenge(bool invoke_api_callbacks) { | 374 void Scavenger::Scavenge(bool invoke_api_callbacks) { |
375 // Scavenging is not reentrant. Make sure that is the case. | 375 // Scavenging is not reentrant. Make sure that is the case. |
376 ASSERT(!scavenging_); | 376 ASSERT(!scavenging_); |
377 scavenging_ = true; | 377 scavenging_ = true; |
378 had_promotion_failure_ = false; | 378 had_promotion_failure_ = false; |
379 Isolate* isolate = Isolate::Current(); | 379 Isolate* isolate = Isolate::Current(); |
380 NoHandleScope no_handles(isolate); | 380 NoHandleScope no_handles(isolate); |
381 | 381 |
382 if (FLAG_verify_before_gc) { | 382 if (FLAG_verify_before_gc) { |
383 OS::PrintErr("Verifying before Scavenge... "); | 383 OS::PrintErr("Verifying before Scavenge..."); |
384 heap_->Verify(); | 384 heap_->Verify(); |
385 OS::PrintErr(" done.\n"); | 385 OS::PrintErr(" done.\n"); |
386 } | 386 } |
387 | 387 |
388 Timer timer(FLAG_verbose_gc, "Scavenge"); | 388 Timer timer(FLAG_verbose_gc, "Scavenge"); |
389 timer.Start(); | 389 timer.Start(); |
390 // Setup the visitor and run a scavenge. | 390 // Setup the visitor and run a scavenge. |
391 ScavengerVisitor visitor(isolate, this); | 391 ScavengerVisitor visitor(isolate, this); |
392 Prologue(isolate, invoke_api_callbacks); | 392 Prologue(isolate, invoke_api_callbacks); |
393 IterateRoots(isolate, &visitor, !invoke_api_callbacks); | 393 IterateRoots(isolate, &visitor, !invoke_api_callbacks); |
394 ProcessToSpace(&visitor); | 394 ProcessToSpace(&visitor); |
395 IterateWeakReferences(isolate, &visitor); | 395 IterateWeakReferences(isolate, &visitor); |
396 ScavengerWeakVisitor weak_visitor(this); | 396 ScavengerWeakVisitor weak_visitor(this); |
397 IterateWeakRoots(isolate, &weak_visitor, invoke_api_callbacks); | 397 IterateWeakRoots(isolate, &weak_visitor, invoke_api_callbacks); |
398 Epilogue(isolate, invoke_api_callbacks); | 398 Epilogue(isolate, invoke_api_callbacks); |
399 timer.Stop(); | 399 timer.Stop(); |
400 if (FLAG_verbose_gc) { | 400 if (FLAG_verbose_gc) { |
401 OS::PrintErr("Scavenge[%d]: %dus\n", count_, timer.TotalElapsedTime()); | 401 OS::PrintErr("Scavenge[%d]: %dus\n", count_, timer.TotalElapsedTime()); |
402 } | 402 } |
403 | 403 |
404 if (FLAG_verify_after_gc) { | 404 if (FLAG_verify_after_gc) { |
405 OS::PrintErr("Verifying after Scavenge... "); | 405 OS::PrintErr("Verifying after Scavenge..."); |
406 heap_->Verify(); | 406 heap_->Verify(); |
407 OS::PrintErr(" done.\n"); | 407 OS::PrintErr(" done.\n"); |
408 } | 408 } |
409 | 409 |
410 count_++; | 410 count_++; |
411 // Done scavenging. Reset the marker. | 411 // Done scavenging. Reset the marker. |
412 ASSERT(scavenging_); | 412 ASSERT(scavenging_); |
413 scavenging_ = false; | 413 scavenging_ = false; |
414 } | 414 } |
415 | 415 |
416 } // namespace dart | 416 } // namespace dart |
OLD | NEW |