2011-09-19 18:36:47 +00:00
|
|
|
// Copyright 2011 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2011-09-19 18:36:47 +00:00
|
|
|
|
|
|
|
#ifndef V8_STORE_BUFFER_INL_H_
|
|
|
|
#define V8_STORE_BUFFER_INL_H_
|
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/store-buffer.h"
|
2011-09-19 18:36:47 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
Address StoreBuffer::TopAddress() {
|
|
|
|
return reinterpret_cast<Address>(heap_->store_buffer_top_address());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void StoreBuffer::Mark(Address addr) {
|
|
|
|
ASSERT(!heap_->cell_space()->Contains(addr));
|
|
|
|
ASSERT(!heap_->code_space()->Contains(addr));
|
2013-10-14 13:35:06 +00:00
|
|
|
ASSERT(!heap_->old_data_space()->Contains(addr));
|
2011-09-19 18:36:47 +00:00
|
|
|
Address* top = reinterpret_cast<Address*>(heap_->store_buffer_top());
|
|
|
|
*top++ = addr;
|
|
|
|
heap_->public_set_store_buffer_top(top);
|
|
|
|
if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) {
|
|
|
|
ASSERT(top == limit_);
|
|
|
|
Compact();
|
|
|
|
} else {
|
|
|
|
ASSERT(top < limit_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void StoreBuffer::EnterDirectlyIntoStoreBuffer(Address addr) {
|
|
|
|
if (store_buffer_rebuilding_enabled_) {
|
2011-10-13 11:50:00 +00:00
|
|
|
SLOW_ASSERT(!heap_->cell_space()->Contains(addr) &&
|
|
|
|
!heap_->code_space()->Contains(addr) &&
|
|
|
|
!heap_->old_data_space()->Contains(addr) &&
|
|
|
|
!heap_->new_space()->Contains(addr));
|
2011-09-19 18:36:47 +00:00
|
|
|
Address* top = old_top_;
|
|
|
|
*top++ = addr;
|
|
|
|
old_top_ = top;
|
|
|
|
old_buffer_is_sorted_ = false;
|
|
|
|
old_buffer_is_filtered_ = false;
|
|
|
|
if (top >= old_limit_) {
|
|
|
|
ASSERT(callback_ != NULL);
|
|
|
|
(*callback_)(heap_,
|
2013-09-11 07:14:41 +00:00
|
|
|
MemoryChunk::FromAnyPointerAddress(heap_, addr),
|
2011-09-19 18:36:47 +00:00
|
|
|
kStoreBufferFullEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-11 09:17:03 +00:00
|
|
|
void StoreBuffer::ClearDeadObject(HeapObject* object) {
|
|
|
|
Address& map_field = Memory::Address_at(object->address());
|
|
|
|
if (heap_->map_space()->Contains(map_field)) {
|
|
|
|
map_field = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-19 18:36:47 +00:00
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_STORE_BUFFER_INL_H_
|