-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGeneratorObject.cpp
409 lines (344 loc) · 13.5 KB
/
GeneratorObject.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "vm/GeneratorObject.h"
#include "js/PropertySpec.h"
#include "vm/AsyncFunction.h"
#include "vm/AsyncIteration.h"
#include "vm/FunctionFlags.h" // js::FunctionFlags
#include "vm/GlobalObject.h"
#include "vm/JSObject.h"
#include "vm/PlainObject.h" // js::PlainObject
#include "debugger/DebugAPI-inl.h"
#include "vm/ArrayObject-inl.h"
#include "vm/JSAtom-inl.h"
#include "vm/JSScript-inl.h"
#include "vm/NativeObject-inl.h"
#include "vm/Stack-inl.h"
using namespace js;
JSObject* AbstractGeneratorObject::create(JSContext* cx,
AbstractFramePtr frame) {
MOZ_ASSERT(frame.isGeneratorFrame());
MOZ_ASSERT(frame.script()->nfixed() == 0);
MOZ_ASSERT(!frame.isConstructing());
RootedFunction fun(cx, frame.callee());
Rooted<AbstractGeneratorObject*> genObj(cx);
if (!fun->isAsync()) {
genObj = GeneratorObject::create(cx, fun);
} else if (fun->isGenerator()) {
genObj = AsyncGeneratorObject::create(cx, fun);
} else {
genObj = AsyncFunctionGeneratorObject::create(cx, fun);
}
if (!genObj) {
return nullptr;
}
genObj->setCallee(*frame.callee());
genObj->setEnvironmentChain(*frame.environmentChain());
if (frame.script()->needsArgsObj()) {
genObj->setArgsObj(frame.argsObj());
}
genObj->clearExpressionStack();
if (!DebugAPI::onNewGenerator(cx, frame, genObj)) {
return nullptr;
}
return genObj;
}
void AbstractGeneratorObject::trace(JSTracer* trc) {
DebugAPI::traceGeneratorFrame(trc, this);
}
bool AbstractGeneratorObject::suspend(JSContext* cx, HandleObject obj,
AbstractFramePtr frame, jsbytecode* pc,
Value* vp, unsigned nvalues) {
MOZ_ASSERT(JSOp(*pc) == JSOp::InitialYield || JSOp(*pc) == JSOp::Yield ||
JSOp(*pc) == JSOp::Await);
auto genObj = obj.as<AbstractGeneratorObject>();
MOZ_ASSERT(!genObj->hasExpressionStack() || genObj->isExpressionStackEmpty());
MOZ_ASSERT_IF(JSOp(*pc) == JSOp::Await, genObj->callee().isAsync());
MOZ_ASSERT_IF(JSOp(*pc) == JSOp::Yield, genObj->callee().isGenerator());
ArrayObject* stack = nullptr;
if (nvalues > 0) {
do {
if (genObj->hasExpressionStack()) {
MOZ_ASSERT(genObj->expressionStack().getDenseInitializedLength() == 0);
auto result = genObj->expressionStack().setOrExtendDenseElements(
cx, 0, vp, nvalues, ShouldUpdateTypes::DontUpdate);
if (result == DenseElementResult::Success) {
MOZ_ASSERT(genObj->expressionStack().getDenseInitializedLength() ==
nvalues);
break;
}
if (result == DenseElementResult::Failure) {
return false;
}
}
stack = NewDenseCopiedArray(cx, nvalues, vp);
if (!stack) {
return false;
}
} while (false);
}
genObj->setResumeIndex(pc);
genObj->setEnvironmentChain(*frame.environmentChain());
if (stack) {
genObj->setExpressionStack(*stack);
}
return true;
}
void AbstractGeneratorObject::finalSuspend(HandleObject obj) {
auto* genObj = &obj->as<AbstractGeneratorObject>();
MOZ_ASSERT(genObj->isRunning());
genObj->setClosed();
}
AbstractGeneratorObject* js::GetGeneratorObjectForFrame(
JSContext* cx, AbstractFramePtr frame) {
cx->check(frame);
MOZ_ASSERT(frame.isGeneratorFrame());
if (!frame.hasInitialEnvironment()) {
return nullptr;
}
// The ".generator" binding is always present and always "aliased".
CallObject& callObj = frame.callObj();
Shape* shape = callObj.lookup(cx, cx->names().dotGenerator);
Value genValue = callObj.getSlot(shape->slot());
// If the `generator; setaliasedvar ".generator"; initialyield` bytecode
// sequence has not run yet, genValue is undefined.
return genValue.isObject()
? &genValue.toObject().as<AbstractGeneratorObject>()
: nullptr;
}
void js::SetGeneratorClosed(JSContext* cx, AbstractFramePtr frame) {
CallObject& callObj = frame.callObj();
// Get the generator object stored on the scope chain and close it.
Shape* shape = callObj.lookup(cx, cx->names().dotGenerator);
auto& genObj =
callObj.getSlot(shape->slot()).toObject().as<AbstractGeneratorObject>();
genObj.setClosed();
}
bool js::GeneratorThrowOrReturn(JSContext* cx, AbstractFramePtr frame,
Handle<AbstractGeneratorObject*> genObj,
HandleValue arg,
GeneratorResumeKind resumeKind) {
MOZ_ASSERT(genObj->isRunning());
if (resumeKind == GeneratorResumeKind::Throw) {
cx->setPendingExceptionAndCaptureStack(arg);
} else {
MOZ_ASSERT(resumeKind == GeneratorResumeKind::Return);
MOZ_ASSERT_IF(genObj->is<GeneratorObject>(), arg.isObject());
frame.setReturnValue(arg);
RootedValue closing(cx, MagicValue(JS_GENERATOR_CLOSING));
cx->setPendingException(closing, nullptr);
}
return false;
}
bool AbstractGeneratorObject::resume(JSContext* cx,
InterpreterActivation& activation,
Handle<AbstractGeneratorObject*> genObj,
HandleValue arg, HandleValue resumeKind) {
MOZ_ASSERT(genObj->isSuspended());
RootedFunction callee(cx, &genObj->callee());
RootedObject envChain(cx, &genObj->environmentChain());
if (!activation.resumeGeneratorFrame(callee, envChain)) {
return false;
}
activation.regs().fp()->setResumedGenerator();
if (genObj->hasArgsObj()) {
activation.regs().fp()->initArgsObj(genObj->argsObj());
}
if (genObj->hasExpressionStack() && !genObj->isExpressionStackEmpty()) {
uint32_t len = genObj->expressionStack().getDenseInitializedLength();
MOZ_ASSERT(activation.regs().spForStackDepth(len));
const Value* src = genObj->expressionStack().getDenseElements();
mozilla::PodCopy(activation.regs().sp, src, len);
activation.regs().sp += len;
genObj->expressionStack().setDenseInitializedLength(0);
}
JSScript* script = callee->nonLazyScript();
uint32_t offset = script->resumeOffsets()[genObj->resumeIndex()];
activation.regs().pc = script->offsetToPC(offset);
// Push arg, generator, resumeKind Values on the generator's stack.
activation.regs().sp += 3;
MOZ_ASSERT(activation.regs().spForStackDepth(activation.regs().stackDepth()));
activation.regs().sp[-3] = arg;
activation.regs().sp[-2] = ObjectValue(*genObj);
activation.regs().sp[-1] = resumeKind;
genObj->setRunning();
return true;
}
GeneratorObject* GeneratorObject::create(JSContext* cx, HandleFunction fun) {
MOZ_ASSERT(fun->isGenerator() && !fun->isAsync());
// FIXME: This would be faster if we could avoid doing a lookup to get
// the prototype for the instance. Bug 906600.
RootedValue pval(cx);
if (!GetProperty(cx, fun, fun, cx->names().prototype, &pval)) {
return nullptr;
}
RootedObject proto(cx, pval.isObject() ? &pval.toObject() : nullptr);
if (!proto) {
proto = GlobalObject::getOrCreateGeneratorObjectPrototype(cx, cx->global());
if (!proto) {
return nullptr;
}
}
return NewObjectWithGivenProto<GeneratorObject>(cx, proto);
}
const JSClass GeneratorObject::class_ = {
"Generator",
JSCLASS_HAS_RESERVED_SLOTS(GeneratorObject::RESERVED_SLOTS),
&classOps_,
};
const JSClassOps GeneratorObject::classOps_ = {
nullptr, // addProperty
nullptr, // delProperty
nullptr, // enumerate
nullptr, // newEnumerate
nullptr, // resolve
nullptr, // mayResolve
nullptr, // finalize
nullptr, // call
nullptr, // hasInstance
nullptr, // construct
CallTraceMethod<AbstractGeneratorObject>, // trace
};
static const JSFunctionSpec generator_methods[] = {
JS_SELF_HOSTED_FN("next", "GeneratorNext", 1, 0),
JS_SELF_HOSTED_FN("throw", "GeneratorThrow", 1, 0),
JS_SELF_HOSTED_FN("return", "GeneratorReturn", 1, 0), JS_FS_END};
JSObject* js::NewSingletonObjectWithFunctionPrototype(
JSContext* cx, Handle<GlobalObject*> global) {
RootedObject proto(cx,
GlobalObject::getOrCreateFunctionPrototype(cx, global));
if (!proto) {
return nullptr;
}
RootedObject obj(cx,
NewSingletonObjectWithGivenProto<PlainObject>(cx, proto));
if (!obj) {
return nullptr;
}
if (!JSObject::setDelegate(cx, obj)) {
return nullptr;
}
return obj;
}
static JSObject* CreateGeneratorFunction(JSContext* cx, JSProtoKey key) {
RootedObject proto(
cx, GlobalObject::getOrCreateFunctionConstructor(cx, cx->global()));
if (!proto) {
return nullptr;
}
HandlePropertyName name = cx->names().GeneratorFunction;
return NewFunctionWithProto(cx, Generator, 1, FunctionFlags::NATIVE_CTOR,
nullptr, name, proto, gc::AllocKind::FUNCTION,
SingletonObject);
}
static JSObject* CreateGeneratorFunctionPrototype(JSContext* cx,
JSProtoKey key) {
return NewSingletonObjectWithFunctionPrototype(cx, cx->global());
}
static bool GeneratorFunctionClassFinish(JSContext* cx,
HandleObject genFunction,
HandleObject genFunctionProto) {
Handle<GlobalObject*> global = cx->global();
// Change the "constructor" property to non-writable before adding any other
// properties, so it's still the last property and can be modified without a
// dictionary-mode transition.
MOZ_ASSERT(StringEqualsAscii(
JSID_TO_LINEAR_STRING(
genFunctionProto->as<NativeObject>().lastProperty()->propid()),
"constructor"));
MOZ_ASSERT(!genFunctionProto->as<NativeObject>().inDictionaryMode());
RootedValue genFunctionVal(cx, ObjectValue(*genFunction));
if (!DefineDataProperty(cx, genFunctionProto, cx->names().constructor,
genFunctionVal, JSPROP_READONLY)) {
return false;
}
MOZ_ASSERT(!genFunctionProto->as<NativeObject>().inDictionaryMode());
RootedObject iteratorProto(
cx, GlobalObject::getOrCreateIteratorPrototype(cx, global));
if (!iteratorProto) {
return false;
}
RootedObject genObjectProto(cx, GlobalObject::createBlankPrototypeInheriting(
cx, &PlainObject::class_, iteratorProto));
if (!genObjectProto) {
return false;
}
if (!DefinePropertiesAndFunctions(cx, genObjectProto, nullptr,
generator_methods) ||
!DefineToStringTag(cx, genObjectProto, cx->names().Generator)) {
return false;
}
if (!LinkConstructorAndPrototype(cx, genFunctionProto, genObjectProto,
JSPROP_READONLY, JSPROP_READONLY) ||
!DefineToStringTag(cx, genFunctionProto, cx->names().GeneratorFunction)) {
return false;
}
global->setGeneratorObjectPrototype(genObjectProto);
return true;
}
static const ClassSpec GeneratorFunctionClassSpec = {
CreateGeneratorFunction,
CreateGeneratorFunctionPrototype,
nullptr,
nullptr,
nullptr,
nullptr,
GeneratorFunctionClassFinish,
ClassSpec::DontDefineConstructor};
const JSClass js::GeneratorFunctionClass = {
"GeneratorFunction", 0, JS_NULL_CLASS_OPS, &GeneratorFunctionClassSpec};
bool AbstractGeneratorObject::isAfterYield() {
return isAfterYieldOrAwait(JSOp::Yield);
}
bool AbstractGeneratorObject::isAfterAwait() {
return isAfterYieldOrAwait(JSOp::Await);
}
bool AbstractGeneratorObject::isAfterYieldOrAwait(JSOp op) {
if (isClosed() || isRunning()) {
return false;
}
JSScript* script = callee().nonLazyScript();
jsbytecode* code = script->code();
uint32_t nextOffset = script->resumeOffsets()[resumeIndex()];
if (JSOp(code[nextOffset]) != JSOp::AfterYield) {
return false;
}
static_assert(JSOpLength_Yield == JSOpLength_InitialYield,
"JSOp::Yield and JSOp::InitialYield must have the same length");
static_assert(JSOpLength_Yield == JSOpLength_Await,
"JSOp::Yield and JSOp::Await must have the same length");
uint32_t offset = nextOffset - JSOpLength_Yield;
JSOp prevOp = JSOp(code[offset]);
MOZ_ASSERT(prevOp == JSOp::InitialYield || prevOp == JSOp::Yield ||
prevOp == JSOp::Await);
return prevOp == op;
}
template <>
bool JSObject::is<js::AbstractGeneratorObject>() const {
return is<GeneratorObject>() || is<AsyncFunctionGeneratorObject>() ||
is<AsyncGeneratorObject>();
}
GeneratorResumeKind js::AtomToResumeKind(JSContext* cx, JSAtom* atom) {
if (atom == cx->names().next) {
return GeneratorResumeKind::Next;
}
if (atom == cx->names().throw_) {
return GeneratorResumeKind::Throw;
}
MOZ_ASSERT(atom == cx->names().return_);
return GeneratorResumeKind::Return;
}
JSAtom* js::ResumeKindToAtom(JSContext* cx, GeneratorResumeKind kind) {
switch (kind) {
case GeneratorResumeKind::Next:
return cx->names().next;
case GeneratorResumeKind::Throw:
return cx->names().throw_;
case GeneratorResumeKind::Return:
return cx->names().return_;
}
MOZ_CRASH("Invalid resume kind");
}