Changeset 185103 in webkit for trunk/Source/JavaScriptCore/bytecode/CallLinkStatus.cpp
- Timestamp:
- Jun 1, 2015, 10:39:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CallLinkStatus.cpp
r185099 r185103 102 102 103 103 CallLinkStatus::ExitSiteData CallLinkStatus::computeExitSiteData( 104 const ConcurrentJITLocker& locker, CodeBlock* profiledBlock, unsigned bytecodeIndex, 105 ExitingJITType exitingJITType) 104 const ConcurrentJITLocker& locker, CodeBlock* profiledBlock, unsigned bytecodeIndex) 106 105 { 107 106 ExitSiteData exitSiteData; … … 109 108 #if ENABLE(DFG_JIT) 110 109 exitSiteData.m_takesSlowPath = 111 profiledBlock->hasExitSite(locker, DFG::FrequentExitSite(bytecodeIndex, BadType , exitingJITType))112 || profiledBlock->hasExitSite(locker, DFG::FrequentExitSite(bytecodeIndex, BadExecutable , exitingJITType));110 profiledBlock->hasExitSite(locker, DFG::FrequentExitSite(bytecodeIndex, BadType)) 111 || profiledBlock->hasExitSite(locker, DFG::FrequentExitSite(bytecodeIndex, BadExecutable)); 113 112 exitSiteData.m_badFunction = 114 profiledBlock->hasExitSite(locker, DFG::FrequentExitSite(bytecodeIndex, BadCell , exitingJITType));113 profiledBlock->hasExitSite(locker, DFG::FrequentExitSite(bytecodeIndex, BadCell)); 115 114 #else 116 115 UNUSED_PARAM(locker); … … 266 265 ConcurrentJITLocker locker(currentBaseline->m_lock); 267 266 exitSiteData = computeExitSiteData( 268 locker, currentBaseline, codeOrigin.bytecodeIndex , ExitFromFTL);267 locker, currentBaseline, codeOrigin.bytecodeIndex); 269 268 } 270 269
Note:
See TracChangeset
for help on using the changeset viewer.