Changeset 221080 in webkit
- Timestamp:
- Aug 23, 2017, 10:05:33 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 21 added
- 57 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r221078 r221080 1 2017-08-23 Skachkov Oleksandr <gskachkov@gmail.com> 2 3 [ESNext] Async iteration - Implement Async Generator - runtime 4 https://bugs.webkit.org/show_bug.cgi?id=175240 5 6 Reviewed by Yusuke Suzuki. 7 8 * stress/async-iteration-async-from-sync.js: Added. 9 (assert): 10 (const.Logger): 11 (this.fullfilled): 12 (this.fullfilledDone): 13 (this.rejected): 14 (this.catched): 15 (this.isFinal): 16 (_assertLogger): 17 (const.assertLogger): 18 (const.getPromise.promiseHolder.return.new.Promise): 19 (foo): 20 (async.boo): 21 (bar): 22 (async.baz): 23 (async.goo): 24 * stress/async-iteration-basic.js: Added. 25 (assert): 26 (const.Logger): 27 (this.fullfilled): 28 (this.fullfilledDone): 29 (this.rejected): 30 (this.catched): 31 (this.isFinal): 32 (_assertLogger): 33 (const.assertLogger): 34 (const.getPromise.promiseHolder.return.new.Promise): 35 (async.generator): 36 (iterator.next.then): 37 (async.baz): 38 (async.boo): 39 (async.foo): 40 (async.goo): 41 (A.prototype.async.foo): 42 (A.prototype.async.boo): 43 (A): 44 (asyncGenExp.async): 45 (async.joo): 46 (j.next.then): 47 (then): 48 (async.koo): 49 (async.loo): 50 (async.moo): 51 (async.noo): 52 (async.ooo): 53 (async.roo): 54 (async.poo): 55 (async.soo): 56 (async.too): 57 * stress/async-iteration-evaluation.js: Added. 58 (assert): 59 (async.foo): 60 (catch): 61 * stress/async-iteration-syntax.js: 62 * stress/async-iteration-yield-promise.js: Added. 63 (assert): 64 (const.Logger): 65 (this.fullfilled): 66 (this.fullfilledDone): 67 (this.rejected): 68 (this.catched): 69 (this.isFinal): 70 (_assertLogger): 71 (const.assertLogger): 72 (const.getPromise.promiseHolder.return.new.Promise): 73 (async.foo): 74 (async.boo): 75 (async.bar): 76 * stress/async-iteration-yield-star-interface.js: Added. 77 (assert): 78 (const.getPromise.promiseHolder.return.new.Promise): 79 (const.Logger): 80 (this.fullfilled): 81 (this.fullfilledDone): 82 (this.rejected): 83 (this.catched): 84 (this.custom): 85 (this.isFinal): 86 (_assertLogger): 87 (const.assertLogger): 88 (let.asyncIter.Symbol.asyncIterator): 89 (let.asyncIter.next): 90 (let.asyncIter.throw): 91 (let.asyncIter.return): 92 (async.foo): 93 (asyncIter.Symbol.asyncIterator): 94 (asyncIter.next): 95 (async.boo): 96 (asyncIter.return): 97 (async.bar): 98 (async.baz): 99 (async.foobar): 100 * stress/async-iteration-yield-star.js: Added. 101 (assert): 102 (const.Logger): 103 (this.fullfilled): 104 (this.fullfilledDone): 105 (this.rejected): 106 (this.catched): 107 (this.custom): 108 (this.isFinal): 109 (_assertLogger): 110 (const.assertLogger): 111 (const.getPromise.promiseHolder.return.new.Promise): 112 (async.foo): 113 (async.boo): 114 (async.bar): 115 (async.baz): 116 (async.joo): 117 (async.goo): 118 (async.koo): 119 (async.loo): 120 (let.asyncIter.Symbol.asyncIterator): 121 (let.asyncIter.next): 122 (let.asyncIter.throw): 123 (let.asyncIter.return): 124 (async.moo): 125 (async.noo): 126 * test262.yaml: 127 1 128 2017-08-23 JF Bastien <jfbastien@apple.com> 2 129 -
trunk/JSTests/stress/async-iteration-syntax.js
r220449 r221080 1 // This test requires enableAsyncIterator to be enabled at run time.2 //@ skip3 4 5 1 var assert = function (result, expected, message = "") { 6 2 if (result !== expected) { … … 8 4 } 9 5 }; 10 11 6 12 7 function checkSyntax(src) { -
trunk/JSTests/test262.yaml
r220415 r221080 72871 72871 cmd: runTest262 :normal, "SyntaxError", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict] 72872 72872 - path: test262/test/language/statements/async-function/early-errors-no-async-generator.js 72873 cmd: runTest262 :normal, " SyntaxError", ["../../../../harness/assert.js", "../../../../harness/sta.js"], []72873 cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [] 72874 72874 - path: test262/test/language/statements/async-function/early-errors-no-async-generator.js 72875 cmd: runTest262 :normal, " SyntaxError", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict]72875 cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js"], [:strict] 72876 72876 - path: test262/test/language/statements/async-function/evaluation-body-that-returns-after-await.js 72877 72877 cmd: runTest262 :normal, "NoException", ["../../../../harness/assert.js", "../../../../harness/sta.js", "../../../../harness/doneprintHandle.js"], [:async] -
trunk/LayoutTests/ChangeLog
r221077 r221080 1 2017-08-23 Skachkov Oleksandr <gskachkov@gmail.com> 2 3 [ESNext] Async iteration - Implement Async Generator - runtime 4 https://bugs.webkit.org/show_bug.cgi?id=175240 5 6 Reviewed by Yusuke Suzuki. 7 8 * js/Object-getOwnPropertyNames-expected.txt: 9 * js/script-tests/Object-getOwnPropertyNames.js: 10 1 11 2017-08-23 Brent Fulgham <bfulgham@apple.com> 2 12 -
trunk/LayoutTests/js/Object-getOwnPropertyNames-expected.txt
r215400 r221080 63 63 PASS getSortedOwnPropertyNames(Math) is ['E','LN10','LN2','LOG10E','LOG2E','PI','SQRT1_2','SQRT2','abs','acos','acosh','asin','asinh','atan','atan2','atanh','cbrt','ceil','clz32','cos','cosh','exp','expm1','floor','fround','hypot','imul','log','log10','log1p','log2','max','min','pow','random','round','sign','sin','sinh','sqrt','tan','tanh','trunc'] 64 64 PASS getSortedOwnPropertyNames(JSON) is ['parse', 'stringify'] 65 PASS getSortedOwnPropertyNames(Symbol) is [' for', 'hasInstance', 'isConcatSpreadable', 'iterator', 'keyFor', 'length', 'match', 'name', 'prototype', 'replace', 'search', 'species', 'split', 'toPrimitive', 'toStringTag', 'unscopables']65 PASS getSortedOwnPropertyNames(Symbol) is ['asyncIterator','for', 'hasInstance', 'isConcatSpreadable', 'iterator', 'keyFor', 'length', 'match', 'name', 'prototype', 'replace', 'search', 'species', 'split', 'toPrimitive', 'toStringTag', 'unscopables'] 66 66 PASS getSortedOwnPropertyNames(Symbol.prototype) is ['constructor', 'toString', 'valueOf'] 67 67 PASS getSortedOwnPropertyNames(Map) is ['length', 'name', 'prototype'] -
trunk/LayoutTests/js/script-tests/Object-getOwnPropertyNames.js
r215400 r221080 72 72 "Math": "['E','LN10','LN2','LOG10E','LOG2E','PI','SQRT1_2','SQRT2','abs','acos','acosh','asin','asinh','atan','atan2','atanh','cbrt','ceil','clz32','cos','cosh','exp','expm1','floor','fround','hypot','imul','log','log10','log1p','log2','max','min','pow','random','round','sign','sin','sinh','sqrt','tan','tanh','trunc']", 73 73 "JSON": "['parse', 'stringify']", 74 "Symbol": "[' for', 'hasInstance', 'isConcatSpreadable', 'iterator', 'keyFor', 'length', 'match', 'name', 'prototype', 'replace', 'search', 'species', 'split', 'toPrimitive', 'toStringTag', 'unscopables']",74 "Symbol": "['asyncIterator','for', 'hasInstance', 'isConcatSpreadable', 'iterator', 'keyFor', 'length', 'match', 'name', 'prototype', 'replace', 'search', 'species', 'split', 'toPrimitive', 'toStringTag', 'unscopables']", 75 75 "Symbol.prototype": "['constructor', 'toString', 'valueOf']", 76 76 "Map": "['length', 'name', 'prototype']", -
trunk/Source/JavaScriptCore/CMakeLists.txt
r221021 r221080 691 691 runtime/ArrayIteratorPrototype.cpp 692 692 runtime/ArrayPrototype.cpp 693 runtime/AsyncFromSyncIteratorPrototype.cpp 694 runtime/AsyncGeneratorFunctionConstructor.cpp 695 runtime/AsyncGeneratorFunctionPrototype.cpp 696 runtime/AsyncGeneratorPrototype.cpp 697 runtime/AsyncIteratorPrototype.cpp 693 698 runtime/AtomicsObject.cpp 694 699 runtime/AsyncFunctionConstructor.cpp … … 780 785 runtime/JSArrayBufferView.cpp 781 786 runtime/JSAsyncFunction.cpp 787 runtime/JSAsyncGeneratorFunction.cpp 782 788 runtime/JSBoundFunction.cpp 783 789 runtime/JSCJSValue.cpp … … 1023 1029 runtime/ArrayConstructor.cpp 1024 1030 runtime/ArrayIteratorPrototype.cpp 1031 runtime/AsyncGeneratorPrototype.cpp 1025 1032 runtime/BooleanPrototype.cpp 1026 1033 runtime/DateConstructor.cpp … … 1454 1461 1455 1462 set(JavaScriptCore_BUILTINS_SOURCES 1463 ${JAVASCRIPTCORE_DIR}/builtins/AsyncFromSyncIteratorPrototype.js 1456 1464 ${JAVASCRIPTCORE_DIR}/builtins/ArrayConstructor.js 1457 1465 ${JAVASCRIPTCORE_DIR}/builtins/ArrayIteratorPrototype.js 1458 1466 ${JAVASCRIPTCORE_DIR}/builtins/ArrayPrototype.js 1459 1467 ${JAVASCRIPTCORE_DIR}/builtins/AsyncFunctionPrototype.js 1468 ${JAVASCRIPTCORE_DIR}/builtins/AsyncIteratorPrototype.js 1469 ${JAVASCRIPTCORE_DIR}/builtins/AsyncGeneratorPrototype.js 1460 1470 ${JAVASCRIPTCORE_DIR}/builtins/DatePrototype.js 1461 1471 ${JAVASCRIPTCORE_DIR}/builtins/FunctionPrototype.js -
trunk/Source/JavaScriptCore/ChangeLog
r221052 r221080 1 2017-08-23 Skachkov Oleksandr <gskachkov@gmail.com> 2 3 [ESNext] Async iteration - Implement Async Generator - runtime 4 https://bugs.webkit.org/show_bug.cgi?id=175240 5 6 Reviewed by Yusuke Suzuki. 7 8 Current implementation is draft version of Async Iteration. 9 Link to spec https://tc39.github.io/proposal-async-iteration/ 10 11 To implement async generator added new states that show reason why async generator was suspended: 12 # yield - return promise with result 13 # await - wait until promise will be resolved and then continue 14 15 The main difference between async function and async generator is that, 16 async function returns promise but async generator returns 17 object with methods (next, throw and return) that return promise that 18 can be resolved with pair of properties value and done. 19 Async generator functions are similar to generator functions, with the following differences: 20 # When called, async generator functions return an object, an async generator 21 whose methods (next, throw, and return) return promises for { value, done }, 22 instead of directly returning { value, done }. 23 This automatically makes the returned async generator objects async iterators. 24 # await expressions and for-await-of statements are allowed. 25 # The behavior of yield* is modified to support 26 delegation to sync and async iterables 27 28 * CMakeLists.txt: 29 * DerivedSources.make: 30 * JavaScriptCore.xcodeproj/project.pbxproj: 31 * builtins/AsyncFromSyncIteratorPrototype.js: Added. 32 (next.try): 33 (next): 34 (return.try): 35 (return): 36 (throw.try): 37 (throw): 38 (globalPrivate.createAsyncFromSyncIterator): 39 (globalPrivate.AsyncFromSyncIteratorConstructor): 40 * builtins/AsyncGeneratorPrototype.js: Added. 41 (globalPrivate.createAsyncGeneratorQueue): 42 (globalPrivate.asyncGeneratorQueueIsEmpty): 43 (globalPrivate.asyncGeneratorQueueCreateItem): 44 (globalPrivate.asyncGeneratorQueueEnqueue): 45 (globalPrivate.asyncGeneratorQueueDequeue): 46 (globalPrivate.asyncGeneratorQueueGetFirstValue): 47 (globalPrivate.asyncGeneratorDequeue): 48 (globalPrivate.isExecutionState): 49 (globalPrivate.isSuspendYieldState): 50 (globalPrivate.asyncGeneratorReject): 51 (globalPrivate.asyncGeneratorResolve): 52 (asyncGeneratorYieldAwaited): 53 (globalPrivate.asyncGeneratorYield): 54 (const.onRejected): 55 (globalPrivate.awaitValue): 56 (const.onFulfilled): 57 (globalPrivate.doAsyncGeneratorBodyCall): 58 (globalPrivate.asyncGeneratorResumeNext.): 59 (globalPrivate.asyncGeneratorResumeNext): 60 (globalPrivate.asyncGeneratorEnqueue): 61 (next): 62 (return): 63 (throw): 64 * builtins/AsyncIteratorPrototype.js: Added. 65 (symbolAsyncIteratorGetter): 66 * builtins/BuiltinNames.h: 67 * bytecode/BytecodeDumper.cpp: 68 (JSC::BytecodeDumper<Block>::dumpBytecode): 69 * bytecode/BytecodeIntrinsicRegistry.cpp: 70 (JSC::BytecodeIntrinsicRegistry::BytecodeIntrinsicRegistry): 71 * bytecode/BytecodeIntrinsicRegistry.h: 72 * bytecode/BytecodeList.json: 73 * bytecode/BytecodeUseDef.h: 74 (JSC::computeUsesForBytecodeOffset): 75 (JSC::computeDefsForBytecodeOffset): 76 * bytecompiler/BytecodeGenerator.cpp: 77 (JSC::BytecodeGenerator::BytecodeGenerator): 78 (JSC::BytecodeGenerator::emitCreateAsyncGeneratorQueue): 79 (JSC::BytecodeGenerator::emitPutAsyncGeneratorFields): 80 (JSC::BytecodeGenerator::emitNewFunctionExpressionCommon): 81 (JSC::BytecodeGenerator::emitNewFunction): 82 (JSC::BytecodeGenerator::emitIteratorNextWithValue): 83 (JSC::BytecodeGenerator::emitIteratorClose): 84 (JSC::BytecodeGenerator::emitYieldPoint): 85 (JSC::BytecodeGenerator::emitYield): 86 (JSC::BytecodeGenerator::emitCallIterator): 87 (JSC::BytecodeGenerator::emitAwait): 88 (JSC::BytecodeGenerator::emitGetIterator): 89 (JSC::BytecodeGenerator::emitGetAsyncIterator): 90 (JSC::BytecodeGenerator::emitDelegateYield): 91 * bytecompiler/BytecodeGenerator.h: 92 * bytecompiler/NodesCodegen.cpp: 93 (JSC::ReturnNode::emitBytecode): 94 (JSC::FunctionNode::emitBytecode): 95 (JSC::YieldExprNode::emitBytecode): 96 (JSC::AwaitExprNode::emitBytecode): 97 * dfg/DFGAbstractInterpreterInlines.h: 98 (JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects): 99 * dfg/DFGByteCodeParser.cpp: 100 (JSC::DFG::ByteCodeParser::parseBlock): 101 * dfg/DFGCapabilities.cpp: 102 (JSC::DFG::capabilityLevel): 103 * dfg/DFGClobberize.h: 104 (JSC::DFG::clobberize): 105 * dfg/DFGClobbersExitState.cpp: 106 (JSC::DFG::clobbersExitState): 107 * dfg/DFGDoesGC.cpp: 108 (JSC::DFG::doesGC): 109 * dfg/DFGFixupPhase.cpp: 110 (JSC::DFG::FixupPhase::fixupNode): 111 * dfg/DFGMayExit.cpp: 112 * dfg/DFGNode.h: 113 (JSC::DFG::Node::convertToPhantomNewFunction): 114 (JSC::DFG::Node::convertToPhantomNewAsyncGeneratorFunction): 115 (JSC::DFG::Node::hasCellOperand): 116 (JSC::DFG::Node::isFunctionAllocation): 117 (JSC::DFG::Node::isPhantomFunctionAllocation): 118 (JSC::DFG::Node::isPhantomAllocation): 119 * dfg/DFGNodeType.h: 120 * dfg/DFGObjectAllocationSinkingPhase.cpp: 121 * dfg/DFGPredictionPropagationPhase.cpp: 122 * dfg/DFGSafeToExecute.h: 123 (JSC::DFG::safeToExecute): 124 * dfg/DFGSpeculativeJIT.cpp: 125 (JSC::DFG::SpeculativeJIT::compileNewFunction): 126 * dfg/DFGSpeculativeJIT32_64.cpp: 127 (JSC::DFG::SpeculativeJIT::compile): 128 * dfg/DFGSpeculativeJIT64.cpp: 129 (JSC::DFG::SpeculativeJIT::compile): 130 * dfg/DFGStoreBarrierInsertionPhase.cpp: 131 * dfg/DFGValidate.cpp: 132 * ftl/FTLCapabilities.cpp: 133 (JSC::FTL::canCompile): 134 * ftl/FTLLowerDFGToB3.cpp: 135 (JSC::FTL::DFG::LowerDFGToB3::compileNode): 136 (JSC::FTL::DFG::LowerDFGToB3::compileNewFunction): 137 * ftl/FTLOperations.cpp: 138 (JSC::FTL::operationPopulateObjectInOSR): 139 (JSC::FTL::operationMaterializeObjectInOSR): 140 * jit/JIT.cpp: 141 (JSC::JIT::privateCompileMainPass): 142 * jit/JIT.h: 143 * jit/JITOpcodes.cpp: 144 (JSC::JIT::emitNewFuncCommon): 145 (JSC::JIT::emit_op_new_async_generator_func): 146 (JSC::JIT::emit_op_new_async_func): 147 (JSC::JIT::emitNewFuncExprCommon): 148 (JSC::JIT::emit_op_new_async_generator_func_exp): 149 * jit/JITOperations.cpp: 150 * jit/JITOperations.h: 151 * llint/LLIntSlowPaths.cpp: 152 (JSC::LLInt::LLINT_SLOW_PATH_DECL): 153 * llint/LLIntSlowPaths.h: 154 * llint/LowLevelInterpreter.asm: 155 * parser/ASTBuilder.h: 156 (JSC::ASTBuilder::createFunctionMetadata): 157 * runtime/AsyncFromSyncIteratorPrototype.cpp: Added. 158 (JSC::AsyncFromSyncIteratorPrototype::AsyncFromSyncIteratorPrototype): 159 (JSC::AsyncFromSyncIteratorPrototype::finishCreation): 160 (JSC::AsyncFromSyncIteratorPrototype::create): 161 * runtime/AsyncFromSyncIteratorPrototype.h: Added. 162 (JSC::AsyncFromSyncIteratorPrototype::createStructure): 163 * runtime/AsyncGeneratorFunctionConstructor.cpp: Added. 164 (JSC::AsyncGeneratorFunctionConstructor::AsyncGeneratorFunctionConstructor): 165 (JSC::AsyncGeneratorFunctionConstructor::finishCreation): 166 (JSC::callAsyncGeneratorFunctionConstructor): 167 (JSC::constructAsyncGeneratorFunctionConstructor): 168 (JSC::AsyncGeneratorFunctionConstructor::getCallData): 169 (JSC::AsyncGeneratorFunctionConstructor::getConstructData): 170 * runtime/AsyncGeneratorFunctionConstructor.h: Added. 171 (JSC::AsyncGeneratorFunctionConstructor::create): 172 (JSC::AsyncGeneratorFunctionConstructor::createStructure): 173 * runtime/AsyncGeneratorFunctionPrototype.cpp: Added. 174 (JSC::AsyncGeneratorFunctionPrototype::AsyncGeneratorFunctionPrototype): 175 (JSC::AsyncGeneratorFunctionPrototype::finishCreation): 176 * runtime/AsyncGeneratorFunctionPrototype.h: Added. 177 (JSC::AsyncGeneratorFunctionPrototype::create): 178 (JSC::AsyncGeneratorFunctionPrototype::createStructure): 179 * runtime/AsyncGeneratorPrototype.cpp: Added. 180 (JSC::AsyncGeneratorPrototype::finishCreation): 181 * runtime/AsyncGeneratorPrototype.h: Added. 182 (JSC::AsyncGeneratorPrototype::create): 183 (JSC::AsyncGeneratorPrototype::createStructure): 184 (JSC::AsyncGeneratorPrototype::AsyncGeneratorPrototype): 185 * runtime/AsyncIteratorPrototype.cpp: Added. 186 (JSC::AsyncIteratorPrototype::finishCreation): 187 * runtime/AsyncIteratorPrototype.h: Added. 188 (JSC::AsyncIteratorPrototype::create): 189 (JSC::AsyncIteratorPrototype::createStructure): 190 (JSC::AsyncIteratorPrototype::AsyncIteratorPrototype): 191 * runtime/CommonIdentifiers.h: 192 * runtime/FunctionConstructor.cpp: 193 (JSC::constructFunctionSkippingEvalEnabledCheck): 194 * runtime/FunctionConstructor.h: 195 * runtime/FunctionExecutable.h: 196 * runtime/JSAsyncGeneratorFunction.cpp: Added. 197 (JSC::JSAsyncGeneratorFunction::JSAsyncGeneratorFunction): 198 (JSC::JSAsyncGeneratorFunction::createImpl): 199 (JSC::JSAsyncGeneratorFunction::create): 200 (JSC::JSAsyncGeneratorFunction::createWithInvalidatedReallocationWatchpoint): 201 * runtime/JSAsyncGeneratorFunction.h: Added. 202 (JSC::JSAsyncGeneratorFunction::allocationSize): 203 (JSC::JSAsyncGeneratorFunction::createStructure): 204 * runtime/JSFunction.cpp: 205 (JSC::JSFunction::getOwnPropertySlot): 206 * runtime/JSGlobalObject.cpp: 207 (JSC::JSGlobalObject::init): 208 (JSC::JSGlobalObject::visitChildren): 209 * runtime/JSGlobalObject.h: 210 (JSC::JSGlobalObject::asyncIteratorPrototype const): 211 (JSC::JSGlobalObject::asyncGeneratorPrototype const): 212 (JSC::JSGlobalObject::asyncGeneratorFunctionPrototype const): 213 (JSC::JSGlobalObject::asyncGeneratorFunctionStructure const): 214 * runtime/Options.h: 215 1 216 2017-08-22 Michael Saboff <msaboff@apple.com> 2 217 -
trunk/Source/JavaScriptCore/DerivedSources.make
r220753 r221080 90 90 91 91 JavaScriptCore_BUILTINS_SOURCES = \ 92 $(JavaScriptCore)/builtins/AsyncFromSyncIteratorPrototype.js \ 92 93 $(JavaScriptCore)/builtins/ArrayConstructor.js \ 93 94 $(JavaScriptCore)/builtins/ArrayIteratorPrototype.js \ 94 95 $(JavaScriptCore)/builtins/ArrayPrototype.js \ 96 $(JavaScriptCore)/builtins/AsyncIteratorPrototype.js \ 95 97 $(JavaScriptCore)/builtins/AsyncFunctionPrototype.js \ 98 $(JavaScriptCore)/builtins/AsyncGeneratorPrototype.js \ 96 99 $(JavaScriptCore)/builtins/DatePrototype.js \ 97 100 $(JavaScriptCore)/builtins/FunctionPrototype.js \ … … 135 138 ArrayConstructor.lut.h \ 136 139 ArrayIteratorPrototype.lut.h \ 140 AsyncGeneratorPrototype.lut.h \ 137 141 BooleanPrototype.lut.h \ 138 142 DateConstructor.lut.h \ -
trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
r221013 r221080 1675 1675 86FA9E91142BBB2E001773B7 /* JSBoundFunction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86FA9E8F142BBB2D001773B7 /* JSBoundFunction.cpp */; }; 1676 1676 86FA9E92142BBB2E001773B7 /* JSBoundFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = 86FA9E90142BBB2E001773B7 /* JSBoundFunction.h */; }; 1677 8B3BF5E41E3D368B0076A87A /* AsyncGeneratorPrototype.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3BF5E31E3D365A0076A87A /* AsyncGeneratorPrototype.lut.h */; }; 1678 8B6016F51F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B6016F31F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.cpp */; }; 1679 8B6016F61F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6016F41F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.h */; }; 1677 1680 8B9F6D561D5912FA001C739F /* IterationKind.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B9F6D551D5912FA001C739F /* IterationKind.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1681 8BC064891E1ABA6400B2B8CA /* JSAsyncGeneratorFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC064881E1A584000B2B8CA /* JSAsyncGeneratorFunction.h */; }; 1682 8BC0648A1E1ABA7B00B2B8CA /* AsyncGeneratorFunctionPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC064861E1A4FD100B2B8CA /* AsyncGeneratorFunctionPrototype.h */; }; 1683 8BC0648B1E1ABA9400B2B8CA /* AsyncGeneratorFunctionConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC064841E1A4FD100B2B8CA /* AsyncGeneratorFunctionConstructor.h */; }; 1684 8BC0648C1E1ABDFB00B2B8CA /* AsyncGeneratorFunctionConstructor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BC064831E1A4FD000B2B8CA /* AsyncGeneratorFunctionConstructor.cpp */; }; 1685 8BC0648D1E1ABDFB00B2B8CA /* AsyncGeneratorFunctionPrototype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BC064851E1A4FD100B2B8CA /* AsyncGeneratorFunctionPrototype.cpp */; }; 1686 8BC0648E1E1ABDFB00B2B8CA /* JSAsyncGeneratorFunction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BC064871E1A583F00B2B8CA /* JSAsyncGeneratorFunction.cpp */; }; 1687 8BC064911E1ADC7900B2B8CA /* AsyncGeneratorPrototype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BC0648F1E1AD6AC00B2B8CA /* AsyncGeneratorPrototype.cpp */; }; 1688 8BC064921E1ADCC400B2B8CA /* AsyncGeneratorPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC064901E1AD6AC00B2B8CA /* AsyncGeneratorPrototype.h */; }; 1689 8BC064961E1D845C00B2B8CA /* AsyncIteratorPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC064941E1D828B00B2B8CA /* AsyncIteratorPrototype.h */; settings = {ATTRIBUTES = (Private, ); }; }; 1690 8BC064971E1D849900B2B8CA /* AsyncIteratorPrototype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BC064931E1D828B00B2B8CA /* AsyncIteratorPrototype.cpp */; }; 1678 1691 90213E3D123A40C200D422F3 /* MemoryStatistics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90213E3B123A40C200D422F3 /* MemoryStatistics.cpp */; }; 1679 1692 90213E3E123A40C200D422F3 /* MemoryStatistics.h in Headers */ = {isa = PBXBuildFile; fileRef = 90213E3C123A40C200D422F3 /* MemoryStatistics.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 4313 4326 86FA9E90142BBB2E001773B7 /* JSBoundFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSBoundFunction.h; sourceTree = "<group>"; }; 4314 4327 8852151A9C3842389B3215B7 /* ScriptFetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScriptFetcher.h; sourceTree = "<group>"; }; 4328 8B1735EF1E92E52900369054 /* AsyncFromSyncIteratorPrototype.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = AsyncFromSyncIteratorPrototype.js; sourceTree = "<group>"; }; 4329 8B3BF5E31E3D365A0076A87A /* AsyncGeneratorPrototype.lut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncGeneratorPrototype.lut.h; sourceTree = "<group>"; }; 4315 4330 8B47F234366C4B72AC852A7E /* TemplateRegistryKeyTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TemplateRegistryKeyTable.cpp; sourceTree = "<group>"; }; 4331 8B6016F31F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AsyncFromSyncIteratorPrototype.cpp; sourceTree = "<group>"; }; 4332 8B6016F41F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncFromSyncIteratorPrototype.h; sourceTree = "<group>"; }; 4316 4333 8B9F6D551D5912FA001C739F /* IterationKind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IterationKind.h; sourceTree = "<group>"; }; 4334 8BC064821E180B4A00B2B8CA /* AsyncGeneratorPrototype.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = AsyncGeneratorPrototype.js; sourceTree = "<group>"; }; 4335 8BC064831E1A4FD000B2B8CA /* AsyncGeneratorFunctionConstructor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AsyncGeneratorFunctionConstructor.cpp; sourceTree = "<group>"; }; 4336 8BC064841E1A4FD100B2B8CA /* AsyncGeneratorFunctionConstructor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncGeneratorFunctionConstructor.h; sourceTree = "<group>"; }; 4337 8BC064851E1A4FD100B2B8CA /* AsyncGeneratorFunctionPrototype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AsyncGeneratorFunctionPrototype.cpp; sourceTree = "<group>"; }; 4338 8BC064861E1A4FD100B2B8CA /* AsyncGeneratorFunctionPrototype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncGeneratorFunctionPrototype.h; sourceTree = "<group>"; }; 4339 8BC064871E1A583F00B2B8CA /* JSAsyncGeneratorFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSAsyncGeneratorFunction.cpp; sourceTree = "<group>"; }; 4340 8BC064881E1A584000B2B8CA /* JSAsyncGeneratorFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = JSAsyncGeneratorFunction.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; 4341 8BC0648F1E1AD6AC00B2B8CA /* AsyncGeneratorPrototype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AsyncGeneratorPrototype.cpp; sourceTree = "<group>"; }; 4342 8BC064901E1AD6AC00B2B8CA /* AsyncGeneratorPrototype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncGeneratorPrototype.h; sourceTree = "<group>"; }; 4343 8BC064931E1D828B00B2B8CA /* AsyncIteratorPrototype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AsyncIteratorPrototype.cpp; sourceTree = "<group>"; }; 4344 8BC064941E1D828B00B2B8CA /* AsyncIteratorPrototype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncIteratorPrototype.h; sourceTree = "<group>"; }; 4345 8BC064951E1D838B00B2B8CA /* AsyncIteratorPrototype.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = AsyncIteratorPrototype.js; sourceTree = "<group>"; }; 4317 4346 90213E3B123A40C200D422F3 /* MemoryStatistics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryStatistics.cpp; sourceTree = "<group>"; }; 4318 4347 90213E3C123A40C200D422F3 /* MemoryStatistics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryStatistics.h; sourceTree = "<group>"; }; … … 6365 6394 996B73151BDA05AA00331B84 /* ArrayConstructor.lut.h */, 6366 6395 996B73161BDA05AA00331B84 /* ArrayIteratorPrototype.lut.h */, 6396 8B3BF5E31E3D365A0076A87A /* AsyncGeneratorPrototype.lut.h */, 6367 6397 996B73071BD9FA2C00331B84 /* BooleanPrototype.lut.h */, 6368 6398 6514F21718B3E1670098FF8B /* Bytecodes.h */, … … 6611 6641 F692A84E0255597D01FF60F7 /* ArrayPrototype.h */, 6612 6642 0FB7F38A15ED8E3800F167B2 /* ArrayStorage.h */, 6643 8B6016F31F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.cpp */, 6644 8B6016F41F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.h */, 6613 6645 5B70CFDD1DB69E5C00EC23F9 /* AsyncFunctionConstructor.cpp */, 6614 6646 5B70CFDC1DB69E5C00EC23F9 /* AsyncFunctionConstructor.h */, 6615 6647 5B70CFDB1DB69E5C00EC23F9 /* AsyncFunctionPrototype.cpp */, 6616 6648 5B70CFDA1DB69E5C00EC23F9 /* AsyncFunctionPrototype.h */, 6649 8BC064831E1A4FD000B2B8CA /* AsyncGeneratorFunctionConstructor.cpp */, 6650 8BC064841E1A4FD100B2B8CA /* AsyncGeneratorFunctionConstructor.h */, 6651 8BC064851E1A4FD100B2B8CA /* AsyncGeneratorFunctionPrototype.cpp */, 6652 8BC064861E1A4FD100B2B8CA /* AsyncGeneratorFunctionPrototype.h */, 6653 8BC0648F1E1AD6AC00B2B8CA /* AsyncGeneratorPrototype.cpp */, 6654 8BC064901E1AD6AC00B2B8CA /* AsyncGeneratorPrototype.h */, 6655 8BC064931E1D828B00B2B8CA /* AsyncIteratorPrototype.cpp */, 6656 8BC064941E1D828B00B2B8CA /* AsyncIteratorPrototype.h */, 6617 6657 0F7CF9541DC1258B0098CC12 /* AtomicsObject.cpp */, 6618 6658 0F7CF9551DC1258B0098CC12 /* AtomicsObject.h */, … … 6824 6864 5B70CFD91DB69E5C00EC23F9 /* JSAsyncFunction.cpp */, 6825 6865 5B70CFD81DB69E5C00EC23F9 /* JSAsyncFunction.h */, 6866 8BC064871E1A583F00B2B8CA /* JSAsyncGeneratorFunction.cpp */, 6867 8BC064881E1A584000B2B8CA /* JSAsyncGeneratorFunction.h */, 6826 6868 86FA9E8F142BBB2D001773B7 /* JSBoundFunction.cpp */, 6827 6869 86FA9E90142BBB2E001773B7 /* JSBoundFunction.h */, … … 8070 8112 7CF9BC591B65D9A3009DB1EF /* ArrayIteratorPrototype.js */, 8071 8113 A7D801A01880D66E0026C39B /* ArrayPrototype.js */, 8114 8B1735EF1E92E52900369054 /* AsyncFromSyncIteratorPrototype.js */, 8072 8115 5B8243041DB7AA4900EA6384 /* AsyncFunctionPrototype.js */, 8116 8BC064821E180B4A00B2B8CA /* AsyncGeneratorPrototype.js */, 8117 8BC064951E1D838B00B2B8CA /* AsyncIteratorPrototype.js */, 8073 8118 DE26E9061CB5DD9600D2BE82 /* BuiltinExecutableCreator.cpp */, 8074 8119 DE26E9021CB5DD0500D2BE82 /* BuiltinExecutableCreator.h */, … … 8339 8384 0F24E54117EA9F5900ABB217 /* AssemblyHelpers.h in Headers */, 8340 8385 A784A26111D16622005776AC /* ASTBuilder.h in Headers */, 8386 8B6016F61F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.h in Headers */, 8341 8387 5B70CFE21DB69E6600EC23F9 /* AsyncFunctionConstructor.h in Headers */, 8342 8388 5B70CFE01DB69E6600EC23F9 /* AsyncFunctionPrototype.h in Headers */, 8389 8BC0648B1E1ABA9400B2B8CA /* AsyncGeneratorFunctionConstructor.h in Headers */, 8390 8BC0648A1E1ABA7B00B2B8CA /* AsyncGeneratorFunctionPrototype.h in Headers */, 8391 8BC064921E1ADCC400B2B8CA /* AsyncGeneratorPrototype.h in Headers */, 8392 8B3BF5E41E3D368B0076A87A /* AsyncGeneratorPrototype.lut.h in Headers */, 8393 8BC064961E1D845C00B2B8CA /* AsyncIteratorPrototype.h in Headers */, 8343 8394 6A38CFAA1E32B5AB0060206F /* AsyncStackTrace.h in Headers */, 8344 8395 0F7CF9571DC125900098CC12 /* AtomicsObject.h in Headers */, … … 8604 8655 0FC3CD0019ADA410006AC72A /* DFGBlockWorklist.h in Headers */, 8605 8656 0F8364B7164B0C110053329A /* DFGBranchDirection.h in Headers */, 8606 FE10AAEE1F44D954009DEDC5 /* ProbeContext.h in Headers */,8607 8657 86EC9DC51328DF82002B2AD7 /* DFGByteCodeParser.h in Headers */, 8608 8658 0F256C361627B0AD007F2783 /* DFGCallArrayAllocatorSlowPathGenerator.h in Headers */, … … 9059 9109 539FB8BA1C99DA7C00940FA1 /* JSArrayInlines.h in Headers */, 9060 9110 5B70CFDE1DB69E6600EC23F9 /* JSAsyncFunction.h in Headers */, 9111 8BC064891E1ABA6400B2B8CA /* JSAsyncGeneratorFunction.h in Headers */, 9061 9112 BC18C4180E16F5CD00B34460 /* JSBase.h in Headers */, 9062 9113 140D17D70E8AD4A9000CD17D /* JSBasePrivate.h in Headers */, … … 9344 9395 FE63DD541EA9B61E00103A69 /* Printer.h in Headers */, 9345 9396 868916B0155F286300CB2B9A /* PrivateName.h in Headers */, 9397 FE10AAEE1F44D954009DEDC5 /* ProbeContext.h in Headers */, 9398 FE10AAEB1F44D528009DEDC5 /* ProbeStack.h in Headers */, 9346 9399 0FF729A5166AD351000F5BA3 /* ProfilerBytecode.h in Headers */, 9347 9400 0FF729B9166AD360000F5BA3 /* ProfilerBytecodes.h in Headers */, … … 9645 9698 AD2FCC2D1DB838FD00B3E736 /* WebAssemblyPrototype.h in Headers */, 9646 9699 AD2FCBF91DB58DAD00B3E736 /* WebAssemblyRuntimeErrorConstructor.h in Headers */, 9647 FE10AAEB1F44D528009DEDC5 /* ProbeStack.h in Headers */,9648 9700 AD2FCC1E1DB59CB200B3E736 /* WebAssemblyRuntimeErrorConstructor.lut.h in Headers */, 9649 9701 AD2FCBFB1DB58DAD00B3E736 /* WebAssemblyRuntimeErrorPrototype.h in Headers */, … … 10246 10298 147F39C0107EC37600427A48 /* ArrayPrototype.cpp in Sources */, 10247 10299 0F24E54017EA9F5900ABB217 /* AssemblyHelpers.cpp in Sources */, 10300 8B6016F51F3E3CC000F9DE6A /* AsyncFromSyncIteratorPrototype.cpp in Sources */, 10248 10301 5B70CFE31DB69E6600EC23F9 /* AsyncFunctionConstructor.cpp in Sources */, 10249 10302 5B70CFE11DB69E6600EC23F9 /* AsyncFunctionPrototype.cpp in Sources */, 10303 8BC0648C1E1ABDFB00B2B8CA /* AsyncGeneratorFunctionConstructor.cpp in Sources */, 10304 8BC0648D1E1ABDFB00B2B8CA /* AsyncGeneratorFunctionPrototype.cpp in Sources */, 10305 8BC064911E1ADC7900B2B8CA /* AsyncGeneratorPrototype.cpp in Sources */, 10306 8BC064971E1D849900B2B8CA /* AsyncIteratorPrototype.cpp in Sources */, 10250 10307 6A38CFA91E32B5AB0060206F /* AsyncStackTrace.cpp in Sources */, 10251 10308 0F7CF9561DC1258D0098CC12 /* AtomicsObject.cpp in Sources */, … … 10456 10513 86EC9DC71328DF82002B2AD7 /* DFGGraph.cpp in Sources */, 10457 10514 0F2FCCF918A60070001A27F8 /* DFGGraphSafepoint.cpp in Sources */, 10458 FE10AAF41F468396009DEDC5 /* ProbeContext.cpp in Sources */,10459 10515 0FB17660196B8F9E0091052A /* DFGHeapLocation.cpp in Sources */, 10460 10516 0FC841681BA8C3210061837D /* DFGInferredTypeCheck.cpp in Sources */, … … 10734 10790 0F2B66E817B6B5AB00A7AE3F /* JSArrayBufferView.cpp in Sources */, 10735 10791 5B70CFDF1DB69E6600EC23F9 /* JSAsyncFunction.cpp in Sources */, 10792 8BC0648E1E1ABDFB00B2B8CA /* JSAsyncGeneratorFunction.cpp in Sources */, 10736 10793 1421359B0A677F4F00A8195E /* JSBase.cpp in Sources */, 10737 10794 86FA9E91142BBB2E001773B7 /* JSBoundFunction.cpp in Sources */, … … 10745 10802 1440FCE40A51E46B0005F061 /* JSClassRef.cpp in Sources */, 10746 10803 86E3C616167BABEE006D760A /* JSContext.mm in Sources */, 10747 FE10AAEC1F44D545009DEDC5 /* ProbeStack.cpp in Sources */,10748 10804 14BD5A300A3E91F600BAF59C /* JSContextRef.cpp in Sources */, 10749 10805 A72028B61797601E0098028C /* JSCTestRunnerUtils.cpp in Sources */, … … 10918 10974 0F98206016BFE38100240D02 /* PreciseJumpTargets.cpp in Sources */, 10919 10975 FE63DD561EA9BC6700103A69 /* Printer.cpp in Sources */, 10976 FE10AAF41F468396009DEDC5 /* ProbeContext.cpp in Sources */, 10977 FE10AAEC1F44D545009DEDC5 /* ProbeStack.cpp in Sources */, 10920 10978 0FF729AD166AD35C000F5BA3 /* ProfilerBytecode.cpp in Sources */, 10921 10979 0FF729AE166AD35C000F5BA3 /* ProfilerBytecodes.cpp in Sources */, -
trunk/Source/JavaScriptCore/builtins/BuiltinNames.h
r220053 r221080 122 122 macro(generatorValue) \ 123 123 macro(generatorThis) \ 124 macro(syncIterator) \ 125 macro(asyncGeneratorState) \ 126 macro(asyncGeneratorSuspendReason) \ 127 macro(asyncGeneratorQueue) \ 128 macro(promiseCapability) \ 124 129 macro(generatorResumeMode) \ 125 130 macro(Collator) \ -
trunk/Source/JavaScriptCore/bytecode/BytecodeDumper.cpp
r220735 r221080 1332 1332 break; 1333 1333 } 1334 case op_new_async_generator_func: { 1335 int r0 = (++it)->u.operand; 1336 int r1 = (++it)->u.operand; 1337 int f0 = (++it)->u.operand; 1338 printLocationAndOp(out, location, it, "new_async_generator_func"); 1339 out.printf("%s, %s, f%d", registerName(r0).data(), registerName(r1).data(), f0); 1340 break; 1341 } 1334 1342 case op_new_func_exp: { 1335 1343 int r0 = (++it)->u.operand; … … 1353 1361 int f0 = (++it)->u.operand; 1354 1362 printLocationAndOp(out, location, it, "new_async_func_exp"); 1363 out.printf("%s, %s, f%d", registerName(r0).data(), registerName(r1).data(), f0); 1364 break; 1365 } 1366 case op_new_async_generator_func_exp: { 1367 int r0 = (++it)->u.operand; 1368 int r1 = (++it)->u.operand; 1369 int f0 = (++it)->u.operand; 1370 printLocationAndOp(out, location, it, "op_new_async_generator_func_exp"); 1355 1371 out.printf("%s, %s, f%d", registerName(r0).data(), registerName(r1).data(), f0); 1356 1372 break; -
trunk/Source/JavaScriptCore/bytecode/BytecodeIntrinsicRegistry.cpp
r220053 r221080 32 32 #include "BytecodeGenerator.h" 33 33 #include "IterationKind.h" 34 #include "JSAsyncGeneratorFunction.h" 34 35 #include "JSCJSValueInlines.h" 35 36 #include "JSGeneratorFunction.h" … … 74 75 m_GeneratorStateCompleted.set(m_vm, jsNumber(static_cast<int32_t>(JSGeneratorFunction::GeneratorState::Completed))); 75 76 m_GeneratorStateExecuting.set(m_vm, jsNumber(static_cast<int32_t>(JSGeneratorFunction::GeneratorState::Executing))); 77 m_AsyncGeneratorStateCompleted.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorState::Completed))); 78 m_AsyncGeneratorStateExecuting.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorState::Executing))); 79 m_AsyncGeneratorStateSuspendedStart.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorState::SuspendedStart))); 80 m_AsyncGeneratorStateSuspendedYield.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorState::SuspendedYield))); 81 m_AsyncGeneratorStateAwaitingReturn.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorState::AwaitingReturn))); 82 m_AsyncGeneratorSuspendReasonYield.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::Yield))); 83 m_AsyncGeneratorSuspendReasonAwait.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::Await))); 84 m_AsyncGeneratorSuspendReasonNone.set(m_vm, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::None))); 76 85 } 77 86 -
trunk/Source/JavaScriptCore/bytecode/BytecodeIntrinsicRegistry.h
r220735 r221080 86 86 macro(GeneratorStateCompleted) \ 87 87 macro(GeneratorStateExecuting) \ 88 88 macro(AsyncGeneratorStateCompleted) \ 89 macro(AsyncGeneratorStateExecuting) \ 90 macro(AsyncGeneratorStateAwaitingReturn) \ 91 macro(AsyncGeneratorStateSuspendedStart) \ 92 macro(AsyncGeneratorStateSuspendedYield) \ 93 macro(AsyncGeneratorSuspendReasonYield) \ 94 macro(AsyncGeneratorSuspendReasonAwait) \ 95 macro(AsyncGeneratorSuspendReasonNone) \ 89 96 90 97 class BytecodeIntrinsicRegistry { -
trunk/Source/JavaScriptCore/bytecode/BytecodeList.json
r220753 r221080 122 122 { "name" : "op_new_async_func", "length" : 4 }, 123 123 { "name" : "op_new_async_func_exp", "length" : 4 }, 124 { "name" : "op_new_async_generator_func", "length" : 4 }, 125 { "name" : "op_new_async_generator_func_exp", "length" : 4 }, 124 126 { "name" : "op_set_function_name", "length" : 3 }, 125 127 { "name" : "op_call", "length" : 9 }, -
trunk/Source/JavaScriptCore/bytecode/BytecodeUseDef.h
r220735 r221080 202 202 case op_unsigned: 203 203 case op_new_func: 204 case op_new_async_generator_func: 205 case op_new_async_generator_func_exp: 204 206 case op_new_generator_func: 205 207 case op_new_async_func: … … 402 404 case op_new_generator_func: 403 405 case op_new_generator_func_exp: 406 case op_new_async_generator_func: 407 case op_new_async_generator_func_exp: 404 408 case op_new_async_func: 405 409 case op_new_async_func_exp: -
trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r220852 r221080 39 39 #include "DefinePropertyAttributes.h" 40 40 #include "Interpreter.h" 41 #include "JSAsyncGeneratorFunction.h" 41 42 #include "JSCInlines.h" 42 43 #include "JSFunction.h" … … 566 567 switch (parseMode) { 567 568 case SourceParseMode::GeneratorWrapperFunctionMode: 568 case SourceParseMode::GeneratorWrapperMethodMode: { 569 case SourceParseMode::GeneratorWrapperMethodMode: 570 case SourceParseMode::AsyncGeneratorWrapperMethodMode: 571 case SourceParseMode::AsyncGeneratorWrapperFunctionMode: { 569 572 m_generatorRegister = addVar(); 570 573 … … 621 624 } 622 625 626 case SourceParseMode::AsyncGeneratorBodyMode: 623 627 case SourceParseMode::AsyncFunctionBodyMode: 624 628 case SourceParseMode::AsyncArrowFunctionBodyMode: … … 2856 2860 } 2857 2861 2862 RegisterID* BytecodeGenerator::emitCreateAsyncGeneratorQueue(const JSTextPosition& divot) 2863 { 2864 auto varCreateAsyncGeneratorQueue = variable(propertyNames().builtinNames().createAsyncGeneratorQueuePrivateName()); 2865 RefPtr<RegisterID> scope = newTemporary(); 2866 RefPtr<RegisterID> queue = newTemporary(); 2867 moveToDestinationIfNeeded(scope.get(), emitResolveScope(scope.get(), varCreateAsyncGeneratorQueue)); 2868 RefPtr<RegisterID> createAsyncGeneratorQueue = emitGetFromScope(newTemporary(), scope.get(), varCreateAsyncGeneratorQueue, ThrowIfNotFound); 2869 2870 CallArguments args(*this, nullptr, 0); 2871 emitLoad(args.thisRegister(), jsUndefined()); 2872 2873 emitCall(queue.get(), createAsyncGeneratorQueue.get(), NoExpectedFunction, args, divot, divot, divot, DebuggableCall::No); 2874 2875 return queue.get(); 2876 } 2877 2878 void BytecodeGenerator::emitPutAsyncGeneratorFields(RegisterID* nextFunction, const JSTextPosition& divot) 2879 { 2880 ASSERT(isAsyncGeneratorFunctionParseMode(parseMode())); 2881 2882 emitDirectPutById(m_generatorRegister, propertyNames().builtinNames().generatorNextPrivateName(), nextFunction, PropertyNode::KnownDirect); 2883 2884 emitDirectPutById(m_generatorRegister, propertyNames().builtinNames().generatorThisPrivateName(), &m_thisRegister, PropertyNode::KnownDirect); 2885 2886 emitDirectPutById(m_generatorRegister, propertyNames().builtinNames().generatorStatePrivateName(), emitLoad(nullptr, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorState::SuspendedStart))), PropertyNode::KnownDirect); 2887 2888 emitDirectPutById(m_generatorRegister, propertyNames().builtinNames().generatorFramePrivateName(), emitLoad(nullptr, jsNull()), PropertyNode::KnownDirect); 2889 2890 emitDirectPutById(m_generatorRegister, propertyNames().builtinNames().asyncGeneratorSuspendReasonPrivateName(), emitLoad(nullptr, jsNumber(static_cast<int32_t>(JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::None))), PropertyNode::KnownDirect); 2891 2892 2893 emitDirectPutById(m_generatorRegister, propertyNames().builtinNames().asyncGeneratorQueuePrivateName(), emitCreateAsyncGeneratorQueue(divot), PropertyNode::KnownDirect); 2894 } 2895 2858 2896 RegisterID* BytecodeGenerator::emitDeleteById(RegisterID* dst, RegisterID* base, const Identifier& property) 2859 2897 { … … 3272 3310 opcodeID = op_new_async_func_exp; 3273 3311 break; 3312 case SourceParseMode::AsyncGeneratorWrapperFunctionMode: 3313 case SourceParseMode::AsyncGeneratorWrapperMethodMode: 3314 ASSERT(Options::useAsyncIterator()); 3315 opcodeID = op_new_async_generator_func_exp; 3316 break; 3274 3317 default: 3275 3318 break; … … 3326 3369 else if (function->parseMode() == SourceParseMode::AsyncFunctionMode) 3327 3370 emitOpcode(op_new_async_func); 3328 else 3371 else if (function->parseMode() == SourceParseMode::AsyncGeneratorWrapperFunctionMode) { 3372 ASSERT(Options::useAsyncIterator()); 3373 emitOpcode(op_new_async_generator_func); 3374 } else 3329 3375 emitOpcode(op_new_func); 3330 3376 instructions().append(dst->index()); … … 4554 4600 emitCall(dst, next.get(), NoExpectedFunction, nextArguments, node->divot(), node->divotStart(), node->divotEnd(), DebuggableCall::No); 4555 4601 } 4556 { 4557 Ref<Label> typeIsObject = newLabel(); 4558 emitJumpIfTrue(emitIsObject(newTemporary(), dst), typeIsObject.get()); 4559 emitThrowTypeError(ASCIILiteral("Iterator result interface is not an object.")); 4560 emitLabel(typeIsObject.get()); 4561 } 4602 4562 4603 return dst; 4563 4604 } 4564 4605 4565 void BytecodeGenerator::emitIteratorClose(RegisterID* iterator, const ThrowableExpressionData* node )4606 void BytecodeGenerator::emitIteratorClose(RegisterID* iterator, const ThrowableExpressionData* node, EmitAwait doEmitAwait) 4566 4607 { 4567 4608 Ref<Label> done = newLabel(); … … 4573 4614 emitMove(returnArguments.thisRegister(), iterator); 4574 4615 emitCall(value.get(), returnMethod.get(), NoExpectedFunction, returnArguments, node->divot(), node->divotStart(), node->divotEnd(), DebuggableCall::No); 4616 4617 if (doEmitAwait == EmitAwait::Yes) 4618 emitAwait(value.get()); 4619 4575 4620 emitJumpIfTrue(emitIsObject(newTemporary(), value.get()), done.get()); 4576 4621 emitThrowTypeError(ASCIILiteral("Iterator result interface is not an object.")); … … 4754 4799 } 4755 4800 4756 void BytecodeGenerator::emitYieldPoint(RegisterID* argument )4801 void BytecodeGenerator::emitYieldPoint(RegisterID* argument, JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason result) 4757 4802 { 4758 4803 Ref<Label> mergePoint = newLabel(); 4759 4804 unsigned yieldPointIndex = m_yieldPoints++; 4760 4805 emitGeneratorStateChange(yieldPointIndex + 1); 4806 4807 if (parseMode() == SourceParseMode::AsyncGeneratorBodyMode) { 4808 int suspendReason = static_cast<int32_t>(result); 4809 emitPutById(generatorRegister(), propertyNames().builtinNames().asyncGeneratorSuspendReasonPrivateName(), emitLoad(nullptr, jsNumber(suspendReason))); 4810 } 4761 4811 4762 4812 // Split the try range here. … … 4785 4835 } 4786 4836 4787 RegisterID* BytecodeGenerator::emitYield(RegisterID* argument )4788 { 4789 emitYieldPoint(argument );4837 RegisterID* BytecodeGenerator::emitYield(RegisterID* argument, JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason result) 4838 { 4839 emitYieldPoint(argument, result); 4790 4840 4791 4841 Ref<Label> normalLabel = newLabel(); … … 4814 4864 } 4815 4865 4866 RegisterID* BytecodeGenerator::emitCallIterator(RegisterID* iterator, RegisterID* argument, ThrowableExpressionData* node) 4867 { 4868 CallArguments args(*this, nullptr); 4869 emitMove(args.thisRegister(), argument); 4870 emitCall(iterator, iterator, NoExpectedFunction, args, node->divot(), node->divotStart(), node->divotEnd(), DebuggableCall::No); 4871 4872 return iterator; 4873 } 4874 4875 void BytecodeGenerator::emitAwait(RegisterID* value) 4876 { 4877 emitYield(value, JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::Await); 4878 emitMove(value, generatorValueRegister()); 4879 } 4880 4881 RegisterID* BytecodeGenerator::emitGetIterator(RegisterID* argument, ThrowableExpressionData* node) 4882 { 4883 RefPtr<RegisterID> iterator = emitGetById(newTemporary(), argument, propertyNames().iteratorSymbol); 4884 emitCallIterator(iterator.get(), argument, node); 4885 4886 return iterator.get(); 4887 } 4888 4889 RegisterID* BytecodeGenerator::emitGetAsyncIterator(RegisterID* argument, ThrowableExpressionData* node) 4890 { 4891 RefPtr<RegisterID> iterator = emitGetById(newTemporary(), argument, propertyNames().asyncIteratorSymbol); 4892 Ref<Label> asyncIteratorNotFound = newLabel(); 4893 Ref<Label> asyncIteratorFound = newLabel(); 4894 Ref<Label> iteratorReceived = newLabel(); 4895 4896 emitJumpIfTrue(emitIsUndefined(newTemporary(), iterator.get()), asyncIteratorNotFound.get()); 4897 emitJumpIfTrue(emitUnaryOp(op_eq_null, newTemporary(), iterator.get()), asyncIteratorNotFound.get()); 4898 4899 emitJump(asyncIteratorFound.get()); 4900 emitLabel(asyncIteratorNotFound.get()); 4901 4902 RefPtr<RegisterID> commonIterator = emitGetById(newTemporary(), argument, propertyNames().iteratorSymbol); 4903 emitCallIterator(commonIterator.get(), argument, node); 4904 emitMove(iterator.get(), commonIterator.get()); 4905 4906 auto varCreateAsyncFromSyncIterator = variable(propertyNames().builtinNames().createAsyncFromSyncIteratorPrivateName()); 4907 RefPtr<RegisterID> scope = newTemporary(); 4908 moveToDestinationIfNeeded(scope.get(), emitResolveScope(scope.get(), varCreateAsyncFromSyncIterator)); 4909 RefPtr<RegisterID> createAsyncFromSyncIterator = emitGetFromScope(newTemporary(), scope.get(), varCreateAsyncFromSyncIterator, ThrowIfNotFound); 4910 4911 CallArguments args(*this, nullptr, 1); 4912 emitLoad(args.thisRegister(), jsUndefined()); 4913 4914 emitMove(args.argumentRegister(0), iterator.get()); 4915 4916 JSTextPosition divot(m_scopeNode->firstLine(), m_scopeNode->startOffset(), m_scopeNode->lineStartOffset()); 4917 emitCall(iterator.get(), createAsyncFromSyncIterator.get(), NoExpectedFunction, args, divot, divot, divot, DebuggableCall::No); 4918 4919 emitJump(iteratorReceived.get()); 4920 4921 emitLabel(asyncIteratorFound.get()); 4922 emitCallIterator(iterator.get(), argument, node); 4923 emitLabel(iteratorReceived.get()); 4924 4925 return iterator.get(); 4926 } 4927 4816 4928 RegisterID* BytecodeGenerator::emitDelegateYield(RegisterID* argument, ThrowableExpressionData* node) 4817 4929 { 4818 4930 RefPtr<RegisterID> value = newTemporary(); 4819 4931 { 4820 RefPtr<RegisterID> iterator = emitGetById(newTemporary(), argument, propertyNames().iteratorSymbol); 4821 { 4822 CallArguments args(*this, nullptr); 4823 emitMove(args.thisRegister(), argument); 4824 emitCall(iterator.get(), iterator.get(), NoExpectedFunction, args, node->divot(), node->divotStart(), node->divotEnd(), DebuggableCall::No); 4825 } 4932 RefPtr<RegisterID> iterator = parseMode() == SourceParseMode::AsyncGeneratorBodyMode ? emitGetAsyncIterator(argument, node) : emitGetIterator(argument, node); 4826 4933 4827 4934 Ref<Label> loopDone = newLabel(); … … 4838 4945 Ref<Label> branchOnResult = newLabel(); 4839 4946 { 4840 emitYieldPoint(value.get() );4947 emitYieldPoint(value.get(), JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::Yield); 4841 4948 4842 4949 Ref<Label> normalLabel = newLabel(); … … 4859 4966 emitJumpIfFalse(emitIsUndefined(newTemporary(), throwMethod.get()), throwMethodFound.get()); 4860 4967 4861 emitIteratorClose(iterator.get(), node); 4968 EmitAwait emitAwaitInIteratorClose = parseMode() == SourceParseMode::AsyncGeneratorBodyMode ? EmitAwait::Yes : EmitAwait::No; 4969 emitIteratorClose(iterator.get(), node, emitAwaitInIteratorClose); 4970 4862 4971 emitThrowTypeError(ASCIILiteral("Delegated generator does not have a 'throw' method.")); 4863 4972 … … 4868 4977 emitCall(value.get(), throwMethod.get(), NoExpectedFunction, throwArguments, node->divot(), node->divotStart(), node->divotEnd(), DebuggableCall::No); 4869 4978 4870 emitJumpIfTrue(emitIsObject(newTemporary(), value.get()), branchOnResult.get()); 4871 emitThrowTypeError(ASCIILiteral("Iterator result interface is not an object.")); 4979 emitJump(branchOnResult.get()); 4872 4980 } 4873 4981 … … 4890 4998 emitCall(value.get(), returnMethod.get(), NoExpectedFunction, returnArguments, node->divot(), node->divotStart(), node->divotEnd(), DebuggableCall::No); 4891 4999 5000 if (parseMode() == SourceParseMode::AsyncGeneratorBodyMode) 5001 emitAwait(value.get()); 5002 4892 5003 Ref<Label> returnIteratorResultIsObject = newLabel(); 4893 5004 emitJumpIfTrue(emitIsObject(newTemporary(), value.get()), returnIteratorResultIsObject.get()); … … 4895 5006 4896 5007 emitLabel(returnIteratorResultIsObject.get()); 5008 4897 5009 Ref<Label> returnFromGenerator = newLabel(); 4898 5010 emitJumpIfTrue(emitGetById(newTemporary(), value.get(), propertyNames().done), returnFromGenerator.get()); … … 4919 5031 4920 5032 emitLabel(branchOnResult.get()); 5033 5034 if (parseMode() == SourceParseMode::AsyncGeneratorBodyMode) 5035 emitAwait(value.get()); 5036 5037 Ref<Label> iteratorValueIsObject = newLabel(); 5038 emitJumpIfTrue(emitIsObject(newTemporary(), value.get()), iteratorValueIsObject.get()); 5039 emitThrowTypeError(ASCIILiteral("Iterator result interface is not an object.")); 5040 emitLabel(iteratorValueIsObject.get()); 5041 4921 5042 emitJumpIfTrue(emitGetById(newTemporary(), value.get(), propertyNames().done), loopDone.get()); 4922 5043 emitGetById(value.get(), value.get(), propertyNames().value); 5044 4923 5045 emitJump(loopStart.get()); 4924 5046 } -
trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r220852 r221080 34 34 #include "Instruction.h" 35 35 #include "Interpreter.h" 36 #include "JSAsyncGeneratorFunction.h" 36 37 #include "JSGeneratorFunction.h" 37 38 #include "Label.h" … … 61 62 }; 62 63 64 enum class EmitAwait { Yes, No }; 65 63 66 enum class DebuggableCall { Yes, No }; 64 67 enum class ThisResolutionType { Local, Scoped }; … … 605 608 private: 606 609 void emitTypeProfilerExpressionInfo(const JSTextPosition& startDivot, const JSTextPosition& endDivot); 610 RegisterID* emitCreateAsyncGeneratorQueue(const JSTextPosition&); 607 611 public: 608 612 … … 700 704 // Initialize object with generator fields (@generatorThis, @generatorNext, @generatorState, @generatorFrame) 701 705 void emitPutGeneratorFields(RegisterID* nextFunction); 706 707 void emitPutAsyncGeneratorFields(RegisterID* nextFunction, const JSTextPosition&); 702 708 703 709 ExpectedFunction expectedFunctionForIdentifier(const Identifier&); … … 777 783 RegisterID* emitIteratorNext(RegisterID* dst, RegisterID* iterator, const ThrowableExpressionData* node); 778 784 RegisterID* emitIteratorNextWithValue(RegisterID* dst, RegisterID* iterator, RegisterID* value, const ThrowableExpressionData* node); 779 void emitIteratorClose(RegisterID* iterator, const ThrowableExpressionData* node );785 void emitIteratorClose(RegisterID* iterator, const ThrowableExpressionData* node, EmitAwait = EmitAwait::No); 780 786 781 787 RegisterID* emitRestParameter(RegisterID* result, unsigned numParametersToSkip); … … 826 832 void emitPopCatchScope(VariableEnvironment&); 827 833 834 RegisterID* emitGetIterator(RegisterID*, ThrowableExpressionData*); 835 RegisterID* emitGetAsyncIterator(RegisterID*, ThrowableExpressionData*); 836 837 void emitAwait(RegisterID*); 828 838 void emitGetScope(); 829 839 RegisterID* emitPushWithScope(RegisterID* objectScope); … … 905 915 void endSwitch(uint32_t clauseCount, const Vector<Ref<Label>, 8>&, ExpressionNode**, Label& defaultLabel, int32_t min, int32_t range); 906 916 907 void emitYieldPoint(RegisterID* );917 void emitYieldPoint(RegisterID*, JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason); 908 918 909 919 void emitGeneratorStateLabel(); 910 920 void emitGeneratorStateChange(int32_t state); 911 RegisterID* emitYield(RegisterID* argument );921 RegisterID* emitYield(RegisterID* argument, JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason = JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::Yield); 912 922 RegisterID* emitDelegateYield(RegisterID* argument, ThrowableExpressionData*); 913 923 RegisterID* generatorStateRegister() { return &m_parameters[static_cast<int32_t>(JSGeneratorFunction::GeneratorArgument::State)]; } … … 997 1007 RegisterID* emitCall(OpcodeID, RegisterID* dst, RegisterID* func, ExpectedFunction, CallArguments&, const JSTextPosition& divot, const JSTextPosition& divotStart, const JSTextPosition& divotEnd, DebuggableCall); 998 1008 1009 RegisterID* emitCallIterator(RegisterID* iterator, RegisterID* argument, ThrowableExpressionData*); 999 1010 RegisterID* newRegister(); 1000 1011 -
trunk/Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp
r220852 r221080 3147 3147 bool hasFinally = generator.emitReturnViaFinallyIfNeeded(returnRegister.get()); 3148 3148 if (!hasFinally) { 3149 if (generator.parseMode() == SourceParseMode::AsyncGeneratorBodyMode) { 3150 returnRegister = generator.emitMove(generator.newTemporary(), returnRegister.get()); 3151 generator.emitAwait(returnRegister.get()); 3152 } 3153 3149 3154 generator.emitWillLeaveCallFrameDebugHook(); 3150 3155 generator.emitReturn(returnRegister.get()); … … 3551 3556 switch (generator.parseMode()) { 3552 3557 case SourceParseMode::GeneratorWrapperFunctionMode: 3553 case SourceParseMode::GeneratorWrapperMethodMode: { 3558 case SourceParseMode::GeneratorWrapperMethodMode: 3559 case SourceParseMode::AsyncGeneratorWrapperMethodMode: 3560 case SourceParseMode::AsyncGeneratorWrapperFunctionMode: { 3554 3561 StatementNode* singleStatement = this->singleStatement(); 3555 3562 ASSERT(singleStatement->isExprStatement()); … … 3567 3574 } 3568 3575 3569 generator.emitPutGeneratorFields(next.get()); 3570 3576 if (isGeneratorWrapperParseMode(generator.parseMode())) 3577 generator.emitPutGeneratorFields(next.get()); 3578 else { 3579 ASSERT(isAsyncGeneratorFunctionParseMode(generator.parseMode())); 3580 generator.emitPutAsyncGeneratorFields(next.get(), JSTextPosition(startLine(), startStartOffset(), startLineStartOffset())); 3581 } 3582 3571 3583 ASSERT(startOffset() >= lineStartOffset()); 3572 3584 generator.emitDebugHook(WillLeaveCallFrame, lastLine(), startOffset(), lineStartOffset()); … … 3623 3635 } 3624 3636 3637 case SourceParseMode::AsyncGeneratorBodyMode: 3625 3638 case SourceParseMode::AsyncArrowFunctionBodyMode: 3626 3639 case SourceParseMode::AsyncFunctionBodyMode: … … 3721 3734 } else 3722 3735 arg = generator.emitLoad(nullptr, jsUndefined()); 3723 RefPtr<RegisterID> value = generator.emitYield(arg.get() );3736 RefPtr<RegisterID> value = generator.emitYield(arg.get(), JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::Yield); 3724 3737 if (dst == generator.ignoredResult()) 3725 3738 return nullptr; … … 3740 3753 RefPtr<RegisterID> arg = generator.newTemporary(); 3741 3754 generator.emitNode(arg.get(), argument()); 3742 RefPtr<RegisterID> value = generator.emitYield(arg.get() );3755 RefPtr<RegisterID> value = generator.emitYield(arg.get(), JSAsyncGeneratorFunction::AsyncGeneratorSuspendReason::Await); 3743 3756 if (dst == generator.ignoredResult()) 3744 3757 return nullptr; -
trunk/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h
r220783 r221080 2044 2044 case PhantomNewFunction: 2045 2045 case PhantomNewGeneratorFunction: 2046 case PhantomNewAsyncGeneratorFunction: 2046 2047 case PhantomNewAsyncFunction: 2047 2048 case PhantomCreateActivation: … … 2094 2095 forNode(node).set( 2095 2096 m_graph, m_codeBlock->globalObjectFor(node->origin.semantic)->generatorFunctionStructure()); 2097 break; 2098 2099 case NewAsyncGeneratorFunction: 2100 forNode(node).set( 2101 m_graph, m_codeBlock->globalObjectFor(node->origin.semantic)->asyncGeneratorFunctionStructure()); 2096 2102 break; 2097 2103 -
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r221018 r221080 5743 5743 NEXT_OPCODE(op_get_argument); 5744 5744 } 5745 5745 case op_new_async_generator_func: 5746 5746 case op_new_func: 5747 5747 case op_new_generator_func: … … 5749 5749 FunctionExecutable* decl = m_inlineStackTop->m_profiledBlock->functionDecl(currentInstruction[3].u.operand); 5750 5750 FrozenValue* frozen = m_graph.freezeStrong(decl); 5751 NodeType op = (opcodeID == op_new_generator_func) ? NewGeneratorFunction : 5752 (opcodeID == op_new_async_func) ? NewAsyncFunction : NewFunction; 5751 NodeType op; 5752 switch (opcodeID) { 5753 case op_new_generator_func: 5754 op = NewGeneratorFunction; 5755 break; 5756 case op_new_async_func: 5757 op = NewAsyncFunction; 5758 break; 5759 case op_new_async_generator_func: 5760 op = NewAsyncGeneratorFunction; 5761 break; 5762 default: 5763 op = NewFunction; 5764 } 5753 5765 set(VirtualRegister(currentInstruction[1].u.operand), addToGraph(op, OpInfo(frozen), get(VirtualRegister(currentInstruction[2].u.operand)))); 5754 5766 static_assert(OPCODE_LENGTH(op_new_func) == OPCODE_LENGTH(op_new_generator_func), "The length of op_new_func should eqaual to one of op_new_generator_func"); 5755 5767 static_assert(OPCODE_LENGTH(op_new_func) == OPCODE_LENGTH(op_new_async_func), "The length of op_new_func should eqaual to one of op_new_async_func"); 5768 static_assert(OPCODE_LENGTH(op_new_func) == OPCODE_LENGTH(op_new_async_generator_func), "The length of op_new_func should eqaual to one of op_new_async_generator_func"); 5756 5769 NEXT_OPCODE(op_new_func); 5757 5770 } … … 5759 5772 case op_new_func_exp: 5760 5773 case op_new_generator_func_exp: 5774 case op_new_async_generator_func_exp: 5761 5775 case op_new_async_func_exp: { 5762 5776 FunctionExecutable* expr = m_inlineStackTop->m_profiledBlock->functionExpr(currentInstruction[3].u.operand); 5763 5777 FrozenValue* frozen = m_graph.freezeStrong(expr); 5764 NodeType op = (opcodeID == op_new_generator_func_exp) ? NewGeneratorFunction : 5765 (opcodeID == op_new_async_func_exp) ? NewAsyncFunction : NewFunction; 5778 NodeType op; 5779 switch (opcodeID) { 5780 case op_new_generator_func_exp: 5781 op = NewGeneratorFunction; 5782 break; 5783 case op_new_async_func_exp: 5784 op = NewAsyncFunction; 5785 break; 5786 case op_new_async_generator_func_exp: 5787 op = NewAsyncGeneratorFunction; 5788 break; 5789 default: 5790 op = NewFunction; 5791 } 5766 5792 set(VirtualRegister(currentInstruction[1].u.operand), addToGraph(op, OpInfo(frozen), get(VirtualRegister(currentInstruction[2].u.operand)))); 5767 5793 5768 5794 static_assert(OPCODE_LENGTH(op_new_func_exp) == OPCODE_LENGTH(op_new_generator_func_exp), "The length of op_new_func_exp should eqaual to one of op_new_generator_func_exp"); 5769 5795 static_assert(OPCODE_LENGTH(op_new_func_exp) == OPCODE_LENGTH(op_new_async_func_exp), "The length of op_new_func_exp should eqaual to one of op_new_async_func_exp"); 5796 static_assert(OPCODE_LENGTH(op_new_func_exp) == OPCODE_LENGTH(op_new_async_generator_func_exp), "The length of op_new_func_exp should eqaual to one of op_new_async_func_exp"); 5770 5797 NEXT_OPCODE(op_new_func_exp); 5771 5798 } -
trunk/Source/JavaScriptCore/dfg/DFGCapabilities.cpp
r220735 r221080 243 243 case op_new_generator_func: 244 244 case op_new_generator_func_exp: 245 case op_new_async_generator_func: 246 case op_new_async_generator_func_exp: 245 247 case op_new_async_func: 246 248 case op_new_async_func_exp: -
trunk/Source/JavaScriptCore/dfg/DFGClobberize.h
r220783 r221080 1422 1422 case PhantomNewGeneratorFunction: 1423 1423 case PhantomNewAsyncFunction: 1424 case PhantomNewAsyncGeneratorFunction: 1424 1425 case PhantomCreateActivation: 1425 1426 case MaterializeCreateActivation: … … 1430 1431 case NewFunction: 1431 1432 case NewGeneratorFunction: 1433 case NewAsyncGeneratorFunction: 1432 1434 case NewAsyncFunction: 1433 1435 if (node->castOperand<FunctionExecutable*>()->singletonFunction()->isStillValid()) -
trunk/Source/JavaScriptCore/dfg/DFGClobbersExitState.cpp
r209638 r221080 63 63 case PhantomNewFunction: 64 64 case PhantomNewGeneratorFunction: 65 case PhantomNewAsyncGeneratorFunction: 65 66 case PhantomNewAsyncFunction: 66 67 case PhantomCreateActivation: … … 82 83 case NewFunction: 83 84 case NewGeneratorFunction: 85 case NewAsyncGeneratorFunction: 84 86 case NewAsyncFunction: 85 87 // Like above, but with the JSFunction allocation caveat. -
trunk/Source/JavaScriptCore/dfg/DFGDoesGC.cpp
r220783 r221080 247 247 case PhantomNewGeneratorFunction: 248 248 case PhantomNewAsyncFunction: 249 case PhantomNewAsyncGeneratorFunction: 249 250 case PhantomCreateActivation: 250 251 case PhantomDirectArguments: … … 306 307 case NewFunction: 307 308 case NewGeneratorFunction: 309 case NewAsyncGeneratorFunction: 308 310 case NewAsyncFunction: 309 311 case NewTypedArray: -
trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp
r220890 r221080 1547 1547 case PhantomNewFunction: 1548 1548 case PhantomNewGeneratorFunction: 1549 case PhantomNewAsyncGeneratorFunction: 1549 1550 case PhantomNewAsyncFunction: 1550 1551 case PhantomCreateActivation: … … 1713 1714 case NewFunction: 1714 1715 case NewGeneratorFunction: 1716 case NewAsyncGeneratorFunction: 1715 1717 case NewAsyncFunction: { 1716 1718 // Child 1 is always the current scope, which is guaranteed to be an object -
trunk/Source/JavaScriptCore/dfg/DFGMayExit.cpp
r220735 r221080 110 110 case NewGeneratorFunction: 111 111 case NewAsyncFunction: 112 case NewAsyncGeneratorFunction: 112 113 case NewStringObject: 113 114 case ToNumber: -
trunk/Source/JavaScriptCore/dfg/DFGNode.h
r220735 r221080 594 594 void convertToPhantomNewFunction() 595 595 { 596 ASSERT(m_op == NewFunction || m_op == NewGeneratorFunction || m_op == NewAsyncFunction );596 ASSERT(m_op == NewFunction || m_op == NewGeneratorFunction || m_op == NewAsyncFunction || m_op == NewAsyncGeneratorFunction); 597 597 m_op = PhantomNewFunction; 598 598 m_flags |= NodeMustGenerate; … … 622 622 } 623 623 624 void convertToPhantomNewAsyncGeneratorFunction() 625 { 626 ASSERT(m_op == NewAsyncGeneratorFunction); 627 m_op = PhantomNewAsyncGeneratorFunction; 628 m_flags |= NodeMustGenerate; 629 m_opInfo = OpInfoWrapper(); 630 m_opInfo2 = OpInfoWrapper(); 631 children = AdjacencyList(); 632 } 633 624 634 void convertToPhantomCreateActivation() 625 635 { … … 1551 1561 case NewGeneratorFunction: 1552 1562 case NewAsyncFunction: 1563 case NewAsyncGeneratorFunction: 1553 1564 case CreateActivation: 1554 1565 case MaterializeCreateActivation: … … 1786 1797 case NewFunction: 1787 1798 case NewGeneratorFunction: 1799 case NewAsyncGeneratorFunction: 1788 1800 case NewAsyncFunction: 1789 1801 return true; … … 1799 1811 case PhantomNewGeneratorFunction: 1800 1812 case PhantomNewAsyncFunction: 1813 case PhantomNewAsyncGeneratorFunction: 1801 1814 return true; 1802 1815 default: … … 1817 1830 case PhantomNewGeneratorFunction: 1818 1831 case PhantomNewAsyncFunction: 1832 case PhantomNewAsyncGeneratorFunction: 1819 1833 case PhantomCreateActivation: 1820 1834 return true; -
trunk/Source/JavaScriptCore/dfg/DFGNodeType.h
r220735 r221080 328 328 macro(PhantomNewGeneratorFunction, NodeResultJS | NodeMustGenerate) \ 329 329 macro(PhantomNewAsyncFunction, NodeResultJS | NodeMustGenerate) \ 330 macro(PhantomNewAsyncGeneratorFunction, NodeResultJS | NodeMustGenerate) \ 330 331 macro(PhantomCreateActivation, NodeResultJS | NodeMustGenerate) \ 331 332 macro(MaterializeCreateActivation, NodeResultJS | NodeHasVarArgs) \ … … 380 381 macro(NewGeneratorFunction, NodeResultJS) \ 381 382 \ 383 macro(NewAsyncGeneratorFunction, NodeResultJS) \ 384 \ 382 385 macro(NewAsyncFunction, NodeResultJS) \ 383 386 \ -
trunk/Source/JavaScriptCore/dfg/DFGObjectAllocationSinkingPhase.cpp
r219562 r221080 140 140 // replace any use of those pointers by the corresponding 141 141 // materialization 142 enum class Kind { Escaped, Object, Activation, Function, GeneratorFunction, AsyncFunction };142 enum class Kind { Escaped, Object, Activation, Function, GeneratorFunction, AsyncFunction, AsyncGeneratorFunction }; 143 143 144 144 explicit Allocation(Node* identifier = nullptr, Kind kind = Kind::Escaped) … … 279 279 break; 280 280 281 case Kind::AsyncGeneratorFunction: 282 out.print("AsyncGeneratorFunction"); 283 break; 281 284 case Kind::Activation: 282 285 out.print("Activation"); … … 839 842 case NewFunction: 840 843 case NewGeneratorFunction: 844 case NewAsyncGeneratorFunction: 841 845 case NewAsyncFunction: { 842 846 if (isStillValid(node->castOperand<FunctionExecutable*>()->singletonFunction())) { … … 849 853 else if (node->op() == NewAsyncFunction) 850 854 target = &m_heap.newAllocation(node, Allocation::Kind::AsyncFunction); 855 else if (node->op() == NewAsyncGeneratorFunction) 856 target = &m_heap.newAllocation(node, Allocation::Kind::AsyncGeneratorFunction); 851 857 else 852 858 target = &m_heap.newAllocation(node, Allocation::Kind::Function); … … 1479 1485 } 1480 1486 1487 case Allocation::Kind::AsyncGeneratorFunction: 1481 1488 case Allocation::Kind::AsyncFunction: 1482 1489 case Allocation::Kind::GeneratorFunction: … … 1484 1491 FrozenValue* executable = allocation.identifier()->cellOperand(); 1485 1492 1486 NodeType nodeType = 1487 allocation.kind() == Allocation::Kind::GeneratorFunction ? NewGeneratorFunction : 1488 allocation.kind() == Allocation::Kind::AsyncFunction ? NewAsyncFunction : NewFunction; 1489 1493 NodeType nodeType; 1494 switch (allocation.kind()) { 1495 case Allocation::Kind::GeneratorFunction: 1496 nodeType = NewGeneratorFunction; 1497 break; 1498 case Allocation::Kind::AsyncGeneratorFunction: 1499 nodeType = NewAsyncGeneratorFunction; 1500 break; 1501 case Allocation::Kind::AsyncFunction: 1502 nodeType = NewAsyncFunction; 1503 break; 1504 default: 1505 nodeType = NewFunction; 1506 } 1507 1490 1508 return m_graph.addNode( 1491 1509 allocation.identifier()->prediction(), nodeType, … … 1863 1881 node->convertToPhantomNewGeneratorFunction(); 1864 1882 break; 1865 1883 case NewAsyncGeneratorFunction: 1884 node->convertToPhantomNewAsyncGeneratorFunction(); 1885 break; 1866 1886 case NewAsyncFunction: 1867 1887 node->convertToPhantomNewAsyncFunction(); … … 2125 2145 case NewFunction: 2126 2146 case NewGeneratorFunction: 2147 case NewAsyncGeneratorFunction: 2127 2148 case NewAsyncFunction: { 2128 2149 Vector<PromotedHeapLocation> locations = m_locationsForAllocation.get(escapee); -
trunk/Source/JavaScriptCore/dfg/DFGPredictionPropagationPhase.cpp
r220735 r221080 743 743 case NewFunction: 744 744 case NewGeneratorFunction: 745 case NewAsyncGeneratorFunction: 745 746 case NewAsyncFunction: { 746 747 setPrediction(SpecFunction); … … 1050 1051 case PhantomNewFunction: 1051 1052 case PhantomNewGeneratorFunction: 1053 case PhantomNewAsyncGeneratorFunction: 1052 1054 case PhantomNewAsyncFunction: 1053 1055 case PhantomCreateActivation: -
trunk/Source/JavaScriptCore/dfg/DFGSafeToExecute.h
r220735 r221080 306 306 case NewFunction: 307 307 case NewGeneratorFunction: 308 case NewAsyncGeneratorFunction: 308 309 case NewAsyncFunction: 309 310 case Jump: … … 355 356 case PhantomNewFunction: 356 357 case PhantomNewGeneratorFunction: 358 case PhantomNewAsyncGeneratorFunction: 357 359 case PhantomNewAsyncFunction: 358 360 case PhantomCreateActivation: -
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
r220890 r221080 51 51 #include "JITSubGenerator.h" 52 52 #include "JSAsyncFunction.h" 53 #include "JSAsyncGeneratorFunction.h" 53 54 #include "JSCInlines.h" 54 55 #include "JSEnvironmentRecord.h" … … 6529 6530 { 6530 6531 NodeType nodeType = node->op(); 6531 ASSERT(nodeType == NewFunction || nodeType == NewGeneratorFunction || nodeType == NewAsyncFunction );6532 ASSERT(nodeType == NewFunction || nodeType == NewGeneratorFunction || nodeType == NewAsyncFunction || nodeType == NewAsyncGeneratorFunction); 6532 6533 6533 6534 SpeculateCellOperand scope(this, node->child1()); … … 6546 6547 else if (nodeType == NewAsyncFunction) 6547 6548 callOperation(operationNewAsyncFunction, resultGPR, scopeGPR, executable); 6549 else if (nodeType == NewAsyncGeneratorFunction) 6550 callOperation(operationNewAsyncGeneratorFunction, resultGPR, scopeGPR, executable); 6548 6551 else 6549 6552 callOperation(operationNewFunction, resultGPR, scopeGPR, executable); … … 6556 6559 nodeType == NewGeneratorFunction ? m_jit.graph().globalObjectFor(node->origin.semantic)->generatorFunctionStructure() : 6557 6560 nodeType == NewAsyncFunction ? m_jit.graph().globalObjectFor(node->origin.semantic)->asyncFunctionStructure() : 6561 nodeType == NewAsyncGeneratorFunction ? m_jit.graph().globalObjectFor(node->origin.semantic)->asyncGeneratorFunctionStructure() : 6558 6562 m_jit.graph().globalObjectFor(node->origin.semantic)->functionStructure()); 6559 6563 … … 6586 6590 } 6587 6591 6592 if (nodeType == NewAsyncGeneratorFunction) { 6593 compileNewFunctionCommon<JSAsyncGeneratorFunction>(resultGPR, structure, scratch1GPR, scratch2GPR, scopeGPR, slowPath, JSAsyncGeneratorFunction::allocationSize(0), executable, JSAsyncGeneratorFunction::offsetOfScopeChain(), JSAsyncGeneratorFunction::offsetOfExecutable(), JSAsyncGeneratorFunction::offsetOfRareData()); 6594 6595 addSlowPathGenerator(slowPathCall(slowPath, this, operationNewAsyncGeneratorFunctionWithInvalidatedReallocationWatchpoint, resultGPR, scopeGPR, executable)); 6596 } 6597 6588 6598 cellResult(resultGPR, node); 6589 6599 } -
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT32_64.cpp
r220735 r221080 5067 5067 case NewGeneratorFunction: 5068 5068 case NewAsyncFunction: 5069 case NewAsyncGeneratorFunction: 5069 5070 compileNewFunction(node); 5070 5071 break; … … 5658 5659 case PhantomNewGeneratorFunction: 5659 5660 case PhantomNewAsyncFunction: 5661 case PhantomNewAsyncGeneratorFunction: 5660 5662 case PhantomCreateActivation: 5661 5663 case PutHint: -
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp
r220735 r221080 5468 5468 case NewFunction: 5469 5469 case NewGeneratorFunction: 5470 case NewAsyncGeneratorFunction: 5470 5471 case NewAsyncFunction: 5471 5472 compileNewFunction(node); … … 6109 6110 case PhantomNewGeneratorFunction: 6110 6111 case PhantomNewAsyncFunction: 6112 case PhantomNewAsyncGeneratorFunction: 6111 6113 case PhantomCreateActivation: 6112 6114 case GetMyArgumentByVal: -
trunk/Source/JavaScriptCore/dfg/DFGStoreBarrierInsertionPhase.cpp
r209638 r221080 327 327 case NewFunction: 328 328 case NewGeneratorFunction: 329 case NewAsyncGeneratorFunction: 329 330 case NewAsyncFunction: 330 331 case AllocatePropertyStorage: -
trunk/Source/JavaScriptCore/dfg/DFGValidate.cpp
r220735 r221080 537 537 case PhantomNewGeneratorFunction: 538 538 case PhantomNewAsyncFunction: 539 case PhantomNewAsyncGeneratorFunction: 539 540 case PhantomCreateActivation: 540 541 case GetMyArgumentByVal: … … 680 681 case PhantomNewGeneratorFunction: 681 682 case PhantomNewAsyncFunction: 683 case PhantomNewAsyncGeneratorFunction: 682 684 case PhantomCreateActivation: 683 685 case PhantomDirectArguments: -
trunk/Source/JavaScriptCore/ftl/FTLCapabilities.cpp
r220778 r221080 120 120 case NewGeneratorFunction: 121 121 case NewAsyncFunction: 122 case NewAsyncGeneratorFunction: 122 123 case GetClosureVar: 123 124 case PutClosureVar: … … 228 229 case PhantomNewFunction: 229 230 case PhantomNewGeneratorFunction: 231 case PhantomNewAsyncGeneratorFunction: 230 232 case PhantomNewAsyncFunction: 231 233 case PhantomCreateActivation: -
trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
r220890 r221080 745 745 case NewFunction: 746 746 case NewGeneratorFunction: 747 case NewAsyncGeneratorFunction: 747 748 case NewAsyncFunction: 748 749 compileNewFunction(); … … 1130 1131 case PhantomNewFunction: 1131 1132 case PhantomNewGeneratorFunction: 1133 case PhantomNewAsyncGeneratorFunction: 1132 1134 case PhantomNewAsyncFunction: 1133 1135 case PhantomCreateActivation: … … 4343 4345 void compileNewFunction() 4344 4346 { 4345 ASSERT(m_node->op() == NewFunction || m_node->op() == NewGeneratorFunction || m_node->op() == NewAsync Function);4347 ASSERT(m_node->op() == NewFunction || m_node->op() == NewGeneratorFunction || m_node->op() == NewAsyncGeneratorFunction || m_node->op() == NewAsyncFunction); 4346 4348 bool isGeneratorFunction = m_node->op() == NewGeneratorFunction; 4347 4349 bool isAsyncFunction = m_node->op() == NewAsyncFunction; 4350 bool isAsynGeneratorFunction = m_node->op() == NewAsyncGeneratorFunction; 4348 4351 4349 4352 LValue scope = lowCell(m_node->child1()); … … 4354 4357 isGeneratorFunction ? vmCall(Int64, m_out.operation(operationNewGeneratorFunction), m_callFrame, scope, weakPointer(executable)) : 4355 4358 isAsyncFunction ? vmCall(Int64, m_out.operation(operationNewAsyncFunction), m_callFrame, scope, weakPointer(executable)) : 4359 isAsynGeneratorFunction ? vmCall(Int64, m_out.operation(operationNewAsyncGeneratorFunction), m_callFrame, scope, weakPointer(executable)) : 4356 4360 vmCall(Int64, m_out.operation(operationNewFunction), m_callFrame, scope, weakPointer(executable)); 4357 4361 setJSValue(callResult); … … 4362 4366 isGeneratorFunction ? m_graph.globalObjectFor(m_node->origin.semantic)->generatorFunctionStructure() : 4363 4367 isAsyncFunction ? m_graph.globalObjectFor(m_node->origin.semantic)->asyncFunctionStructure() : 4368 isAsynGeneratorFunction ? m_graph.globalObjectFor(m_node->origin.semantic)->asyncGeneratorFunctionStructure() : 4364 4369 m_graph.globalObjectFor(m_node->origin.semantic)->functionStructure()); 4365 4370 -
trunk/Source/JavaScriptCore/ftl/FTLOperations.cpp
r215919 r221080 35 35 #include "InlineCallFrame.h" 36 36 #include "JSAsyncFunction.h" 37 #include "JSAsyncGeneratorFunction.h" 37 38 #include "JSCInlines.h" 38 39 #include "JSFixedArray.h" … … 85 86 case PhantomNewGeneratorFunction: 86 87 case PhantomNewAsyncFunction: 88 case PhantomNewAsyncGeneratorFunction: 87 89 case PhantomDirectArguments: 88 90 case PhantomClonedArguments: … … 159 161 case PhantomNewFunction: 160 162 case PhantomNewGeneratorFunction: 163 case PhantomNewAsyncGeneratorFunction: 161 164 case PhantomNewAsyncFunction: { 162 165 // Figure out what the executable and activation are … … 180 183 else if (materialization->type() == PhantomNewGeneratorFunction) 181 184 return JSGeneratorFunction::createWithInvalidatedReallocationWatchpoint(vm, executable, activation); 185 else if (materialization->type() == PhantomNewAsyncGeneratorFunction) 186 return JSAsyncGeneratorFunction::createWithInvalidatedReallocationWatchpoint(vm, executable, activation); 182 187 ASSERT(materialization->type() == PhantomNewAsyncFunction); 183 188 return JSAsyncFunction::createWithInvalidatedReallocationWatchpoint(vm, executable, activation); -
trunk/Source/JavaScriptCore/jit/JIT.cpp
r220735 r221080 353 353 DEFINE_OP(op_new_async_func) 354 354 DEFINE_OP(op_new_async_func_exp) 355 DEFINE_OP(op_new_async_generator_func) 356 DEFINE_OP(op_new_async_generator_func_exp) 355 357 DEFINE_OP(op_new_object) 356 358 DEFINE_OP(op_new_regexp) -
trunk/Source/JavaScriptCore/jit/JIT.h
r221018 r221080 552 552 void emit_op_new_async_func(Instruction*); 553 553 void emit_op_new_async_func_exp(Instruction*); 554 void emit_op_new_async_generator_func(Instruction*); 555 void emit_op_new_async_generator_func_exp(Instruction*); 554 556 void emit_op_new_object(Instruction*); 555 557 void emit_op_new_regexp(Instruction*); -
trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
r220770 r221080 992 992 else if (opcodeID == op_new_generator_func) 993 993 callOperation(operationNewGeneratorFunction, dst, regT0, funcExec); 994 else if (opcodeID == op_new_async_func) 995 callOperation(operationNewAsyncFunction, dst, regT0, funcExec); 994 996 else { 995 ASSERT(opcodeID == op_new_async_ func);996 callOperation(operationNewAsync Function, dst, regT0, funcExec);997 ASSERT(opcodeID == op_new_async_generator_func); 998 callOperation(operationNewAsyncGeneratorFunction, dst, regT0, funcExec); 997 999 } 998 1000 } … … 1008 1010 } 1009 1011 1012 void JIT::emit_op_new_async_generator_func(Instruction* currentInstruction) 1013 { 1014 emitNewFuncCommon(currentInstruction); 1015 } 1016 1010 1017 void JIT::emit_op_new_async_func(Instruction* currentInstruction) 1011 1018 { 1012 1019 emitNewFuncCommon(currentInstruction); 1013 1020 } 1014 1021 1015 1022 void JIT::emitNewFuncExprCommon(Instruction* currentInstruction) 1016 1023 { … … 1036 1043 else if (opcodeID == op_new_generator_func_exp) 1037 1044 callOperation(operationNewGeneratorFunction, dst, regT0, function); 1045 else if (opcodeID == op_new_async_func_exp) 1046 callOperation(operationNewAsyncFunction, dst, regT0, function); 1038 1047 else { 1039 ASSERT(opcodeID == op_new_async_ func_exp);1040 callOperation(operationNewAsync Function, dst, regT0, function);1048 ASSERT(opcodeID == op_new_async_generator_func_exp); 1049 callOperation(operationNewAsyncGeneratorFunction, dst, regT0, function); 1041 1050 } 1042 1051 … … 1058 1067 emitNewFuncExprCommon(currentInstruction); 1059 1068 } 1060 1069 1070 void JIT::emit_op_new_async_generator_func_exp(Instruction* currentInstruction) 1071 { 1072 emitNewFuncExprCommon(currentInstruction); 1073 } 1074 1061 1075 void JIT::emit_op_new_array(Instruction* currentInstruction) 1062 1076 { -
trunk/Source/JavaScriptCore/jit/JITOperations.cpp
r220890 r221080 53 53 #include "JITToDFGDeferredCompilationCallback.h" 54 54 #include "JSAsyncFunction.h" 55 #include "JSAsyncGeneratorFunction.h" 55 56 #include "JSCInlines.h" 56 57 #include "JSGeneratorFunction.h" … … 1213 1214 } 1214 1215 1216 EncodedJSValue JIT_OPERATION operationNewAsyncGeneratorFunction(ExecState* exec, JSScope* scope, JSCell* functionExecutable) 1217 { 1218 return operationNewFunctionCommon<JSAsyncGeneratorFunction>(exec, scope, functionExecutable, false); 1219 } 1220 1221 EncodedJSValue JIT_OPERATION operationNewAsyncGeneratorFunctionWithInvalidatedReallocationWatchpoint(ExecState* exec, JSScope* scope, JSCell* functionExecutable) 1222 { 1223 return operationNewFunctionCommon<JSAsyncGeneratorFunction>(exec, scope, functionExecutable, true); 1224 } 1225 1215 1226 void JIT_OPERATION operationSetFunctionName(ExecState* exec, JSCell* funcCell, EncodedJSValue encodedName) 1216 1227 { -
trunk/Source/JavaScriptCore/jit/JITOperations.h
r220890 r221080 391 391 EncodedJSValue JIT_OPERATION operationNewAsyncFunction(ExecState*, JSScope*, JSCell*) WTF_INTERNAL; 392 392 EncodedJSValue JIT_OPERATION operationNewAsyncFunctionWithInvalidatedReallocationWatchpoint(ExecState*, JSScope*, JSCell*) WTF_INTERNAL; 393 EncodedJSValue JIT_OPERATION operationNewAsyncGeneratorFunction(ExecState*, JSScope*, JSCell*) WTF_INTERNAL; 394 EncodedJSValue JIT_OPERATION operationNewAsyncGeneratorFunctionWithInvalidatedReallocationWatchpoint(ExecState*, JSScope*, JSCell*) WTF_INTERNAL; 393 395 void JIT_OPERATION operationSetFunctionName(ExecState*, JSCell*, EncodedJSValue) WTF_INTERNAL; 394 396 JSCell* JIT_OPERATION operationNewObject(ExecState*, Structure*) WTF_INTERNAL; -
trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
r218883 r221080 47 47 #include "JITWorklist.h" 48 48 #include "JSAsyncFunction.h" 49 #include "JSAsyncGeneratorFunction.h" 49 50 #include "JSCInlines.h" 50 51 #include "JSCJSValue.h" … … 1176 1177 } 1177 1178 1179 LLINT_SLOW_PATH_DECL(slow_path_new_async_generator_func) 1180 { 1181 LLINT_BEGIN(); 1182 CodeBlock* codeBlock = exec->codeBlock(); 1183 JSScope* scope = exec->uncheckedR(pc[2].u.operand).Register::scope(); 1184 #if LLINT_SLOW_PATH_TRACING 1185 dataLogF("Creating async generator function!\n"); 1186 #endif 1187 LLINT_RETURN(JSAsyncGeneratorFunction::create(vm, codeBlock->functionDecl(pc[3].u.operand), scope)); 1188 } 1189 1178 1190 LLINT_SLOW_PATH_DECL(slow_path_new_func_exp) 1179 1191 { … … 1207 1219 1208 1220 LLINT_RETURN(JSAsyncFunction::create(vm, executable, scope)); 1221 } 1222 1223 LLINT_SLOW_PATH_DECL(slow_path_new_async_generator_func_exp) 1224 { 1225 LLINT_BEGIN(); 1226 1227 CodeBlock* codeBlock = exec->codeBlock(); 1228 JSScope* scope = exec->uncheckedR(pc[2].u.operand).Register::scope(); 1229 FunctionExecutable* executable = codeBlock->functionExpr(pc[3].u.operand); 1230 1231 LLINT_RETURN(JSAsyncGeneratorFunction::create(vm, executable, scope)); 1209 1232 } 1210 1233 -
trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.h
r213107 r221080 104 104 LLINT_SLOW_PATH_HIDDEN_DECL(slow_path_new_generator_func); 105 105 LLINT_SLOW_PATH_HIDDEN_DECL(slow_path_new_generator_func_exp); 106 LLINT_SLOW_PATH_HIDDEN_DECL(slow_path_new_async_generator_func); 107 LLINT_SLOW_PATH_HIDDEN_DECL(slow_path_new_async_generator_func_exp); 106 108 LLINT_SLOW_PATH_HIDDEN_DECL(slow_path_new_async_func); 107 109 LLINT_SLOW_PATH_HIDDEN_DECL(slow_path_new_async_func_exp); -
trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm
r220753 r221080 1323 1323 dispatch(constexpr op_new_generator_func_length) 1324 1324 1325 _llint_op_new_async_generator_func: 1326 traceExecution() 1327 callSlowPath(_llint_slow_path_new_async_generator_func) 1328 dispatch(constexpr op_new_async_generator_func_length) 1329 1330 _llint_op_new_async_generator_func_exp: 1331 traceExecution() 1332 callSlowPath(_llint_slow_path_new_async_generator_func_exp) 1333 dispatch(constexpr op_new_async_generator_func_exp_length) 1325 1334 1326 1335 _llint_op_new_async_func: -
trunk/Source/JavaScriptCore/parser/ASTBuilder.h
r220323 r221080 438 438 SourceParseMode mode, bool isArrowFunctionBodyExpression) 439 439 { 440 SourceParseMode bodySourceParseMode = mode; 441 if (mode == SourceParseMode::AsyncGeneratorBodyMode) { 442 ASSERT(Options::useAsyncIterator()); 443 bodySourceParseMode = SourceParseMode::AsyncFunctionBodyMode; 444 } else if (mode == SourceParseMode::AsyncGeneratorWrapperFunctionMode) { 445 ASSERT(Options::useAsyncIterator()); 446 bodySourceParseMode = SourceParseMode::ArrowFunctionMode; 447 } else if (mode == SourceParseMode::AsyncGeneratorWrapperMethodMode) { 448 ASSERT(Options::useAsyncIterator()); 449 bodySourceParseMode = SourceParseMode::AsyncMethodMode; 450 } 440 ASSERT(Options::useAsyncIterator() || (mode != SourceParseMode::AsyncGeneratorBodyMode && mode != SourceParseMode::AsyncGeneratorWrapperFunctionMode && mode != SourceParseMode::AsyncGeneratorWrapperMethodMode)); 451 441 452 442 return new (m_parserArena) FunctionMetadataNode( … … 454 444 functionKeywordStart, functionNameStart, parametersStart, 455 445 inStrictContext, constructorKind, superBinding, 456 parameterCount, bodySourceParseMode, isArrowFunctionBodyExpression);446 parameterCount, mode, isArrowFunctionBodyExpression); 457 447 } 458 448 -
trunk/Source/JavaScriptCore/runtime/CommonIdentifiers.h
r220955 r221080 406 406 macro(hasInstance) \ 407 407 macro(isConcatSpreadable) \ 408 macro(asyncIterator) \ 408 409 macro(iterator) \ 409 410 macro(match) \ -
trunk/Source/JavaScriptCore/runtime/FunctionConstructor.cpp
r219115 r221080 26 26 #include "FunctionPrototype.h" 27 27 #include "JSAsyncFunction.h" 28 #include "JSAsyncGeneratorFunction.h" 28 29 #include "JSFunction.h" 29 30 #include "JSGeneratorFunction.h" … … 109 110 structure = globalObject->asyncFunctionStructure(); 110 111 prefix = "async function "; 112 break; 113 case FunctionConstructionMode::AsyncGenerator: 114 structure = globalObject->asyncGeneratorFunctionStructure(); 115 prefix = "{async function*"; 111 116 break; 112 117 } … … 195 200 case FunctionConstructionMode::Async: 196 201 return JSAsyncFunction::create(vm, function, globalObject->globalScope(), subclassStructure); 202 case FunctionConstructionMode::AsyncGenerator: 203 return JSAsyncGeneratorFunction::create(vm, function, globalObject->globalScope(), subclassStructure); 197 204 } 198 205 -
trunk/Source/JavaScriptCore/runtime/FunctionConstructor.h
r210149 r221080 60 60 Generator, 61 61 Async, 62 AsyncGenerator, 62 63 }; 63 64 -
trunk/Source/JavaScriptCore/runtime/FunctionExecutable.h
r218794 r221080 126 126 bool isSetter() const { return parseMode() == SourceParseMode::SetterMode; } 127 127 bool isGenerator() const { return isGeneratorParseMode(parseMode()); } 128 bool isAsyncGenerator() const { return SourceParseModeSet(SourceParseMode::AsyncGeneratorWrapperFunctionMode, SourceParseMode::AsyncGeneratorBodyMode).contains(parseMode()); } 128 129 bool isMethod() const { return parseMode() == SourceParseMode::MethodMode; } 129 130 bool hasCallerAndArgumentsProperties() const … … 139 140 SourceParseMode::GeneratorBodyMode, 140 141 SourceParseMode::GeneratorWrapperFunctionMode, 141 SourceParseMode::GeneratorWrapperMethodMode 142 SourceParseMode::GeneratorWrapperMethodMode, 143 SourceParseMode::AsyncGeneratorWrapperFunctionMode, 144 SourceParseMode::AsyncGeneratorBodyMode 142 145 ).contains(parseMode()) || isClass(); 143 146 } -
trunk/Source/JavaScriptCore/runtime/JSFunction.cpp
r220324 r221080 27 27 #include "JSFunction.h" 28 28 29 #include "AsyncGeneratorPrototype.h" 29 30 #include "BuiltinNames.h" 30 31 #include "ClonedArguments.h" … … 363 364 // https://tc39.github.io/ecma262/#sec-generatorfunction-instances-prototype 364 365 prototype = constructEmptyObject(exec, thisObject->globalObject(vm)->generatorPrototype()); 365 } else { 366 } else if (thisObject->jsExecutable()->parseMode() == SourceParseMode::AsyncGeneratorWrapperFunctionMode) 367 prototype = constructEmptyObject(exec, thisObject->globalObject(vm)->asyncGeneratorPrototype()); 368 else { 366 369 prototype = constructEmptyObject(exec); 367 370 prototype->putDirect(vm, vm.propertyNames->constructor, thisObject, DontEnum); -
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r219301 r221080 34 34 #include "ArrayIteratorPrototype.h" 35 35 #include "ArrayPrototype.h" 36 #include "AsyncFromSyncIteratorPrototype.h" 36 37 #include "AtomicsObject.h" 37 38 #include "AsyncFunctionConstructor.h" 38 39 #include "AsyncFunctionPrototype.h" 40 #include "AsyncGeneratorFunctionConstructor.h" 41 #include "AsyncGeneratorFunctionPrototype.h" 42 #include "AsyncGeneratorPrototype.h" 43 #include "AsyncIteratorPrototype.h" 39 44 #include "BooleanConstructor.h" 40 45 #include "BooleanPrototype.h" … … 71 76 #include "JSArrayBufferPrototype.h" 72 77 #include "JSAsyncFunction.h" 78 #include "JSAsyncGeneratorFunction.h" 73 79 #include "JSBoundFunction.h" 74 80 #include "JSCInlines.h" … … 579 585 580 586 m_iteratorPrototype.set(vm, this, IteratorPrototype::create(vm, this, IteratorPrototype::createStructure(vm, this, m_objectPrototype.get()))); 587 m_asyncIteratorPrototype.set(vm, this, AsyncIteratorPrototype::create(vm, this, AsyncIteratorPrototype::createStructure(vm, this, m_objectPrototype.get()))); 588 581 589 m_generatorPrototype.set(vm, this, GeneratorPrototype::create(vm, this, GeneratorPrototype::createStructure(vm, this, m_iteratorPrototype.get()))); 590 m_asyncGeneratorPrototype.set(vm, this, AsyncGeneratorPrototype::create(vm, this, AsyncGeneratorPrototype::createStructure(vm, this, m_asyncIteratorPrototype.get()))); 582 591 583 592 #define CREATE_PROTOTYPE_FOR_SIMPLE_TYPE(capitalName, lowerName, properName, instanceType, jsName, prototypeBase) \ … … 671 680 m_asyncFunctionStructure.set(vm, this, JSAsyncFunction::createStructure(vm, this, m_asyncFunctionPrototype.get())); 672 681 682 m_asyncGeneratorFunctionPrototype.set(vm, this, AsyncGeneratorFunctionPrototype::create(vm, AsyncGeneratorFunctionPrototype::createStructure(vm, this, m_functionPrototype.get()))); 683 AsyncGeneratorFunctionConstructor* asyncGeneratorFunctionConstructor = AsyncGeneratorFunctionConstructor::create(vm, AsyncGeneratorFunctionConstructor::createStructure(vm, this, functionConstructor), m_asyncGeneratorFunctionPrototype.get()); 684 m_asyncGeneratorFunctionPrototype->putDirectWithoutTransition(vm, vm.propertyNames->constructor, asyncGeneratorFunctionConstructor, DontEnum | ReadOnly); 685 m_asyncGeneratorFunctionStructure.set(vm, this, JSAsyncGeneratorFunction::createStructure(vm, this, m_asyncGeneratorFunctionPrototype.get())); 686 687 m_asyncGeneratorPrototype->putDirectWithoutTransition(vm, vm.propertyNames->constructor, m_asyncGeneratorFunctionPrototype.get(), DontEnum | ReadOnly); 688 m_asyncGeneratorFunctionPrototype->putDirectWithoutTransition(vm, vm.propertyNames->prototype, m_asyncGeneratorPrototype.get(), DontEnum | ReadOnly); 689 690 673 691 m_objectPrototype->putDirectWithoutTransition(vm, vm.propertyNames->constructor, objectConstructor, DontEnum); 674 692 m_functionPrototype->putDirectWithoutTransition(vm, vm.propertyNames->constructor, functionConstructor, DontEnum); … … 763 781 JSObject* arrayIteratorPrototype = ArrayIteratorPrototype::create(vm, this, ArrayIteratorPrototype::createStructure(vm, this, m_iteratorPrototype.get())); 764 782 createArrayIteratorPrivateFunction->putDirect(vm, vm.propertyNames->prototype, arrayIteratorPrototype); 783 784 JSObject* asyncFromSyncIteratorPrototype = AsyncFromSyncIteratorPrototype::create(vm, this, AsyncFromSyncIteratorPrototype::createStructure(vm, this, m_iteratorPrototype.get())); 785 AsyncFromSyncIteratorConstructorPrivateFunction->putDirect(vm, vm.propertyNames->prototype, asyncFromSyncIteratorPrototype); 765 786 766 787 GlobalPropertyInfo staticGlobals[] = { … … 1242 1263 visitor.append(thisObject->m_generatorPrototype); 1243 1264 visitor.append(thisObject->m_asyncFunctionPrototype); 1265 visitor.append(thisObject->m_asyncGeneratorPrototype); 1266 visitor.append(thisObject->m_asyncIteratorPrototype); 1267 visitor.append(thisObject->m_asyncGeneratorFunctionPrototype); 1244 1268 visitor.append(thisObject->m_moduleLoaderPrototype); 1245 1269 … … 1277 1301 visitor.append(thisObject->m_generatorFunctionStructure); 1278 1302 visitor.append(thisObject->m_asyncFunctionStructure); 1303 visitor.append(thisObject->m_asyncGeneratorFunctionStructure); 1279 1304 visitor.append(thisObject->m_iteratorResultObjectStructure); 1280 1305 visitor.append(thisObject->m_regExpMatchesArrayStructure); -
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
r219301 r221080 58 58 class ArrayConstructor; 59 59 class ArrayPrototype; 60 class AsyncIteratorPrototype; 60 61 class AsyncFunctionPrototype; 62 class AsyncGeneratorPrototype; 63 class AsyncGeneratorFunctionPrototype; 61 64 class BooleanPrototype; 62 65 class ConsoleClient; … … 285 288 WriteBarrier<RegExpPrototype> m_regExpPrototype; 286 289 WriteBarrier<IteratorPrototype> m_iteratorPrototype; 290 WriteBarrier<AsyncIteratorPrototype> m_asyncIteratorPrototype; 287 291 WriteBarrier<GeneratorFunctionPrototype> m_generatorFunctionPrototype; 288 292 WriteBarrier<GeneratorPrototype> m_generatorPrototype; 293 WriteBarrier<AsyncGeneratorPrototype> m_asyncGeneratorPrototype; 289 294 WriteBarrier<ModuleLoaderPrototype> m_moduleLoaderPrototype; 290 295 … … 326 331 WriteBarrier<Structure> m_regExpStructure; 327 332 WriteBarrier<AsyncFunctionPrototype> m_asyncFunctionPrototype; 333 WriteBarrier<AsyncGeneratorFunctionPrototype> m_asyncGeneratorFunctionPrototype; 328 334 WriteBarrier<Structure> m_asyncFunctionStructure; 335 WriteBarrier<Structure> m_asyncGeneratorFunctionStructure; 329 336 WriteBarrier<Structure> m_generatorFunctionStructure; 330 337 WriteBarrier<Structure> m_dollarVMStructure; … … 562 569 ErrorPrototype* errorPrototype() const { return m_errorPrototype.get(); } 563 570 IteratorPrototype* iteratorPrototype() const { return m_iteratorPrototype.get(); } 571 AsyncIteratorPrototype* asyncIteratorPrototype() const { return m_asyncIteratorPrototype.get(); } 564 572 GeneratorFunctionPrototype* generatorFunctionPrototype() const { return m_generatorFunctionPrototype.get(); } 565 573 GeneratorPrototype* generatorPrototype() const { return m_generatorPrototype.get(); } … … 568 576 // Workaround for the name conflict between JSCell::setPrototype. 569 577 SetPrototype* jsSetPrototype() const { return m_setPrototype.get(); } 578 AsyncGeneratorPrototype* asyncGeneratorPrototype() const { return m_asyncGeneratorPrototype.get(); } 579 AsyncGeneratorFunctionPrototype* asyncGeneratorFunctionPrototype() const { return m_asyncGeneratorFunctionPrototype.get(); } 570 580 571 581 Structure* debuggerScopeStructure() const { return m_debuggerScopeStructure.get(this); } … … 628 638 Structure* generatorFunctionStructure() const { return m_generatorFunctionStructure.get(); } 629 639 Structure* asyncFunctionStructure() const { return m_asyncFunctionStructure.get(); } 640 Structure* asyncGeneratorFunctionStructure() const { return m_asyncGeneratorFunctionStructure.get(); } 630 641 Structure* stringObjectStructure() const { return m_stringObjectStructure.get(); } 631 642 Structure* symbolObjectStructure() const { return m_symbolObjectStructure.get(); } -
trunk/Source/JavaScriptCore/runtime/Options.h
r220449 r221080 449 449 v(bool, useWebAssembly, true, Normal, "Expose the WebAssembly global object.") \ 450 450 \ 451 v(bool, useAsyncIterator, false, Normal, "Allow to use Async Iterator in JS.") \451 v(bool, useAsyncIterator, true, Normal, "Allow to use Async Iterator in JS.") \ 452 452 \ 453 453 v(bool, failToCompileWebAssemblyCode, false, Normal, "If true, no Wasm::Plan will sucessfully compile a function.") \
Note:
See TracChangeset
for help on using the changeset viewer.