Changeset 221823 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Sep 9, 2017, 9:54:40 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r221822 r221823 78 78 namespace JSC { 79 79 80 namespace DFG {81 struct OSRExitState;82 } // namespace DFG83 84 80 class BytecodeLivenessAnalysis; 85 81 class CodeBlockSet; … … 767 763 void countOSRExit() { m_osrExitCounter++; } 768 764 769 enum class OptimizeAction { None, ReoptimizeNow }; 770 OptimizeAction updateOSRExitCounterAndCheckIfNeedToReoptimize(DFG::OSRExitState&); 771 772 // FIXME: remove this when we fix https://bugs.webkit.org/show_bug.cgi?id=175145. 765 uint32_t* addressOfOSRExitCounter() { return &m_osrExitCounter; } 766 773 767 static ptrdiff_t offsetOfOSRExitCounter() { return OBJECT_OFFSETOF(CodeBlock, m_osrExitCounter); } 774 768
Note:
See TracChangeset
for help on using the changeset viewer.