Changeset 64938 in webkit for trunk/JavaScriptCore/jit/JITStubs.cpp
- Timestamp:
- Aug 7, 2010, 11:04:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITStubs.cpp
r64818 r64938 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 #else 1600 1603 stubInfo->initGetByIdProtoList(new PolymorphicAccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdProto.baseObjectStructure, stubInfo->u.getByIdProto.prototypeStructure)); 1604 #endif 1601 1605 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 #else 1602 1609 stubInfo->initGetByIdProtoList(new PolymorphicAccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdChain.baseObjectStructure, stubInfo->u.getByIdChain.chain)); 1610 #endif 1603 1611 ASSERT(stubInfo->accessType == access_get_by_id_proto_list); 1604 1612 }
Note:
See TracChangeset
for help on using the changeset viewer.