Home
last modified time | relevance | path

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

/external/v8/test/cctest/
Dtest-mark-compact.cc104 CHECK(HEAP->InSpace(*array, NEW_SPACE)); in TEST()
110 CHECK(HEAP->InSpace(*array, OLD_POINTER_SPACE)); in TEST()
137 CHECK(HEAP->InSpace(*array, NEW_SPACE)); in TEST()
/external/v8/src/
Dliveobjectlist.cc214 static bool InSpace(AllocationSpace space, HeapObject* heap_obj) { in InSpace() function
217 return heap->InSpace(heap_obj, space); in InSpace()
229 if (heap->InSpace(heap_obj, static_cast<AllocationSpace>(sp))) { in InSpace()
233 SLOW_ASSERT(heap->InSpace(heap_obj, LO_SPACE)); in InSpace()
338 if ((space_ != kInvalidSpace) && !InSpace(space_, obj)) { in MatchesSlow()
Dserialize.cc1635 if (HEAP->InSpace(object, s)) { in SpaceOfObject()
1656 if (HEAP->InSpace(object, s)) { in SpaceOfAlreadySerializedObject()
Dheap.h1179 bool InSpace(Address addr, AllocationSpace space);
1180 bool InSpace(HeapObject* value, AllocationSpace space);
Dheap.cc5071 bool Heap::InSpace(HeapObject* value, AllocationSpace space) { in InSpace() function in v8::internal::Heap
5072 return InSpace(value->address(), space); in InSpace()
5076 bool Heap::InSpace(Address addr, AllocationSpace space) { in InSpace() function in v8::internal::Heap