Changeset 156050 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Sep 18, 2013, 10:27:08 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r155711 r156050 913 913 #if ENABLE(VALUE_PROFILER) 914 914 bool shouldOptimizeNow(); 915 void updateAllValueProfilePredictions( OperationInProgress= NoOperation);915 void updateAllValueProfilePredictions(HeapOperation = NoOperation); 916 916 void updateAllArrayPredictions(); 917 void updateAllPredictions( OperationInProgress= NoOperation);917 void updateAllPredictions(HeapOperation = NoOperation); 918 918 #else 919 919 bool updateAllPredictionsAndCheckIfShouldOptimizeNow() { return false; } 920 void updateAllValueProfilePredictions( OperationInProgress= NoOperation) { }920 void updateAllValueProfilePredictions(HeapOperation = NoOperation) { } 921 921 void updateAllArrayPredictions() { } 922 void updateAllPredictions( OperationInProgress= NoOperation) { }922 void updateAllPredictions(HeapOperation = NoOperation) { } 923 923 #endif 924 924 … … 984 984 985 985 #if ENABLE(VALUE_PROFILER) 986 void updateAllPredictionsAndCountLiveness( OperationInProgress, unsigned& numberOfLiveNonArgumentValueProfiles, unsigned& numberOfSamplesInProfiles);986 void updateAllPredictionsAndCountLiveness(HeapOperation, unsigned& numberOfLiveNonArgumentValueProfiles, unsigned& numberOfSamplesInProfiles); 987 987 #endif 988 988
Note:
See TracChangeset
for help on using the changeset viewer.