Changeset 213657 in webkit for trunk/Source/JavaScriptCore/heap/CodeBlockSet.h
- Timestamp:
- Mar 9, 2017, 1:05:41 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/CodeBlockSet.h
r213652 r213657 63 63 // blocks. This is defined in CodeBlock.h. 64 64 private: 65 void mark(const LockHolder&, CodeBlock* candidateCodeBlock);65 void mark(const AbstractLocker&, CodeBlock* candidateCodeBlock); 66 66 public: 67 void mark(const LockHolder&, void* candidateCodeBlock);67 void mark(const AbstractLocker&, void* candidateCodeBlock); 68 68 69 69 // Delete all code blocks that are only referenced by this set (i.e. owned … … 87 87 88 88 private: 89 void promoteYoungCodeBlocks(const LockHolder&);89 void promoteYoungCodeBlocks(const AbstractLocker&); 90 90 91 91 HashSet<CodeBlock*> m_oldCodeBlocks;
Note:
See TracChangeset
for help on using the changeset viewer.