Changeset 154108 in webkit for trunk/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h
- Timestamp:
- Aug 15, 2013, 10:23:39 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h
r154038 r154108 1275 1275 AbstractValue& value = forNode(node->child1()); 1276 1276 1277 // It's only valid to issue a structure transition watchpoint if we already1278 // know that the watchpoint covers a superset of the structures known to1279 // belong to the set of future structures that this value may have.1280 // Currently, we only issue singleton watchpoints (that check one structure)1281 // and our futurePossibleStructure set can only contain zero, one, or an1282 // infinity of structures.1283 ASSERT(1284 value.m_futurePossibleStructure.isSubsetOf(StructureSet(node->structure()))1285 || m_graph.watchpoints().shouldAssumeMixedState(node->structure()->transitionWatchpointSet()));1286 1287 1277 filter(value, node->structure()); 1288 1278 m_state.setHaveStructures(true);
Note:
See TracChangeset
for help on using the changeset viewer.