| Index: src/heap/store-buffer-inl.h
|
| diff --git a/src/store-buffer-inl.h b/src/heap/store-buffer-inl.h
|
| similarity index 91%
|
| rename from src/store-buffer-inl.h
|
| rename to src/heap/store-buffer-inl.h
|
| index f1458e6b5aa4a1b53cad1697c713202b16b3c5b3..1606465a094d02411d4bed3b1a14c307121996c9 100644
|
| --- a/src/store-buffer-inl.h
|
| +++ b/src/heap/store-buffer-inl.h
|
| @@ -5,7 +5,7 @@
|
| #ifndef V8_STORE_BUFFER_INL_H_
|
| #define V8_STORE_BUFFER_INL_H_
|
|
|
| -#include "src/store-buffer.h"
|
| +#include "src/heap/store-buffer.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
| @@ -44,8 +44,7 @@ void StoreBuffer::EnterDirectlyIntoStoreBuffer(Address addr) {
|
| old_buffer_is_filtered_ = false;
|
| if (top >= old_limit_) {
|
| DCHECK(callback_ != NULL);
|
| - (*callback_)(heap_,
|
| - MemoryChunk::FromAnyPointerAddress(heap_, addr),
|
| + (*callback_)(heap_, MemoryChunk::FromAnyPointerAddress(heap_, addr),
|
| kStoreBufferFullEvent);
|
| }
|
| }
|
| @@ -58,8 +57,7 @@ void StoreBuffer::ClearDeadObject(HeapObject* object) {
|
| map_field = NULL;
|
| }
|
| }
|
| -
|
| -
|
| -} } // namespace v8::internal
|
| +}
|
| +} // namespace v8::internal
|
|
|
| #endif // V8_STORE_BUFFER_INL_H_
|
|
|