summaryrefslogtreecommitdiff
path: root/js/src/frontend/ObjectEmitter.h
blob: b389c3e180c638c53fe949cd56cf46e58c92aa65 (plain)
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
/* -*- 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/. */

#ifndef frontend_ObjectEmitter_h
#define frontend_ObjectEmitter_h

#include "mozilla/Attributes.h"  // MOZ_MUST_USE, MOZ_STACK_CLASS, MOZ_ALWAYS_INLINE, MOZ_RAII
#include "mozilla/Maybe.h"  // Maybe

#include <stddef.h>  // size_t, ptrdiff_t
#include <stdint.h>  // uint32_t

#include "jsopcode.h"                // JSOp
#include "jsfun.h"                   // JSFunction
#include "jsscript.h"                // FunctionAsyncKind

#include "frontend/EmitterScope.h"   // EmitterScope
#include "frontend/TDZCheckCache.h"  // TDZCheckCache
#include "js/RootingAPI.h"           // JS::Handle, JS::Rooted
#include "vm/String.h"               // JSAtom
#include "vm/NativeObject.h"         // PlainObject
#include "vm/Scope.h"                // LexicalScope

namespace js {

namespace frontend {

struct BytecodeEmitter;
class SharedContext;

// Class for emitting bytecode for object and class properties.
// See ObjectEmitter and ClassEmitter for usage.
class MOZ_STACK_CLASS PropertyEmitter
{
  public:
    enum class Kind {
        // Prototype property.
        Prototype,

        // Class static property.
        Static
    };

  protected:
    BytecodeEmitter* bce_;

    // True if the object is class.
    // Set by ClassEmitter.
    bool isClass_ = false;

    // True if the property is class static method.
    bool isStatic_ = false;

    // True if the property has computed or index key.
    bool isIndexOrComputed_ = false;

    // An object which keeps the shape of this object literal.
    // This fields is reset to nullptr whenever the object literal turns out to
    // have at least one numeric, computed, spread or __proto__ property, or
    // the object becomes dictionary mode.
    // This field is used only in ObjectEmitter.
    JS::Rooted<PlainObject*> obj_;

#ifdef DEBUG
    // The state of this emitter.
    //
    // +-------+
    // | Start |-+
    // +-------+ |
    //           |
    // +---------+
    // |
    // |  +------------------------------------------------------------+
    // |  |                                                            |
    // |  | [normal property/method/accessor]                          |
    // |  v   prepareForPropValue  +-----------+              +------+ |
    // +->+----------------------->| PropValue |-+         +->| Init |-+
    //    |                        +-----------+ |         |  +------+
    //    |                                      |         |
    //    |  +----------------------------------+          +-----------+
    //    |  |                                                         |
    //    |  +-+---------------------------------------+               |
    //    |    |                                       |               |
    //    |    | [method with super]                   |               |
    //    |    |   emitInitHomeObject +-------------+  v               |
    //    |    +--------------------->| InitHomeObj |->+               |
    //    |                           +-------------+  |               |
    //    |                                            |               |
    //    |    +-------------------------------------- +               |
    //    |    |                                                       |
    //    |    | emitInitProp                                          |
    //    |    | emitInitGetter                                        |
    //    |    | emitInitSetter                                        |
    //    |    +------------------------------------------------------>+
    //    |                                                            ^
    //    | [index property/method/accessor]                           |
    //    |   prepareForIndexPropKey  +----------+                     |
    //    +-------------------------->| IndexKey |-+                   |
    //    |                           +----------+ |                   |
    //    |                                        |                   |
    //    |  +-------------------------------------+                   |
    //    |  |                                                         |
    //    |  | prepareForIndexPropValue +------------+                 |
    //    |  +------------------------->| IndexValue |-+               |
    //    |                             +------------+ |               |
    //    |                                            |               |
    //    |    +---------------------------------------+               |
    //    |    |                                                       |
    //    |    +-+--------------------------------------------------+  |
    //    |      |                                                  |  |
    //    |      | [method with super]                              |  |
    //    |      |   emitInitHomeObject +---------------------+     v  |
    //    |      +--------------------->| InitHomeObjForIndex |---->+  |
    //    |                             +---------------------+     |  |
    //    |                                                         |  |
    //    |      +--------------------------------------------------+  |
    //    |      |                                                     |
    //    |      | emitInitIndexProp                                   |
    //    |      | emitInitIndexGetter                                 |
    //    |      | emitInitIndexSetter                                 |
    //    |      +---------------------------------------------------->+
    //    |                                                            |
    //    | [computed property/method/accessor]                        |
    //    |   prepareForComputedPropKey  +-------------+               |
    //    +----------------------------->| ComputedKey |-+             |
    //    |                              +-------------+ |             |
    //    |                                              |             |
    //    |  +-------------------------------------------+             |
    //    |  |                                                         |
    //    |  | prepareForComputedPropValue +---------------+           |
    //    |  +---------------------------->| ComputedValue |-+         |
    //    |                                +---------------+ |         |
    //    |                                                  |         |
    //    |    +---------------------------------------------+         |
    //    |    |                                                       |
    //    |    +-+--------------------------------------------------+  |
    //    |      |                                                  |  |
    //    |      | [method with super]                              |  |
    //    |      |   emitInitHomeObject +------------------------+  v  |
    //    |      +--------------------->| InitHomeObjForComputed |->+  |
    //    |                             +------------------------+  |  |
    //    |                                                         |  |
    //    |      +--------------------------------------------------+  |
    //    |      |                                                     |
    //    |      | emitInitComputedProp                                |
    //    |      | emitInitComputedGetter                              |
    //    |      | emitInitComputedSetter                              |
    //    |      +---------------------------------------------------->+
    //    |                                                            ^
    //    |                                                            |
    //    | [__proto__]                                                |
    //    |   prepareForProtoValue  +------------+ emitMutateProto     |
    //    +------------------------>| ProtoValue |-------------------->+
    //    |                         +------------+                     ^
    //    |                                                            |
    //    | [...prop]                                                  |
    //    |   prepareForSpreadOperand +---------------+ emitSpread     |
    //    +-------------------------->| SpreadOperand |----------------+
    //                                +---------------+
    enum class PropertyState {
        // The initial state.
        Start,

        // After calling prepareForPropValue.
        PropValue,

        // After calling emitInitHomeObject, from PropValue.
        InitHomeObj,

        // After calling prepareForIndexPropKey.
        IndexKey,

        // prepareForIndexPropValue.
        IndexValue,

        // After calling emitInitHomeObject, from IndexValue.
        InitHomeObjForIndex,

        // After calling prepareForComputedPropKey.
        ComputedKey,

        // prepareForComputedPropValue.
        ComputedValue,

        // After calling emitInitHomeObject, from ComputedValue.
        InitHomeObjForComputed,

        // After calling prepareForProtoValue.
        ProtoValue,

        // After calling prepareForSpreadOperand.
        SpreadOperand,

        // After calling one of emitInitProp, emitInitGetter, emitInitSetter,
        // emitInitIndexOrComputedProp, emitInitIndexOrComputedGetter,
        // emitInitIndexOrComputedSetter, emitMutateProto, or emitSpread.
        Init,
    };
    PropertyState propertyState_ = PropertyState::Start;
#endif

  public:
    explicit PropertyEmitter(BytecodeEmitter* bce);

    // Parameters are the offset in the source code for each character below:
    //
    // { __proto__: protoValue }
    //   ^
    //   |
    //   keyPos
    MOZ_MUST_USE bool prepareForProtoValue(
        const mozilla::Maybe<uint32_t>& keyPos);
    MOZ_MUST_USE bool emitMutateProto();

    // { ...obj }
    //   ^
    //   |
    //   spreadPos
    MOZ_MUST_USE bool prepareForSpreadOperand(
        const mozilla::Maybe<uint32_t>& spreadPos);
    MOZ_MUST_USE bool emitSpread();

    // { key: value }
    //   ^
    //   |
    //   keyPos
    MOZ_MUST_USE bool prepareForPropValue(const mozilla::Maybe<uint32_t>& keyPos,
                                          Kind kind = Kind::Prototype);

    // { 1: value }
    //   ^
    //   |
    //   keyPos
    MOZ_MUST_USE bool prepareForIndexPropKey(
        const mozilla::Maybe<uint32_t>& keyPos, Kind kind = Kind::Prototype);
    MOZ_MUST_USE bool prepareForIndexPropValue();

    // { [ key ]: value }
    //   ^
    //   |
    //   keyPos
    MOZ_MUST_USE bool prepareForComputedPropKey(
        const mozilla::Maybe<uint32_t>& keyPos, Kind kind = Kind::Prototype);
    MOZ_MUST_USE bool prepareForComputedPropValue();

    MOZ_MUST_USE bool emitInitHomeObject(
        FunctionAsyncKind kind = FunctionAsyncKind::SyncFunction);

    // @param key
    //        Property key
    // @param isPropertyAnonFunctionOrClass
    //        True if the property value is an anonymous function or
    //        an anonymous class
    // @param anonFunction
    //        The anonymous function object for property value
    MOZ_MUST_USE bool emitInitProp(
        JS::Handle<JSAtom*> key, bool isPropertyAnonFunctionOrClass = false,
        JS::Handle<JSFunction*> anonFunction = nullptr);
    MOZ_MUST_USE bool emitInitGetter(JS::Handle<JSAtom*> key);
    MOZ_MUST_USE bool emitInitSetter(JS::Handle<JSAtom*> key);

    MOZ_MUST_USE bool emitInitIndexProp(
        bool isPropertyAnonFunctionOrClass = false);
    MOZ_MUST_USE bool emitInitIndexGetter();
    MOZ_MUST_USE bool emitInitIndexSetter();

    MOZ_MUST_USE bool emitInitComputedProp(
        bool isPropertyAnonFunctionOrClass = false);
    MOZ_MUST_USE bool emitInitComputedGetter();
    MOZ_MUST_USE bool emitInitComputedSetter();

  private:
    MOZ_MUST_USE MOZ_ALWAYS_INLINE bool prepareForProp(
        const mozilla::Maybe<uint32_t>& keyPos, bool isStatic, bool isComputed);

    // @param op
    //        Opcode for initializing property
    // @param prefixKind
    //        None, Get, or Set
    // @param key
    //        Atom of the property if the property key is not computed
    // @param isPropertyAnonFunctionOrClass
    //        True if the property is either an anonymous function or an
    //        anonymous class
    // @param anonFunction
    //        Anonymous function object for the property
    MOZ_MUST_USE bool emitInit(JSOp op, JS::Handle<JSAtom*> key,
                               bool isPropertyAnonFunctionOrClass,
                               JS::Handle<JSFunction*> anonFunction);
    MOZ_MUST_USE bool emitInitIndexOrComputed(JSOp op,
                                              FunctionPrefixKind prefixKind,
                                              bool isPropertyAnonFunctionOrClass);

    MOZ_MUST_USE bool emitPopClassConstructor();
};

// Class for emitting bytecode for object literal.
//
// Usage: (check for the return value is omitted for simplicity)
//
//   `{}`
//     ObjectEmitter oe(this);
//     oe.emitObject(0);
//     oe.emitEnd();
//
//   `{ prop: 10 }`
//     ObjectEmitter oe(this);
//     oe.emitObject(1);
//
//     oe.prepareForPropValue(Some(offset_of_prop));
//     emit(10);
//     oe.emitInitProp(atom_of_prop);
//
//     oe.emitEnd();
//
//   `{ prop: function() {} }`, when property value is anonymous function
//     ObjectEmitter oe(this);
//     oe.emitObject(1);
//
//     oe.prepareForPropValue(Some(offset_of_prop));
//     emit(function);
//     oe.emitInitProp(atom_of_prop, true, function_object);
//
//     oe.emitEnd();
//
//   `{ get prop() { ... }, set prop(v) { ... } }`
//     ObjectEmitter oe(this);
//     oe.emitObject(2);
//
//     oe.prepareForPropValue(Some(offset_of_prop));
//     emit(function_for_getter);
//     oe.emitInitGetter(atom_of_prop);
//
//     oe.prepareForPropValue(Some(offset_of_prop));
//     emit(function_for_setter);
//     oe.emitInitSetter(atom_of_prop);
//
//     oe.emitEnd();
//
//   `{ 1: 10, get 2() { ... }, set 3(v) { ... } }`
//     ObjectEmitter oe(this);
//     oe.emitObject(3);
//
//     oe.prepareForIndexPropKey(Some(offset_of_prop));
//     emit(1);
//     oe.prepareForIndexPropValue();
//     emit(10);
//     oe.emitInitIndexedProp(atom_of_prop);
//
//     oe.prepareForIndexPropKey(Some(offset_of_opening_bracket));
//     emit(2);
//     oe.prepareForIndexPropValue();
//     emit(function_for_getter);
//     oe.emitInitIndexGetter();
//
//     oe.prepareForIndexPropKey(Some(offset_of_opening_bracket));
//     emit(3);
//     oe.prepareForIndexPropValue();
//     emit(function_for_setter);
//     oe.emitInitIndexSetter();
//
//     oe.emitEnd();
//
//   `{ [prop1]: 10, get [prop2]() { ... }, set [prop3](v) { ... } }`
//     ObjectEmitter oe(this);
//     oe.emitObject(3);
//
//     oe.prepareForComputedPropKey(Some(offset_of_opening_bracket));
//     emit(prop1);
//     oe.prepareForComputedPropValue();
//     emit(10);
//     oe.emitInitComputedProp();
//
//     oe.prepareForComputedPropKey(Some(offset_of_opening_bracket));
//     emit(prop2);
//     oe.prepareForComputedPropValue();
//     emit(function_for_getter);
//     oe.emitInitComputedGetter();
//
//     oe.prepareForComputedPropKey(Some(offset_of_opening_bracket));
//     emit(prop3);
//     oe.prepareForComputedPropValue();
//     emit(function_for_setter);
//     oe.emitInitComputedSetter();
//
//     oe.emitEnd();
//
//   `{ __proto__: obj }`
//     ObjectEmitter oe(this);
//     oe.emitObject(1);
//     oe.prepareForProtoValue(Some(offset_of___proto__));
//     emit(obj);
//     oe.emitMutateProto();
//     oe.emitEnd();
//
//   `{ ...obj }`
//     ObjectEmitter oe(this);
//     oe.emitObject(1);
//     oe.prepareForSpreadOperand(Some(offset_of_triple_dots));
//     emit(obj);
//     oe.emitSpread();
//     oe.emitEnd();
//
class MOZ_STACK_CLASS ObjectEmitter : public PropertyEmitter
{
  private:
    // The offset of JSOP_NEWINIT, which is replced by JSOP_NEWOBJECT later
    // when the object is known to have a fixed shape.
    ptrdiff_t top_ = 0;

#ifdef DEBUG
    // The state of this emitter.
    //
    // +-------+ emitObject +--------+
    // | Start |----------->| Object |-+
    // +-------+            +--------+ |
    //                                 |
    //   +-----------------------------+
    //   |
    //   | (do PropertyEmitter operation)  emitEnd  +-----+
    //   +-------------------------------+--------->| End |
    //                                              +-----+
    enum class ObjectState {
        // The initial state.
        Start,

        // After calling emitObject.
        Object,

        // After calling emitEnd.
        End,
    };
    ObjectState objectState_ = ObjectState::Start;
#endif

  public:
    explicit ObjectEmitter(BytecodeEmitter* bce);

    MOZ_MUST_USE bool emitObject(size_t propertyCount);
    MOZ_MUST_USE bool emitEnd();
};

// Save and restore the strictness.
// Used by class declaration/expression to temporarily enable strict mode.
class MOZ_RAII AutoSaveLocalStrictMode
{
    SharedContext* sc_;
    bool savedStrictness_;

  public:
    explicit AutoSaveLocalStrictMode(SharedContext* sc);
    ~AutoSaveLocalStrictMode();

    // Force restore the strictness now.
    void restore();
};

// Class for emitting bytecode for JS class.
//
// Usage: (check for the return value is omitted for simplicity)
//
//   `class {}`
//     ClassEmitter ce(this);
//     ce.emitScope(scopeBindings, false);
//     ce.emitClass();
//
//     ce.emitInitDefaultConstructor(Some(offset_of_class),
//                                   Some(offset_of_closing_bracket));
//
//     ce.emitEnd(ClassEmitter::Kind::Expression);
//
//   `class { constructor() { ... } }`
//     ClassEmitter ce(this);
//     ce.emitScope(scopeBindings, false);
//     ce.emitClass();
//
//     emit(function_for_constructor);
//     ce.emitInitConstructor(/* needsHomeObject = */ false);
//
//     ce.emitEnd(ClassEmitter::Kind::Expression);
//
//   `class X { constructor() { ... } }`
//     ClassEmitter ce(this);
//     ce.emitScope(scopeBindings, true);
//     ce.emitClass(atom_of_X);
//
//     ce.emitInitDefaultConstructor(Some(offset_of_class),
//                                   Some(offset_of_closing_bracket));
//
//     ce.emitEnd(ClassEmitter::Kind::Expression);
//
//   `class X { constructor() { ... } }`
//     ClassEmitter ce(this);
//     ce.emitScope(scopeBindings, true);
//     ce.emitClass(atom_of_X);
//
//     emit(function_for_constructor);
//     ce.emitInitConstructor(/* needsHomeObject = */ false);
//
//     ce.emitEnd(ClassEmitter::Kind::Expression);
//
//   `class X extends Y { constructor() { ... } }`
//     ClassEmitter ce(this);
//     ce.emitScope(scopeBindings, true);
//
//     emit(Y);
//     ce.emitDerivedClass(atom_of_X);
//
//     emit(function_for_constructor);
//     ce.emitInitConstructor(/* needsHomeObject = */ false);
//
//     ce.emitEnd(ClassEmitter::Kind::Expression);
//
//   `class X extends Y { constructor() { ... super.f(); ... } }`
//     ClassEmitter ce(this);
//     ce.emitScope(scopeBindings, true);
//
//     emit(Y);
//     ce.emitDerivedClass(atom_of_X);
//
//     emit(function_for_constructor);
//     // pass true if constructor contains super.prop access
//     ce.emitInitConstructor(/* needsHomeObject = */ true);
//
//     ce.emitEnd(ClassEmitter::Kind::Expression);
//
//   `m() {}` in class
//     // after emitInitConstructor/emitInitDefaultConstructor
//     ce.prepareForPropValue(Some(offset_of_m));
//     emit(function_for_m);
//     ce.emitInitProp(atom_of_m);
//
//   `m() { super.f(); }` in class
//     // after emitInitConstructor/emitInitDefaultConstructor
//     ce.prepareForPropValue(Some(offset_of_m));
//     emit(function_for_m);
//     ce.emitInitHomeObject();
//     ce.emitInitProp(atom_of_m);
//
//   `async m() { super.f(); }` in class
//     // after emitInitConstructor/emitInitDefaultConstructor
//     ce.prepareForPropValue(Some(offset_of_m));
//     emit(function_for_m);
//     ce.emitInitHomeObject(FunctionAsyncKind::Async);
//     ce.emitInitProp(atom_of_m);
//
//   `get p() { super.f(); }` in class
//     // after emitInitConstructor/emitInitDefaultConstructor
//     ce.prepareForPropValue(Some(offset_of_p));
//     emit(function_for_p);
//     ce.emitInitHomeObject();
//     ce.emitInitGetter(atom_of_m);
//
//   `static m() {}` in class
//     // after emitInitConstructor/emitInitDefaultConstructor
//     ce.prepareForPropValue(Some(offset_of_m),
//                            PropertyEmitter::Kind::Static);
//     emit(function_for_m);
//     ce.emitInitProp(atom_of_m);
//
//   `static get [p]() { super.f(); }` in class
//     // after emitInitConstructor/emitInitDefaultConstructor
//     ce.prepareForComputedPropValue(Some(offset_of_m),
//                                    PropertyEmitter::Kind::Static);
//     emit(p);
//     ce.prepareForComputedPropValue();
//     emit(function_for_m);
//     ce.emitInitHomeObject();
//     ce.emitInitComputedGetter();
//
class MOZ_STACK_CLASS ClassEmitter : public PropertyEmitter
{
  public:
    enum class Kind {
        // Class expression.
        Expression,

        // Class declaration.
        Declaration,
    };

  private:
    // Pseudocode for class declarations:
    //
    //     class extends BaseExpression {
    //       constructor() { ... }
    //       ...
    //       }
    //
    //
    //   if defined <BaseExpression> {
    //     let heritage = BaseExpression;
    //
    //     if (heritage !== null) {
    //       funProto = heritage;
    //       objProto = heritage.prototype;
    //     } else {
    //       funProto = %FunctionPrototype%;
    //       objProto = null;
    //     }
    //   } else {
    //     objProto = %ObjectPrototype%;
    //   }
    //
    //   let homeObject = ObjectCreate(objProto);
    //
    //   if defined <constructor> {
    //     if defined <BaseExpression> {
    //       cons = DefineMethod(<constructor>, proto=homeObject,
    //       funProto=funProto);
    //     } else {
    //       cons = DefineMethod(<constructor>, proto=homeObject);
    //     }
    //   } else {
    //     if defined <BaseExpression> {
    //       cons = DefaultDerivedConstructor(proto=homeObject,
    //       funProto=funProto);
    //     } else {
    //       cons = DefaultConstructor(proto=homeObject);
    //     }
    //   }
    //
    //   cons.prototype = homeObject;
    //   homeObject.constructor = cons;
    //
    //   EmitPropertyList(...)

    bool isDerived_ = false;

    mozilla::Maybe<TDZCheckCache> tdzCacheForInnerName_;
    mozilla::Maybe<EmitterScope> innerScope_;
    AutoSaveLocalStrictMode strictMode_;

#ifdef DEBUG
    // The state of this emitter.
    //
    // +-------+
    // | Start |-+------------------------>+-+
    // +-------+ |                         ^ |
    //           | [has scope]             | |
    //           |   emitScope   +-------+ | |
    //           +-------------->| Scope |-+ |
    //                           +-------+   |
    //                                       |
    //   +-----------------------------------+
    //   |
    //   |   emitClass           +-------+
    //   +-+----------------->+->| Class |-+
    //     |                  ^  +-------+ |
    //     | emitDerivedClass |            |
    //     +------------------+            |
    //                                     |
    //     +-------------------------------+
    //     |
    //     |
    //     |   emitInitConstructor           +-----------------+
    //     +-+--------------------------->+->| InitConstructor |-+
    //       |                            ^  +-----------------+ |
    //       | emitInitDefaultConstructor |                      |
    //       +----------------------------+                      |
    //                                                           |
    //       +---------------------------------------------------+
    //       |
    //       | (do PropertyEmitter operation)  emitEnd  +-----+
    //       +-------------------------------+--------->| End |
    //                                                  +-----+
    enum class ClassState {
        // The initial state.
        Start,

        // After calling emitScope.
        Scope,

        // After calling emitClass or emitDerivedClass.
        Class,

        // After calling emitInitConstructor or emitInitDefaultConstructor.
        InitConstructor,

        // After calling emitEnd.
        End,
    };
    ClassState classState_ = ClassState::Start;
#endif

    JS::Rooted<JSAtom*> name_;

  public:
    explicit ClassEmitter(BytecodeEmitter* bce);

    MOZ_MUST_USE bool emitScope(JS::Handle<LexicalScope::Data*> scopeBindings, bool hasName);

    // @param name
    //        Name of the class (nullptr if this is anonymous class)
    MOZ_MUST_USE bool emitClass(JS::Handle<JSAtom*> name);
    MOZ_MUST_USE bool emitDerivedClass(JS::Handle<JSAtom*> name);

    // @param needsHomeObject
    //        True if the constructor contains `super.foo`
    MOZ_MUST_USE bool emitInitConstructor(bool needsHomeObject);

    // Parameters are the offset in the source code for each character below:
    //
    //   class X { foo() {} }
    //   ^                  ^
    //   |                  |
    //   |                  classEnd
    //   |
    //   classStart
    //
    MOZ_MUST_USE bool emitInitDefaultConstructor(
        const mozilla::Maybe<uint32_t>& classStart,
        const mozilla::Maybe<uint32_t>& classEnd);

    MOZ_MUST_USE bool emitEnd(Kind kind);

  private:
    void setName(JS::Handle<JSAtom*> name);
    MOZ_MUST_USE bool initProtoAndCtor();
};

} /* namespace frontend */
} /* namespace js */

#endif /* frontend_ObjectEmitter_h */