Changeset 239595 in webkit for trunk/Source/JavaScriptCore/dfg/DFGIntegerRangeOptimizationPhase.cpp
- Timestamp:
- Jan 3, 2019, 9:58:32 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGIntegerRangeOptimizationPhase.cpp
r228411 r239595 1093 1093 if (m_iterations >= giveUpThreshold) { 1094 1094 // This case is not necessarily wrong but it can be a sign that this phase 1095 // does not converge. 1096 // If you hit this assertion for a legitimate case, update the giveUpThreshold 1095 // does not converge. The value giveUpThreshold was chosen emperically based on 1096 // current tests and real world JS. 1097 // If you hit this case for a legitimate reason, update the giveUpThreshold 1097 1098 // to the smallest values that converges. 1098 ASSERT_NOT_REACHED(); 1099 1100 // In release, do not risk holding the thread for too long since this phase 1101 // is really slow. 1099 1100 // Do not risk holding the thread for too long since this phase is really slow. 1102 1101 return false; 1103 1102 }
Note:
See TracChangeset
for help on using the changeset viewer.