This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathBytecodeControlStructures.cpp
More file actions
168 lines (136 loc) · 4.78 KB
/
Copy pathBytecodeControlStructures.cpp
File metadata and controls
168 lines (136 loc) · 4.78 KB
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
/* -*- 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 "frontend/BytecodeControlStructures.h"
#include "frontend/BytecodeEmitter.h" // BytecodeEmitter
#include "frontend/EmitterScope.h" // EmitterScope
#include "frontend/SourceNotes.h" // SRC_*
#include "vm/Opcodes.h" // JSOP_*
using namespace js;
using namespace js::frontend;
using mozilla::Maybe;
NestableControl::NestableControl(BytecodeEmitter* bce, StatementKind kind)
: Nestable<NestableControl>(&bce->innermostNestableControl),
kind_(kind),
emitterScope_(bce->innermostEmitterScopeNoCheck()) {}
BreakableControl::BreakableControl(BytecodeEmitter* bce, StatementKind kind)
: NestableControl(bce, kind) {
MOZ_ASSERT(is<BreakableControl>());
}
bool BreakableControl::patchBreaks(BytecodeEmitter* bce) {
return bce->emitJumpTargetAndPatch(breaks);
}
LabelControl::LabelControl(BytecodeEmitter* bce, JSAtom* label,
BytecodeOffset startOffset)
: BreakableControl(bce, StatementKind::Label),
label_(bce->cx, label),
startOffset_(startOffset) {}
LoopControl::LoopControl(BytecodeEmitter* bce, StatementKind loopKind)
: BreakableControl(bce, loopKind), tdzCache_(bce) {
MOZ_ASSERT(is<LoopControl>());
LoopControl* enclosingLoop = findNearest<LoopControl>(enclosing());
stackDepth_ = bce->bytecodeSection().stackDepth();
loopDepth_ = enclosingLoop ? enclosingLoop->loopDepth_ + 1 : 1;
int loopSlots;
if (loopKind == StatementKind::Spread) {
// The iterator next method, the iterator, the result array, and
// the current array index are on the stack.
loopSlots = 4;
} else if (loopKind == StatementKind::ForOfLoop) {
// The iterator next method, the iterator, and the current value
// are on the stack.
loopSlots = 3;
} else if (loopKind == StatementKind::ForInLoop) {
// The iterator and the current value are on the stack.
loopSlots = 2;
} else {
// No additional loop values are on the stack.
loopSlots = 0;
}
MOZ_ASSERT(loopSlots <= stackDepth_);
if (enclosingLoop) {
canIonOsr_ = (enclosingLoop->canIonOsr_ &&
stackDepth_ == enclosingLoop->stackDepth_ + loopSlots);
} else {
canIonOsr_ = stackDepth_ == loopSlots;
}
}
bool LoopControl::emitContinueTarget(BytecodeEmitter* bce) {
if (!bce->emitJumpTarget(&continueTarget_)) {
return false;
}
return true;
}
bool LoopControl::emitSpecialBreakForDone(BytecodeEmitter* bce) {
// This doesn't pop stack values, nor handle any other controls.
// Should be called on the toplevel of the loop.
MOZ_ASSERT(bce->bytecodeSection().stackDepth() == stackDepth_);
MOZ_ASSERT(bce->innermostNestableControl == this);
if (!bce->newSrcNote(SRC_BREAK)) {
return false;
}
if (!bce->emitJump(JSOP_GOTO, &breaks)) {
return false;
}
return true;
}
bool LoopControl::emitEntryJump(BytecodeEmitter* bce) {
if (!bce->emitJump(JSOP_GOTO, &entryJump_)) {
return false;
}
return true;
}
bool LoopControl::emitLoopHead(BytecodeEmitter* bce,
const Maybe<uint32_t>& nextPos) {
if (nextPos) {
if (!bce->updateSourceCoordNotes(*nextPos)) {
return false;
}
}
head_ = {bce->bytecodeSection().offset()};
BytecodeOffset off;
if (!bce->emitJumpTargetOp(JSOP_LOOPHEAD, &off)) {
return false;
}
return true;
}
bool LoopControl::emitLoopEntry(BytecodeEmitter* bce,
const Maybe<uint32_t>& nextPos) {
if (nextPos) {
if (!bce->updateSourceCoordNotes(*nextPos)) {
return false;
}
}
JumpTarget entry = {bce->bytecodeSection().offset()};
bce->patchJumpsToTarget(entryJump_, entry);
MOZ_ASSERT(loopDepth_ > 0);
BytecodeOffset off;
if (!bce->emitJumpTargetOp(JSOP_LOOPENTRY, &off)) {
return false;
}
SetLoopEntryDepthHintAndFlags(bce->bytecodeSection().code(off), loopDepth_,
canIonOsr_);
return true;
}
bool LoopControl::emitLoopEnd(BytecodeEmitter* bce, JSOp op) {
JumpList beq;
if (!bce->emitBackwardJump(op, head_, &beq, &breakTarget_)) {
return false;
}
loopEndOffset_ = beq.offset;
return true;
}
bool LoopControl::patchBreaksAndContinues(BytecodeEmitter* bce) {
MOZ_ASSERT(continueTarget_.offset.valid());
if (!patchBreaks(bce)) {
return false;
}
bce->patchJumpsToTarget(continues, continueTarget_);
return true;
}
TryFinallyControl::TryFinallyControl(BytecodeEmitter* bce, StatementKind kind)
: NestableControl(bce, kind), emittingSubroutine_(false) {
MOZ_ASSERT(is<TryFinallyControl>());
}