Changeset 216428 in webkit
- Timestamp:
- May 8, 2017, 9:56:32 AM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 63 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r216332 r216428 1 2017-05-08 Mark Lam <mark.lam@apple.com> 2 3 Introduce ExceptionScope::assertNoException() and releaseAssertNoException(). 4 https://bugs.webkit.org/show_bug.cgi?id=171776 5 6 Reviewed by Keith Miller. 7 8 Instead of ASSERT(!scope.exception()), we can now do scope.assertNoException(). 9 Ditto for RELEASE_ASSERT and scope.releaseAssertNoException(). 10 11 The advantage of using ExceptionScope::assertNoException() and 12 releaseAssertNoException() is that if the assertion fails, these utility 13 functions will print the stack trace for where the unexpected exception is 14 detected as well as where the unexpected exception was thrown from. This makes 15 it much easier to debug the source of unhandled exceptions. 16 17 * debugger/Debugger.cpp: 18 (JSC::Debugger::pauseIfNeeded): 19 * dfg/DFGOperations.cpp: 20 * interpreter/Interpreter.cpp: 21 (JSC::eval): 22 (JSC::notifyDebuggerOfUnwinding): 23 (JSC::Interpreter::executeProgram): 24 (JSC::Interpreter::executeCall): 25 (JSC::Interpreter::executeConstruct): 26 (JSC::Interpreter::prepareForRepeatCall): 27 (JSC::Interpreter::execute): 28 (JSC::Interpreter::debug): 29 * interpreter/ShadowChicken.cpp: 30 (JSC::ShadowChicken::functionsOnStack): 31 * jsc.cpp: 32 (GlobalObject::moduleLoaderResolve): 33 (GlobalObject::moduleLoaderFetch): 34 (functionGenerateHeapSnapshot): 35 (functionSamplingProfilerStackTraces): 36 (box): 37 (runWithScripts): 38 * runtime/AbstractModuleRecord.cpp: 39 (JSC::AbstractModuleRecord::finishCreation): 40 * runtime/ArrayPrototype.cpp: 41 (JSC::ArrayPrototype::tryInitializeSpeciesWatchpoint): 42 * runtime/Completion.cpp: 43 (JSC::rejectPromise): 44 * runtime/ErrorInstance.cpp: 45 (JSC::ErrorInstance::sanitizedToString): 46 * runtime/ExceptionHelpers.cpp: 47 (JSC::createError): 48 * runtime/ExceptionScope.cpp: 49 (JSC::ExceptionScope::unexpectedExceptionMessage): 50 * runtime/ExceptionScope.h: 51 (JSC::ExceptionScope::assertNoException): 52 (JSC::ExceptionScope::releaseAssertNoException): 53 (JSC::ExceptionScope::unexpectedExceptionMessage): 54 * runtime/GenericArgumentsInlines.h: 55 (JSC::GenericArguments<Type>::defineOwnProperty): 56 * runtime/IntlCollator.cpp: 57 (JSC::IntlCollator::createCollator): 58 (JSC::IntlCollator::resolvedOptions): 59 * runtime/IntlDateTimeFormat.cpp: 60 (JSC::IntlDateTimeFormat::resolvedOptions): 61 (JSC::IntlDateTimeFormat::format): 62 * runtime/IntlNumberFormat.cpp: 63 (JSC::IntlNumberFormat::createNumberFormat): 64 (JSC::IntlNumberFormat::resolvedOptions): 65 * runtime/JSCJSValue.cpp: 66 (JSC::JSValue::putToPrimitiveByIndex): 67 * runtime/JSGenericTypedArrayViewPrototypeFunctions.h: 68 (JSC::genericTypedArrayViewProtoFuncIncludes): 69 (JSC::genericTypedArrayViewProtoFuncIndexOf): 70 (JSC::genericTypedArrayViewProtoFuncLastIndexOf): 71 (JSC::genericTypedArrayViewPrivateFuncSubarrayCreate): 72 * runtime/JSGlobalObject.cpp: 73 (JSC::JSGlobalObject::init): 74 * runtime/JSGlobalObjectFunctions.cpp: 75 (JSC::globalFuncHostPromiseRejectionTracker): 76 * runtime/JSModuleEnvironment.cpp: 77 (JSC::JSModuleEnvironment::getOwnPropertySlot): 78 * runtime/JSModuleLoader.cpp: 79 (JSC::JSModuleLoader::finishCreation): 80 * runtime/JSModuleNamespaceObject.cpp: 81 (JSC::JSModuleNamespaceObject::finishCreation): 82 * runtime/JSONObject.cpp: 83 (JSC::Stringifier::toJSON): 84 * runtime/JSObject.cpp: 85 (JSC::JSObject::ordinaryToPrimitive): 86 * runtime/JSPropertyNameEnumerator.h: 87 (JSC::propertyNameEnumerator): 88 * runtime/ObjectConstructor.cpp: 89 (JSC::objectConstructorGetOwnPropertyDescriptors): 90 (JSC::objectConstructorDefineProperty): 91 * runtime/ObjectPrototype.cpp: 92 (JSC::objectProtoFuncHasOwnProperty): 93 * runtime/ProgramExecutable.cpp: 94 (JSC::ProgramExecutable::initializeGlobalProperties): 95 * runtime/ReflectObject.cpp: 96 (JSC::reflectObjectDefineProperty): 97 * runtime/SamplingProfiler.cpp: 98 (JSC::SamplingProfiler::StackFrame::nameFromCallee): 99 * runtime/StringPrototype.cpp: 100 (JSC::stringProtoFuncRepeatCharacter): 101 * runtime/TemplateRegistry.cpp: 102 (JSC::TemplateRegistry::getTemplateObject): 103 * runtime/VM.cpp: 104 (JSC::VM::throwException): 105 * runtime/VM.h: 106 (JSC::VM::nativeStackTraceOfLastThrow): 107 (JSC::VM::clearException): 108 * wasm/WasmB3IRGenerator.cpp: 109 * wasm/js/JSWebAssemblyInstance.cpp: 110 (JSC::JSWebAssemblyInstance::create): 111 1 112 2017-05-06 Bill Ming <mbbill@gmail.com> 2 113 -
trunk/Source/JavaScriptCore/debugger/Debugger.cpp
r214905 r216428 742 742 PauseReasonDeclaration reason(*this, didHitBreakpoint ? PausedForBreakpoint : m_reasonForPause); 743 743 handlePause(vmEntryGlobalObject, m_reasonForPause); 744 RELEASE_ASSERT(!scope.exception());744 scope.releaseAssertNoException(); 745 745 } 746 746 -
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r216178 r216428 1751 1751 1752 1752 JSString* str1 = JSValue::decode(a).toString(exec); 1753 ASSERT(!scope.exception()); // Impossible, since we must have been given primitives.1753 scope.assertNoException(); // Impossible, since we must have been given primitives. 1754 1754 JSString* str2 = JSValue::decode(b).toString(exec); 1755 ASSERT(!scope.exception());1755 scope.assertNoException(); 1756 1756 1757 1757 scope.release(); … … 1766 1766 1767 1767 JSString* str1 = JSValue::decode(a).toString(exec); 1768 ASSERT(!scope.exception()); // Impossible, since we must have been given primitives.1768 scope.assertNoException(); // Impossible, since we must have been given primitives. 1769 1769 JSString* str2 = JSValue::decode(b).toString(exec); 1770 ASSERT(!scope.exception());1770 scope.assertNoException(); 1771 1771 JSString* str3 = JSValue::decode(c).toString(exec); 1772 ASSERT(!scope.exception());1772 scope.assertNoException(); 1773 1773 1774 1774 scope.release(); -
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r215986 r216428 153 153 154 154 // If the literal parser bailed, it should not have thrown exceptions. 155 ASSERT(!scope.exception());155 scope.assertNoException(); 156 156 157 157 VariableEnvironment variablesUnderTDZ; … … 594 594 else 595 595 debugger->didExecuteProgram(callFrame); 596 ASSERT_UNUSED(catchScope, !catchScope.exception());596 catchScope.assertNoException(); 597 597 } 598 598 } … … 752 752 RETURN_IF_EXCEPTION(throwScope, { }); 753 753 754 ASSERT(!throwScope.exception());754 throwScope.assertNoException(); 755 755 ASSERT(!vm.isCollectorBusyOnCurrentThread()); 756 756 RELEASE_ASSERT(vm.currentThreadIsHoldingAPILock()); … … 903 903 auto throwScope = DECLARE_THROW_SCOPE(vm); 904 904 905 ASSERT(!throwScope.exception());905 throwScope.assertNoException(); 906 906 ASSERT(!vm.isCollectorBusyOnCurrentThread()); 907 907 if (vm.isCollectorBusyOnCurrentThread()) … … 968 968 auto throwScope = DECLARE_THROW_SCOPE(vm); 969 969 970 ASSERT(!throwScope.exception());970 throwScope.assertNoException(); 971 971 ASSERT(!vm.isCollectorBusyOnCurrentThread()); 972 972 // We throw in this case because we have to return something "valid" but we're … … 1037 1037 VM& vm = *scope->vm(); 1038 1038 auto throwScope = DECLARE_THROW_SCOPE(vm); 1039 ASSERT_UNUSED(throwScope, !throwScope.exception());1039 throwScope.assertNoException(); 1040 1040 1041 1041 if (vm.isCollectorBusyOnCurrentThread()) … … 1089 1089 1090 1090 ASSERT(scope->vm() == &callFrame->vm()); 1091 ASSERT(!throwScope.exception());1091 throwScope.assertNoException(); 1092 1092 ASSERT(!vm.isCollectorBusyOnCurrentThread()); 1093 1093 RELEASE_ASSERT(vm.currentThreadIsHoldingAPILock()); … … 1232 1232 1233 1233 ASSERT(scope->vm() == &callFrame->vm()); 1234 ASSERT(!throwScope.exception());1234 throwScope.assertNoException(); 1235 1235 ASSERT(!vm.isCollectorBusyOnCurrentThread()); 1236 1236 RELEASE_ASSERT(vm.currentThreadIsHoldingAPILock()); … … 1285 1285 1286 1286 ASSERT(callFrame->codeBlock()->hasDebuggerRequests()); 1287 ASSERT_UNUSED(scope, !scope.exception());1287 scope.assertNoException(); 1288 1288 1289 1289 switch (debugHookType) { … … 1310 1310 break; 1311 1311 } 1312 ASSERT(!scope.exception());1312 scope.assertNoException(); 1313 1313 } 1314 1314 -
trunk/Source/JavaScriptCore/interpreter/ShadowChicken.cpp
r214905 r216428 458 458 [&] (const Frame& frame) -> bool { 459 459 result->push(exec, frame.callee); 460 RELEASE_ASSERT(!scope.exception()); // This function is only called from tests.460 scope.releaseAssertNoException(); // This function is only called from tests. 461 461 return true; 462 462 }); -
trunk/Source/JavaScriptCore/jsc.cpp
r216218 r216428 1609 1609 1610 1610 JSInternalPromiseDeferred* deferred = JSInternalPromiseDeferred::create(exec, globalObject); 1611 RELEASE_ASSERT(!scope.exception());1611 scope.releaseAssertNoException(); 1612 1612 const Identifier key = keyValue.toPropertyKey(exec); 1613 1613 if (UNLIKELY(scope.exception())) { … … 1646 1646 return deferred->reject(exec, createError(exec, makeString("Could not resolve the referrer name '", String(referrer.impl()), "'."))); 1647 1647 auto result = deferred->resolve(exec, jsString(exec, resolvePath(directoryName.value(), ModuleName(key.impl())))); 1648 RELEASE_ASSERT(!scope.exception());1648 scope.releaseAssertNoException(); 1649 1649 return result; 1650 1650 } … … 1736 1736 1737 1737 auto result = deferred->resolve(exec, JSSourceCode::create(exec->vm(), makeSource(stringFromUTF(utf8), SourceOrigin { moduleKey }, moduleKey, TextPosition(), SourceProviderSourceType::Module))); 1738 RELEASE_ASSERT(!scope.exception());1738 scope.releaseAssertNoException(); 1739 1739 return result; 1740 1740 } … … 3015 3015 String jsonString = snapshotBuilder.json(); 3016 3016 EncodedJSValue result = JSValue::encode(JSONParse(exec, jsonString)); 3017 RELEASE_ASSERT(!scope.exception());3017 scope.releaseAssertNoException(); 3018 3018 return result; 3019 3019 } … … 3054 3054 String jsonString = vm.samplingProfiler()->stackTracesAsJSON(); 3055 3055 EncodedJSValue result = JSValue::encode(JSONParse(exec, jsonString)); 3056 RELEASE_ASSERT(!scope.exception());3056 scope.releaseAssertNoException(); 3057 3057 return result; 3058 3058 } … … 3102 3102 3103 3103 JSString* type = asString(wasmValue.get(exec, makeIdentifier(vm, "type"))); 3104 ASSERT_UNUSED(scope, !scope.exception());3104 scope.assertNoException(); 3105 3105 JSValue value = wasmValue.get(exec, makeIdentifier(vm, "value")); 3106 ASSERT(!scope.exception());3106 scope.assertNoException(); 3107 3107 3108 3108 auto unboxString = [&] (const char* hexFormat, const char* decFormat, auto& result) { … … 3490 3490 if (isModule) { 3491 3491 promise = loadAndEvaluateModule(globalObject->globalExec(), fileName); 3492 RELEASE_ASSERT(!scope.exception());3492 scope.releaseAssertNoException(); 3493 3493 } else { 3494 3494 if (!fetchScriptFromLocalFileSystem(fileName, scriptBuffer)) … … 3519 3519 3520 3520 promise->then(globalObject->globalExec(), fulfillHandler, rejectHandler); 3521 RELEASE_ASSERT(!scope.exception());3521 scope.releaseAssertNoException(); 3522 3522 vm.drainMicrotasks(); 3523 3523 } else { 3524 3524 NakedPtr<Exception> evaluationException; 3525 3525 JSValue returnValue = evaluate(globalObject->globalExec(), jscSource(scriptBuffer, SourceOrigin { absolutePath(fileName) }, fileName), JSValue(), evaluationException); 3526 ASSERT(!scope.exception());3526 scope.assertNoException(); 3527 3527 if (evaluationException) 3528 3528 returnValue = evaluationException->value(); -
trunk/Source/JavaScriptCore/runtime/AbstractModuleRecord.cpp
r212818 r216428 1 1 /* 2 * Copyright (C) 2015-201 6Apple Inc. All rights reserved.2 * Copyright (C) 2015-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 60 60 auto scope = DECLARE_THROW_SCOPE(vm); 61 61 JSMap* map = JSMap::create(exec, vm, globalObject()->mapStructure()); 62 RELEASE_ASSERT(!scope.exception());62 scope.releaseAssertNoException(); 63 63 m_dependenciesMap.set(vm, this, map); 64 64 putDirect(vm, Identifier::fromString(&vm, ASCIILiteral("dependenciesMap")), m_dependenciesMap.get()); -
trunk/Source/JavaScriptCore/runtime/ArrayPrototype.cpp
r216279 r216428 1396 1396 PropertySlot constructorSlot(this, PropertySlot::InternalMethodType::VMInquiry); 1397 1397 this->getOwnPropertySlot(this, exec, vm.propertyNames->constructor, constructorSlot); 1398 ASSERT_UNUSED(scope, !scope.exception());1398 scope.assertNoException(); 1399 1399 if (constructorSlot.slotBase() != this 1400 1400 || !constructorSlot.isCacheableValue() … … 1410 1410 PropertySlot speciesSlot(arrayConstructor, PropertySlot::InternalMethodType::VMInquiry); 1411 1411 arrayConstructor->getOwnPropertySlot(arrayConstructor, exec, vm.propertyNames->speciesSymbol, speciesSlot); 1412 ASSERT_UNUSED(scope, !scope.exception());1412 scope.assertNoException(); 1413 1413 if (speciesSlot.slotBase() != arrayConstructor 1414 1414 || !speciesSlot.isCacheableGetter() -
trunk/Source/JavaScriptCore/runtime/Completion.cpp
r211642 r216428 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 , 2007, 2013, 2016Apple Inc.4 * Copyright (C) 2003-2017 Apple Inc. 5 5 * 6 6 * This library is free software; you can redistribute it and/or … … 146 146 VM& vm = exec->vm(); 147 147 auto scope = DECLARE_CATCH_SCOPE(vm); 148 ASSERT(scope.exception());148 scope.assertNoException(); 149 149 JSValue exception = scope.exception()->value(); 150 150 scope.clearException(); -
trunk/Source/JavaScriptCore/runtime/ErrorInstance.cpp
r214905 r216428 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) 3 * Copyright (C) 2003 , 2008, 2016Apple Inc. All rights reserved.3 * Copyright (C) 2003-2017 Apple Inc. All rights reserved. 4 4 * 5 5 * This library is free software; you can redistribute it and/or … … 190 190 currentObj = obj->getPrototypeDirect(); 191 191 } 192 ASSERT(!scope.exception());192 scope.assertNoException(); 193 193 194 194 String nameString; … … 205 205 if (JSObject::getOwnPropertySlot(this, exec, messagePropertName, messageSlot) && messageSlot.isValue()) 206 206 messageValue = messageSlot.getValue(exec, messagePropertName); 207 ASSERT(!scope.exception());207 scope.assertNoException(); 208 208 209 209 String messageString; -
trunk/Source/JavaScriptCore/runtime/ExceptionHelpers.cpp
r215852 r216428 1 1 /* 2 * Copyright (C) 2008-20 09, 2016Apple Inc. All rights reserved.2 * Copyright (C) 2008-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 260 260 261 261 String errorMessage = makeString(errorDescriptionForValue(exec, value)->value(exec), ' ', message); 262 ASSERT_UNUSED(scope, !scope.exception());262 scope.assertNoException(); 263 263 JSObject* exception = createTypeError(exec, errorMessage, appender, runtimeTypeForValue(value)); 264 264 ASSERT(exception->isErrorInstance()); -
trunk/Source/JavaScriptCore/runtime/ExceptionScope.cpp
r205569 r216428 28 28 29 29 #include "Exception.h" 30 #include <wtf/StackTrace.h> 31 #include <wtf/StringPrintStream.h> 30 32 31 33 namespace JSC { … … 48 50 } 49 51 52 CString ExceptionScope::unexpectedExceptionMessage() 53 { 54 StringPrintStream out; 55 56 out.println("Unexpected exception observed at:"); 57 auto currentStack = std::unique_ptr<StackTrace>(StackTrace::captureStackTrace(25, 1)); 58 currentStack->dump(out, " "); 59 60 if (!m_vm.nativeStackTraceOfLastThrow()) 61 return CString(); 62 63 out.println("The exception was thrown from:"); 64 m_vm.nativeStackTraceOfLastThrow()->dump(out, " "); 65 66 return out.toCString(); 67 } 68 50 69 #endif // ENABLE(EXCEPTION_SCOPE_VERIFICATION) 51 70 -
trunk/Source/JavaScriptCore/runtime/ExceptionScope.h
r206525 r216428 39 39 unsigned recursionDepth() const { return m_recursionDepth; } 40 40 Exception* exception() { return m_vm.exception(); } 41 41 42 ALWAYS_INLINE void assertNoException() { ASSERT_WITH_MESSAGE(!exception(), "%s", unexpectedExceptionMessage().data()); } 43 ALWAYS_INLINE void releaseAssertNoException() { RELEASE_ASSERT_WITH_MESSAGE(!exception(), "%s", unexpectedExceptionMessage().data()); } 44 42 45 protected: 43 46 ExceptionScope(VM&, ExceptionEventLocation); … … 45 48 ExceptionScope(ExceptionScope&&) = default; 46 49 ~ExceptionScope(); 50 51 JS_EXPORT_PRIVATE CString unexpectedExceptionMessage(); 47 52 48 53 VM& m_vm; … … 58 63 ALWAYS_INLINE VM& vm() const { return m_vm; } 59 64 ALWAYS_INLINE Exception* exception() { return m_vm.exception(); } 65 ALWAYS_INLINE CString unexpectedExceptionMessage() { return { }; } 66 67 ALWAYS_INLINE void assertNoException() { ASSERT(!exception()); } 68 ALWAYS_INLINE void releaseAssertNoException() { RELEASE_ASSERT(!exception()); } 60 69 61 70 protected: -
trunk/Source/JavaScriptCore/runtime/GenericArgumentsInlines.h
r214085 r216428 228 228 ASSERT(value); 229 229 object->putDirectMayBeIndex(exec, ident, value); 230 ASSERT(!scope.exception());230 scope.assertNoException(); 231 231 232 232 thisObject->setModifiedArgumentDescriptor(vm, index); -
trunk/Source/JavaScriptCore/runtime/IntlCollator.cpp
r215921 r216428 2 2 * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) 3 3 * Copyright (C) 2015 Sukolsak Sakshuwong (sukolsak@gmail.com) 4 * Copyright (C) 2016 Apple Inc. All Rights Reserved.4 * Copyright (C) 2016-2017 Apple Inc. All Rights Reserved. 5 5 * 6 6 * Redistribution and use in source and binary forms, with or without … … 344 344 if (!m_initializedCollator) { 345 345 initializeCollator(state, jsUndefined(), jsUndefined()); 346 ASSERT_UNUSED(scope, !scope.exception());346 scope.assertNoException(); 347 347 } 348 348 … … 476 476 if (!m_initializedCollator) { 477 477 initializeCollator(state, jsUndefined(), jsUndefined()); 478 ASSERT_UNUSED(scope, !scope.exception());478 scope.assertNoException(); 479 479 } 480 480 -
trunk/Source/JavaScriptCore/runtime/IntlDateTimeFormat.cpp
r215792 r216428 1 1 /* 2 2 * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) 3 * Copyright (C) 2016 Apple Inc. All rights reserved.3 * Copyright (C) 2016-2017 Apple Inc. All rights reserved. 4 4 * 5 5 * Redistribution and use in source and binary forms, with or without … … 833 833 if (!m_initializedDateTimeFormat) { 834 834 initializeDateTimeFormat(exec, jsUndefined(), jsUndefined()); 835 ASSERT_UNUSED(scope, !scope.exception());835 scope.assertNoException(); 836 836 } 837 837 … … 882 882 if (!m_initializedDateTimeFormat) { 883 883 initializeDateTimeFormat(exec, jsUndefined(), jsUndefined()); 884 ASSERT(!scope.exception());884 scope.assertNoException(); 885 885 } 886 886 -
trunk/Source/JavaScriptCore/runtime/IntlNumberFormat.cpp
r214020 r216428 2 2 * Copyright (C) 2015 Andy VanWagoner (thetalecrafter@gmail.com) 3 3 * Copyright (C) 2016 Sukolsak Sakshuwong (sukolsak@gmail.com) 4 * Copyright (C) 2016 Apple Inc. All rights reserved.4 * Copyright (C) 2016-2017 Apple Inc. All rights reserved. 5 5 * 6 6 * Redistribution and use in source and binary forms, with or without … … 359 359 if (!m_initializedNumberFormat) { 360 360 initializeNumberFormat(state, jsUndefined(), jsUndefined()); 361 ASSERT_UNUSED(scope, !scope.exception());361 scope.assertNoException(); 362 362 } 363 363 … … 487 487 if (!m_initializedNumberFormat) { 488 488 initializeNumberFormat(state, jsUndefined(), jsUndefined()); 489 ASSERT_UNUSED(scope, !scope.exception());489 scope.assertNoException(); 490 490 } 491 491 -
trunk/Source/JavaScriptCore/runtime/JSCJSValue.cpp
r216309 r216428 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 , 2007-2008, 2012, 2016Apple Inc. All rights reserved.4 * Copyright (C) 2003-2017 Apple Inc. All rights reserved. 5 5 * 6 6 * This library is free software; you can redistribute it and/or … … 208 208 209 209 JSObject* prototype = synthesizePrototype(exec); 210 if (UNLIKELY(!prototype)) {211 ASSERT(scope.exception());210 ASSERT(!prototype == !!scope.exception()); 211 if (UNLIKELY(!prototype)) 212 212 return false; 213 }214 213 bool putResult = false; 215 214 if (prototype->attemptToInterceptPutByIndexOnHoleForPrototype(exec, *this, propertyName, value, shouldThrow, putResult)) -
trunk/Source/JavaScriptCore/runtime/JSGenericTypedArrayViewPrototypeFunctions.h
r212535 r216428 207 207 return JSValue::encode(jsBoolean(false)); 208 208 209 ASSERT(!scope.exception());209 scope.assertNoException(); 210 210 RELEASE_ASSERT(!thisObject->isNeutered()); 211 211 … … 251 251 if (!targetOption) 252 252 return JSValue::encode(jsNumber(-1)); 253 ASSERT(!scope.exception());253 scope.assertNoException(); 254 254 RELEASE_ASSERT(!thisObject->isNeutered()); 255 255 … … 342 342 343 343 typename ViewClass::ElementType* array = thisObject->typedVector(); 344 ASSERT(!scope.exception());344 scope.assertNoException(); 345 345 RELEASE_ASSERT(!thisObject->isNeutered()); 346 346 … … 532 532 ASSERT(exec->argument(1).isUndefined() || exec->argument(1).isNumber()); 533 533 unsigned begin = argumentClampedIndexFromStartOrEnd(exec, 0, thisLength); 534 ASSERT(!scope.exception());534 scope.assertNoException(); 535 535 unsigned end = argumentClampedIndexFromStartOrEnd(exec, 1, thisLength, thisLength); 536 ASSERT(!scope.exception());536 scope.assertNoException(); 537 537 538 538 RELEASE_ASSERT(!thisObject->isNeutered()); -
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r215916 r216428 744 744 745 745 JSObject* regExpProtoFlagsGetterObject = getGetterById(exec, m_regExpPrototype.get(), vm.propertyNames->flags); 746 ASSERT_UNUSED(catchScope, !catchScope.exception());746 catchScope.assertNoException(); 747 747 JSObject* regExpProtoGlobalGetterObject = getGetterById(exec, m_regExpPrototype.get(), vm.propertyNames->global); 748 ASSERT(!catchScope.exception());748 catchScope.assertNoException(); 749 749 m_regExpProtoGlobalGetter.set(vm, this, regExpProtoGlobalGetterObject); 750 750 JSObject* regExpProtoIgnoreCaseGetterObject = getGetterById(exec, m_regExpPrototype.get(), vm.propertyNames->ignoreCase); 751 ASSERT(!catchScope.exception());751 catchScope.assertNoException(); 752 752 JSObject* regExpProtoMultilineGetterObject = getGetterById(exec, m_regExpPrototype.get(), vm.propertyNames->multiline); 753 ASSERT(!catchScope.exception());753 catchScope.assertNoException(); 754 754 JSObject* regExpProtoSourceGetterObject = getGetterById(exec, m_regExpPrototype.get(), vm.propertyNames->source); 755 ASSERT(!catchScope.exception());755 catchScope.assertNoException(); 756 756 JSObject* regExpProtoStickyGetterObject = getGetterById(exec, m_regExpPrototype.get(), vm.propertyNames->sticky); 757 ASSERT(!catchScope.exception());757 catchScope.assertNoException(); 758 758 JSObject* regExpProtoUnicodeGetterObject = getGetterById(exec, m_regExpPrototype.get(), vm.propertyNames->unicode); 759 ASSERT(!catchScope.exception());759 catchScope.assertNoException(); 760 760 m_regExpProtoUnicodeGetter.set(vm, this, regExpProtoUnicodeGetterObject); 761 761 JSObject* builtinRegExpExec = asObject(m_regExpPrototype->getDirect(vm, vm.propertyNames->exec).asCell()); … … 914 914 bool result = base->getOwnPropertySlot(base, exec, ident, slot); 915 915 ASSERT_UNUSED(result, result); 916 ASSERT(!catchScope.exception());916 catchScope.assertNoException(); 917 917 RELEASE_ASSERT(slot.isCacheableValue()); 918 918 JSValue functionValue = slot.getValue(exec, ident); 919 ASSERT(!catchScope.exception());919 catchScope.assertNoException(); 920 920 ASSERT(jsDynamicCast<JSFunction*>(vm, functionValue)); 921 921 -
trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r215916 r216428 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 09, 2012, 2016Apple Inc. All rights reserved.4 * Copyright (C) 2003-2017 Apple Inc. All rights reserved. 5 5 * Copyright (C) 2007 Cameron Zwarich (cwzwarich@uwaterloo.ca) 6 6 * Copyright (C) 2007 Maks Orlovich … … 754 754 auto operation = static_cast<JSPromiseRejectionOperation>(operationValue.toUInt32(exec)); 755 755 ASSERT(operation == JSPromiseRejectionOperation::Reject || operation == JSPromiseRejectionOperation::Handle); 756 ASSERT(!scope.exception());756 scope.assertNoException(); 757 757 758 758 globalObject->globalObjectMethodTable()->promiseRejectionTracker(globalObject, exec, promise, operation); -
trunk/Source/JavaScriptCore/runtime/JSModuleEnvironment.cpp
r209897 r216428 1 1 /* 2 * Copyright (C) 2015-201 6Apple Inc. All rights reserved.2 * Copyright (C) 2015-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 92 92 ASSERT(redirectSlot.isValue()); 93 93 JSValue value = redirectSlot.getValue(exec, resolution.localName); 94 ASSERT_UNUSED(scope, !scope.exception());94 scope.assertNoException(); 95 95 slot.setValue(thisObject, redirectSlot.attributes(), value); 96 96 return true; -
trunk/Source/JavaScriptCore/runtime/JSModuleLoader.cpp
r211247 r216428 64 64 ASSERT(inherits(vm, info())); 65 65 JSMap* map = JSMap::create(exec, vm, globalObject->mapStructure()); 66 RELEASE_ASSERT(!scope.exception());66 scope.releaseAssertNoException(); 67 67 putDirect(vm, Identifier::fromString(&vm, "registry"), map); 68 68 } -
trunk/Source/JavaScriptCore/runtime/JSModuleNamespaceObject.cpp
r213453 r216428 1 1 /* 2 * Copyright (C) 2015-201 6Apple Inc. All rights reserved.2 * Copyright (C) 2015-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 81 81 // http://www.ecma-international.org/ecma-262/6.0/#sec-module-namespace-exotic-objects-preventextensions 82 82 methodTable(vm)->preventExtensions(this, exec); 83 ASSERT_UNUSED(scope, !scope.exception());83 scope.assertNoException(); 84 84 } 85 85 -
trunk/Source/JavaScriptCore/runtime/JSONObject.cpp
r211247 r216428 1 1 /* 2 * Copyright (C) 2009 , 2016Apple Inc. All rights reserved.2 * Copyright (C) 2009-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 288 288 VM& vm = m_exec->vm(); 289 289 auto scope = DECLARE_THROW_SCOPE(vm); 290 ASSERT(!scope.exception());290 scope.assertNoException(); 291 291 if (!value.isObject()) 292 292 return value; -
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r216309 r216428 1964 1964 } 1965 1965 1966 ASSERT(!scope.exception());1966 scope.assertNoException(); 1967 1967 1968 1968 return throwTypeError(exec, scope, ASCIILiteral("No default value")); -
trunk/Source/JavaScriptCore/runtime/JSPropertyNameEnumerator.h
r212365 r216428 1 1 /* 2 * Copyright (C) 2014 , 2016Apple Inc. All rights reserved.2 * Copyright (C) 2014-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 118 118 if (structure->canAccessPropertiesQuicklyForEnumeration() && indexedLength == base->getArrayLength()) { 119 119 base->methodTable(vm)->getStructurePropertyNames(base, exec, propertyNames, EnumerationMode()); 120 ASSERT(!scope.exception());120 scope.assertNoException(); 121 121 122 122 numberStructureProperties = propertyNames.size(); 123 123 124 124 base->methodTable(vm)->getGenericPropertyNames(base, exec, propertyNames, EnumerationMode()); 125 ASSERT(!scope.exception());125 scope.assertNoException(); 126 126 } else { 127 127 // Generic property names vector contains all indexed property names. -
trunk/Source/JavaScriptCore/runtime/ObjectConstructor.cpp
r215810 r216428 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) 3 * Copyright (C) 2008 , 2016Apple Inc. All rights reserved.3 * Copyright (C) 2008-2017 Apple Inc. All rights reserved. 4 4 * 5 5 * This library is free software; you can redistribute it and/or … … 236 236 PutPropertySlot slot(descriptors); 237 237 descriptors->putOwnDataPropertyMayBeIndex(exec, propertyName, fromDescriptor, slot); 238 ASSERT(!scope.exception());238 scope.assertNoException(); 239 239 } 240 240 … … 420 420 return JSValue::encode(jsNull()); 421 421 ASSERT((descriptor.attributes() & Accessor) || (!descriptor.isAccessorDescriptor())); 422 ASSERT(!scope.exception());422 scope.assertNoException(); 423 423 obj->methodTable(vm)->defineOwnProperty(obj, exec, propertyName, descriptor, true); 424 424 scope.release(); -
trunk/Source/JavaScriptCore/runtime/ObjectPrototype.cpp
r215405 r216428 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) 3 * Copyright (C) 2008 , 2011, 2016Apple Inc. All rights reserved.3 * Copyright (C) 2008-2017 Apple Inc. All rights reserved. 4 4 * 5 5 * This library is free software; you can redistribute it and/or … … 106 106 if (std::optional<bool> result = hasOwnPropertyCache->get(structure, propertyName)) { 107 107 ASSERT(*result == thisObject->hasOwnProperty(exec, propertyName)); 108 ASSERT(!scope.exception());108 scope.assertNoException(); 109 109 return JSValue::encode(jsBoolean(*result)); 110 110 } -
trunk/Source/JavaScriptCore/runtime/ProgramExecutable.cpp
r214145 r216428 1 1 /* 2 * Copyright (C) 2009 , 2010, 2013, 2015-2016Apple Inc. All rights reserved.2 * Copyright (C) 2009-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 178 178 ASSERT(entry.value.isVar()); 179 179 globalObject->addVar(callFrame, Identifier::fromUid(&vm, entry.key.get())); 180 ASSERT(!throwScope.exception());180 throwScope.assertNoException(); 181 181 } 182 182 -
trunk/Source/JavaScriptCore/runtime/ReflectObject.cpp
r211247 r216428 1 1 /* 2 * Copyright (C) 2015-201 6Apple Inc. All Rights Reserved.2 * Copyright (C) 2015-2017 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 148 148 return encodedJSValue(); 149 149 ASSERT((descriptor.attributes() & Accessor) || (!descriptor.isAccessorDescriptor())); 150 ASSERT(!scope.exception());150 scope.assertNoException(); 151 151 152 152 // Reflect.defineProperty should not throw an error when the defineOwnProperty operation fails. -
trunk/Source/JavaScriptCore/runtime/SamplingProfiler.cpp
r215715 r216428 1 1 /* 2 * Copyright (C) 2016 Apple Inc. All rights reserved.2 * Copyright (C) 2016-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 720 720 PropertyName propertyName(ident); 721 721 bool hasProperty = callee->getPropertySlot(exec, propertyName, slot); 722 ASSERT_UNUSED(scope, !scope.exception());722 scope.assertNoException(); 723 723 if (hasProperty) { 724 724 if (slot.isValue()) { -
trunk/Source/JavaScriptCore/runtime/StringPrototype.cpp
r216301 r216428 819 819 auto viewWithString = string->viewWithUnderlyingString(*exec); 820 820 StringView view = viewWithString.view; 821 ASSERT(view.length() == 1 && !scope.exception()); 821 ASSERT(view.length() == 1); 822 scope.assertNoException(); 822 823 UChar character = view[0]; 823 824 scope.release(); -
trunk/Source/JavaScriptCore/runtime/TemplateRegistry.cpp
r211319 r216428 1 1 /* 2 2 * Copyright (C) 2015 Yusuke Suzuki <utatane.tea@gmail.com>. 3 * Copyright (C) 2016 Apple Inc. All Rights Reserved.3 * Copyright (C) 2016-2017 Apple Inc. All Rights Reserved. 4 4 * 5 5 * Redistribution and use in source and binary forms, with or without … … 71 71 72 72 objectConstructorFreeze(exec, rawObject); 73 ASSERT(!scope.exception());73 scope.assertNoException(); 74 74 75 75 templateObject->putDirect(vm, vm.propertyNames->raw, rawObject, ReadOnly | DontEnum | DontDelete); … … 80 80 81 81 objectConstructorFreeze(exec, templateObject); 82 ASSERT(!scope.exception());82 scope.assertNoException(); 83 83 84 84 m_templateMap.set(&templateKey, templateObject); -
trunk/Source/JavaScriptCore/runtime/VM.cpp
r215642 r216428 615 615 616 616 setException(exception); 617 618 #if ENABLE(EXCEPTION_SCOPE_VERIFICATION) 619 m_nativeStackTraceOfLastThrow = std::unique_ptr<StackTrace>(StackTrace::captureStackTrace(25)); 620 #endif 617 621 } 618 622 -
trunk/Source/JavaScriptCore/runtime/VM.h
r215345 r216428 79 79 #endif 80 80 81 #if ENABLE(EXCEPTION_SCOPE_VERIFICATION) 82 #include <wtf/StackTrace.h> 83 #endif 84 81 85 namespace WTF { 82 86 class SimpleStats; … … 675 679 void notifyNeedWatchdogCheck() { m_traps.fireTrap(VMTraps::NeedWatchdogCheck); } 676 680 681 #if ENABLE(EXCEPTION_SCOPE_VERIFICATION) 682 StackTrace* nativeStackTraceOfLastThrow() const { return m_nativeStackTraceOfLastThrow.get(); } 683 #endif 684 677 685 private: 678 686 friend class LLIntOffsetsExtractor; … … 707 715 #if ENABLE(EXCEPTION_SCOPE_VERIFICATION) 708 716 m_needExceptionCheck = false; 717 m_nativeStackTraceOfLastThrow = nullptr; 709 718 #endif 710 719 m_exception = nullptr; … … 753 762 unsigned m_simulatedThrowPointRecursionDepth { 0 }; 754 763 mutable bool m_needExceptionCheck { false }; 764 std::unique_ptr<StackTrace> m_nativeStackTraceOfLastThrow; 755 765 #endif 756 766 -
trunk/Source/JavaScriptCore/wasm/WasmB3IRGenerator.cpp
r215898 r216428 505 505 ExecState* exec = nullptr; 506 506 PageCount result = wasmMemory->grow(vm, exec, static_cast<uint32_t>(delta), shouldThrowExceptionsOnFailure); 507 RELEASE_ASSERT(!scope.exception());507 scope.releaseAssertNoException(); 508 508 if (!result) 509 509 return -1; -
trunk/Source/JavaScriptCore/wasm/js/JSWebAssemblyInstance.cpp
r216173 r216428 293 293 RELEASE_ASSERT_NOT_REACHED(); 294 294 } 295 ASSERT(!throwScope.exception());295 throwScope.assertNoException(); 296 296 break; 297 297 } … … 331 331 // We should always be able to allocate a JSWebAssemblyTable we've defined. 332 332 // If it's defined to be too large, we should have thrown a validation error. 333 ASSERT(!throwScope.exception());333 throwScope.assertNoException(); 334 334 ASSERT(table); 335 335 instance->m_table.set(vm, instance, table); -
trunk/Source/WTF/ChangeLog
r216308 r216428 1 2017-05-08 Mark Lam <mark.lam@apple.com> 2 3 Introduce ExceptionScope::assertNoException() and releaseAssertNoException(). 4 https://bugs.webkit.org/show_bug.cgi?id=171776 5 6 Reviewed by Keith Miller. 7 8 1. Add an option to skip some number of top frames when capturing the StackTrace. 9 2. Add an option to use an indentation string when dumping the StackTrace. 10 11 * wtf/StackTrace.cpp: 12 (WTF::StackTrace::captureStackTrace): 13 (WTF::StackTrace::dump): 14 * wtf/StackTrace.h: 15 1 16 2017-05-05 Yusuke Suzuki <utatane.tea@gmail.com> 2 17 -
trunk/Source/WTF/wtf/StackTrace.cpp
r215715 r216428 45 45 } 46 46 47 StackTrace* StackTrace::captureStackTrace(int maxFrames )47 StackTrace* StackTrace::captureStackTrace(int maxFrames, int framesToSkip) 48 48 { 49 49 maxFrames = std::max(1, maxFrames); … … 51 51 StackTrace* trace = new (NotNull, fastMalloc(sizeToAllocate)) StackTrace(); 52 52 53 static const int framesToSkip = 2; 53 // Skip 2 additional frames i.e. StackTrace::captureStackTrace and WTFGetBacktrace. 54 framesToSkip += 2; 54 55 int numberOfFrames = maxFrames + framesToSkip; 55 56 56 57 WTFGetBacktrace(&trace->m_skippedFrame0, &numberOfFrames); 57 ASSERT(numberOfFrames >framesToSkip);58 RELEASE_ASSERT(numberOfFrames >= framesToSkip); 58 59 trace->m_size = numberOfFrames - framesToSkip; 59 60 trace->m_capacity = maxFrames; … … 81 82 } 82 83 83 void StackTrace::dump(PrintStream& out ) const84 void StackTrace::dump(PrintStream& out, const char* indentString) const 84 85 { 85 86 const auto* stack = this->stack(); … … 90 91 #endif 91 92 93 if (!indentString) 94 indentString = ""; 92 95 for (int i = 0; i < m_size; ++i) { 93 96 const char* mangledName = nullptr; … … 104 107 const int frameNumber = i + 1; 105 108 if (mangledName || cxaDemangled) 106 out.printf("% -3d %p %s\n", frameNumber, stack[i], cxaDemangled ? cxaDemangled : mangledName);109 out.printf("%s%-3d %p %s\n", indentString, frameNumber, stack[i], cxaDemangled ? cxaDemangled : mangledName); 107 110 else 108 out.printf("% -3d %p\n", frameNumber, stack[i]);111 out.printf("%s%-3d %p\n", indentString, frameNumber, stack[i]); 109 112 } 110 113 -
trunk/Source/WTF/wtf/StackTrace.h
r215717 r216428 37 37 WTF_MAKE_FAST_ALLOCATED; 38 38 public: 39 static StackTrace* captureStackTrace(int maxFrames );39 static StackTrace* captureStackTrace(int maxFrames, int framesToSkip = 0); 40 40 41 41 // Borrowed stack trace. … … 72 72 WTF_EXPORT_PRIVATE static std::optional<DemangleEntry> demangle(void*); 73 73 74 WTF_EXPORT_PRIVATE void dump(PrintStream& ) const;74 WTF_EXPORT_PRIVATE void dump(PrintStream&, const char* indentString = nullptr) const; 75 75 76 76 private: -
trunk/Source/WebCore/ChangeLog
r216426 r216428 1 2017-05-08 Mark Lam <mark.lam@apple.com> 2 3 Introduce ExceptionScope::assertNoException() and releaseAssertNoException(). 4 https://bugs.webkit.org/show_bug.cgi?id=171776 5 6 Reviewed by Keith Miller. 7 8 No new tests because there's no behavior change in functionality. We're only 9 refactoring the code to use the new assertion utility function. 10 11 * Modules/plugins/QuickTimePluginReplacement.mm: 12 (WebCore::QuickTimePluginReplacement::installReplacement): 13 * bindings/js/JSCryptoKeySerializationJWK.cpp: 14 (WebCore::getJSArrayFromJSON): 15 (WebCore::getStringFromJSON): 16 (WebCore::getBooleanFromJSON): 17 * bindings/js/JSCustomElementRegistryCustom.cpp: 18 (WebCore::JSCustomElementRegistry::whenDefined): 19 * bindings/js/JSDOMExceptionHandling.cpp: 20 (WebCore::propagateExceptionSlowPath): 21 (WebCore::throwNotSupportedError): 22 (WebCore::throwInvalidStateError): 23 (WebCore::throwSecurityError): 24 (WebCore::throwDOMSyntaxError): 25 (WebCore::throwDataCloneError): 26 (WebCore::throwIndexSizeError): 27 (WebCore::throwTypeMismatchError): 28 * bindings/js/JSDOMGlobalObject.cpp: 29 (WebCore::makeThisTypeErrorForBuiltins): 30 (WebCore::makeGetterTypeErrorForBuiltins): 31 * bindings/js/JSDOMGlobalObjectTask.cpp: 32 * bindings/js/JSDOMPromise.h: 33 (WebCore::callPromiseFunction): 34 * bindings/js/JSDOMWindowBase.cpp: 35 (WebCore::JSDOMWindowMicrotaskCallback::call): 36 * bindings/js/JSMainThreadExecState.h: 37 (WebCore::JSMainThreadExecState::~JSMainThreadExecState): 38 * bindings/js/ReadableStreamDefaultController.cpp: 39 (WebCore::ReadableStreamDefaultController::isControlledReadableStreamLocked): 40 * bindings/js/ReadableStreamDefaultController.h: 41 (WebCore::ReadableStreamDefaultController::enqueue): 42 * bindings/js/SerializedScriptValue.cpp: 43 (WebCore::CloneDeserializer::readTerminal): 44 * bindings/scripts/CodeGeneratorJS.pm: 45 (GenerateSerializerFunction): 46 * bindings/scripts/test/JS/JSTestNode.cpp: 47 (WebCore::JSTestNode::serialize): 48 * bindings/scripts/test/JS/JSTestObj.cpp: 49 (WebCore::JSTestObj::serialize): 50 * bindings/scripts/test/JS/JSTestSerialization.cpp: 51 (WebCore::JSTestSerialization::serialize): 52 * bindings/scripts/test/JS/JSTestSerializationInherit.cpp: 53 (WebCore::JSTestSerializationInherit::serialize): 54 * bindings/scripts/test/JS/JSTestSerializationInheritFinal.cpp: 55 (WebCore::JSTestSerializationInheritFinal::serialize): 56 * contentextensions/ContentExtensionParser.cpp: 57 (WebCore::ContentExtensions::getTypeFlags): 58 * html/HTMLMediaElement.cpp: 59 (WebCore::HTMLMediaElement::didAddUserAgentShadowRoot): 60 (WebCore::HTMLMediaElement::updateMediaControlsAfterPresentationModeChange): 61 (WebCore::HTMLMediaElement::getCurrentMediaControlsStatus): 62 * html/HTMLPlugInImageElement.cpp: 63 (WebCore::HTMLPlugInImageElement::didAddUserAgentShadowRoot): 64 1 65 2017-05-08 Chris Dumez <cdumez@apple.com> 2 66 -
trunk/Source/WebCore/Modules/plugins/QuickTimePluginReplacement.mm
r211964 r216428 1 1 /* 2 * Copyright (C) 2013-201 5Apple Inc. All rights reserved.2 * Copyright (C) 2013-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 201 201 return false; 202 202 JSC::JSObject* replacementObject = replacementFunction.toObject(exec); 203 ASSERT(!scope.exception());203 scope.assertNoException(); 204 204 JSC::CallData callData; 205 205 JSC::CallType callType = replacementObject->methodTable()->getCallData(replacementObject, callData); … … 234 234 if (!scope.exception() && !value.isUndefinedOrNull()) { 235 235 m_scriptObject = value.toObject(exec); 236 ASSERT(!scope.exception());236 scope.assertNoException(); 237 237 } 238 238 -
trunk/Source/WebCore/bindings/js/JSCryptoKeySerializationJWK.cpp
r209025 r216428 1 1 /* 2 * Copyright (C) 2013 , 2016Apple Inc. All rights reserved.2 * Copyright (C) 2013-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 63 63 64 64 JSValue value = slot.getValue(exec, identifier); 65 ASSERT(!scope.exception());65 scope.assertNoException(); 66 66 if (!isJSArray(value)) { 67 67 throwTypeError(exec, scope, String::format("Expected an array for \"%s\" JSON key", key)); … … 86 86 87 87 JSValue jsValue = slot.getValue(exec, identifier); 88 ASSERT(!scope.exception());88 scope.assertNoException(); 89 89 if (!jsValue.getString(exec, result)) { 90 90 // Can get an out of memory exception. … … 109 109 110 110 JSValue jsValue = slot.getValue(exec, identifier); 111 ASSERT(!scope.exception());111 scope.assertNoException(); 112 112 if (!jsValue.isBoolean()) { 113 113 throwTypeError(exec, scope, String::format("Expected a boolean value for \"%s\" JSON key", key)); -
trunk/Source/WebCore/bindings/js/JSCustomElementRegistryCustom.cpp
r211309 r216428 1 1 /* 2 * Copyright (C) 2015 , 2016Apple Inc. All rights reserved.2 * Copyright (C) 2015-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 207 207 if (UNLIKELY(scope.exception())) { 208 208 rejectPromiseWithExceptionIfAny(state, *globalObject(), *promiseDeferred); 209 ASSERT(!scope.exception());209 scope.assertNoException(); 210 210 return promiseDeferred->promise(); 211 211 } -
trunk/Source/WebCore/bindings/js/JSDOMExceptionHandling.cpp
r211403 r216428 1 1 /* 2 2 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org) 3 * Copyright (C) 2004-201 1, 2013, 2016Apple Inc. All rights reserved.3 * Copyright (C) 2004-2017 Apple Inc. All rights reserved. 4 4 * Copyright (C) 2007 Samuel Weinig <sam@webkit.org> 5 5 * Copyright (C) 2013 Michael Pruett <michael@68k.org> … … 206 206 void propagateExceptionSlowPath(JSC::ExecState& state, JSC::ThrowScope& throwScope, Exception&& exception) 207 207 { 208 ASSERT(!throwScope.exception());208 throwScope.assertNoException(); 209 209 throwException(&state, throwScope, createDOMException(state, WTFMove(exception))); 210 210 } … … 249 249 void throwNotSupportedError(JSC::ExecState& state, JSC::ThrowScope& scope) 250 250 { 251 ASSERT(!scope.exception());251 scope.assertNoException(); 252 252 throwException(&state, scope, createDOMException(&state, NOT_SUPPORTED_ERR)); 253 253 } … … 255 255 void throwNotSupportedError(JSC::ExecState& state, JSC::ThrowScope& scope, const char* message) 256 256 { 257 ASSERT(!scope.exception());257 scope.assertNoException(); 258 258 String messageString(message); 259 259 throwException(&state, scope, createDOMException(&state, NOT_SUPPORTED_ERR, &messageString)); … … 262 262 void throwInvalidStateError(JSC::ExecState& state, JSC::ThrowScope& scope, const char* message) 263 263 { 264 ASSERT(!scope.exception());264 scope.assertNoException(); 265 265 String messageString(message); 266 266 throwException(&state, scope, createDOMException(&state, INVALID_STATE_ERR, &messageString)); … … 269 269 void throwSecurityError(JSC::ExecState& state, JSC::ThrowScope& scope, const String& message) 270 270 { 271 ASSERT(!scope.exception());271 scope.assertNoException(); 272 272 throwException(&state, scope, createDOMException(&state, SECURITY_ERR, message)); 273 273 } … … 380 380 void throwDOMSyntaxError(JSC::ExecState& state, JSC::ThrowScope& scope) 381 381 { 382 ASSERT(!scope.exception());382 scope.assertNoException(); 383 383 throwException(&state, scope, createDOMException(&state, SYNTAX_ERR)); 384 384 } … … 386 386 void throwDataCloneError(JSC::ExecState& state, JSC::ThrowScope& scope) 387 387 { 388 ASSERT(!scope.exception());388 scope.assertNoException(); 389 389 throwException(&state, scope, createDOMException(&state, DATA_CLONE_ERR)); 390 390 } … … 392 392 void throwIndexSizeError(JSC::ExecState& state, JSC::ThrowScope& scope) 393 393 { 394 ASSERT(!scope.exception());394 scope.assertNoException(); 395 395 throwException(&state, scope, createDOMException(&state, INDEX_SIZE_ERR)); 396 396 } … … 398 398 void throwTypeMismatchError(JSC::ExecState& state, JSC::ThrowScope& scope) 399 399 { 400 ASSERT(!scope.exception());400 scope.assertNoException(); 401 401 throwException(&state, scope, createDOMException(&state, TYPE_MISMATCH_ERR)); 402 402 } -
trunk/Source/WebCore/bindings/js/JSDOMGlobalObject.cpp
r215429 r216428 1 1 /* 2 * Copyright (C) 2008 , 2009Apple Inc. All Rights Reserved.2 * Copyright (C) 2008-2017 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 82 82 83 83 auto interfaceName = execState->uncheckedArgument(0).getString(execState); 84 ASSERT_UNUSED(scope, !scope.exception());84 scope.assertNoException(); 85 85 auto functionName = execState->uncheckedArgument(1).getString(execState); 86 ASSERT(!scope.exception());86 scope.assertNoException(); 87 87 return JSValue::encode(createTypeError(execState, makeThisTypeErrorMessage(interfaceName.utf8().data(), functionName.utf8().data()))); 88 88 } … … 96 96 97 97 auto interfaceName = execState->uncheckedArgument(0).getString(execState); 98 ASSERT_UNUSED(scope, !scope.exception());98 scope.assertNoException(); 99 99 auto attributeName = execState->uncheckedArgument(1).getString(execState); 100 ASSERT(!scope.exception());100 scope.assertNoException(); 101 101 return JSValue::encode(createTypeError(execState, makeGetterTypeErrorMessage(interfaceName.utf8().data(), attributeName.utf8().data()))); 102 102 } -
trunk/Source/WebCore/bindings/js/JSDOMGlobalObjectTask.cpp
r205569 r216428 1 1 /* 2 * Copyright (C) 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2013-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 67 67 else 68 68 m_task->run(exec); 69 ASSERT_UNUSED(scope, !scope.exception());69 scope.assertNoException(); 70 70 } 71 71 -
trunk/Source/WebCore/bindings/js/JSDOMPromise.h
r214806 r216428 1 1 /* 2 * Copyright (C) 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2013-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 236 236 237 237 rejectPromiseWithExceptionIfAny(state, globalObject, *promiseDeferred); 238 ASSERT_UNUSED(scope, !scope.exception());238 scope.assertNoException(); 239 239 return promiseDeferred->promise(); 240 240 } -
trunk/Source/WebCore/bindings/js/JSDOMWindowBase.cpp
r215916 r216428 2 2 * Copyright (C) 2000 Harri Porten (porten@kde.org) 3 3 * Copyright (C) 2006 Jon Shier (jshier@iastate.edu) 4 * Copyright (C) 2003-20 09, 2014, 2016Apple Inc. All rights reseved.4 * Copyright (C) 2003-2017 Apple Inc. All rights reseved. 5 5 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 6 6 * Copyright (c) 2015 Canon Inc. All rights reserved. … … 217 217 JSMainThreadExecState::runTask(exec, m_task); 218 218 219 ASSERT_UNUSED(scope, !scope.exception());219 scope.assertNoException(); 220 220 } 221 221 -
trunk/Source/WebCore/bindings/js/JSMainThreadExecState.h
r215916 r216428 1 1 /* 2 2 * Copyright (C) 2010 Google Inc. All rights reserved. 3 * Copyright (C) 2016 Apple Inc. All rights reserved.3 * Copyright (C) 2016-2017 Apple Inc. All rights reserved. 4 4 * 5 5 * Redistribution and use in source and binary forms, with or without … … 134 134 auto scope = DECLARE_CATCH_SCOPE(vm); 135 135 ASSERT(isMainThread()); 136 ASSERT_UNUSED(scope, !scope.exception());136 scope.assertNoException(); 137 137 138 138 JSC::ExecState* state = s_mainThreadState; -
trunk/Source/WebCore/bindings/js/ReadableStreamDefaultController.cpp
r215429 r216428 1 1 /* 2 2 * Copyright (C) 2016 Canon Inc. 3 * Copyright (C) 2016 Apple Inc. All rights reserved.3 * Copyright (C) 2016-2017 Apple Inc. All rights reserved. 4 4 * 5 5 * Redistribution and use in source and binary forms, with or without … … 79 79 auto& clientData = *static_cast<JSVMClientData*>(vm.clientData); 80 80 auto readableStream = m_jsController->get(&state, clientData.builtinNames().controlledReadableStreamPrivateName()); 81 ASSERT_UNUSED(scope, !scope.exception());81 scope.assertNoException(); 82 82 83 83 auto* isLocked = globalObject.builtinInternalFunctions().readableStreamInternals().m_isReadableStreamLockedFunction.get(); … … 87 87 arguments.append(readableStream); 88 88 auto result = callFunction(state, isLocked, JSC::jsUndefined(), arguments); 89 ASSERT(!scope.exception());89 scope.assertNoException(); 90 90 91 91 return result.isTrue(); -
trunk/Source/WebCore/bindings/js/ReadableStreamDefaultController.h
r215429 r216428 1 1 /* 2 2 * Copyright (C) 2016 Canon Inc. 3 * Copyright (C) 2017 Apple Inc. All rights reserved. 3 4 * 4 5 * Redistribution and use in source and binary forms, with or without … … 103 104 ASSERT(chunk); 104 105 enqueue(state, toJS(&state, &globalObject, chunk.get())); 105 ASSERT_UNUSED(scope, !scope.exception());106 scope.assertNoException(); 106 107 return true; 107 108 } -
trunk/Source/WebCore/bindings/js/SerializedScriptValue.cpp
r215382 r216428 1 1 /* 2 * Copyright (C) 2009 , 2013, 2016Apple Inc. All rights reserved.2 * Copyright (C) 2009-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 2543 2543 // module to not have been a valid module. Therefore, createStub should 2544 2544 // not trow. 2545 RELEASE_ASSERT(!scope.exception());2545 scope.releaseAssertNoException(); 2546 2546 m_gcBuffer.append(result); 2547 2547 return result; -
trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm
r216198 r216428 4553 4553 my $getFunctionName = GetAttributeGetterName($interface, $className, $attribute); 4554 4554 push(@implContent, " auto ${name}Value = ${getFunctionName}Getter(*state, *thisObject, throwScope);\n"); 4555 push(@implContent, " ASSERT(!throwScope.exception());\n");4555 push(@implContent, " throwScope.assertNoException();\n"); 4556 4556 push(@implContent, " result->putDirect(vm, Identifier::fromString(&vm, \"${name}\"), ${name}Value);\n"); 4557 4557 push(@implContent, "\n"); -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNode.cpp
r216198 r216428 344 344 345 345 auto nameValue = jsTestNodeNameGetter(*state, *thisObject, throwScope); 346 ASSERT(!throwScope.exception());346 throwScope.assertNoException(); 347 347 result->putDirect(vm, Identifier::fromString(&vm, "name"), nameValue); 348 348 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp
r216198 r216428 8785 8785 8786 8786 auto createValue = jsTestObjCreateGetter(*state, *thisObject, throwScope); 8787 ASSERT(!throwScope.exception());8787 throwScope.assertNoException(); 8788 8788 result->putDirect(vm, Identifier::fromString(&vm, "create"), createValue); 8789 8789 8790 8790 auto readOnlyStringAttrValue = jsTestObjReadOnlyStringAttrGetter(*state, *thisObject, throwScope); 8791 ASSERT(!throwScope.exception());8791 throwScope.assertNoException(); 8792 8792 result->putDirect(vm, Identifier::fromString(&vm, "readOnlyStringAttr"), readOnlyStringAttrValue); 8793 8793 8794 8794 auto enumAttrValue = jsTestObjEnumAttrGetter(*state, *thisObject, throwScope); 8795 ASSERT(!throwScope.exception());8795 throwScope.assertNoException(); 8796 8796 result->putDirect(vm, Identifier::fromString(&vm, "enumAttr"), enumAttrValue); 8797 8797 8798 8798 auto longAttrValue = jsTestObjLongAttrGetter(*state, *thisObject, throwScope); 8799 ASSERT(!throwScope.exception());8799 throwScope.assertNoException(); 8800 8800 result->putDirect(vm, Identifier::fromString(&vm, "longAttr"), longAttrValue); 8801 8801 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestSerialization.cpp
r216198 r216428 407 407 408 408 auto firstStringAttributeValue = jsTestSerializationFirstStringAttributeGetter(*state, *thisObject, throwScope); 409 ASSERT(!throwScope.exception());409 throwScope.assertNoException(); 410 410 result->putDirect(vm, Identifier::fromString(&vm, "firstStringAttribute"), firstStringAttributeValue); 411 411 412 412 auto secondLongAttributeValue = jsTestSerializationSecondLongAttributeGetter(*state, *thisObject, throwScope); 413 ASSERT(!throwScope.exception());413 throwScope.assertNoException(); 414 414 result->putDirect(vm, Identifier::fromString(&vm, "secondLongAttribute"), secondLongAttributeValue); 415 415 416 416 auto fourthUnrestrictedDoubleAttributeValue = jsTestSerializationFourthUnrestrictedDoubleAttributeGetter(*state, *thisObject, throwScope); 417 ASSERT(!throwScope.exception());417 throwScope.assertNoException(); 418 418 result->putDirect(vm, Identifier::fromString(&vm, "fourthUnrestrictedDoubleAttribute"), fourthUnrestrictedDoubleAttributeValue); 419 419 420 420 auto fifthLongAttributeValue = jsTestSerializationFifthLongAttributeGetter(*state, *thisObject, throwScope); 421 ASSERT(!throwScope.exception());421 throwScope.assertNoException(); 422 422 result->putDirect(vm, Identifier::fromString(&vm, "fifthLongAttribute"), fifthLongAttributeValue); 423 423 424 424 auto sixthTypedefAttributeValue = jsTestSerializationSixthTypedefAttributeGetter(*state, *thisObject, throwScope); 425 ASSERT(!throwScope.exception());425 throwScope.assertNoException(); 426 426 result->putDirect(vm, Identifier::fromString(&vm, "sixthTypedefAttribute"), sixthTypedefAttributeValue); 427 427 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestSerializationInherit.cpp
r216198 r216428 208 208 209 209 auto inheritLongAttributeValue = jsTestSerializationInheritInheritLongAttributeGetter(*state, *thisObject, throwScope); 210 ASSERT(!throwScope.exception());210 throwScope.assertNoException(); 211 211 result->putDirect(vm, Identifier::fromString(&vm, "inheritLongAttribute"), inheritLongAttributeValue); 212 212 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestSerializationInheritFinal.cpp
r216198 r216428 246 246 247 247 auto finalLongAttributeBarValue = jsTestSerializationInheritFinalFinalLongAttributeBarGetter(*state, *thisObject, throwScope); 248 ASSERT(!throwScope.exception());248 throwScope.assertNoException(); 249 249 result->putDirect(vm, Identifier::fromString(&vm, "finalLongAttributeBar"), finalLongAttributeBarValue); 250 250 -
trunk/Source/WebCore/contentextensions/ContentExtensionParser.cpp
r214358 r216428 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 107 107 108 108 const JSObject* object = typeValue.toObject(&exec); 109 ASSERT(!scope.exception());109 scope.assertNoException(); 110 110 if (!isJSArray(object)) 111 111 return ContentExtensionError::JSONInvalidTriggerFlagsArray; -
trunk/Source/WebCore/html/HTMLMediaElement.cpp
r216050 r216428 6811 6811 6812 6812 JSC::JSObject* function = functionValue.toObject(exec); 6813 ASSERT(!scope.exception());6813 scope.assertNoException(); 6814 6814 JSC::CallData callData; 6815 6815 JSC::CallType callType = function->methodTable()->getCallData(function, callData); … … 6825 6825 // Connect the Media, MediaControllerHost, and Controller so the GC knows about their relationship 6826 6826 JSC::JSObject* mediaJSWrapperObject = mediaJSWrapper.toObject(exec); 6827 ASSERT(!scope.exception());6827 scope.assertNoException(); 6828 6828 JSC::Identifier controlsHost = JSC::Identifier::fromString(&exec->vm(), "controlsHost"); 6829 6829 … … 6895 6895 6896 6896 JSC::JSObject* function = functionValue.toObject(exec); 6897 ASSERT(!scope.exception());6897 scope.assertNoException(); 6898 6898 JSC::CallData callData; 6899 6899 JSC::CallType callType = function->methodTable()->getCallData(function, callData); … … 6937 6937 6938 6938 JSC::JSObject* function = functionValue.toObject(exec); 6939 ASSERT(!scope.exception());6939 scope.assertNoException(); 6940 6940 JSC::CallData callData; 6941 6941 JSC::CallType callType = function->methodTable()->getCallData(function, callData); -
trunk/Source/WebCore/html/HTMLPlugInImageElement.cpp
r215152 r216428 367 367 // It is expected the JS file provides a createOverlay(shadowRoot, title, subtitle) function. 368 368 auto* overlay = globalObject.get(&state, JSC::Identifier::fromString(&state, "createOverlay")).toObject(&state); 369 ASSERT(!overlay == !!scope.exception()); 369 370 if (!overlay) { 370 ASSERT(scope.exception());371 371 scope.clearException(); 372 372 return;
Note:
See TracChangeset
for help on using the changeset viewer.