Changeset 113552 in webkit for trunk/Source/JavaScriptCore/bytecode/DFGExitProfile.h
- Timestamp:
- Apr 8, 2012, 1:46:12 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/DFGExitProfile.h
r106590 r113552 39 39 Overflow, // We exited because of overflow. 40 40 NegativeZero, // We exited because we encountered negative zero. 41 InadequateCoverage, // We exited because we ended up in code that didn't have profiling coverage. 41 42 Uncountable, // We exited for none of the above reasons, and we should not count it. Most uses of this should be viewed as a FIXME. 42 43 }; … … 55 56 case NegativeZero: 56 57 return "NegativeZero"; 58 case InadequateCoverage: 59 return "InadequateCoverage"; 57 60 default: 58 61 return "Unknown";
Note:
See TracChangeset
for help on using the changeset viewer.