Changeset 137937 in webkit for trunk/Source/JavaScriptCore/bytecode/ExitKind.h
- Timestamp:
- Dec 17, 2012, 1:38:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/ExitKind.h
r137175 r137937 37 37 Overflow, // We exited because of overflow. 38 38 NegativeZero, // We exited because we encountered negative zero. 39 StoreToHole, // We had a store to a hole. 40 LoadFromHole, // We had a load from a hole. 39 41 OutOfBounds, // We had an out-of-bounds access to an array. 42 StoreToHoleOrOutOfBounds, // We're simultaneously speculating that we're in bounds and not accessing a hole, and one of those things didn't pan out. 40 43 InadequateCoverage, // We exited because we ended up in code that didn't have profiling coverage. 41 44 ArgumentsEscaped, // We exited because arguments escaped but we didn't expect them to.
Note:
See TracChangeset
for help on using the changeset viewer.