Home
last modified time | relevance | path

Searched refs:InOldSpace (Results 1 – 5 of 5) sorted by relevance

/external/v8/test/cctest/heap/
Dtest-heap.cc2865 CHECK(CcTest::heap()->InOldSpace(*o)); in TEST()
2866 CHECK(CcTest::heap()->InOldSpace(*int_array_handle)); in TEST()
2867 CHECK(CcTest::heap()->InOldSpace(int_array_handle->elements())); in TEST()
2868 CHECK(CcTest::heap()->InOldSpace(*double_array_handle)); in TEST()
2869 CHECK(CcTest::heap()->InOldSpace(double_array_handle->elements())); in TEST()
2908 CHECK(CcTest::heap()->InOldSpace(o->elements())); in TEST()
2909 CHECK(CcTest::heap()->InOldSpace(*o)); in TEST()
2949 CHECK(CcTest::heap()->InOldSpace(*o)); in TEST()
2952 CHECK(CcTest::heap()->InOldSpace(o->RawFastPropertyAt(idx1))); in TEST()
2954 CHECK(CcTest::heap()->InOldSpace(o->RawFastPropertyAt(idx2))); in TEST()
[all …]
Dutils-inl.h58 (tenure == TENURED && heap->InOldSpace(*handles.back())));
/external/v8/src/heap/
Dheap-inl.h376 bool Heap::InOldSpace(Address address) { return old_space_->Contains(address); } in InOldSpace() function
379 bool Heap::InOldSpace(Object* object) { in InOldSpace() function
380 return InOldSpace(reinterpret_cast<Address>(object)); in InOldSpace()
Dheap.h1327 inline bool InOldSpace(Address address);
1328 inline bool InOldSpace(Object* object);
Dheap.cc3101 return !InOldSpace(address) || page->WasSwept() || page->SweepingCompleted(); in CanMoveObjectStart()