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

Unified Diff: runtime/vm/scavenger.h

Issue 10696029: Implement a 2-pass heap verification algorithm. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add missing delete Created 8 years, 6 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: runtime/vm/scavenger.h
diff --git a/runtime/vm/scavenger.h b/runtime/vm/scavenger.h
index b9303d812855552a54b7617a463177b38f997744..bef85467272227bfe4fac9f351598ea07b9cc721 100644
--- a/runtime/vm/scavenger.h
+++ b/runtime/vm/scavenger.h
@@ -74,6 +74,11 @@ class Scavenger {
void VisitObjects(ObjectVisitor* visitor) const;
void VisitObjectPointers(ObjectPointerVisitor* visitor) const;
+ void StartEndAddress(uword* start, uword* end) const {
Ivan Posva 2012/06/29 22:20:41 The more I read this name the more I am convinced
cshapiro 2012/07/10 21:48:17 Yeah, I agree. It's kind of wonky. I am happy to
+ *start = to_->start();
+ *end = to_->end();
+ }
+
// Returns true if the last scavenge had a promotion failure.
bool HadPromotionFailure() {
return had_promotion_failure_;
« runtime/vm/object_set.h ('K') | « runtime/vm/pages.cc ('k') | runtime/vm/scavenger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698