Changeset 223715 in webkit for trunk/Source/JavaScriptCore/runtime/Structure.cpp
- Timestamp:
- Oct 19, 2017, 3:23:58 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Structure.cpp
r223161 r223715 309 309 [&] (const GCSafeConcurrentJSLocker&, PropertyOffset offset, PropertyOffset newLastOffset) { 310 310 RELEASE_ASSERT(Structure::outOfLineCapacity(newLastOffset) == oldOutOfLineCapacity); 311 RELEASE_ASSERT(isInlineOffset(offset)); 312 result->m_prototype.set(vm, result, jsNumber(offset)); 311 RELEASE_ASSERT(offset == knownPolyProtoOffset); 312 RELEASE_ASSERT(isInlineOffset(knownPolyProtoOffset)); 313 result->m_prototype.setWithoutWriteBarrier(JSValue()); 313 314 result->setLastOffset(newLastOffset); 314 315 }); … … 1173 1174 1174 1175 if (hasPolyProto()) 1175 out.print(", PolyProto offset:", polyProtoOffset());1176 out.print(", PolyProto offset:", knownPolyProtoOffset); 1176 1177 else if (m_prototype.get().isCell()) 1177 1178 out.print(", Proto:", RawPointer(m_prototype.get().asCell()));
Note:
See TracChangeset
for help on using the changeset viewer.