Changeset 185160 in webkit for trunk/Source/JavaScriptCore/bytecode/GetByIdStatus.cpp
- Timestamp:
- Jun 3, 2015, 1:04:00 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/GetByIdStatus.cpp
r185103 r185160 104 104 105 105 if (!result.takesSlowPath() 106 && (hasExitSite(locker, profiledBlock, bytecodeIndex) 107 || profiledBlock->likelyToTakeSlowCase(bytecodeIndex))) 106 && hasExitSite(locker, profiledBlock, bytecodeIndex)) 108 107 return GetByIdStatus(result.makesCalls() ? MakesCalls : TakesSlowPath, true); 109 108 #else … … 122 121 CallLinkStatus::ExitSiteData callExitSiteData) 123 122 { 124 if (!stubInfo || !stubInfo->seen) 123 if (!stubInfo) 124 return GetByIdStatus(NoInformation); 125 126 if (!stubInfo->seen) 125 127 return GetByIdStatus(NoInformation); 126 128 … … 135 137 } 136 138 } 139 140 if (stubInfo->tookSlowPath) 141 return GetByIdStatus(slowPathState); 137 142 138 143 // Finally figure out if we can derive an access strategy.
Note:
See TracChangeset
for help on using the changeset viewer.