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

Side by Side Diff: src/heap/store-buffer.cc

Issue 1040443002: MarkBit cleanup: They have to be accessed through Marking accessors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
« src/heap/mark-compact.cc ('K') | « src/heap/spaces.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <algorithm> 5 #include <algorithm>
6 6
7 #include "src/v8.h" 7 #include "src/v8.h"
8 8
9 #include "src/counters.h" 9 #include "src/counters.h"
10 #include "src/heap/store-buffer-inl.h" 10 #include "src/heap/store-buffer-inl.h"
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 } 373 }
374 } 374 }
375 } 375 }
376 old_top_ = new_top; 376 old_top_ = new_top;
377 ClearFilteringHashSets(); 377 ClearFilteringHashSets();
378 378
379 // Don't scan on scavenge dead large objects. 379 // Don't scan on scavenge dead large objects.
380 LargeObjectIterator it(heap_->lo_space()); 380 LargeObjectIterator it(heap_->lo_space());
381 for (HeapObject* object = it.Next(); object != NULL; object = it.Next()) { 381 for (HeapObject* object = it.Next(); object != NULL; object = it.Next()) {
382 MemoryChunk* chunk = MemoryChunk::FromAddress(object->address()); 382 MemoryChunk* chunk = MemoryChunk::FromAddress(object->address());
383 if (chunk->scan_on_scavenge() && !Marking::MarkBitFrom(object).Get()) { 383 if (chunk->scan_on_scavenge() &&
384 Marking::IsWhite(Marking::MarkBitFrom(object))) {
384 chunk->set_scan_on_scavenge(false); 385 chunk->set_scan_on_scavenge(false);
385 } 386 }
386 } 387 }
387 } 388 }
388 389
389 390
390 void StoreBuffer::VerifyValidStoreBufferEntries() { 391 void StoreBuffer::VerifyValidStoreBufferEntries() {
391 for (Address* current = old_start_; current < old_top_; current++) { 392 for (Address* current = old_start_; current < old_top_; current++) {
392 Object** slot = reinterpret_cast<Object**>(*current); 393 Object** slot = reinterpret_cast<Object**>(*current);
393 Object* object = *slot; 394 Object* object = *slot;
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 } 565 }
565 old_buffer_is_sorted_ = false; 566 old_buffer_is_sorted_ = false;
566 old_buffer_is_filtered_ = false; 567 old_buffer_is_filtered_ = false;
567 *old_top_++ = reinterpret_cast<Address>(int_addr << kPointerSizeLog2); 568 *old_top_++ = reinterpret_cast<Address>(int_addr << kPointerSizeLog2);
568 DCHECK(old_top_ <= old_limit_); 569 DCHECK(old_top_ <= old_limit_);
569 } 570 }
570 heap_->isolate()->counters()->store_buffer_compactions()->Increment(); 571 heap_->isolate()->counters()->store_buffer_compactions()->Increment();
571 } 572 }
572 } 573 }
573 } // namespace v8::internal 574 } // namespace v8::internal
OLDNEW
« src/heap/mark-compact.cc ('K') | « src/heap/spaces.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698