Home
last modified time | relevance | path

Searched refs:read_only_heap_ (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/heap/
Dread-only-spaces.h101 ReadOnlyHeap* read_only_heap() const { return read_only_heap_.get(); } in read_only_heap()
113 std::unique_ptr<ReadOnlyHeap> read_only_heap_; variable
Dread-only-spaces.cc39 read_only_heap_ = std::move(read_only_heap); in set_read_only_heap()
170 auto original_cache = read_only_heap_->read_only_object_cache_; in GetReadOnlyHeapForIsolate()
/external/v8/src/execution/
Disolate.cc2941 DCHECK_IMPLIES(read_only_heap_ != nullptr, read_only_heap_ == ro_heap); in ThrowInternal()
2942 read_only_heap_ = ro_heap; in ThrowInternal()
2943 heap_.SetUpFromReadOnlyHeap(read_only_heap_); in ThrowInternal()
3229 if (read_only_heap_->IsOwnedByIsolate()) { in ThrowInternal()
3230 delete read_only_heap_; in ThrowInternal()
3231 read_only_heap_ = nullptr; in ThrowInternal()
3626 read_only_heap_->OnCreateHeapObjectsComplete(this); in ThrowInternal()
Disolate.h552 void set_read_only_heap(ReadOnlyHeap* ro_heap) { read_only_heap_ = ro_heap; } in set_read_only_heap()
990 ReadOnlyHeap* read_only_heap() const { return read_only_heap_; } in read_only_heap()
1744 ReadOnlyHeap* read_only_heap_ = nullptr; variable