Commit c06f1186 authored by Maciej Goszczycki's avatar Maciej Goszczycki Committed by Commit Bot

ReadOnlyHeap::Contains should only work with HeapObjects

Change-Id: I6c1a2edcee54993cd73e211de8271ea6b6c42ad7
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1543732
Auto-Submit: Maciej Goszczycki <goszczycki@google.com>
Reviewed-by: 's avatarHannes Payer <hpayer@chromium.org>
Commit-Queue: Maciej Goszczycki <goszczycki@google.com>
Cr-Commit-Position: refs/heads/master@{#60514}
parent c3b51ac0
......@@ -73,7 +73,7 @@ void ReadOnlyHeap::OnHeapTearDown() {
}
// static
bool ReadOnlyHeap::Contains(Object object) {
bool ReadOnlyHeap::Contains(HeapObject object) {
return Page::FromAddress(object.ptr())->owner()->identity() == RO_SPACE;
}
......
......@@ -36,7 +36,7 @@ class ReadOnlyHeap final {
void OnHeapTearDown();
// Returns whether the object resides in the read-only space.
static bool Contains(Object object);
static bool Contains(HeapObject object);
std::vector<Object>* read_only_object_cache() {
return &read_only_object_cache_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment