Changeset 188884 in webkit for trunk/Source/JavaScriptCore/heap/Heap.h
- Timestamp:
- Aug 24, 2015, 2:43:13 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Heap.h
r188846 r188884 150 150 typedef void (*Finalizer)(JSCell*); 151 151 JS_EXPORT_PRIVATE void addFinalizer(JSCell*, Finalizer); 152 void add CompiledCode(ExecutableBase*);152 void addExecutable(ExecutableBase*); 153 153 154 154 void notifyIsSafeToCollect() { m_isSafeToCollect = true; } … … 209 209 size_t sizeAfterLastFullCollection() const { return m_sizeAfterLastFullCollect; } 210 210 211 JS_EXPORT_PRIVATE void deleteAllCo mpiledCode();212 void deleteAllUnlinked FunctionCode();211 JS_EXPORT_PRIVATE void deleteAllCodeBlocks(); 212 void deleteAllUnlinkedCodeBlocks(); 213 213 214 214 void didAllocate(size_t); … … 237 237 238 238 void addLogicallyEmptyWeakBlock(WeakBlock*); 239 240 Vector<ExecutableBase*>& compiledCode() { return m_compiledCode; }241 239 242 240 private: … … 393 391 double m_lastCodeDiscardTime; 394 392 395 Vector<ExecutableBase*> m_ compiledCode;393 Vector<ExecutableBase*> m_executables; 396 394 397 395 Vector<WeakBlock*> m_logicallyEmptyWeakBlocks;
Note:
See TracChangeset
for help on using the changeset viewer.