%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// Copyright 2021 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_CPPGC_OBJECT_VIEW_H_ #define V8_HEAP_CPPGC_OBJECT_VIEW_H_ #include "include/v8config.h" #include "src/heap/cppgc/heap-object-header.h" #include "src/heap/cppgc/heap-page.h" namespace cppgc { namespace internal { // ObjectView allows accessing a header within the bounds of the actual object. // It is not exposed externally and does not keep the underlying object alive. class ObjectView final { public: V8_INLINE explicit ObjectView(const HeapObjectHeader& header); V8_INLINE Address Start() const; V8_INLINE ConstAddress End() const; V8_INLINE size_t Size() const; private: const HeapObjectHeader& header_; const BasePage* base_page_; const bool is_large_object_; }; ObjectView::ObjectView(const HeapObjectHeader& header) : header_(header), base_page_( BasePage::FromPayload(const_cast<HeapObjectHeader*>(&header_))), is_large_object_(header_.IsLargeObject()) { DCHECK_EQ(Start() + Size(), End()); } Address ObjectView::Start() const { return header_.ObjectStart(); } ConstAddress ObjectView::End() const { return is_large_object_ ? LargePage::From(base_page_)->PayloadEnd() : header_.ObjectEnd(); } size_t ObjectView::Size() const { return is_large_object_ ? LargePage::From(base_page_)->ObjectSize() : header_.ObjectSize(); } } // namespace internal } // namespace cppgc #endif // V8_HEAP_CPPGC_OBJECT_VIEW_H_