Changeset 121215 in webkit for trunk/Source/JavaScriptCore/runtime/Options.cpp
- Timestamp:
- Jun 25, 2012, 7:14:07 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Options.cpp
r120834 r121215 68 68 int32_t executionCounterIncrementForReturn; 69 69 70 int32_t maximumExecutionCountsBetweenCheckpoints; 71 70 72 unsigned desiredSpeculativeSuccessFailRatio; 71 73 … … 95 97 unsigned numberOfGCMarkers; 96 98 unsigned opaqueRootMergeThreshold; 99 100 bool forceWeakRandomSeed; 101 unsigned forcedWeakRandomSeed; 97 102 98 103 #if ENABLE(RUN_TIME_HEURISTICS) … … 185 190 SET(executionCounterIncrementForLoop, 1); 186 191 SET(executionCounterIncrementForReturn, 15); 192 193 SET(maximumExecutionCountsBetweenCheckpoints, 1000); 187 194 188 195 SET(desiredSpeculativeSuccessFailRatio, 6); … … 228 235 ASSERT((static_cast<int64_t>(thresholdForOptimizeAfterLongWarmUp) << reoptimizationRetryCounterMax) > 0); 229 236 ASSERT((static_cast<int64_t>(thresholdForOptimizeAfterLongWarmUp) << reoptimizationRetryCounterMax) <= static_cast<int64_t>(std::numeric_limits<int32_t>::max())); 237 238 SET(forceWeakRandomSeed, false); 239 SET(forcedWeakRandomSeed, 0); 230 240 } 231 241
Note:
See TracChangeset
for help on using the changeset viewer.