Changeset 289515 in webkit for trunk/Source/JavaScriptCore/runtime/JSString.cpp
- Timestamp:
- Feb 9, 2022, 5:50:04 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSString.cpp
r288537 r289515 69 69 const JSString* thisObject = jsCast<const JSString*>(cell); 70 70 out.printf("<%p, %s, [%u], ", thisObject, thisObject->className(vm), thisObject->length()); 71 uintptr_t pointer = thisObject-> m_fiber;71 uintptr_t pointer = thisObject->fiberConcurrently(); 72 72 if (pointer & isRopeInPointer) { 73 73 if (pointer & JSRopeString::isSubstringInPointer) … … 104 104 { 105 105 JSString* thisObject = asString(cell); 106 uintptr_t pointer = thisObject-> m_fiber;106 uintptr_t pointer = thisObject->fiberConcurrently(); 107 107 if (pointer & isRopeInPointer) 108 108 return Base::estimatedSize(cell, vm); … … 117 117 Base::visitChildren(thisObject, visitor); 118 118 119 uintptr_t pointer = thisObject-> m_fiber;119 uintptr_t pointer = thisObject->fiberConcurrently(); 120 120 if (pointer & isRopeInPointer) { 121 121 if (pointer & JSRopeString::isSubstringInPointer) {
Note:
See TracChangeset
for help on using the changeset viewer.