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

Unified Diff: src/store-buffer.h

Issue 5985012: Rename write buffers to store buffers. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 11 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 | « src/serialize.cc ('k') | src/store-buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/store-buffer.h
===================================================================
--- src/store-buffer.h (revision 6183)
+++ src/store-buffer.h (working copy)
@@ -39,7 +39,7 @@
// Used to implement the write barrier by collecting addresses of pointers
// between spaces.
-class WriteBuffer : public AllStatic {
+class StoreBuffer : public AllStatic {
public:
static inline Address TopAddress();
@@ -48,8 +48,8 @@
static inline void Mark(Address addr);
- static const int kWriteBufferOverflowBit = 1 << 16;
- static const int kWriteBufferSize = kWriteBufferOverflowBit;
+ static const int kStoreBufferOverflowBit = 1 << 16;
+ static const int kStoreBufferSize = kStoreBufferOverflowBit;
static const int kHashMapLengthLog2 = 12;
static const int kHashMapLength = 1 << kHashMapLengthLog2;
« no previous file with comments | « src/serialize.cc ('k') | src/store-buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698