Changeset 64943 in webkit for trunk/JavaScriptCore/jit/JITStubs.cpp
- Timestamp:
- Aug 8, 2010, 12:22:06 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITStubs.cpp
r64938 r64943 1598 1598 { 1599 1599 if (stubInfo->accessType == access_get_by_id_proto) 1600 #if ENABLE(MOVABLE_GC_OBJECTS)1601 stubInfo->initGetByIdProtoList(new PolymorphicAccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdProto.baseObjectStructure, stubInfo->u.getByIdProto.prototypeStructure, stubInfo->u.getByIdProto.propertyType));1602 #else1603 1600 stubInfo->initGetByIdProtoList(new PolymorphicAccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdProto.baseObjectStructure, stubInfo->u.getByIdProto.prototypeStructure)); 1604 #endif1605 1601 else if (stubInfo->accessType == access_get_by_id_chain) 1606 #if ENABLE(MOVABLE_GC_OBJECTS)1607 stubInfo->initGetByIdProtoList(new PolymorphicAccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdChain.baseObjectStructure, stubInfo->u.getByIdChain.chain, stubInfo->u.getByIdChain.count, stubInfo->u.getByIdChain.propertyType));1608 #else1609 1602 stubInfo->initGetByIdProtoList(new PolymorphicAccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdChain.baseObjectStructure, stubInfo->u.getByIdChain.chain)); 1610 #endif1611 1603 ASSERT(stubInfo->accessType == access_get_by_id_proto_list); 1612 1604 }
Note:
See TracChangeset
for help on using the changeset viewer.