Changeset 264736 in webkit
- Timestamp:
- Jul 22, 2020, 5:08:50 PM (5 years ago)
- Location:
- trunk/Source
- Files:
-
- 34 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSCallbackObjectFunctions.h
r262872 r264736 299 299 if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(globalObject)) { 300 300 if (StaticFunctionEntry* entry = staticFunctions->get(name)) { 301 PropertySlot getSlot(thisObject, PropertySlot::InternalMethodType::VMInquiry); 302 if (Parent::getOwnPropertySlot(thisObject, globalObject, propertyName, getSlot)) 301 PropertySlot getSlot(thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm); 302 bool found = Parent::getOwnPropertySlot(thisObject, globalObject, propertyName, getSlot); 303 getSlot.disallowVMEntry.reset(); 304 if (found) 303 305 return Parent::put(thisObject, globalObject, propertyName, value, slot); 304 306 if (entry->attributes & kJSPropertyAttributeReadOnly) … … 669 671 670 672 // Check for cached or override property. 671 PropertySlot slot2(thisObj, PropertySlot::InternalMethodType::VMInquiry); 672 if (Parent::getOwnPropertySlot(thisObj, globalObject, propertyName, slot2)) 673 PropertySlot slot2(thisObj, PropertySlot::InternalMethodType::VMInquiry, &vm); 674 bool found = Parent::getOwnPropertySlot(thisObj, globalObject, propertyName, slot2); 675 slot2.disallowVMEntry.reset(); 676 if (found) 673 677 return JSValue::encode(slot2.getValue(globalObject, propertyName)); 674 678 -
trunk/Source/JavaScriptCore/ChangeLog
r264696 r264736 1 2020-07-22 Mark Lam <mark.lam@apple.com> 2 3 Disallow VM entry when doing a VMInquiry. 4 https://bugs.webkit.org/show_bug.cgi?id=214624 5 <rdar://problem/65915314> 6 7 Reviewed by Saam Barati. 8 9 1. In PropertySlot's constructor, automatically install a DisallowVMEntry scope 10 if the passed in internal method type is VMInquiry. This ensures that we won't 11 be able to enter the VM to call JS code while doing the inquiry. As a result, 12 the PropertySlot constructor will now take an optional VM pointer, which is 13 must be passed in in when the internal method type is VMInquiry. 14 15 Note that the handling of attempts to enter the VM depends on 16 Options::crashOnDisallowedVMEntry(). 17 18 On Debug build (due to ASSERT_ENABLED), Options::crashOnDisallowedVMEntry() 19 defaults to true and the VM will crash on disallowed entry. 20 On Release build, Options::crashOnDisallowedVMEntry() defaults to false and 21 disallow entry attempts into the VM will be treated like calling an empty 22 function that returns undefined. This is not new behavior in this patch, but 23 I just want to have a reminder here of how DisallowVMEntry will be enforcing 24 no entry into the VM while doing a VMInquiry. 25 26 2. After VMInquiry gets, sometimes the client code wants to do other work that 27 do entails entering the VM. In such cases, we need to reset the PropertySlot's 28 disallowVMEntry scope. Fixed up a few places in client code to do this reset. 29 30 3. Make the DisableVMEntry scope copyable. At least one place wants to copy 31 PropertySlot, and as a result, will need to copy its embedded DisableVMEntry 32 scope as well if installed. 33 34 For DisableVMEntry, we'll handle copying semantics as follows: copying a 35 DisableVMEntry will ref the VM::disallowVMEntryCount. The count will be 36 decremented when both instances are destructed. As a result, VM entry will 37 be disallowed as long as one of the copies are still alive. 38 39 4. For the setObjectToStringValue() method of Structure and StructureRareData, we 40 were previously passing a PropertySlot by copy. We don't really need to do 41 this. Ultimately, only StructureRareData::setObjectToStringValue() needs to 42 access a few of the PropertySlot query methods. So, we changed these methods 43 to pass a `const PropertySlot&` instead to void the needless copying. 44 45 * API/JSCallbackObjectFunctions.h: 46 (JSC::JSCallbackObject<Parent>::put): 47 (JSC::JSCallbackObject<Parent>::staticFunctionGetter): 48 * heap/HeapSnapshotBuilder.cpp: 49 (JSC::HeapSnapshotBuilder::json): 50 * inspector/JSInjectedScriptHost.cpp: 51 (Inspector::JSInjectedScriptHost::queryInstances): 52 * interpreter/Interpreter.cpp: 53 (JSC::Interpreter::execute): 54 * jit/JITOperations.cpp: 55 * llint/LLIntSlowPaths.cpp: 56 (JSC::LLInt::LLINT_SLOW_PATH_DECL): 57 * runtime/DisallowVMEntry.h: 58 (JSC::DisallowVMEntryImpl::DisallowVMEntryImpl): 59 * runtime/ErrorInstance.cpp: 60 (JSC::ErrorInstance::sanitizedToString): 61 * runtime/JSFunction.cpp: 62 (JSC::JSFunction::getOwnNonIndexPropertyNames): 63 (JSC::JSFunction::put): 64 (JSC::JSFunction::defineOwnProperty): 65 * runtime/JSGenericTypedArrayViewConstructorInlines.h: 66 (JSC::constructGenericTypedArrayViewWithArguments): 67 * runtime/JSGlobalObject.cpp: 68 (JSC::getGetterById): 69 (JSC::JSGlobalObject::defineOwnProperty): 70 (JSC::JSGlobalObject::tryInstallArraySpeciesWatchpoint): 71 * runtime/JSObject.cpp: 72 (JSC::JSObject::calculatedClassName): 73 * runtime/JSObjectInlines.h: 74 (JSC::JSObject::getPrivateFieldSlot): 75 * runtime/JSScope.cpp: 76 (JSC::abstractAccess): 77 * runtime/PropertySlot.h: 78 (JSC::PropertySlot::PropertySlot): 79 * runtime/SamplingProfiler.cpp: 80 (JSC::SamplingProfiler::StackFrame::nameFromCallee): 81 * runtime/Structure.h: 82 * runtime/StructureInlines.h: 83 (JSC::Structure::setObjectToStringValue): 84 * runtime/StructureRareData.cpp: 85 (JSC::StructureRareData::setObjectToStringValue): 86 * runtime/StructureRareData.h: 87 * tools/JSDollarVM.cpp: 88 (JSC::functionGetGetterSetter): 89 1 90 2020-07-22 Geoffrey Garen <ggaren@apple.com> 2 91 -
trunk/Source/JavaScriptCore/heap/HeapSnapshotBuilder.cpp
r261464 r264736 410 410 JSObject* object = asObject(node.cell); 411 411 if (JSGlobalObject* globalObject = object->globalObject(vm)) { 412 PropertySlot slot(object, PropertySlot::InternalMethodType::VMInquiry );412 PropertySlot slot(object, PropertySlot::InternalMethodType::VMInquiry, &vm); 413 413 if (!object->getOwnPropertySlot(object, globalObject, vm.propertyNames->constructor, slot)) 414 414 className = JSObject::calculatedClassName(object); -
trunk/Source/JavaScriptCore/inspector/JSInjectedScriptHost.cpp
r261895 r264736 1 1 /* 2 * Copyright (C) 2013-20 19Apple Inc. All rights reserved.2 * Copyright (C) 2013-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 647 647 JSValue prototype = object; 648 648 649 PropertySlot prototypeSlot(object, PropertySlot::InternalMethodType::VMInquiry );649 PropertySlot prototypeSlot(object, PropertySlot::InternalMethodType::VMInquiry, &vm); 650 650 if (object->getPropertySlot(globalObject, vm.propertyNames->prototype, prototypeSlot)) { 651 651 RETURN_IF_EXCEPTION(scope, { }); … … 658 658 } 659 659 } 660 prototypeSlot.disallowVMEntry.reset(); 660 661 661 662 if (object->inherits<ProxyObject>(vm) || prototype.inherits<ProxyObject>(vm)) -
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r264688 r264736 1098 1098 for (unsigned i = 0; i < numVariables; ++i) { 1099 1099 const Identifier& ident = unlinkedCodeBlock->variable(i); 1100 PropertySlot slot(globalLexicalEnvironment, PropertySlot::InternalMethodType::VMInquiry );1100 PropertySlot slot(globalLexicalEnvironment, PropertySlot::InternalMethodType::VMInquiry, &vm); 1101 1101 if (JSGlobalLexicalEnvironment::getOwnPropertySlot(globalLexicalEnvironment, globalObject, ident, slot)) { 1102 1102 return checkedReturn(throwTypeError(globalObject, throwScope, makeString("Can't create duplicate global variable in eval: '", String(ident.impl()), "'"))); … … 1106 1106 for (unsigned i = 0; i < numTopLevelFunctionDecls; ++i) { 1107 1107 FunctionExecutable* function = codeBlock->functionDecl(i); 1108 PropertySlot slot(globalLexicalEnvironment, PropertySlot::InternalMethodType::VMInquiry );1108 PropertySlot slot(globalLexicalEnvironment, PropertySlot::InternalMethodType::VMInquiry, &vm); 1109 1109 if (JSGlobalLexicalEnvironment::getOwnPropertySlot(globalLexicalEnvironment, globalObject, function->name(), slot)) { 1110 1110 return checkedReturn(throwTypeError(globalObject, throwScope, makeString("Can't create duplicate global variable in eval: '", String(function->name().impl()), "'"))); -
trunk/Source/JavaScriptCore/jit/JITOperations.cpp
r262613 r264736 175 175 176 176 JSValue baseValue = JSValue::decode(base); 177 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry );177 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry, &vm); 178 178 baseValue.getPropertySlot(globalObject, ident, slot); 179 179 … … 191 191 192 192 JSValue baseValue = JSValue::decode(base); 193 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry );193 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry, &vm); 194 194 baseValue.getPropertySlot(globalObject, ident, slot); 195 195 … … 207 207 208 208 JSValue baseValue = JSValue::decode(base); 209 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry );209 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry, &vm); 210 210 211 211 baseValue.getPropertySlot(globalObject, ident, slot); -
trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
r264688 r264736 635 635 const Identifier& ident = codeBlock->identifier(bytecode.m_property); 636 636 JSValue baseValue = getOperand(callFrame, bytecode.m_base); 637 PropertySlot slot(baseValue, PropertySlot::PropertySlot::InternalMethodType::VMInquiry );637 PropertySlot slot(baseValue, PropertySlot::PropertySlot::InternalMethodType::VMInquiry, &vm); 638 638 639 639 baseValue.getPropertySlot(globalObject, ident, slot); -
trunk/Source/JavaScriptCore/runtime/DisallowVMEntry.h
r264688 r264736 37 37 template<typename VMType = VM> 38 38 class DisallowVMEntryImpl { 39 WTF_MAKE_NONCOPYABLE(DisallowVMEntryImpl);40 39 public: 41 40 DisallowVMEntryImpl(VMType& vm) 42 41 : m_vm(&vm) 42 { 43 m_vm->disallowVMEntryCount++; 44 } 45 46 DisallowVMEntryImpl(const DisallowVMEntryImpl& other) 47 : m_vm(other.m_vm) 43 48 { 44 49 m_vm->disallowVMEntryCount++; -
trunk/Source/JavaScriptCore/runtime/ErrorInstance.cpp
r264160 r264736 140 140 JSValue nameValue; 141 141 auto namePropertName = vm.propertyNames->name; 142 PropertySlot nameSlot(this, PropertySlot::InternalMethodType::VMInquiry );142 PropertySlot nameSlot(this, PropertySlot::InternalMethodType::VMInquiry, &vm); 143 143 144 144 JSValue currentObj = this; … … 168 168 JSValue messageValue; 169 169 auto messagePropertName = vm.propertyNames->message; 170 PropertySlot messageSlot(this, PropertySlot::InternalMethodType::VMInquiry );170 PropertySlot messageSlot(this, PropertySlot::InternalMethodType::VMInquiry, &vm); 171 171 if (JSObject::getOwnPropertySlot(this, globalObject, messagePropertName, messageSlot) && messageSlot.isValue()) 172 172 messageValue = messageSlot.getValue(globalObject, messagePropertName); -
trunk/Source/JavaScriptCore/runtime/JSFunction.cpp
r262252 r264736 2 2 * Copyright (C) 1999-2002 Harri Porten (porten@kde.org) 3 3 * Copyright (C) 2001 Peter Kelly (pmk@post.com) 4 * Copyright (C) 2003-20 19Apple Inc. All rights reserved.4 * Copyright (C) 2003-2020 Apple Inc. All rights reserved. 5 5 * Copyright (C) 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca) 6 6 * Copyright (C) 2007 Maks Orlovich … … 509 509 if (!thisObject->isHostOrBuiltinFunction()) { 510 510 // Make sure prototype has been reified. 511 PropertySlot slot(thisObject, PropertySlot::InternalMethodType::VMInquiry );511 PropertySlot slot(thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm); 512 512 thisObject->methodTable(vm)->getOwnPropertySlot(thisObject, globalObject, vm.propertyNames->prototype, slot); 513 513 RETURN_IF_EXCEPTION(scope, void()); … … 564 564 // Make sure prototype has been reified, such that it can only be overwritten 565 565 // following the rules set out in ECMA-262 8.12.9. 566 PropertySlot getSlot(thisObject, PropertySlot::InternalMethodType::VMInquiry );566 PropertySlot getSlot(thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm); 567 567 thisObject->methodTable(vm)->getOwnPropertySlot(thisObject, globalObject, propertyName, getSlot); 568 568 RETURN_IF_EXCEPTION(scope, false); 569 569 if (FunctionRareData* rareData = thisObject->rareData()) 570 570 rareData->clear("Store to prototype property of a function"); 571 getSlot.disallowVMEntry.reset(); 571 572 RELEASE_AND_RETURN(scope, Base::put(thisObject, globalObject, propertyName, value, slot)); 572 573 } … … 643 644 // Make sure prototype has been reified, such that it can only be overwritten 644 645 // following the rules set out in ECMA-262 8.12.9. 645 PropertySlot slot(thisObject, PropertySlot::InternalMethodType::VMInquiry );646 PropertySlot slot(thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm); 646 647 thisObject->methodTable(vm)->getOwnPropertySlot(thisObject, globalObject, propertyName, slot); 647 648 RETURN_IF_EXCEPTION(scope, false); 648 649 if (FunctionRareData* rareData = thisObject->rareData()) 649 650 rareData->clear("Store to prototype property of a function"); 651 slot.disallowVMEntry.reset(); 650 652 RELEASE_AND_RETURN(scope, Base::defineOwnProperty(object, globalObject, propertyName, descriptor, throwException)); 651 653 } -
trunk/Source/JavaScriptCore/runtime/JSGenericTypedArrayViewConstructorInlines.h
r263315 r264736 1 1 /* 2 * Copyright (C) 2013-20 19Apple Inc. All rights reserved.2 * Copyright (C) 2013-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 157 157 // This getPropertySlot operation should not be observed by the Proxy. 158 158 // So we use VMInquiry. And purge the opaque object cases (proxy and namespace object) by isTaintedByOpaqueObject() guard. 159 PropertySlot lengthSlot(object, PropertySlot::InternalMethodType::VMInquiry );159 PropertySlot lengthSlot(object, PropertySlot::InternalMethodType::VMInquiry, &vm); 160 160 object->getPropertySlot(globalObject, vm.propertyNames->length, lengthSlot); 161 161 RETURN_IF_EXCEPTION(scope, nullptr); 162 lengthSlot.disallowVMEntry.reset(); 162 163 163 164 JSValue iteratorFunc = object->get(globalObject, vm.propertyNames->iteratorSymbol); -
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r264639 r264736 507 507 static GetterSetter* getGetterById(JSGlobalObject* globalObject, JSObject* base, const Identifier& ident) 508 508 { 509 VM& vm = globalObject->vm(); 509 510 JSValue baseValue = JSValue(base); 510 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry );511 PropertySlot slot(baseValue, PropertySlot::InternalMethodType::VMInquiry, &vm); 511 512 baseValue.getPropertySlot(globalObject, ident, slot); 512 513 return jsCast<GetterSetter*>(slot.getPureResult()); … … 1395 1396 bool JSGlobalObject::defineOwnProperty(JSObject* object, JSGlobalObject* globalObject, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow) 1396 1397 { 1398 VM& vm = globalObject->vm(); 1397 1399 JSGlobalObject* thisObject = jsCast<JSGlobalObject*>(object); 1398 PropertySlot slot(thisObject, PropertySlot::InternalMethodType::VMInquiry );1400 PropertySlot slot(thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm); 1399 1401 // silently ignore attempts to add accessors aliasing vars. 1400 1402 if (descriptor.isAccessorDescriptor() && symbolTableGet(thisObject, propertyName, slot)) 1401 1403 return false; 1404 slot.disallowVMEntry.reset(); 1402 1405 return Base::defineOwnProperty(thisObject, globalObject, propertyName, descriptor, shouldThrow); 1403 1406 } … … 2066 2069 }; 2067 2070 2068 PropertySlot constructorSlot(arrayPrototype, PropertySlot::InternalMethodType::VMInquiry );2071 PropertySlot constructorSlot(arrayPrototype, PropertySlot::InternalMethodType::VMInquiry, &vm); 2069 2072 arrayPrototype->getOwnPropertySlot(arrayPrototype, this, vm.propertyNames->constructor, constructorSlot); 2070 2073 scope.assertNoException(); … … 2080 2083 constructorStructure = constructorStructure->flattenDictionaryStructure(vm, arrayConstructor); 2081 2084 2082 PropertySlot speciesSlot(arrayConstructor, PropertySlot::InternalMethodType::VMInquiry );2085 PropertySlot speciesSlot(arrayConstructor, PropertySlot::InternalMethodType::VMInquiry, &vm); 2083 2086 arrayConstructor->getOwnPropertySlot(arrayConstructor, this, vm.propertyNames->speciesSymbol, speciesSlot); 2084 2087 scope.assertNoException(); -
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r264574 r264736 2 2 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org) 3 3 * Copyright (C) 2001 Peter Kelly (pmk@post.com) 4 * Copyright (C) 2003-20 19Apple Inc. All rights reserved.4 * Copyright (C) 2003-2020 Apple Inc. All rights reserved. 5 5 * Copyright (C) 2007 Eric Seidel (eric@webkit.org) 6 6 * … … 535 535 // Check for a display name of obj.constructor. 536 536 // This is useful to get `Foo` for the `(class Foo).prototype` object. 537 PropertySlot slot(object, PropertySlot::InternalMethodType::VMInquiry );537 PropertySlot slot(object, PropertySlot::InternalMethodType::VMInquiry, &vm); 538 538 if (object->getOwnPropertySlot(object, globalObject, vm.propertyNames->constructor, slot)) { 539 539 EXCEPTION_ASSERT(!scope.exception()); … … 559 559 if (protoValue.isObject()) { 560 560 JSObject* protoObject = asObject(protoValue); 561 PropertySlot slot(protoValue, PropertySlot::InternalMethodType::VMInquiry );561 PropertySlot slot(protoValue, PropertySlot::InternalMethodType::VMInquiry, &vm); 562 562 if (protoObject->getPropertySlot(globalObject, vm.propertyNames->constructor, slot)) { 563 563 EXCEPTION_ASSERT(!scope.exception()); -
trunk/Source/JavaScriptCore/runtime/JSObjectInlines.h
r264679 r264736 585 585 586 586 JSValue value = object->getDirect(offset); 587 #if ASSERT_ENABLED 587 588 ASSERT(value); 588 589 if (value.isCell()) { … … 595 596 // https://bugs.webkit.org/show_bug.cgi?id=194435 596 597 } 598 #endif 597 599 598 600 slot.setValue(object, attributes, value, offset); -
trunk/Source/JavaScriptCore/runtime/JSScope.cpp
r262613 r264736 1 1 /* 2 * Copyright (C) 2012-20 17Apple Inc. All Rights Reserved.2 * Copyright (C) 2012-2020 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 153 153 } 154 154 155 PropertySlot slot(globalObject, PropertySlot::InternalMethodType::VMInquiry );155 PropertySlot slot(globalObject, PropertySlot::InternalMethodType::VMInquiry, &vm); 156 156 bool hasOwnProperty = globalObject->getOwnPropertySlot(globalObject, globalObject, ident, slot); 157 slot.disallowVMEntry.reset(); 157 158 if (!hasOwnProperty) { 158 159 op = ResolveOp(makeType(UnresolvedProperty, needsVarInjectionChecks), 0, nullptr, nullptr, nullptr, 0); -
trunk/Source/JavaScriptCore/runtime/PropertySlot.h
r264679 r264736 22 22 23 23 #include "DOMAnnotation.h" 24 #include "DisallowVMEntry.h" 24 25 #include "GetVM.h" 25 26 #include "JSCJSValue.h" … … 113 114 }; 114 115 115 explicit PropertySlot(const JSValue thisValue, InternalMethodType internalMethodType )116 explicit PropertySlot(const JSValue thisValue, InternalMethodType internalMethodType, VM* vmForInquiry = nullptr) 116 117 : m_thisValue(thisValue) 117 118 , m_internalMethodType(internalMethodType) 118 119 { 120 if (isVMInquiry()) 121 disallowVMEntry.emplace(*vmForInquiry); 119 122 } 120 123 … … 400 403 AdditionalDataType m_additionalDataType { AdditionalDataType::None }; 401 404 bool m_isTaintedByOpaqueObject { false }; 405 public: 406 Optional<DisallowVMEntry> disallowVMEntry; 407 private: 402 408 union { 403 409 DOMAttributeAnnotation domAttribute; -
trunk/Source/JavaScriptCore/runtime/SamplingProfiler.cpp
r262161 r264736 729 729 JSGlobalObject* globalObject = callee->globalObject(vm); 730 730 auto getPropertyIfPureOperation = [&] (const Identifier& ident) -> String { 731 PropertySlot slot(callee, PropertySlot::InternalMethodType::VMInquiry );731 PropertySlot slot(callee, PropertySlot::InternalMethodType::VMInquiry, &vm); 732 732 PropertyName propertyName(ident); 733 733 bool hasProperty = callee->getPropertySlot(globalObject, propertyName, slot); -
trunk/Source/JavaScriptCore/runtime/Structure.h
r263035 r264736 1 1 /* 2 * Copyright (C) 2008-20 19Apple Inc. All rights reserved.2 * Copyright (C) 2008-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 537 537 } 538 538 539 void setObjectToStringValue(JSGlobalObject*, VM&, JSString* value, PropertySlottoStringTagSymbolSlot);539 void setObjectToStringValue(JSGlobalObject*, VM&, JSString* value, const PropertySlot& toStringTagSymbolSlot); 540 540 541 541 const ClassInfo* classInfo() const { return m_classInfo; } -
trunk/Source/JavaScriptCore/runtime/StructureInlines.h
r262827 r264736 1 1 /* 2 * Copyright (C) 2013-20 19Apple Inc. All rights reserved.2 * Copyright (C) 2013-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 428 428 } 429 429 430 inline void Structure::setObjectToStringValue(JSGlobalObject* globalObject, VM& vm, JSString* value, PropertySlottoStringTagSymbolSlot)430 inline void Structure::setObjectToStringValue(JSGlobalObject* globalObject, VM& vm, JSString* value, const PropertySlot& toStringTagSymbolSlot) 431 431 { 432 432 if (!hasRareData()) -
trunk/Source/JavaScriptCore/runtime/StructureRareData.cpp
r262054 r264736 1 1 /* 2 * Copyright (C) 2013-20 17Apple Inc. All rights reserved.2 * Copyright (C) 2013-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 96 96 }; 97 97 98 void StructureRareData::setObjectToStringValue(JSGlobalObject* globalObject, VM& vm, Structure* ownStructure, JSString* value, PropertySlottoStringTagSymbolSlot)98 void StructureRareData::setObjectToStringValue(JSGlobalObject* globalObject, VM& vm, Structure* ownStructure, JSString* value, const PropertySlot& toStringTagSymbolSlot) 99 99 { 100 100 if (canCacheObjectToStringValue()) -
trunk/Source/JavaScriptCore/runtime/StructureRareData.h
r259463 r264736 1 1 /* 2 * Copyright (C) 2013-20 19Apple Inc. All rights reserved.2 * Copyright (C) 2013-2020 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 67 67 68 68 JSString* objectToStringValue() const; 69 void setObjectToStringValue(JSGlobalObject*, VM&, Structure* baseStructure, JSString* value, PropertySlottoStringTagSymbolSlot);69 void setObjectToStringValue(JSGlobalObject*, VM&, Structure* baseStructure, JSString* value, const PropertySlot& toStringTagSymbolSlot); 70 70 void giveUpOnObjectToStringValueCache() { m_objectToStringValue.setWithoutWriteBarrier(objectToStringCacheGiveUpMarker()); } 71 71 bool canCacheObjectToStringValue() { return m_objectToStringValue.unvalidatedGet() == objectToStringCacheGiveUpMarker(); } -
trunk/Source/JavaScriptCore/tools/JSDollarVM.cpp
r264304 r264736 2896 2896 RETURN_IF_EXCEPTION(scope, { }); 2897 2897 2898 PropertySlot slot(value, PropertySlot::InternalMethodType::VMInquiry );2898 PropertySlot slot(value, PropertySlot::InternalMethodType::VMInquiry, &vm); 2899 2899 value.getPropertySlot(globalObject, propertyName, slot); 2900 2900 RETURN_IF_EXCEPTION(scope, { }); -
trunk/Source/WebCore/ChangeLog
r264734 r264736 1 2020-07-21 Mark Lam <mark.lam@apple.com> 2 3 Disallow VM entry when doing a VMInquiry. 4 https://bugs.webkit.org/show_bug.cgi?id=214624 5 <rdar://problem/65915314> 6 7 Reviewed by Saam Barati. 8 9 1. Change binding to reset the DisallowVMEntry scope in PropertySlot after doing 10 a VMInquiry. 11 2. Rebase bindings test results to match. 12 13 * bindings/js/JSDOMAbstractOperations.h: 14 (WebCore::isVisibleNamedProperty): 15 (WebCore::accessVisibleNamedProperty): 16 * bindings/scripts/CodeGeneratorJS.pm: 17 (GeneratePut): 18 (GeneratePutByIndex): 19 (GenerateDefineOwnProperty): 20 * bindings/scripts/test/JS/JSTestNamedAndIndexedSetterNoIdentifier.cpp: 21 (WebCore::JSTestNamedAndIndexedSetterNoIdentifier::put): 22 (WebCore::JSTestNamedAndIndexedSetterNoIdentifier::putByIndex): 23 (WebCore::JSTestNamedAndIndexedSetterNoIdentifier::defineOwnProperty): 24 * bindings/scripts/test/JS/JSTestNamedAndIndexedSetterThrowingException.cpp: 25 (WebCore::JSTestNamedAndIndexedSetterThrowingException::put): 26 (WebCore::JSTestNamedAndIndexedSetterThrowingException::putByIndex): 27 (WebCore::JSTestNamedAndIndexedSetterThrowingException::defineOwnProperty): 28 * bindings/scripts/test/JS/JSTestNamedAndIndexedSetterWithIdentifier.cpp: 29 (WebCore::JSTestNamedAndIndexedSetterWithIdentifier::put): 30 (WebCore::JSTestNamedAndIndexedSetterWithIdentifier::putByIndex): 31 (WebCore::JSTestNamedAndIndexedSetterWithIdentifier::defineOwnProperty): 32 * bindings/scripts/test/JS/JSTestNamedSetterNoIdentifier.cpp: 33 (WebCore::JSTestNamedSetterNoIdentifier::put): 34 (WebCore::JSTestNamedSetterNoIdentifier::putByIndex): 35 (WebCore::JSTestNamedSetterNoIdentifier::defineOwnProperty): 36 * bindings/scripts/test/JS/JSTestNamedSetterThrowingException.cpp: 37 (WebCore::JSTestNamedSetterThrowingException::put): 38 (WebCore::JSTestNamedSetterThrowingException::putByIndex): 39 (WebCore::JSTestNamedSetterThrowingException::defineOwnProperty): 40 * bindings/scripts/test/JS/JSTestNamedSetterWithIdentifier.cpp: 41 (WebCore::JSTestNamedSetterWithIdentifier::put): 42 (WebCore::JSTestNamedSetterWithIdentifier::putByIndex): 43 (WebCore::JSTestNamedSetterWithIdentifier::defineOwnProperty): 44 * bindings/scripts/test/JS/JSTestNamedSetterWithIndexedGetter.cpp: 45 (WebCore::JSTestNamedSetterWithIndexedGetter::put): 46 (WebCore::JSTestNamedSetterWithIndexedGetter::putByIndex): 47 (WebCore::JSTestNamedSetterWithIndexedGetter::defineOwnProperty): 48 * bindings/scripts/test/JS/JSTestNamedSetterWithIndexedGetterAndSetter.cpp: 49 (WebCore::JSTestNamedSetterWithIndexedGetterAndSetter::put): 50 (WebCore::JSTestNamedSetterWithIndexedGetterAndSetter::putByIndex): 51 (WebCore::JSTestNamedSetterWithIndexedGetterAndSetter::defineOwnProperty): 52 * bindings/scripts/test/JS/JSTestNamedSetterWithUnforgableProperties.cpp: 53 (WebCore::JSTestNamedSetterWithUnforgableProperties::put): 54 (WebCore::JSTestNamedSetterWithUnforgableProperties::putByIndex): 55 (WebCore::JSTestNamedSetterWithUnforgableProperties::defineOwnProperty): 56 1 57 2020-07-22 Eric Carlson <eric.carlson@apple.com> 2 58 -
trunk/Source/WebCore/bindings/js/JSDOMAbstractOperations.h
r251425 r264736 60 60 61 61 // 2. If O has an own property named P, then return false. 62 JSC::PropertySlot slot { &thisObject, JSC::PropertySlot::InternalMethodType::VMInquiry };62 JSC::PropertySlot slot { &thisObject, JSC::PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject.vm() }; 63 63 if (JSC::JSObject::getOwnPropertySlot(&thisObject, &lexicalGlobalObject, propertyName, slot)) 64 64 return false; … … 100 100 101 101 // 2. If O has an own property named P, then return false. 102 JSC::PropertySlot slot { &thisObject, JSC::PropertySlot::InternalMethodType::VMInquiry };102 JSC::PropertySlot slot { &thisObject, JSC::PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject.vm() }; 103 103 if (JSC::JSObject::getOwnPropertySlot(&thisObject, &lexicalGlobalObject, propertyName, slot)) 104 104 return WTF::nullopt; -
trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm
r264201 r264736 966 966 my $overrideBuiltins = $codeGenerator->InheritsExtendedAttribute($interface, "OverrideBuiltins"); 967 967 if (!$overrideBuiltins) { 968 push(@$outputArray, " PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };\n");968 push(@$outputArray, " PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() };\n"); 969 969 push(@$outputArray, " JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject));\n"); 970 push(@$outputArray, " if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) {\n"); 970 push(@$outputArray, " bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot);\n"); 971 push(@$outputArray, " slot.disallowVMEntry.reset();\n"); 972 push(@$outputArray, " if (!found) {\n"); 971 973 $additionalIndent .= " "; 972 974 } … … 1042 1044 my $additionalIndent = ""; 1043 1045 if (!$overrideBuiltins) { 1044 push(@$outputArray, " PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };\n");1046 push(@$outputArray, " PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm };\n"); 1045 1047 push(@$outputArray, " JSValue prototype = thisObject->getPrototypeDirect(vm);\n"); 1046 push(@$outputArray, " if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) {\n"); 1048 push(@$outputArray, " bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot);\n"); 1049 push(@$outputArray, " slot.disallowVMEntry.reset();\n"); 1050 push(@$outputArray, " if (!found) {\n"); 1047 1051 $additionalIndent .= " "; 1048 1052 } … … 1177 1181 # only look at the actual properties, and not call into our implementation of the 1178 1182 # [[GetOwnProperty]] hook? 1179 push(@$outputArray, $additionalIndent. " PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };\n"); 1180 push(@$outputArray, $additionalIndent. " if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) {\n"); 1183 push(@$outputArray, $additionalIndent. " PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() };\n"); 1184 push(@$outputArray, $additionalIndent. " bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot);\n"); 1185 push(@$outputArray, $additionalIndent. " slot.disallowVMEntry.reset();\n"); 1186 push(@$outputArray, $additionalIndent. " if (!found) {\n"); 1181 1187 $additionalIndent .= " "; 1182 1188 } -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedAndIndexedSetterNoIdentifier.cpp
r260992 r264736 235 235 236 236 if (!propertyName.isSymbol()) { 237 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };237 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 238 238 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 239 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 239 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 240 slot.disallowVMEntry.reset(); 241 if (!found) { 240 242 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 241 243 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 264 266 265 267 auto propertyName = Identifier::from(vm, index); 266 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };268 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 267 269 JSValue prototype = thisObject->getPrototypeDirect(vm); 268 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 270 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 271 slot.disallowVMEntry.reset(); 272 if (!found) { 269 273 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 270 274 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 293 297 294 298 if (!propertyName.isSymbol()) { 295 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 296 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 299 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 300 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 301 slot.disallowVMEntry.reset(); 302 if (!found) { 297 303 if (!propertyDescriptor.isDataDescriptor()) 298 304 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedAndIndexedSetterThrowingException.cpp
r260992 r264736 235 235 236 236 if (!propertyName.isSymbol()) { 237 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };237 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 238 238 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 239 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 239 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 240 slot.disallowVMEntry.reset(); 241 if (!found) { 240 242 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 241 243 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 264 266 265 267 auto propertyName = Identifier::from(vm, index); 266 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };268 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 267 269 JSValue prototype = thisObject->getPrototypeDirect(vm); 268 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 270 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 271 slot.disallowVMEntry.reset(); 272 if (!found) { 269 273 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 270 274 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 293 297 294 298 if (!propertyName.isSymbol()) { 295 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 296 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 299 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 300 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 301 slot.disallowVMEntry.reset(); 302 if (!found) { 297 303 if (!propertyDescriptor.isDataDescriptor()) 298 304 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedAndIndexedSetterWithIdentifier.cpp
r260992 r264736 244 244 245 245 if (!propertyName.isSymbol()) { 246 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };246 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 247 247 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 248 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 248 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 249 slot.disallowVMEntry.reset(); 250 if (!found) { 249 251 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 250 252 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 273 275 274 276 auto propertyName = Identifier::from(vm, index); 275 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };277 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 276 278 JSValue prototype = thisObject->getPrototypeDirect(vm); 277 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 279 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 280 slot.disallowVMEntry.reset(); 281 if (!found) { 278 282 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 279 283 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 302 306 303 307 if (!propertyName.isSymbol()) { 304 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 305 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 308 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 309 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 310 slot.disallowVMEntry.reset(); 311 if (!found) { 306 312 if (!propertyDescriptor.isDataDescriptor()) 307 313 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterNoIdentifier.cpp
r260992 r264736 208 208 209 209 if (!propertyName.isSymbol()) { 210 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };210 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 211 211 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 212 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 212 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 213 slot.disallowVMEntry.reset(); 214 if (!found) { 213 215 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 214 216 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 229 231 230 232 auto propertyName = Identifier::from(vm, index); 231 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };233 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 232 234 JSValue prototype = thisObject->getPrototypeDirect(vm); 233 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 235 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 236 slot.disallowVMEntry.reset(); 237 if (!found) { 234 238 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 235 239 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 248 252 249 253 if (!propertyName.isSymbol()) { 250 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 251 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 254 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 255 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 256 slot.disallowVMEntry.reset(); 257 if (!found) { 252 258 if (!propertyDescriptor.isDataDescriptor()) 253 259 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterThrowingException.cpp
r260992 r264736 208 208 209 209 if (!propertyName.isSymbol()) { 210 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };210 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 211 211 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 212 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 212 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 213 slot.disallowVMEntry.reset(); 214 if (!found) { 213 215 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 214 216 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 229 231 230 232 auto propertyName = Identifier::from(vm, index); 231 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };233 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 232 234 JSValue prototype = thisObject->getPrototypeDirect(vm); 233 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 235 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 236 slot.disallowVMEntry.reset(); 237 if (!found) { 234 238 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 235 239 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 248 252 249 253 if (!propertyName.isSymbol()) { 250 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 251 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 254 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 255 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 256 slot.disallowVMEntry.reset(); 257 if (!found) { 252 258 if (!propertyDescriptor.isDataDescriptor()) 253 259 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterWithIdentifier.cpp
r260992 r264736 214 214 215 215 if (!propertyName.isSymbol()) { 216 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };216 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 217 217 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 218 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 218 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 219 slot.disallowVMEntry.reset(); 220 if (!found) { 219 221 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 220 222 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 235 237 236 238 auto propertyName = Identifier::from(vm, index); 237 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };239 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 238 240 JSValue prototype = thisObject->getPrototypeDirect(vm); 239 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 241 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 242 slot.disallowVMEntry.reset(); 243 if (!found) { 240 244 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 241 245 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 254 258 255 259 if (!propertyName.isSymbol()) { 256 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 257 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 260 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 261 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 262 slot.disallowVMEntry.reset(); 263 if (!found) { 258 264 if (!propertyDescriptor.isDataDescriptor()) 259 265 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterWithIndexedGetter.cpp
r260992 r264736 236 236 237 237 if (!propertyName.isSymbol()) { 238 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };238 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 239 239 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 240 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 240 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 241 slot.disallowVMEntry.reset(); 242 if (!found) { 241 243 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 242 244 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 257 259 258 260 auto propertyName = Identifier::from(vm, index); 259 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };261 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 260 262 JSValue prototype = thisObject->getPrototypeDirect(vm); 261 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 263 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 264 slot.disallowVMEntry.reset(); 265 if (!found) { 262 266 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 263 267 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 279 283 280 284 if (!propertyName.isSymbol()) { 281 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 282 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 285 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 286 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 287 slot.disallowVMEntry.reset(); 288 if (!found) { 283 289 if (!propertyDescriptor.isDataDescriptor()) 284 290 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterWithIndexedGetterAndSetter.cpp
r260992 r264736 244 244 245 245 if (!propertyName.isSymbol()) { 246 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };246 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 247 247 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 248 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 248 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 249 slot.disallowVMEntry.reset(); 250 if (!found) { 249 251 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 250 252 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 273 275 274 276 auto propertyName = Identifier::from(vm, index); 275 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };277 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 276 278 JSValue prototype = thisObject->getPrototypeDirect(vm); 277 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 279 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 280 slot.disallowVMEntry.reset(); 281 if (!found) { 278 282 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 279 283 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 302 306 303 307 if (!propertyName.isSymbol()) { 304 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 305 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 308 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 309 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 310 slot.disallowVMEntry.reset(); 311 if (!found) { 306 312 if (!propertyDescriptor.isDataDescriptor()) 307 313 return false; -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterWithUnforgableProperties.cpp
r260992 r264736 232 232 233 233 if (!propertyName.isSymbol()) { 234 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };234 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 235 235 JSValue prototype = thisObject->getPrototypeDirect(JSC::getVM(lexicalGlobalObject)); 236 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 236 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 237 slot.disallowVMEntry.reset(); 238 if (!found) { 237 239 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 238 240 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 253 255 254 256 auto propertyName = Identifier::from(vm, index); 255 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry };257 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &vm }; 256 258 JSValue prototype = thisObject->getPrototypeDirect(vm); 257 if (!(prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot))) { 259 bool found = prototype.isObject() && asObject(prototype)->getPropertySlot(lexicalGlobalObject, propertyName, slot); 260 slot.disallowVMEntry.reset(); 261 if (!found) { 258 262 auto throwScope = DECLARE_THROW_SCOPE(JSC::getVM(lexicalGlobalObject)); 259 263 auto nativeValue = convert<IDLDOMString>(*lexicalGlobalObject, value); … … 278 282 279 283 if (!isUnforgeablePropertyName(propertyName)) { 280 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry }; 281 if (!JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot)) { 284 PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; 285 bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); 286 slot.disallowVMEntry.reset(); 287 if (!found) { 282 288 if (!propertyDescriptor.isDataDescriptor()) 283 289 return false;
Note:
See TracChangeset
for help on using the changeset viewer.