Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-liveedit.cc34 HeapObject* heap_obj; in RUNTIME_FUNCTION() local
35 while ((heap_obj = iterator.next())) { in RUNTIME_FUNCTION()
36 if (!heap_obj->IsSharedFunctionInfo()) continue; in RUNTIME_FUNCTION()
37 SharedFunctionInfo* shared = SharedFunctionInfo::cast(heap_obj); in RUNTIME_FUNCTION()
Druntime-debug.cc1314 HeapObject* heap_obj; in RUNTIME_FUNCTION() local
1315 while ((heap_obj = iterator.next())) { in RUNTIME_FUNCTION()
1316 if (!heap_obj->IsJSObject()) continue; in RUNTIME_FUNCTION()
1317 JSObject* obj = JSObject::cast(heap_obj); in RUNTIME_FUNCTION()
1367 HeapObject* heap_obj; in RUNTIME_FUNCTION() local
1368 while ((heap_obj = iterator.next())) { in RUNTIME_FUNCTION()
1369 if (!heap_obj->IsJSObject()) continue; in RUNTIME_FUNCTION()
1370 JSObject* obj = JSObject::cast(heap_obj); in RUNTIME_FUNCTION()
/external/v8/src/heap/
Dspaces-inl.h511 HeapObject* heap_obj = nullptr; in AllocateRaw() local
512 if (!result.IsRetry() && result.To(&heap_obj)) { in AllocateRaw()
513 AllocationStep(heap_obj->address(), size_in_bytes); in AllocateRaw()
Dmark-compact.cc2937 HeapObject* heap_obj = HeapObject::cast(obj); in UpdateSlot() local
2938 MapWord map_word = heap_obj->map_word(); in UpdateSlot()
2940 DCHECK(heap_obj->GetHeap()->InFromSpace(heap_obj) || in UpdateSlot()
2941 MarkCompactCollector::IsOnEvacuationCandidate(heap_obj) || in UpdateSlot()
2942 Page::FromAddress(heap_obj->address()) in UpdateSlot()
2949 DCHECK(!heap_obj->GetHeap()->InFromSpace(target) && in UpdateSlot()
Dincremental-marking.cc127 HeapObject* heap_obj = HeapObject::cast(obj); in MarkObjectGreyDoNotEnqueue() local
128 ObjectMarking::AnyToGrey(heap_obj); in MarkObjectGreyDoNotEnqueue()