mozjs_sys 0.67.1

System crate for the Mozilla SpiderMonkey JavaScript engine.
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
/* -*- 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 jit_BaselineCompiler_h
#define jit_BaselineCompiler_h

#include "jit/BaselineFrameInfo.h"
#include "jit/BaselineIC.h"
#include "jit/BytecodeAnalysis.h"
#include "jit/FixedList.h"
#include "jit/MacroAssembler.h"

namespace js {
namespace jit {

#define OPCODE_LIST(_)          \
  _(JSOP_NOP)                   \
  _(JSOP_NOP_DESTRUCTURING)     \
  _(JSOP_LABEL)                 \
  _(JSOP_ITERNEXT)              \
  _(JSOP_POP)                   \
  _(JSOP_POPN)                  \
  _(JSOP_DUPAT)                 \
  _(JSOP_ENTERWITH)             \
  _(JSOP_LEAVEWITH)             \
  _(JSOP_DUP)                   \
  _(JSOP_DUP2)                  \
  _(JSOP_SWAP)                  \
  _(JSOP_PICK)                  \
  _(JSOP_UNPICK)                \
  _(JSOP_GOTO)                  \
  _(JSOP_IFEQ)                  \
  _(JSOP_IFNE)                  \
  _(JSOP_AND)                   \
  _(JSOP_OR)                    \
  _(JSOP_NOT)                   \
  _(JSOP_POS)                   \
  _(JSOP_TONUMERIC)             \
  _(JSOP_LOOPHEAD)              \
  _(JSOP_LOOPENTRY)             \
  _(JSOP_VOID)                  \
  _(JSOP_UNDEFINED)             \
  _(JSOP_HOLE)                  \
  _(JSOP_NULL)                  \
  _(JSOP_TRUE)                  \
  _(JSOP_FALSE)                 \
  _(JSOP_ZERO)                  \
  _(JSOP_ONE)                   \
  _(JSOP_INT8)                  \
  _(JSOP_INT32)                 \
  _(JSOP_UINT16)                \
  _(JSOP_UINT24)                \
  _(JSOP_RESUMEINDEX)           \
  _(JSOP_DOUBLE)                \
  _(JSOP_BIGINT)                \
  _(JSOP_STRING)                \
  _(JSOP_SYMBOL)                \
  _(JSOP_OBJECT)                \
  _(JSOP_CALLSITEOBJ)           \
  _(JSOP_REGEXP)                \
  _(JSOP_LAMBDA)                \
  _(JSOP_LAMBDA_ARROW)          \
  _(JSOP_SETFUNNAME)            \
  _(JSOP_BITOR)                 \
  _(JSOP_BITXOR)                \
  _(JSOP_BITAND)                \
  _(JSOP_LSH)                   \
  _(JSOP_RSH)                   \
  _(JSOP_URSH)                  \
  _(JSOP_ADD)                   \
  _(JSOP_SUB)                   \
  _(JSOP_MUL)                   \
  _(JSOP_DIV)                   \
  _(JSOP_MOD)                   \
  _(JSOP_POW)                   \
  _(JSOP_LT)                    \
  _(JSOP_LE)                    \
  _(JSOP_GT)                    \
  _(JSOP_GE)                    \
  _(JSOP_EQ)                    \
  _(JSOP_NE)                    \
  _(JSOP_STRICTEQ)              \
  _(JSOP_STRICTNE)              \
  _(JSOP_CONDSWITCH)            \
  _(JSOP_CASE)                  \
  _(JSOP_DEFAULT)               \
  _(JSOP_LINENO)                \
  _(JSOP_BITNOT)                \
  _(JSOP_NEG)                   \
  _(JSOP_NEWARRAY)              \
  _(JSOP_NEWARRAY_COPYONWRITE)  \
  _(JSOP_INITELEM_ARRAY)        \
  _(JSOP_NEWOBJECT)             \
  _(JSOP_NEWINIT)               \
  _(JSOP_INITELEM)              \
  _(JSOP_INITELEM_GETTER)       \
  _(JSOP_INITELEM_SETTER)       \
  _(JSOP_INITELEM_INC)          \
  _(JSOP_MUTATEPROTO)           \
  _(JSOP_INITPROP)              \
  _(JSOP_INITLOCKEDPROP)        \
  _(JSOP_INITHIDDENPROP)        \
  _(JSOP_INITPROP_GETTER)       \
  _(JSOP_INITPROP_SETTER)       \
  _(JSOP_GETELEM)               \
  _(JSOP_SETELEM)               \
  _(JSOP_STRICTSETELEM)         \
  _(JSOP_CALLELEM)              \
  _(JSOP_DELELEM)               \
  _(JSOP_STRICTDELELEM)         \
  _(JSOP_GETELEM_SUPER)         \
  _(JSOP_SETELEM_SUPER)         \
  _(JSOP_STRICTSETELEM_SUPER)   \
  _(JSOP_IN)                    \
  _(JSOP_HASOWN)                \
  _(JSOP_GETGNAME)              \
  _(JSOP_BINDGNAME)             \
  _(JSOP_SETGNAME)              \
  _(JSOP_STRICTSETGNAME)        \
  _(JSOP_SETNAME)               \
  _(JSOP_STRICTSETNAME)         \
  _(JSOP_GETPROP)               \
  _(JSOP_SETPROP)               \
  _(JSOP_STRICTSETPROP)         \
  _(JSOP_CALLPROP)              \
  _(JSOP_DELPROP)               \
  _(JSOP_STRICTDELPROP)         \
  _(JSOP_GETPROP_SUPER)         \
  _(JSOP_SETPROP_SUPER)         \
  _(JSOP_STRICTSETPROP_SUPER)   \
  _(JSOP_LENGTH)                \
  _(JSOP_GETBOUNDNAME)          \
  _(JSOP_GETALIASEDVAR)         \
  _(JSOP_SETALIASEDVAR)         \
  _(JSOP_GETNAME)               \
  _(JSOP_BINDNAME)              \
  _(JSOP_DELNAME)               \
  _(JSOP_GETIMPORT)             \
  _(JSOP_GETINTRINSIC)          \
  _(JSOP_SETINTRINSIC)          \
  _(JSOP_BINDVAR)               \
  _(JSOP_DEFVAR)                \
  _(JSOP_DEFCONST)              \
  _(JSOP_DEFLET)                \
  _(JSOP_DEFFUN)                \
  _(JSOP_GETLOCAL)              \
  _(JSOP_SETLOCAL)              \
  _(JSOP_GETARG)                \
  _(JSOP_SETARG)                \
  _(JSOP_CHECKLEXICAL)          \
  _(JSOP_INITLEXICAL)           \
  _(JSOP_INITGLEXICAL)          \
  _(JSOP_CHECKALIASEDLEXICAL)   \
  _(JSOP_INITALIASEDLEXICAL)    \
  _(JSOP_UNINITIALIZED)         \
  _(JSOP_CALL)                  \
  _(JSOP_CALL_IGNORES_RV)       \
  _(JSOP_CALLITER)              \
  _(JSOP_FUNCALL)               \
  _(JSOP_FUNAPPLY)              \
  _(JSOP_NEW)                   \
  _(JSOP_EVAL)                  \
  _(JSOP_STRICTEVAL)            \
  _(JSOP_SPREADCALL)            \
  _(JSOP_SPREADNEW)             \
  _(JSOP_SPREADEVAL)            \
  _(JSOP_STRICTSPREADEVAL)      \
  _(JSOP_OPTIMIZE_SPREADCALL)   \
  _(JSOP_IMPLICITTHIS)          \
  _(JSOP_GIMPLICITTHIS)         \
  _(JSOP_INSTANCEOF)            \
  _(JSOP_TYPEOF)                \
  _(JSOP_TYPEOFEXPR)            \
  _(JSOP_THROWMSG)              \
  _(JSOP_THROW)                 \
  _(JSOP_TRY)                   \
  _(JSOP_FINALLY)               \
  _(JSOP_GOSUB)                 \
  _(JSOP_RETSUB)                \
  _(JSOP_PUSHLEXICALENV)        \
  _(JSOP_POPLEXICALENV)         \
  _(JSOP_FRESHENLEXICALENV)     \
  _(JSOP_RECREATELEXICALENV)    \
  _(JSOP_DEBUGLEAVELEXICALENV)  \
  _(JSOP_PUSHVARENV)            \
  _(JSOP_POPVARENV)             \
  _(JSOP_EXCEPTION)             \
  _(JSOP_DEBUGGER)              \
  _(JSOP_ARGUMENTS)             \
  _(JSOP_REST)                  \
  _(JSOP_TOASYNCITER)           \
  _(JSOP_TOID)                  \
  _(JSOP_TOSTRING)              \
  _(JSOP_TABLESWITCH)           \
  _(JSOP_ITER)                  \
  _(JSOP_MOREITER)              \
  _(JSOP_ISNOITER)              \
  _(JSOP_ENDITER)               \
  _(JSOP_ISGENCLOSING)          \
  _(JSOP_GENERATOR)             \
  _(JSOP_INITIALYIELD)          \
  _(JSOP_YIELD)                 \
  _(JSOP_AWAIT)                 \
  _(JSOP_TRYSKIPAWAIT)          \
  _(JSOP_DEBUGAFTERYIELD)       \
  _(JSOP_FINALYIELDRVAL)        \
  _(JSOP_RESUME)                \
  _(JSOP_ASYNCAWAIT)            \
  _(JSOP_ASYNCRESOLVE)          \
  _(JSOP_CALLEE)                \
  _(JSOP_ENVCALLEE)             \
  _(JSOP_SUPERBASE)             \
  _(JSOP_SUPERFUN)              \
  _(JSOP_GETRVAL)               \
  _(JSOP_SETRVAL)               \
  _(JSOP_RETRVAL)               \
  _(JSOP_RETURN)                \
  _(JSOP_FUNCTIONTHIS)          \
  _(JSOP_GLOBALTHIS)            \
  _(JSOP_CHECKISOBJ)            \
  _(JSOP_CHECKISCALLABLE)       \
  _(JSOP_CHECKTHIS)             \
  _(JSOP_CHECKTHISREINIT)       \
  _(JSOP_CHECKRETURN)           \
  _(JSOP_NEWTARGET)             \
  _(JSOP_SUPERCALL)             \
  _(JSOP_SPREADSUPERCALL)       \
  _(JSOP_THROWSETCONST)         \
  _(JSOP_THROWSETALIASEDCONST)  \
  _(JSOP_THROWSETCALLEE)        \
  _(JSOP_INITHIDDENPROP_GETTER) \
  _(JSOP_INITHIDDENPROP_SETTER) \
  _(JSOP_INITHIDDENELEM)        \
  _(JSOP_INITHIDDENELEM_GETTER) \
  _(JSOP_INITHIDDENELEM_SETTER) \
  _(JSOP_CHECKOBJCOERCIBLE)     \
  _(JSOP_DEBUGCHECKSELFHOSTED)  \
  _(JSOP_JUMPTARGET)            \
  _(JSOP_IS_CONSTRUCTING)       \
  _(JSOP_TRY_DESTRUCTURING)     \
  _(JSOP_CHECKCLASSHERITAGE)    \
  _(JSOP_INITHOMEOBJECT)        \
  _(JSOP_BUILTINPROTO)          \
  _(JSOP_OBJWITHPROTO)          \
  _(JSOP_FUNWITHPROTO)          \
  _(JSOP_CLASSCONSTRUCTOR)      \
  _(JSOP_DERIVEDCONSTRUCTOR)    \
  _(JSOP_IMPORTMETA)            \
  _(JSOP_DYNAMIC_IMPORT)        \
  _(JSOP_INC)                   \
  _(JSOP_DEC)

// Base class for BaselineCompiler and BaselineInterpreterGenerator. The Handler
// template is a class storing fields/methods that are interpreter or compiler
// specific. This can be combined with template specialization of methods in
// this class to specialize behavior.
template <typename Handler>
class BaselineCodeGen {
 protected:
  Handler handler;

  JSContext* cx;
  StackMacroAssembler masm;

  typename Handler::FrameInfoT& frame;

  js::Vector<CodeOffset> traceLoggerToggleOffsets_;

  NonAssertingLabel return_;
  NonAssertingLabel postBarrierSlot_;

  CodeOffset profilerEnterFrameToggleOffset_;
  CodeOffset profilerExitFrameToggleOffset_;

  // Early Ion bailouts will enter at this address. This is after frame
  // construction and before environment chain is initialized.
  CodeOffset bailoutPrologueOffset_;

  // Baseline Debug OSR during prologue will enter at this address. This is
  // right after where a debug prologue VM call would have returned.
  CodeOffset debugOsrPrologueOffset_;

  // Baseline Debug OSR during epilogue will enter at this address. This is
  // right after where a debug epilogue VM call would have returned.
  CodeOffset debugOsrEpilogueOffset_;

  uint32_t pushedBeforeCall_;
#ifdef DEBUG
  bool inCall_;
#endif

  // Whether any on stack arguments are modified.
  bool modifiesArguments_;

  template <typename... HandlerArgs>
  explicit BaselineCodeGen(JSContext* cx, HandlerArgs&&... args);

  template <typename T>
  void pushArg(const T& t) {
    masm.Push(t);
  }

  // Pushes the current script as argument for a VM function.
  void pushScriptArg();

  // Pushes the bytecode pc as argument for a VM function.
  void pushBytecodePCArg();

  // Pushes a name/object/scope associated with the current bytecode op (and
  // stored in the script) as argument for a VM function.
  enum class ScriptObjectType { RegExp, Function };
  void pushScriptObjectArg(ScriptObjectType type);
  void pushScriptNameArg();
  void pushScriptScopeArg();

  // Pushes a bytecode operand as argument for a VM function.
  void pushUint8BytecodeOperandArg();
  void pushUint16BytecodeOperandArg();

  void loadResumeIndexBytecodeOperand(Register dest);
  void loadInt32LengthBytecodeOperand(Register dest);
  void loadInt32IndexBytecodeOperand(ValueOperand dest);

  // Loads the current JSScript* in dest.
  void loadScript(Register dest);

  // Subtracts |script->nslots() * sizeof(Value)| from reg.
  void subtractScriptSlotsSize(Register reg, Register scratch);

  // Jump to the script's resume entry indicated by resumeIndex.
  void jumpToResumeEntry(Register resumeIndex, Register scratch1,
                         Register scratch2);

  // Load the global's lexical environment.
  void loadGlobalLexicalEnvironment(Register dest);
  void pushGlobalLexicalEnvironmentValue(ValueOperand scratch);

  // Load the |this|-value from the global's lexical environment.
  void loadGlobalThisValue(ValueOperand dest);

  void prepareVMCall();

  void storeFrameSizeAndPushDescriptor(uint32_t frameBaseSize, uint32_t argSize,
                                       const Address& frameSizeAddr,
                                       Register scratch1, Register scratch2);

  enum CallVMPhase { POST_INITIALIZE, CHECK_OVER_RECURSED };
  bool callVMInternal(VMFunctionId id, CallVMPhase phase);

  template <typename Fn, Fn fn>
  bool callVM(CallVMPhase phase = POST_INITIALIZE);

  template <typename Fn, Fn fn>
  bool callVMNonOp(CallVMPhase phase = POST_INITIALIZE) {
    if (!callVM<Fn, fn>(phase)) {
      return false;
    }
    handler.markLastRetAddrEntryKind(RetAddrEntry::Kind::NonOpCallVM);
    return true;
  }

  // ifDebuggee should be a function emitting code for when the script is a
  // debuggee script. ifNotDebuggee (if present) is called to emit code for
  // non-debuggee scripts.
  template <typename F1, typename F2>
  MOZ_MUST_USE bool emitDebugInstrumentation(
      const F1& ifDebuggee, const mozilla::Maybe<F2>& ifNotDebuggee);
  template <typename F>
  MOZ_MUST_USE bool emitDebugInstrumentation(const F& ifDebuggee) {
    return emitDebugInstrumentation(ifDebuggee, mozilla::Maybe<F>());
  }

  // ifSet should be a function emitting code for when the script has |flag|
  // set. ifNotSet emits code for when the flag isn't set.
  template <typename F1, typename F2>
  MOZ_MUST_USE bool emitTestScriptFlag(JSScript::ImmutableFlags flag,
                                       const F1& ifSet, const F2& ifNotSet,
                                       Register scratch);

  // If |script->hasFlag(flag) == value|, execute the code emitted by |emit|.
  template <typename F>
  MOZ_MUST_USE bool emitTestScriptFlag(JSScript::ImmutableFlags flag,
                                       bool value, const F& emit,
                                       Register scratch);
  template <typename F>
  MOZ_MUST_USE bool emitTestScriptFlag(JSScript::MutableFlags flag, bool value,
                                       const F& emit, Register scratch);

  MOZ_MUST_USE bool emitCheckThis(ValueOperand val, bool reinit = false);
  void emitLoadReturnValue(ValueOperand val);

  MOZ_MUST_USE bool emitNextIC();
  MOZ_MUST_USE bool emitInterruptCheck();
  MOZ_MUST_USE bool emitWarmUpCounterIncrement();
  MOZ_MUST_USE bool emitTraceLoggerResume(Register script,
                                          AllocatableGeneralRegisterSet& regs);

#define EMIT_OP(op) bool emit_##op();
  OPCODE_LIST(EMIT_OP)
#undef EMIT_OP

  // JSOP_NEG, JSOP_BITNOT, JSOP_INC, JSOP_DEC
  MOZ_MUST_USE bool emitUnaryArith();

  // JSOP_BITXOR, JSOP_LSH, JSOP_ADD etc.
  MOZ_MUST_USE bool emitBinaryArith();

  // Handles JSOP_LT, JSOP_GT, and friends
  MOZ_MUST_USE bool emitCompare();

  // For a JOF_JUMP op, jumps to the op's jump target.
  void emitJump();

  // For a JOF_JUMP op, jumps to the op's jump target depending on the Value
  // in |val|.
  void emitTestBooleanTruthy(bool branchIfTrue, ValueOperand val);

  // Converts |val| to an index in the jump table and stores this in |dest|
  // or branches to the default pc if not int32 or out-of-range.
  void emitGetTableSwitchIndex(ValueOperand val, Register dest);

  // Jumps to the target of a table switch based on |key| and the
  // firstResumeIndex stored in JSOP_TABLESWITCH.
  void emitTableSwitchJump(Register key, Register scratch1, Register scratch2);

  MOZ_MUST_USE bool emitReturn();

  MOZ_MUST_USE bool emitToBoolean();
  MOZ_MUST_USE bool emitTest(bool branchIfTrue);
  MOZ_MUST_USE bool emitAndOr(bool branchIfTrue);

  MOZ_MUST_USE bool emitCall(JSOp op);
  MOZ_MUST_USE bool emitSpreadCall(JSOp op);

  MOZ_MUST_USE bool emitDelElem(bool strict);
  MOZ_MUST_USE bool emitDelProp(bool strict);
  MOZ_MUST_USE bool emitSetElemSuper(bool strict);
  MOZ_MUST_USE bool emitSetPropSuper(bool strict);

  MOZ_MUST_USE bool emitBindName(JSOp op);
  MOZ_MUST_USE bool emitDefLexical(JSOp op);

  // Try to bake in the result of GETGNAME/BINDGNAME instead of using an IC.
  // Return true if we managed to optimize the op.
  bool tryOptimizeGetGlobalName();
  bool tryOptimizeBindGlobalName();

  MOZ_MUST_USE bool emitInitPropGetterSetter();
  MOZ_MUST_USE bool emitInitElemGetterSetter();

  MOZ_MUST_USE bool emitFormalArgAccess(JSOp op);

  MOZ_MUST_USE bool emitThrowConstAssignment();
  MOZ_MUST_USE bool emitUninitializedLexicalCheck(const ValueOperand& val);

  MOZ_MUST_USE bool emitIsMagicValue();

  void getEnvironmentCoordinateObject(Register reg);
  Address getEnvironmentCoordinateAddressFromObject(Register objReg,
                                                    Register reg);
  Address getEnvironmentCoordinateAddress(Register reg);

  MOZ_MUST_USE bool emitPrologue();
  MOZ_MUST_USE bool emitEpilogue();
  MOZ_MUST_USE bool emitOutOfLinePostBarrierSlot();
  MOZ_MUST_USE bool emitStackCheck();
  MOZ_MUST_USE bool emitArgumentTypeChecks();
  MOZ_MUST_USE bool emitDebugPrologue();
  MOZ_MUST_USE bool initEnvironmentChain();

  MOZ_MUST_USE bool emitTraceLoggerEnter();
  MOZ_MUST_USE bool emitTraceLoggerExit();

  void emitIsDebuggeeCheck();
  void emitInitializeLocals();
  void emitPreInitEnvironmentChain(Register nonFunctionEnv);

  void emitProfilerEnterFrame();
  void emitProfilerExitFrame();
};

using RetAddrEntryVector = js::Vector<RetAddrEntry, 16, SystemAllocPolicy>;

// Interface used by BaselineCodeGen for BaselineCompiler.
class BaselineCompilerHandler {
  CompilerFrameInfo frame_;
  TempAllocator& alloc_;
  BytecodeAnalysis analysis_;
  FixedList<Label> labels_;
  RetAddrEntryVector retAddrEntries_;
  JSScript* script_;
  jsbytecode* pc_;

  // Index of the current ICEntry in the script's ICScript.
  uint32_t icEntryIndex_;

  bool compileDebugInstrumentation_;
  bool ionCompileable_;

 public:
  using FrameInfoT = CompilerFrameInfo;

  BaselineCompilerHandler(JSContext* cx, MacroAssembler& masm,
                          TempAllocator& alloc, JSScript* script);

  MOZ_MUST_USE bool init(JSContext* cx);

  CompilerFrameInfo& frame() { return frame_; }

  jsbytecode* pc() const { return pc_; }
  jsbytecode* maybePC() const { return pc_; }

  void moveToNextPC() { pc_ += GetBytecodeLength(pc_); }
  Label* labelOf(jsbytecode* pc) { return &labels_[script_->pcToOffset(pc)]; }

  bool isDefinitelyLastOp() const { return pc_ == script_->lastPC(); }

  JSScript* script() const { return script_; }
  JSScript* maybeScript() const { return script_; }

  JSFunction* function() const {
    // Not delazifying here is ok as the function is guaranteed to have
    // been delazified before compilation started.
    return script_->functionNonDelazifying();
  }
  JSFunction* maybeFunction() const { return function(); }

  ModuleObject* module() const { return script_->module(); }

  void setCompileDebugInstrumentation() { compileDebugInstrumentation_ = true; }
  bool compileDebugInstrumentation() const {
    return compileDebugInstrumentation_;
  }

  bool maybeIonCompileable() const { return ionCompileable_; }

  uint32_t icEntryIndex() const { return icEntryIndex_; }
  void moveToNextICEntry() { icEntryIndex_++; }

  BytecodeAnalysis& analysis() { return analysis_; }

  RetAddrEntryVector& retAddrEntries() { return retAddrEntries_; }

  MOZ_MUST_USE bool appendRetAddrEntry(JSContext* cx, RetAddrEntry::Kind kind,
                                       uint32_t retOffset) {
    if (!retAddrEntries_.emplaceBack(script_->pcToOffset(pc_), kind,
                                     CodeOffset(retOffset))) {
      ReportOutOfMemory(cx);
      return false;
    }
    return true;
  }
  void markLastRetAddrEntryKind(RetAddrEntry::Kind kind) {
    retAddrEntries_.back().setKind(kind);
  }

  // If a script has more |nslots| than this, then emit code to do an
  // early stack check.
  bool needsEarlyStackCheck() const {
    static const unsigned EARLY_STACK_CHECK_SLOT_COUNT = 128;
    return script()->nslots() > EARLY_STACK_CHECK_SLOT_COUNT;
  }

  JSObject* maybeNoCloneSingletonObject();
};

using BaselineCompilerCodeGen = BaselineCodeGen<BaselineCompilerHandler>;

class BaselineCompiler final : private BaselineCompilerCodeGen {
  // Stores the native code offset for a bytecode pc.
  struct PCMappingEntry {
    uint32_t pcOffset;
    uint32_t nativeOffset;
    PCMappingSlotInfo slotInfo;

    // If set, insert a PCMappingIndexEntry before encoding the
    // current entry.
    bool addIndexEntry;
  };

  js::Vector<PCMappingEntry, 16, SystemAllocPolicy> pcMappingEntries_;

  CodeOffset profilerPushToggleOffset_;

  CodeOffset traceLoggerScriptTextIdOffset_;

 public:
  BaselineCompiler(JSContext* cx, TempAllocator& alloc, JSScript* script);
  MOZ_MUST_USE bool init();

  MethodStatus compile();

  bool compileDebugInstrumentation() const {
    return handler.compileDebugInstrumentation();
  }
  void setCompileDebugInstrumentation() {
    handler.setCompileDebugInstrumentation();
  }

 private:
  PCMappingSlotInfo getStackTopSlotInfo() {
    MOZ_ASSERT(frame.numUnsyncedSlots() <= 2);
    switch (frame.numUnsyncedSlots()) {
      case 0:
        return PCMappingSlotInfo::MakeSlotInfo();
      case 1: {
        PCMappingSlotInfo::SlotLocation loc = frame.stackValueSlotLocation(-1);
        return PCMappingSlotInfo::MakeSlotInfo(loc);
      }
      case 2:
      default: {
        PCMappingSlotInfo::SlotLocation loc1 = frame.stackValueSlotLocation(-1);
        PCMappingSlotInfo::SlotLocation loc2 = frame.stackValueSlotLocation(-2);
        return PCMappingSlotInfo::MakeSlotInfo(loc1, loc2);
      }
    }
  }

  MethodStatus emitBody();

  MOZ_MUST_USE bool emitDebugTrap();

  MOZ_MUST_USE bool addPCMappingEntry(bool addIndexEntry);
};

// Interface used by BaselineCodeGen for BaselineInterpreterGenerator.
class BaselineInterpreterHandler {
  InterpreterFrameInfo frame_;
  Label interpretOp_;

 public:
  using FrameInfoT = InterpreterFrameInfo;

  explicit BaselineInterpreterHandler(JSContext* cx, MacroAssembler& masm);

  InterpreterFrameInfo& frame() { return frame_; }

  Label* interpretOpLabel() { return &interpretOp_; }

  // Interpreter doesn't know the script and pc statically.
  jsbytecode* maybePC() const { return nullptr; }
  bool isDefinitelyLastOp() const { return false; }
  JSScript* maybeScript() const { return nullptr; }
  JSFunction* maybeFunction() const { return nullptr; }

  // Interpreter doesn't need to keep track of RetAddrEntries, so these methods
  // are no-ops.
  MOZ_MUST_USE bool appendRetAddrEntry(JSContext* cx, RetAddrEntry::Kind kind,
                                       uint32_t retOffset) {
    return true;
  }
  void markLastRetAddrEntryKind(RetAddrEntry::Kind) {}

  bool maybeIonCompileable() const { return true; }

  // The interpreter always does the early stack check because we don't know the
  // frame size statically.
  bool needsEarlyStackCheck() const { return true; }

  JSObject* maybeNoCloneSingletonObject() { return nullptr; }
};

using BaselineInterpreterCodeGen = BaselineCodeGen<BaselineInterpreterHandler>;

class BaselineInterpreterGenerator final : private BaselineInterpreterCodeGen {
 public:
  explicit BaselineInterpreterGenerator(JSContext* cx);
};

}  // namespace jit
}  // namespace js

#endif /* jit_BaselineCompiler_h */