HomeSort by relevance Sort by last modified time
    Searched defs:gcInfo (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Visitor.h 86 // GCInfo contains meta-data associated with objects allocated in the
92 // reachable. There is a GCInfo struct for each class that directly
94 struct GCInfo {
137 // Trait to get the GCInfo structure for types that have their
446 void checkGCInfo(const void*, const GCInfo*);
451 DEBUG_ONLY(void checkGCInfo(const Type*, const GCInfo*);) \
720 static const GCInfo* get()
722 static const GCInfo gcInfo = {
731 return &gcInfo;
    [all...]
Heap.cpp 61 const GCInfo* gcInfo = Heap::findGCInfo(reinterpret_cast<Address>(const_cast<void*>(object)));
62 if (gcInfo)
63 return gcInfo->m_className;
403 void HeapObjectHeader::finalize(const GCInfo* gcInfo, Address object, size_t objectSize)
405 ASSERT(gcInfo);
406 if (gcInfo->hasFinalizer()) {
407 gcInfo->m_finalize(object);
463 ASSERT(gcInfo());
    [all...]
Heap.h 135 BaseHeapPage(PageMemory* storage, const GCInfo* gcInfo, ThreadState* state)
137 , m_gcInfo(gcInfo)
155 virtual const GCInfo* findGCInfo(Address) = 0;
161 const GCInfo* gcInfo() { return m_gcInfo; }
169 const GCInfo* m_gcInfo;
190 LargeHeapObject(PageMemory* storage, const GCInfo* gcInfo, ThreadState* state) : BaseHeapPage(storage, gcInfo, state
    [all...]

Completed in 873 milliseconds