From 6036726eb981b6c4b42047513b9d3f4ac865daac Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Wed, 24 Oct 2018 11:30:15 +0200 Subject: BASELINE: Update Chromium to 70.0.3538.78 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie634710bf039e26c1957f4ae45e101bd4c434ae7 Reviewed-by: Michael BrĂ¼ning --- chromium/v8/src/heap/store-buffer-inl.h | 36 +++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 chromium/v8/src/heap/store-buffer-inl.h (limited to 'chromium/v8/src/heap/store-buffer-inl.h') diff --git a/chromium/v8/src/heap/store-buffer-inl.h b/chromium/v8/src/heap/store-buffer-inl.h new file mode 100644 index 00000000000..4609c83ca03 --- /dev/null +++ b/chromium/v8/src/heap/store-buffer-inl.h @@ -0,0 +1,36 @@ +// Copyright 2011 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef V8_HEAP_STORE_BUFFER_INL_H_ +#define V8_HEAP_STORE_BUFFER_INL_H_ + +#include "src/heap/store-buffer.h" + +#include "src/heap/heap-inl.h" + +namespace v8 { +namespace internal { + +void StoreBuffer::InsertDeletionIntoStoreBuffer(Address start, Address end) { + if (top_ + sizeof(Address) * 2 > limit_[current_]) { + StoreBufferOverflow(heap_->isolate()); + } + *top_ = MarkDeletionAddress(start); + top_++; + *top_ = end; + top_++; +} + +void StoreBuffer::InsertIntoStoreBuffer(Address slot) { + if (top_ + sizeof(Address) > limit_[current_]) { + StoreBufferOverflow(heap_->isolate()); + } + *top_ = slot; + top_++; +} + +} // namespace internal +} // namespace v8 + +#endif // V8_HEAP_STORE_BUFFER_INL_H_ -- cgit v1.2.1