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

Unified Diff: src/heap.cc

Issue 362723003: Added a promotion queue unit test that test promotion queue memory corruption (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 812fec127ad34973d6d2a0115fc51e98a9cbab72..c8af39c8fb8766766a3a9cb91c9c7a99a2735018 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -1950,6 +1950,10 @@ class ScavengingVisitor : public StaticVisitorBase {
HeapObject* source,
HeapObject* target,
int size)) {
+ ASSERT(!heap->InToSpace(target) ||
titzer 2014/07/01 11:58:20 Comments here too?
Hannes Payer (out of office) 2014/07/01 16:08:11 Done.
+ heap->promotion_queue()->IsBelowPromotionQueue(
+ target->address() + size));
+
// Copy the content of source to target.
heap->CopyBlock(target->address(), source->address(), size);

Powered by Google App Engine
This is Rietveld 408576698