Changeset 118555 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- May 25, 2012, 1:19:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r118270 r118555 671 671 int r0 = (++it)->u.operand; 672 672 dataLog("[%4d] convert_this\t %s\n", location, registerName(exec, r0).data()); 673 ++it; // Skip value profile. 673 674 break; 674 675 } … … 2086 2087 } 2087 2088 2088 m_lazyOperandValueProfiles.computeUpdatedPredictions( );2089 m_lazyOperandValueProfiles.computeUpdatedPredictions(Collection); 2089 2090 #endif 2090 2091 2091 2092 #if ENABLE(VALUE_PROFILER) 2092 2093 for (unsigned profileIndex = 0; profileIndex < numberOfArgumentValueProfiles(); ++profileIndex) 2093 valueProfileForArgument(profileIndex)->computeUpdatedPrediction( );2094 valueProfileForArgument(profileIndex)->computeUpdatedPrediction(Collection); 2094 2095 for (unsigned profileIndex = 0; profileIndex < numberOfValueProfiles(); ++profileIndex) 2095 valueProfile(profileIndex)->computeUpdatedPrediction( );2096 valueProfile(profileIndex)->computeUpdatedPrediction(Collection); 2096 2097 #endif 2097 2098 }
Note:
See TracChangeset
for help on using the changeset viewer.