Home
last modified time | relevance | path

Searched refs:NOT_IN_GC (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/x64/
Dframes-x64.cc82 if (Heap::gc_state() != Heap::NOT_IN_GC || disable_heap_access_) { in GetCallerStackPointer()
/external/v8/src/ia32/
Dframes-ia32.cc77 if (Heap::gc_state() != Heap::NOT_IN_GC || disable_heap_access_) { in GetCallerStackPointer()
/external/v8/src/arm/
Dframes-arm.cc89 if (Heap::gc_state() != Heap::NOT_IN_GC || disable_heap_access_) { in GetCallerStackPointer()
/external/v8/src/
Dheap-inl.h54 ASSERT(allocation_allowed_ && gc_state_ == NOT_IN_GC); in AllocateRaw()
157 gc_state_ != NOT_IN_GC || // ... or in the middle of GC in InNewSpace()
Dheap.cc111 Heap::HeapState Heap::gc_state_ = NOT_IN_GC;
305 ASSERT(allocation_allowed_ && gc_state_ == NOT_IN_GC); in GarbageCollectionPrologue()
618 gc_state_ = NOT_IN_GC; in MarkCompact()
832 gc_state_ = NOT_IN_GC; in Scavenge()
1441 ASSERT(allocation_allowed_ && gc_state_ == NOT_IN_GC); in AllocateHeapNumber()
2258 ASSERT(gc_state_ == NOT_IN_GC); in Allocate()
2326 ASSERT(allocation_allowed_ && gc_state_ == NOT_IN_GC); in AllocateArgumentsObject()
Dglobal-handles.cc370 ASSERT(Heap::gc_state() == Heap::NOT_IN_GC); in PostGarbageCollectionProcessing()
Dheap.h783 enum HeapState { NOT_IN_GC, SCAVENGE, MARK_COMPACT }; enumerator