Changeset 179241 in webkit for trunk/Source/JavaScriptCore/bytecode/CallLinkStatus.cpp
- Timestamp:
- Jan 27, 2015, 9:48:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CallLinkStatus.cpp
r173069 r179241 87 87 #if ENABLE(DFG_JIT) 88 88 ExitSiteData exitSiteData = computeExitSiteData(locker, profiledBlock, bytecodeIndex); 89 if (exitSiteData.m_takesSlowPath)90 return takesSlowPath();91 89 92 90 CallLinkInfo* callLinkInfo = map.get(CodeOrigin(bytecodeIndex)); 93 if (!callLinkInfo) 91 if (!callLinkInfo) { 92 if (exitSiteData.m_takesSlowPath) 93 return takesSlowPath(); 94 94 return computeFromLLInt(locker, profiledBlock, bytecodeIndex); 95 } 95 96 96 97 return computeFor(locker, profiledBlock, *callLinkInfo, exitSiteData);
Note:
See TracChangeset
for help on using the changeset viewer.