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

Unified Diff: src/mark-compact.h

Issue 19495002: Use private field chunk_ (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mark-compact.h
===================================================================
--- src/mark-compact.h (revision 15695)
+++ src/mark-compact.h (working copy)
@@ -958,12 +958,12 @@
: chunk_(chunk) {
last_cell_index_ = Bitmap::IndexToCell(
Bitmap::CellAlignIndex(
- chunk->AddressToMarkbitIndex(chunk->area_end())));
- cell_base_ = chunk->area_start();
+ chunk_->AddressToMarkbitIndex(chunk_->area_end())));
+ cell_base_ = chunk_->area_start();
cell_index_ = Bitmap::IndexToCell(
Bitmap::CellAlignIndex(
- chunk->AddressToMarkbitIndex(cell_base_)));
- cells_ = chunk->markbits()->cells();
+ chunk_->AddressToMarkbitIndex(cell_base_)));
+ cells_ = chunk_->markbits()->cells();
}
inline bool Done() { return cell_index_ == last_cell_index_; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698