forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharguments.tq
More file actions
351 lines (311 loc) Β· 11.3 KB
/
arguments.tq
File metadata and controls
351 lines (311 loc) Β· 11.3 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
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
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
extern class JSArgumentsObject extends JSObject {}
type JSArgumentsObjectWithLength =
JSSloppyArgumentsObject|JSStrictArgumentsObject;
@export
macro IsJSArgumentsObjectWithLength(
implicit context: Context)(o: Object): bool {
return Is<JSArgumentsObjectWithLength>(o);
}
// Just a starting shape for JSObject; properties can move after initialization.
extern shape JSSloppyArgumentsObject extends JSArgumentsObject {
length: JSAny;
callee: JSAny;
}
// Just a starting shape for JSObject; properties can move after initialization.
extern shape JSStrictArgumentsObject extends JSArgumentsObject {
length: JSAny;
}
@cppObjectLayoutDefinition
class SloppyArgumentsElements extends FixedArrayBase {
context: Context;
arguments: FixedArray|NumberDictionary;
mapped_entries[length]: Smi|TheHole;
}
macro NewSloppyArgumentsElements<Iterator: type>(
length: Smi, context: Context, arguments: FixedArray,
it: Iterator): SloppyArgumentsElements {
return new
SloppyArgumentsElements{length, context, arguments, mapped_entries: ...it};
}
extern class AliasedArgumentsEntry extends Struct {
aliased_context_slot: Smi;
}
// TODO(danno): This should be a namespace {} once supported
namespace arguments {
macro NewJSStrictArgumentsObject(
implicit context: Context)(elements: FixedArray): JSStrictArgumentsObject {
const map = GetStrictArgumentsMap();
return new JSStrictArgumentsObject{
map,
properties_or_hash: kEmptyFixedArray,
elements,
length: elements.length
};
}
macro NewJSSloppyArgumentsObject(
implicit context: Context)(elements: FixedArrayBase,
callee: JSFunction): JSSloppyArgumentsObject {
const map = GetSloppyArgumentsMap();
return new JSSloppyArgumentsObject{
map,
properties_or_hash: kEmptyFixedArray,
elements,
length: elements.length,
callee
};
}
macro NewJSFastAliasedArgumentsObject(
implicit context: Context)(elements: FixedArrayBase, length: Smi,
callee: JSFunction): JSSloppyArgumentsObject {
// TODO(danno): FastAliasedArguments should really be a type for itself
const map = GetFastAliasedArgumentsMap();
return new JSSloppyArgumentsObject{
map,
properties_or_hash: kEmptyFixedArray,
elements,
length,
callee
};
}
struct ParameterMapIterator {
macro Next(): Smi labels NoMore {
if (this.currentIndex == this.endInterationIndex) goto NoMore;
this.currentIndex--;
return Convert<Smi>(this.currentIndex);
}
currentIndex: intptr;
const endInterationIndex: intptr;
}
macro NewParameterMapIterator(
context: Context, formalParameterCount: intptr,
mappedCount: intptr): ParameterMapIterator {
const flags = context.GetScopeInfo().flags;
let contextHeaderSize: intptr = ContextSlot::MIN_CONTEXT_SLOTS;
if (flags.has_context_extension_slot) ++contextHeaderSize;
if (flags.receiver_variable ==
FromConstexpr<VariableAllocationInfo>(VariableAllocationInfo::CONTEXT)) {
++contextHeaderSize;
}
// Copy the parameter slots and the holes in the arguments.
// We need to fill in mapped_count slots. They index the context,
// where parameters are stored in reverse order, at
// context_header_size .. context_header_size+argument_count-1
// The mapped parameter thus need to get indices
// context_header_size+parameter_count-1 ..
// context_header_size+argument_count-mapped_count
// We loop from right to left.
const afterLastContextIndex = contextHeaderSize + formalParameterCount;
const firstContextIndex = afterLastContextIndex - mappedCount;
return ParameterMapIterator{
currentIndex: afterLastContextIndex,
endInterationIndex: firstContextIndex
};
}
struct ParameterValueIterator {
macro Next(): Object labels NoMore() {
if (this.mapped_count != 0) {
this.mapped_count--;
return TheHole;
}
if (this.current == this.arguments.length) goto NoMore;
return this.arguments[this.current++];
}
mapped_count: intptr;
const arguments: Arguments;
current: intptr;
}
macro NewParameterValueIterator(mappedCount: intptr, arguments: Arguments):
ParameterValueIterator {
return ParameterValueIterator{
mapped_count: mappedCount,
arguments,
current: mappedCount
};
}
macro NewAllArguments(
implicit context: Context)(frame: FrameWithArguments,
argumentCount: intptr): JSArray {
const map = GetFastPackedElementsJSArrayMap();
const arguments = GetFrameArguments(frame, argumentCount);
const it = ArgumentsIterator{arguments, current: 0};
const elements = NewFixedArray(argumentCount, it);
return NewJSArray(map, elements);
}
macro NewRestArgumentsElements(
frame: FrameWithArguments, formalParameterCount: intptr,
argumentCount: intptr): FixedArray {
const length = (formalParameterCount >= argumentCount) ?
0 :
argumentCount - formalParameterCount;
const arguments = GetFrameArguments(frame, argumentCount);
const it = ArgumentsIterator{arguments, current: formalParameterCount};
return NewFixedArray(length, it);
}
macro NewRestArguments(
implicit context: Context)(info: FrameWithArgumentsInfo): JSArray {
const argumentCount = Convert<intptr>(info.argument_count);
const formalParameterCount = Convert<intptr>(info.formal_parameter_count);
const map = GetFastPackedElementsJSArrayMap();
const elements =
NewRestArgumentsElements(info.frame, formalParameterCount, argumentCount);
return NewJSArray(map, elements);
}
macro NewStrictArgumentsElements(
frame: FrameWithArguments, argumentCount: intptr): FixedArray {
const arguments = GetFrameArguments(frame, argumentCount);
const it = ArgumentsIterator{arguments, current: 0};
return NewFixedArray(argumentCount, it);
}
macro NewStrictArguments(
implicit context: Context)(
info: FrameWithArgumentsInfo): JSStrictArgumentsObject {
const argumentCount = Convert<intptr>(info.argument_count);
const elements = NewStrictArgumentsElements(info.frame, argumentCount);
return NewJSStrictArgumentsObject(elements);
}
macro NewSloppyArgumentsElements(
frame: FrameWithArguments, formalParameterCount: intptr,
argumentCount: intptr): FixedArray {
const arguments = GetFrameArguments(frame, argumentCount);
if (formalParameterCount == 0) {
const it = ArgumentsIterator{arguments, current: 0};
return NewFixedArray(argumentCount, it);
}
const mappedCount = IntPtrMin(formalParameterCount, argumentCount);
const it = NewParameterValueIterator(mappedCount, arguments);
return NewFixedArray(argumentCount, it);
}
macro NewSloppyArguments(
implicit context: Context)(info: FrameWithArgumentsInfo,
callee: JSFunction): JSSloppyArgumentsObject {
const argumentCount = Convert<intptr>(info.argument_count);
const formalParameterCount = Convert<intptr>(info.formal_parameter_count);
const parameterValues = arguments::NewSloppyArgumentsElements(
info.frame, formalParameterCount, argumentCount);
if (formalParameterCount == 0) {
return NewJSSloppyArgumentsObject(parameterValues, callee);
}
const mappedCount = IntPtrMin(formalParameterCount, argumentCount);
let paramIter =
NewParameterMapIterator(context, formalParameterCount, mappedCount);
const elementsLength = Convert<Smi>(mappedCount);
const elements = NewSloppyArgumentsElements(
elementsLength, context, parameterValues, paramIter);
const length = Convert<Smi>(argumentCount);
return NewJSFastAliasedArgumentsObject(elements, length, callee);
}
} // namespace arguments
@export
macro EmitFastNewAllArguments(
implicit context: Context)(frame: FrameWithArguments,
argc: intptr): JSArray {
return arguments::NewAllArguments(frame, argc);
}
@export
macro EmitFastNewRestArguments(
implicit context: Context)(_f: JSFunction): JSArray {
const info = GetFrameWithArgumentsInfo();
return arguments::NewRestArguments(info);
}
@export
macro EmitFastNewStrictArguments(
implicit context: Context)(_f: JSFunction): JSStrictArgumentsObject {
const info = GetFrameWithArgumentsInfo();
return arguments::NewStrictArguments(info);
}
@export
macro EmitFastNewSloppyArguments(
implicit context: Context)(f: JSFunction): JSSloppyArgumentsObject {
const info = GetFrameWithArgumentsInfo();
return arguments::NewSloppyArguments(info, f);
}
builtin NewSloppyArgumentsElements(
frame: FrameWithArguments, formalParameterCount: intptr,
argumentCount: Smi): FixedArray {
return arguments::NewSloppyArgumentsElements(
frame, formalParameterCount, Convert<intptr>(argumentCount));
}
builtin NewStrictArgumentsElements(
frame: FrameWithArguments, _formalParameterCount: intptr,
argumentCount: Smi): FixedArray {
return arguments::NewStrictArgumentsElements(
frame, Convert<intptr>(argumentCount));
}
builtin NewRestArgumentsElements(
frame: FrameWithArguments, formalParameterCount: intptr,
argumentCount: Smi): FixedArray {
return arguments::NewRestArgumentsElements(
frame, formalParameterCount, Convert<intptr>(argumentCount));
}
macro NewRestArgumentsFromArguments(
implicit context: Context)(arguments: Arguments, start: intptr): JSArray {
dcheck(start <= arguments.length);
const map = GetFastPackedElementsJSArrayMap();
const it = ArgumentsIterator{arguments, current: start};
const elements = NewFixedArray(arguments.length - start, it);
return NewJSArray(map, elements);
}
builtin FastNewSloppyArguments(
implicit context: Context)(f: JSFunction): JSSloppyArgumentsObject {
return EmitFastNewSloppyArguments(f);
}
builtin FastNewStrictArguments(
implicit context: Context)(f: JSFunction): JSStrictArgumentsObject {
return EmitFastNewStrictArguments(f);
}
builtin FastNewRestArguments(
implicit context: Context)(f: JSFunction): JSArray {
return EmitFastNewRestArguments(f);
}
macro AccessSloppyArgumentsCommon(
receiver: JSObject, keyObject: Object): &Object labels Bailout {
const key = Cast<Smi>(keyObject) otherwise Bailout;
const elements =
Cast<SloppyArgumentsElements>(receiver.elements) otherwise Bailout;
try {
if (OutOfBounds(key, elements.length)) goto Unmapped;
const mappedIndex = elements.mapped_entries[key];
typeswitch (mappedIndex) {
case (contextIndex: Smi): {
return &(elements.context.elements[contextIndex]);
}
case (TheHole): {
goto Unmapped;
}
}
} label Unmapped {
typeswitch (elements.arguments) {
case (NumberDictionary): {
goto Bailout;
}
case (arguments: FixedArray): {
if (OutOfBounds(key, arguments.length)) goto Bailout;
if (arguments.objects[key] == TheHole) goto Bailout;
return &(arguments.objects[key]);
}
}
}
}
@export
macro SloppyArgumentsLoad(
receiver: JSObject, keyObject: Object): JSAny labels Bailout {
return UnsafeCast<JSAny>(
*AccessSloppyArgumentsCommon(receiver, keyObject) otherwise Bailout);
}
@export
macro SloppyArgumentsHas(
receiver: JSObject, keyObject: Object): JSAny labels Bailout {
AccessSloppyArgumentsCommon(receiver, keyObject) otherwise Bailout;
return True;
}
@export
macro SloppyArgumentsStore(
receiver: JSObject, keyObject: Object, value: JSAny): JSAny labels Bailout {
let destination =
AccessSloppyArgumentsCommon(receiver, keyObject) otherwise Bailout;
*destination = value;
return value;
}