Changeset 112624 in webkit for trunk/Source/JavaScriptCore/heap/Heap.h
- Timestamp:
- Mar 29, 2012, 5:36:37 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Heap.h
r111877 r112624 43 43 class CopiedSpace; 44 44 class CodeBlock; 45 class FunctionExecutable; 45 46 class GCActivityCallback; 46 47 class GlobalCodeBlock; … … 106 107 typedef void (*Finalizer)(JSCell*); 107 108 JS_EXPORT_PRIVATE void addFinalizer(JSCell*, Finalizer); 109 void addFunctionExecutable(FunctionExecutable*); 110 void removeFunctionExecutable(FunctionExecutable*); 108 111 109 112 void notifyIsSafeToCollect() { m_isSafeToCollect = true; } … … 140 143 141 144 double lastGCLength() { return m_lastGCLength; } 145 146 void discardAllCompiledCode(); 142 147 143 148 private: … … 241 246 JSGlobalData* m_globalData; 242 247 double m_lastGCLength; 248 249 DoublyLinkedList<FunctionExecutable> m_functions; 243 250 }; 244 251
Note:
See TracChangeset
for help on using the changeset viewer.