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
|
/* -*- 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/ElemOpEmitter.h"
#include "frontend/BytecodeEmitter.h"
#include "frontend/SharedContext.h"
#include "vm/Opcodes.h"
#include "vm/ThrowMsgKind.h" // ThrowMsgKind
using namespace js;
using namespace js::frontend;
ElemOpEmitter::ElemOpEmitter(BytecodeEmitter* bce, Kind kind, ObjKind objKind,
NameVisibility visibility)
: bce_(bce), kind_(kind), objKind_(objKind), visibility_(visibility) {
// Can't access private names of super!
MOZ_ASSERT_IF(visibility == NameVisibility::Private,
objKind != ObjKind::Super);
}
bool ElemOpEmitter::prepareForObj() {
MOZ_ASSERT(state_ == State::Start);
#ifdef DEBUG
state_ = State::Obj;
#endif
return true;
}
bool ElemOpEmitter::prepareForKey() {
MOZ_ASSERT(state_ == State::Obj);
if (!isSuper() && isIncDec()) {
if (!bce_->emit1(JSOp::CheckObjCoercible)) {
// [stack] OBJ
return false;
}
}
if (isCall()) {
if (!bce_->emit1(JSOp::Dup)) {
// [stack] # if Super
// [stack] THIS THIS
// [stack] # otherwise
// [stack] OBJ OBJ
return false;
}
}
#ifdef DEBUG
state_ = State::Key;
#endif
return true;
}
bool ElemOpEmitter::emitPrivateGuard() {
MOZ_ASSERT(state_ == State::Key);
if (!isPrivate()) {
return true;
}
if (isPropInit()) {
// [stack] OBJ KEY
if (!bce_->emitCheckPrivateField(ThrowCondition::ThrowHas,
ThrowMsgKind::PrivateDoubleInit)) {
// [stack] OBJ KEY BOOL
return false;
}
} else {
if (!bce_->emitCheckPrivateField(ThrowCondition::ThrowHasNot,
isPrivateGet()
? ThrowMsgKind::MissingPrivateOnGet
: ThrowMsgKind::MissingPrivateOnSet)) {
// [stack] OBJ KEY BOOL
return false;
}
}
// CheckPrivate leaves the result of the HasOwnCheck on the stack. Pop it off.
return bce_->emit1(JSOp::Pop);
// [stack] OBJ KEY
}
bool ElemOpEmitter::emitGet() {
MOZ_ASSERT(state_ == State::Key);
if (isIncDec() || isCompoundAssignment()) {
if (!bce_->emit1(JSOp::ToPropertyKey)) {
// [stack] # if Super
// [stack] THIS KEY
// [stack] # otherwise
// [stack] OBJ KEY
return false;
}
}
if (!emitPrivateGuard()) {
return false;
}
if (isSuper()) {
if (!bce_->emitSuperBase()) {
// [stack] THIS? THIS KEY SUPERBASE
return false;
}
}
if (isIncDec() || isCompoundAssignment()) {
if (isSuper()) {
if (!bce_->emitDupAt(2, 3)) {
// [stack] THIS KEY SUPERBASE THIS KEY SUPERBASE
return false;
}
} else {
if (!bce_->emit1(JSOp::Dup2)) {
// [stack] OBJ KEY OBJ KEY
return false;
}
}
}
JSOp op;
if (isSuper()) {
op = JSOp::GetElemSuper;
} else {
op = JSOp::GetElem;
}
if (!bce_->emitElemOpBase(op, ShouldInstrument::Yes)) {
// [stack] # if Get
// [stack] ELEM
// [stack] # if Call
// [stack] THIS ELEM
// [stack] # if Inc/Dec/Assignment, with Super
// [stack] THIS KEY SUPERBASE ELEM
// [stack] # if Inc/Dec/Assignment, other
// [stack] OBJ KEY ELEM
return false;
}
if (isCall()) {
if (!bce_->emit1(JSOp::Swap)) {
// [stack] ELEM THIS
return false;
}
}
#ifdef DEBUG
state_ = State::Get;
#endif
return true;
}
bool ElemOpEmitter::prepareForRhs() {
MOZ_ASSERT(isSimpleAssignment() || isPropInit() || isCompoundAssignment());
MOZ_ASSERT_IF(isSimpleAssignment() || isPropInit(), state_ == State::Key);
MOZ_ASSERT_IF(isCompoundAssignment(), state_ == State::Get);
if (isSimpleAssignment() || isPropInit()) {
if (!emitPrivateGuard()) {
return false;
}
// For CompoundAssignment, SuperBase is already emitted by emitGet.
if (isSuper()) {
if (!bce_->emitSuperBase()) {
// [stack] THIS KEY SUPERBASE
return false;
}
}
}
#ifdef DEBUG
state_ = State::Rhs;
#endif
return true;
}
bool ElemOpEmitter::skipObjAndKeyAndRhs() {
MOZ_ASSERT(state_ == State::Start);
MOZ_ASSERT(isSimpleAssignment() || isPropInit());
#ifdef DEBUG
state_ = State::Rhs;
#endif
return true;
}
bool ElemOpEmitter::emitDelete() {
MOZ_ASSERT(state_ == State::Key);
MOZ_ASSERT(isDelete());
MOZ_ASSERT(!isPrivate());
if (isSuper()) {
if (!bce_->emit1(JSOp::ToPropertyKey)) {
// [stack] THIS KEY
return false;
}
if (!bce_->emitSuperBase()) {
// [stack] THIS KEY SUPERBASE
return false;
}
// Unconditionally throw when attempting to delete a super-reference.
if (!bce_->emit2(JSOp::ThrowMsg, uint8_t(ThrowMsgKind::CantDeleteSuper))) {
// [stack] THIS KEY SUPERBASE
return false;
}
// Another wrinkle: Balance the stack from the emitter's point of view.
// Execution will not reach here, as the last bytecode threw.
if (!bce_->emitPopN(2)) {
// [stack] THIS
return false;
}
} else {
MOZ_ASSERT(!isPrivate());
JSOp op = bce_->sc->strict() ? JSOp::StrictDelElem : JSOp::DelElem;
if (!bce_->emitElemOpBase(op)) {
// SUCCEEDED
return false;
}
}
#ifdef DEBUG
state_ = State::Delete;
#endif
return true;
}
bool ElemOpEmitter::emitAssignment() {
MOZ_ASSERT(isSimpleAssignment() || isPropInit() || isCompoundAssignment());
MOZ_ASSERT(state_ == State::Rhs);
MOZ_ASSERT_IF(isPropInit(), !isSuper());
JSOp setOp = isPropInit() ? JSOp::InitElem
: isSuper() ? bce_->sc->strict() ? JSOp::StrictSetElemSuper
: JSOp::SetElemSuper
: bce_->sc->strict() ? JSOp::StrictSetElem
: JSOp::SetElem;
if (!bce_->emitElemOpBase(setOp, ShouldInstrument::Yes)) {
// [stack] ELEM
return false;
}
#ifdef DEBUG
state_ = State::Assignment;
#endif
return true;
}
bool ElemOpEmitter::emitIncDec() {
MOZ_ASSERT(state_ == State::Key);
MOZ_ASSERT(isIncDec());
if (!emitGet()) {
// [stack] ... ELEM
return false;
}
MOZ_ASSERT(state_ == State::Get);
JSOp incOp = isInc() ? JSOp::Inc : JSOp::Dec;
if (!bce_->emit1(JSOp::ToNumeric)) {
// [stack] ... N
return false;
}
if (isPostIncDec()) {
// [stack] OBJ KEY SUPERBASE? N
if (!bce_->emit1(JSOp::Dup)) {
// [stack] ... N N
return false;
}
if (!bce_->emit2(JSOp::Unpick, 3 + isSuper())) {
// [stack] N OBJ KEY SUPERBASE? N
return false;
}
}
if (!bce_->emit1(incOp)) {
// [stack] ... N+1
return false;
}
JSOp setOp =
isSuper()
? (bce_->sc->strict() ? JSOp::StrictSetElemSuper : JSOp::SetElemSuper)
: (bce_->sc->strict() ? JSOp::StrictSetElem : JSOp::SetElem);
if (!bce_->emitElemOpBase(setOp, ShouldInstrument::Yes)) {
// [stack] N? N+1
return false;
}
if (isPostIncDec()) {
if (!bce_->emit1(JSOp::Pop)) {
// [stack] N
return false;
}
}
#ifdef DEBUG
state_ = State::IncDec;
#endif
return true;
}
|