blob: 11b1a7eeb02f44145239f084f74ce66dfc2af2a4 [file] [log] [blame]
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001// Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28// This file relies on the fact that the following declarations have been made
29//
30// in runtime.js:
31// const $Object = global.Object;
32// const $Boolean = global.Boolean;
33// const $Number = global.Number;
34// const $Function = global.Function;
35// const $Array = global.Array;
36// const $NaN = 0/0;
37//
38// in math.js:
39// const $floor = MathFloor
40
41const $isNaN = GlobalIsNaN;
42const $isFinite = GlobalIsFinite;
43
44// ----------------------------------------------------------------------------
45
46
47// Helper function used to install functions on objects.
48function InstallFunctions(object, attributes, functions) {
49 if (functions.length >= 8) {
50 %OptimizeObjectForAddingMultipleProperties(object, functions.length >> 1);
51 }
52 for (var i = 0; i < functions.length; i += 2) {
53 var key = functions[i];
54 var f = functions[i + 1];
55 %FunctionSetName(f, key);
Steve Block6ded16b2010-05-10 14:33:55 +010056 %FunctionRemovePrototype(f);
Steve Blocka7e24c12009-10-30 11:49:00 +000057 %SetProperty(object, key, f, attributes);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000058 %SetNativeFlag(f);
Steve Blocka7e24c12009-10-30 11:49:00 +000059 }
Andrei Popescu402d9372010-02-26 13:31:12 +000060 %ToFastProperties(object);
Steve Blocka7e24c12009-10-30 11:49:00 +000061}
62
Ben Murdoch589d6972011-11-30 16:04:58 +000063// Prevents changes to the prototype of a built-infunction.
64// The "prototype" property of the function object is made non-configurable,
65// and the prototype object is made non-extensible. The latter prevents
66// changing the __proto__ property.
67function SetUpLockedPrototype(constructor, fields, methods) {
68 %CheckIsBootstrapping();
69 var prototype = constructor.prototype;
70 // Install functions first, because this function is used to initialize
71 // PropertyDescriptor itself.
72 var property_count = (methods.length >> 1) + (fields ? fields.length : 0);
73 if (property_count >= 4) {
74 %OptimizeObjectForAddingMultipleProperties(prototype, property_count);
75 }
76 if (fields) {
77 for (var i = 0; i < fields.length; i++) {
78 %SetProperty(prototype, fields[i], void 0, DONT_ENUM | DONT_DELETE);
79 }
80 }
81 for (var i = 0; i < methods.length; i += 2) {
82 var key = methods[i];
83 var f = methods[i + 1];
84 %SetProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
85 %SetNativeFlag(f);
86 }
87 prototype.__proto__ = null;
88 %ToFastProperties(prototype);
89}
90
91
Steve Blocka7e24c12009-10-30 11:49:00 +000092// ----------------------------------------------------------------------------
93
94
95// ECMA 262 - 15.1.4
96function GlobalIsNaN(number) {
Ben Murdoch589d6972011-11-30 16:04:58 +000097 if (!IS_NUMBER(number)) number = NonNumberToNumber(number);
98 return NUMBER_IS_NAN(number);
Steve Blocka7e24c12009-10-30 11:49:00 +000099}
100
101
102// ECMA 262 - 15.1.5
103function GlobalIsFinite(number) {
Ben Murdoch086aeea2011-05-13 15:57:08 +0100104 if (!IS_NUMBER(number)) number = NonNumberToNumber(number);
Ben Murdoch589d6972011-11-30 16:04:58 +0000105 return NUMBER_IS_FINITE(number);
Steve Blocka7e24c12009-10-30 11:49:00 +0000106}
107
108
109// ECMA-262 - 15.1.2.2
110function GlobalParseInt(string, radix) {
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100111 if (IS_UNDEFINED(radix) || radix === 10 || radix === 0) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000112 // Some people use parseInt instead of Math.floor. This
113 // optimization makes parseInt on a Smi 12 times faster (60ns
114 // vs 800ns). The following optimization makes parseInt on a
115 // non-Smi number 9 times faster (230ns vs 2070ns). Together
116 // they make parseInt on a string 1.4% slower (274ns vs 270ns).
117 if (%_IsSmi(string)) return string;
118 if (IS_NUMBER(string) &&
Steve Blockd0582a62009-12-15 09:54:21 +0000119 ((0.01 < string && string < 1e9) ||
120 (-1e9 < string && string < -0.01))) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000121 // Truncate number.
122 return string | 0;
123 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000124 string = TO_STRING_INLINE(string);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000125 radix = radix | 0;
Steve Blocka7e24c12009-10-30 11:49:00 +0000126 } else {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000127 // The spec says ToString should be evaluated before ToInt32.
128 string = TO_STRING_INLINE(string);
Steve Blocka7e24c12009-10-30 11:49:00 +0000129 radix = TO_INT32(radix);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000130 if (!(radix == 0 || (2 <= radix && radix <= 36))) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000131 return $NaN;
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000132 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000133 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000134
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100135 if (%_HasCachedArrayIndex(string) &&
136 (radix == 0 || radix == 10)) {
137 return %_GetCachedArrayIndex(string);
138 }
139 return %StringParseInt(string, radix);
Steve Blocka7e24c12009-10-30 11:49:00 +0000140}
141
142
143// ECMA-262 - 15.1.2.3
144function GlobalParseFloat(string) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100145 string = TO_STRING_INLINE(string);
146 if (%_HasCachedArrayIndex(string)) return %_GetCachedArrayIndex(string);
147 return %StringParseFloat(string);
Steve Blocka7e24c12009-10-30 11:49:00 +0000148}
149
150
151function GlobalEval(x) {
152 if (!IS_STRING(x)) return x;
153
154 var global_receiver = %GlobalReceiver(global);
Steve Blocka7e24c12009-10-30 11:49:00 +0000155 var global_is_detached = (global === global_receiver);
156
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000157 // For consistency with JSC we require the global object passed to
158 // eval to be the global object from which 'eval' originated. This
159 // is not mandated by the spec.
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000160 // We only throw if the global has been detached, since we need the
161 // receiver as this-value for the call.
162 if (global_is_detached) {
163 throw new $EvalError('The "this" value passed to eval must ' +
Steve Blocka7e24c12009-10-30 11:49:00 +0000164 'be the global object from which eval originated');
165 }
166
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800167 var f = %CompileString(x);
Steve Blocka7e24c12009-10-30 11:49:00 +0000168 if (!IS_FUNCTION(f)) return f;
169
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000170 return %_CallFunction(global_receiver, f);
Steve Blocka7e24c12009-10-30 11:49:00 +0000171}
172
173
Steve Blocka7e24c12009-10-30 11:49:00 +0000174// ----------------------------------------------------------------------------
175
Ben Murdoch589d6972011-11-30 16:04:58 +0000176// Set up global object.
177function SetUpGlobal() {
178 %CheckIsBootstrapping();
Steve Blocka7e24c12009-10-30 11:49:00 +0000179 // ECMA 262 - 15.1.1.1.
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000180 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +0000181
182 // ECMA-262 - 15.1.1.2.
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000183 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE | READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +0000184
185 // ECMA-262 - 15.1.1.3.
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000186 %SetProperty(global, "undefined", void 0,
187 DONT_ENUM | DONT_DELETE | READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +0000188
Ben Murdoch589d6972011-11-30 16:04:58 +0000189 // Set up non-enumerable function on the global object.
Steve Blocka7e24c12009-10-30 11:49:00 +0000190 InstallFunctions(global, DONT_ENUM, $Array(
191 "isNaN", GlobalIsNaN,
192 "isFinite", GlobalIsFinite,
193 "parseInt", GlobalParseInt,
194 "parseFloat", GlobalParseFloat,
Steve Block053d10c2011-06-13 19:13:29 +0100195 "eval", GlobalEval
Steve Blocka7e24c12009-10-30 11:49:00 +0000196 ));
197}
198
Ben Murdoch589d6972011-11-30 16:04:58 +0000199SetUpGlobal();
Steve Blocka7e24c12009-10-30 11:49:00 +0000200
201// ----------------------------------------------------------------------------
202// Boolean (first part of definition)
203
204
205%SetCode($Boolean, function(x) {
206 if (%_IsConstructCall()) {
207 %_SetValueOf(this, ToBoolean(x));
208 } else {
209 return ToBoolean(x);
210 }
211});
212
213%FunctionSetPrototype($Boolean, new $Boolean(false));
214
215%SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM);
216
217// ----------------------------------------------------------------------------
218// Object
219
220$Object.prototype.constructor = $Object;
221
222// ECMA-262 - 15.2.4.2
223function ObjectToString() {
Ben Murdoch257744e2011-11-30 15:57:28 +0000224 if (IS_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
225 return '[object Undefined]';
226 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000227 if (IS_NULL(this)) return '[object Null]';
Leon Clarked91b9f72010-01-27 17:25:45 +0000228 return "[object " + %_ClassOf(ToObject(this)) + "]";
Steve Blocka7e24c12009-10-30 11:49:00 +0000229}
230
231
232// ECMA-262 - 15.2.4.3
233function ObjectToLocaleString() {
Ben Murdoch257744e2011-11-30 15:57:28 +0000234 if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
235 throw MakeTypeError("called_on_null_or_undefined",
236 ["Object.prototype.toLocaleString"]);
237 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000238 return this.toString();
239}
240
241
242// ECMA-262 - 15.2.4.4
243function ObjectValueOf() {
Leon Clarked91b9f72010-01-27 17:25:45 +0000244 return ToObject(this);
Steve Blocka7e24c12009-10-30 11:49:00 +0000245}
246
247
248// ECMA-262 - 15.2.4.5
249function ObjectHasOwnProperty(V) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000250 if (%IsJSProxy(this)) {
251 var handler = %GetHandler(this);
252 return CallTrap1(handler, "hasOwn", DerivedHasOwnTrap, TO_STRING_INLINE(V));
253 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000254 return %HasLocalProperty(TO_OBJECT_INLINE(this), TO_STRING_INLINE(V));
Steve Blocka7e24c12009-10-30 11:49:00 +0000255}
256
257
258// ECMA-262 - 15.2.4.6
259function ObjectIsPrototypeOf(V) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000260 if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
261 throw MakeTypeError("called_on_null_or_undefined",
262 ["Object.prototype.isPrototypeOf"]);
263 }
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100264 if (!IS_SPEC_OBJECT(V)) return false;
Steve Blocka7e24c12009-10-30 11:49:00 +0000265 return %IsInPrototypeChain(this, V);
266}
267
268
269// ECMA-262 - 15.2.4.6
270function ObjectPropertyIsEnumerable(V) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000271 var P = ToString(V);
272 if (%IsJSProxy(this)) {
273 var desc = GetOwnProperty(this, P);
274 return IS_UNDEFINED(desc) ? false : desc.isEnumerable();
275 }
276 return %IsPropertyEnumerable(ToObject(this), P);
Steve Blocka7e24c12009-10-30 11:49:00 +0000277}
278
279
280// Extensions for providing property getters and setters.
281function ObjectDefineGetter(name, fun) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000282 var receiver = this;
283 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
284 receiver = %GlobalReceiver(global);
Steve Blocka7e24c12009-10-30 11:49:00 +0000285 }
Ben Murdoch589d6972011-11-30 16:04:58 +0000286 if (!IS_SPEC_FUNCTION(fun)) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000287 throw new $TypeError(
288 'Object.prototype.__defineGetter__: Expecting function');
Steve Blocka7e24c12009-10-30 11:49:00 +0000289 }
Steve Block44f0eee2011-05-26 01:26:41 +0100290 var desc = new PropertyDescriptor();
291 desc.setGet(fun);
292 desc.setEnumerable(true);
293 desc.setConfigurable(true);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000294 DefineOwnProperty(ToObject(receiver), ToString(name), desc, false);
Steve Blocka7e24c12009-10-30 11:49:00 +0000295}
296
297
298function ObjectLookupGetter(name) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000299 var receiver = this;
300 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
301 receiver = %GlobalReceiver(global);
Steve Blocka7e24c12009-10-30 11:49:00 +0000302 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000303 return %LookupAccessor(ToObject(receiver), ToString(name), GETTER);
Steve Blocka7e24c12009-10-30 11:49:00 +0000304}
305
306
307function ObjectDefineSetter(name, fun) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000308 var receiver = this;
309 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
310 receiver = %GlobalReceiver(global);
Steve Blocka7e24c12009-10-30 11:49:00 +0000311 }
Ben Murdoch589d6972011-11-30 16:04:58 +0000312 if (!IS_SPEC_FUNCTION(fun)) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000313 throw new $TypeError(
314 'Object.prototype.__defineSetter__: Expecting function');
315 }
Steve Block44f0eee2011-05-26 01:26:41 +0100316 var desc = new PropertyDescriptor();
317 desc.setSet(fun);
318 desc.setEnumerable(true);
319 desc.setConfigurable(true);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000320 DefineOwnProperty(ToObject(receiver), ToString(name), desc, false);
Steve Blocka7e24c12009-10-30 11:49:00 +0000321}
322
323
324function ObjectLookupSetter(name) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000325 var receiver = this;
326 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
327 receiver = %GlobalReceiver(global);
Steve Blocka7e24c12009-10-30 11:49:00 +0000328 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000329 return %LookupAccessor(ToObject(receiver), ToString(name), SETTER);
Steve Blocka7e24c12009-10-30 11:49:00 +0000330}
331
332
333function ObjectKeys(obj) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000334 if (!IS_SPEC_OBJECT(obj)) {
Leon Clarkee46be812010-01-19 14:06:41 +0000335 throw MakeTypeError("obj_ctor_property_non_object", ["keys"]);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000336 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000337 if (%IsJSProxy(obj)) {
338 var handler = %GetHandler(obj);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000339 var names = CallTrap0(handler, "keys", DerivedKeysTrap);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000340 return ToStringArray(names);
341 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000342 return %LocalKeys(obj);
343}
344
345
Leon Clarkee46be812010-01-19 14:06:41 +0000346// ES5 8.10.1.
347function IsAccessorDescriptor(desc) {
348 if (IS_UNDEFINED(desc)) return false;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000349 return desc.hasGetter() || desc.hasSetter();
Leon Clarkee46be812010-01-19 14:06:41 +0000350}
351
352
353// ES5 8.10.2.
354function IsDataDescriptor(desc) {
355 if (IS_UNDEFINED(desc)) return false;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000356 return desc.hasValue() || desc.hasWritable();
Leon Clarkee46be812010-01-19 14:06:41 +0000357}
358
359
360// ES5 8.10.3.
361function IsGenericDescriptor(desc) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000362 if (IS_UNDEFINED(desc)) return false;
Leon Clarkee46be812010-01-19 14:06:41 +0000363 return !(IsAccessorDescriptor(desc) || IsDataDescriptor(desc));
364}
365
366
367function IsInconsistentDescriptor(desc) {
368 return IsAccessorDescriptor(desc) && IsDataDescriptor(desc);
369}
370
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000371
Leon Clarkee46be812010-01-19 14:06:41 +0000372// ES5 8.10.4
373function FromPropertyDescriptor(desc) {
Andrei Popescu31002712010-02-23 13:46:05 +0000374 if (IS_UNDEFINED(desc)) return desc;
Ben Murdoch257744e2011-11-30 15:57:28 +0000375
Leon Clarkee46be812010-01-19 14:06:41 +0000376 if (IsDataDescriptor(desc)) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000377 return { value: desc.getValue(),
378 writable: desc.isWritable(),
379 enumerable: desc.isEnumerable(),
380 configurable: desc.isConfigurable() };
Leon Clarkee46be812010-01-19 14:06:41 +0000381 }
Ben Murdoch257744e2011-11-30 15:57:28 +0000382 // Must be an AccessorDescriptor then. We never return a generic descriptor.
383 return { get: desc.getGet(),
384 set: desc.getSet(),
385 enumerable: desc.isEnumerable(),
386 configurable: desc.isConfigurable() };
Leon Clarkee46be812010-01-19 14:06:41 +0000387}
388
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000389
390// Harmony Proxies
391function FromGenericPropertyDescriptor(desc) {
392 if (IS_UNDEFINED(desc)) return desc;
393 var obj = new $Object();
394
395 if (desc.hasValue()) {
396 %IgnoreAttributesAndSetProperty(obj, "value", desc.getValue(), NONE);
397 }
398 if (desc.hasWritable()) {
399 %IgnoreAttributesAndSetProperty(obj, "writable", desc.isWritable(), NONE);
400 }
401 if (desc.hasGetter()) {
402 %IgnoreAttributesAndSetProperty(obj, "get", desc.getGet(), NONE);
403 }
404 if (desc.hasSetter()) {
405 %IgnoreAttributesAndSetProperty(obj, "set", desc.getSet(), NONE);
406 }
407 if (desc.hasEnumerable()) {
408 %IgnoreAttributesAndSetProperty(obj, "enumerable",
409 desc.isEnumerable(), NONE);
410 }
411 if (desc.hasConfigurable()) {
412 %IgnoreAttributesAndSetProperty(obj, "configurable",
413 desc.isConfigurable(), NONE);
414 }
415 return obj;
416}
417
418
Leon Clarkee46be812010-01-19 14:06:41 +0000419// ES5 8.10.5.
420function ToPropertyDescriptor(obj) {
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100421 if (!IS_SPEC_OBJECT(obj)) {
Leon Clarkee46be812010-01-19 14:06:41 +0000422 throw MakeTypeError("property_desc_object", [obj]);
423 }
424 var desc = new PropertyDescriptor();
425
426 if ("enumerable" in obj) {
427 desc.setEnumerable(ToBoolean(obj.enumerable));
428 }
429
Leon Clarkee46be812010-01-19 14:06:41 +0000430 if ("configurable" in obj) {
431 desc.setConfigurable(ToBoolean(obj.configurable));
432 }
433
434 if ("value" in obj) {
435 desc.setValue(obj.value);
436 }
437
438 if ("writable" in obj) {
439 desc.setWritable(ToBoolean(obj.writable));
440 }
441
442 if ("get" in obj) {
443 var get = obj.get;
Ben Murdoch589d6972011-11-30 16:04:58 +0000444 if (!IS_UNDEFINED(get) && !IS_SPEC_FUNCTION(get)) {
Leon Clarkee46be812010-01-19 14:06:41 +0000445 throw MakeTypeError("getter_must_be_callable", [get]);
446 }
447 desc.setGet(get);
448 }
449
450 if ("set" in obj) {
451 var set = obj.set;
Ben Murdoch589d6972011-11-30 16:04:58 +0000452 if (!IS_UNDEFINED(set) && !IS_SPEC_FUNCTION(set)) {
Leon Clarkee46be812010-01-19 14:06:41 +0000453 throw MakeTypeError("setter_must_be_callable", [set]);
454 }
455 desc.setSet(set);
456 }
457
458 if (IsInconsistentDescriptor(desc)) {
459 throw MakeTypeError("value_and_accessor", [obj]);
460 }
461 return desc;
462}
463
464
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000465// For Harmony proxies.
466function ToCompletePropertyDescriptor(obj) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000467 var desc = ToPropertyDescriptor(obj);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000468 if (IsGenericDescriptor(desc) || IsDataDescriptor(desc)) {
469 if (!desc.hasValue()) desc.setValue(void 0);
470 if (!desc.hasWritable()) desc.setWritable(false);
471 } else {
472 // Is accessor descriptor.
473 if (!desc.hasGetter()) desc.setGet(void 0);
474 if (!desc.hasSetter()) desc.setSet(void 0);
475 }
476 if (!desc.hasEnumerable()) desc.setEnumerable(false);
477 if (!desc.hasConfigurable()) desc.setConfigurable(false);
478 return desc;
479}
480
481
Leon Clarkee46be812010-01-19 14:06:41 +0000482function PropertyDescriptor() {
483 // Initialize here so they are all in-object and have the same map.
484 // Default values from ES5 8.6.1.
485 this.value_ = void 0;
486 this.hasValue_ = false;
487 this.writable_ = false;
488 this.hasWritable_ = false;
489 this.enumerable_ = false;
Andrei Popescu31002712010-02-23 13:46:05 +0000490 this.hasEnumerable_ = false;
Leon Clarkee46be812010-01-19 14:06:41 +0000491 this.configurable_ = false;
Andrei Popescu31002712010-02-23 13:46:05 +0000492 this.hasConfigurable_ = false;
Leon Clarkee46be812010-01-19 14:06:41 +0000493 this.get_ = void 0;
494 this.hasGetter_ = false;
495 this.set_ = void 0;
496 this.hasSetter_ = false;
497}
498
Ben Murdoch589d6972011-11-30 16:04:58 +0000499SetUpLockedPrototype(PropertyDescriptor, $Array(
500 "value_",
501 "hasValue_",
502 "writable_",
503 "hasWritable_",
504 "enumerable_",
505 "hasEnumerable_",
506 "configurable_",
507 "hasConfigurable_",
508 "get_",
509 "hasGetter_",
510 "set_",
511 "hasSetter_"
512 ), $Array(
513 "toString", function() {
514 return "[object PropertyDescriptor]";
515 },
516 "setValue", function(value) {
517 this.value_ = value;
518 this.hasValue_ = true;
519 },
520 "getValue", function() {
521 return this.value_;
522 },
523 "hasValue", function() {
524 return this.hasValue_;
525 },
526 "setEnumerable", function(enumerable) {
527 this.enumerable_ = enumerable;
528 this.hasEnumerable_ = true;
529 },
530 "isEnumerable", function () {
531 return this.enumerable_;
532 },
533 "hasEnumerable", function() {
534 return this.hasEnumerable_;
535 },
536 "setWritable", function(writable) {
537 this.writable_ = writable;
538 this.hasWritable_ = true;
539 },
540 "isWritable", function() {
541 return this.writable_;
542 },
543 "hasWritable", function() {
544 return this.hasWritable_;
545 },
546 "setConfigurable", function(configurable) {
547 this.configurable_ = configurable;
548 this.hasConfigurable_ = true;
549 },
550 "hasConfigurable", function() {
551 return this.hasConfigurable_;
552 },
553 "isConfigurable", function() {
554 return this.configurable_;
555 },
556 "setGet", function(get) {
557 this.get_ = get;
558 this.hasGetter_ = true;
559 },
560 "getGet", function() {
561 return this.get_;
562 },
563 "hasGetter", function() {
564 return this.hasGetter_;
565 },
566 "setSet", function(set) {
567 this.set_ = set;
568 this.hasSetter_ = true;
569 },
570 "getSet", function() {
571 return this.set_;
572 },
573 "hasSetter", function() {
574 return this.hasSetter_;
575 }));
Andrei Popescu31002712010-02-23 13:46:05 +0000576
577
Steve Block1e0659c2011-05-24 12:43:12 +0100578// Converts an array returned from Runtime_GetOwnProperty to an actual
579// property descriptor. For a description of the array layout please
580// see the runtime.cc file.
581function ConvertDescriptorArrayToDescriptor(desc_array) {
Steve Block44f0eee2011-05-26 01:26:41 +0100582 if (desc_array === false) {
Steve Block1e0659c2011-05-24 12:43:12 +0100583 throw 'Internal error: invalid desc_array';
Steve Block103cc402011-02-16 13:27:44 +0000584 }
Steve Block1e0659c2011-05-24 12:43:12 +0100585
586 if (IS_UNDEFINED(desc_array)) {
587 return void 0;
588 }
589
590 var desc = new PropertyDescriptor();
591 // This is an accessor.
592 if (desc_array[IS_ACCESSOR_INDEX]) {
593 desc.setGet(desc_array[GETTER_INDEX]);
594 desc.setSet(desc_array[SETTER_INDEX]);
595 } else {
596 desc.setValue(desc_array[VALUE_INDEX]);
597 desc.setWritable(desc_array[WRITABLE_INDEX]);
598 }
599 desc.setEnumerable(desc_array[ENUMERABLE_INDEX]);
600 desc.setConfigurable(desc_array[CONFIGURABLE_INDEX]);
Leon Clarkee46be812010-01-19 14:06:41 +0000601
602 return desc;
603}
604
605
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000606// For Harmony proxies.
607function GetTrap(handler, name, defaultTrap) {
608 var trap = handler[name];
609 if (IS_UNDEFINED(trap)) {
610 if (IS_UNDEFINED(defaultTrap)) {
611 throw MakeTypeError("handler_trap_missing", [handler, name]);
612 }
613 trap = defaultTrap;
Ben Murdoch589d6972011-11-30 16:04:58 +0000614 } else if (!IS_SPEC_FUNCTION(trap)) {
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000615 throw MakeTypeError("handler_trap_must_be_callable", [handler, name]);
616 }
617 return trap;
618}
619
620
621function CallTrap0(handler, name, defaultTrap) {
622 return %_CallFunction(handler, GetTrap(handler, name, defaultTrap));
623}
624
625
626function CallTrap1(handler, name, defaultTrap, x) {
627 return %_CallFunction(handler, x, GetTrap(handler, name, defaultTrap));
628}
629
630
631function CallTrap2(handler, name, defaultTrap, x, y) {
632 return %_CallFunction(handler, x, y, GetTrap(handler, name, defaultTrap));
633}
634
635
Steve Block1e0659c2011-05-24 12:43:12 +0100636// ES5 section 8.12.1.
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000637function GetOwnProperty(obj, v) {
638 var p = ToString(v);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000639 if (%IsJSProxy(obj)) {
640 var handler = %GetHandler(obj);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000641 var descriptor = CallTrap1(handler, "getOwnPropertyDescriptor", void 0, p);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000642 if (IS_UNDEFINED(descriptor)) return descriptor;
643 var desc = ToCompletePropertyDescriptor(descriptor);
644 if (!desc.isConfigurable()) {
645 throw MakeTypeError("proxy_prop_not_configurable",
646 [handler, "getOwnPropertyDescriptor", p, descriptor]);
647 }
648 return desc;
649 }
650
Steve Block1e0659c2011-05-24 12:43:12 +0100651 // GetOwnProperty returns an array indexed by the constants
652 // defined in macros.py.
653 // If p is not a property on obj undefined is returned.
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000654 var props = %GetOwnProperty(ToObject(obj), ToString(v));
Steve Block1e0659c2011-05-24 12:43:12 +0100655
656 // A false value here means that access checks failed.
Steve Block44f0eee2011-05-26 01:26:41 +0100657 if (props === false) return void 0;
Steve Block1e0659c2011-05-24 12:43:12 +0100658
659 return ConvertDescriptorArrayToDescriptor(props);
660}
661
662
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000663// Harmony proxies.
664function DefineProxyProperty(obj, p, attributes, should_throw) {
665 var handler = %GetHandler(obj);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000666 var result = CallTrap2(handler, "defineProperty", void 0, p, attributes);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000667 if (!ToBoolean(result)) {
668 if (should_throw) {
669 throw MakeTypeError("handler_returned_false",
670 [handler, "defineProperty"]);
671 } else {
672 return false;
673 }
674 }
675 return true;
676}
677
678
Steve Block6ded16b2010-05-10 14:33:55 +0100679// ES5 8.12.9.
Leon Clarkee46be812010-01-19 14:06:41 +0000680function DefineOwnProperty(obj, p, desc, should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000681 if (%IsJSProxy(obj)) {
682 var attributes = FromGenericPropertyDescriptor(desc);
683 return DefineProxyProperty(obj, p, attributes, should_throw);
684 }
685
Steve Block1e0659c2011-05-24 12:43:12 +0100686 var current_or_access = %GetOwnProperty(ToObject(obj), ToString(p));
687 // A false value here means that access checks failed.
Steve Block44f0eee2011-05-26 01:26:41 +0100688 if (current_or_access === false) return void 0;
Steve Block1e0659c2011-05-24 12:43:12 +0100689
690 var current = ConvertDescriptorArrayToDescriptor(current_or_access);
Andrei Popescu31002712010-02-23 13:46:05 +0000691 var extensible = %IsExtensible(ToObject(obj));
692
693 // Error handling according to spec.
694 // Step 3
Steve Block44f0eee2011-05-26 01:26:41 +0100695 if (IS_UNDEFINED(current) && !extensible) {
696 if (should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000697 throw MakeTypeError("define_disallowed", [p]);
Steve Block44f0eee2011-05-26 01:26:41 +0100698 } else {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000699 return false;
Steve Block44f0eee2011-05-26 01:26:41 +0100700 }
701 }
Andrei Popescu31002712010-02-23 13:46:05 +0000702
Steve Block1e0659c2011-05-24 12:43:12 +0100703 if (!IS_UNDEFINED(current)) {
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100704 // Step 5 and 6
Steve Block1e0659c2011-05-24 12:43:12 +0100705 if ((IsGenericDescriptor(desc) ||
706 IsDataDescriptor(desc) == IsDataDescriptor(current)) &&
707 (!desc.hasEnumerable() ||
708 SameValue(desc.isEnumerable(), current.isEnumerable())) &&
Ben Murdochf87a2032010-10-22 12:50:53 +0100709 (!desc.hasConfigurable() ||
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100710 SameValue(desc.isConfigurable(), current.isConfigurable())) &&
Ben Murdochf87a2032010-10-22 12:50:53 +0100711 (!desc.hasWritable() ||
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100712 SameValue(desc.isWritable(), current.isWritable())) &&
713 (!desc.hasValue() ||
714 SameValue(desc.getValue(), current.getValue())) &&
715 (!desc.hasGetter() ||
716 SameValue(desc.getGet(), current.getGet())) &&
717 (!desc.hasSetter() ||
718 SameValue(desc.getSet(), current.getSet()))) {
719 return true;
720 }
Steve Block1e0659c2011-05-24 12:43:12 +0100721 if (!current.isConfigurable()) {
722 // Step 7
723 if (desc.isConfigurable() ||
724 (desc.hasEnumerable() &&
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100725 desc.isEnumerable() != current.isEnumerable())) {
Steve Block44f0eee2011-05-26 01:26:41 +0100726 if (should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000727 throw MakeTypeError("redefine_disallowed", [p]);
Steve Block44f0eee2011-05-26 01:26:41 +0100728 } else {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000729 return false;
Steve Block44f0eee2011-05-26 01:26:41 +0100730 }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100731 }
Steve Block1e0659c2011-05-24 12:43:12 +0100732 // Step 8
733 if (!IsGenericDescriptor(desc)) {
734 // Step 9a
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100735 if (IsDataDescriptor(current) != IsDataDescriptor(desc)) {
Steve Block44f0eee2011-05-26 01:26:41 +0100736 if (should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000737 throw MakeTypeError("redefine_disallowed", [p]);
Steve Block44f0eee2011-05-26 01:26:41 +0100738 } else {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000739 return false;
Steve Block44f0eee2011-05-26 01:26:41 +0100740 }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100741 }
Steve Block1e0659c2011-05-24 12:43:12 +0100742 // Step 10a
743 if (IsDataDescriptor(current) && IsDataDescriptor(desc)) {
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100744 if (!current.isWritable() && desc.isWritable()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100745 if (should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000746 throw MakeTypeError("redefine_disallowed", [p]);
Steve Block44f0eee2011-05-26 01:26:41 +0100747 } else {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000748 return false;
Steve Block44f0eee2011-05-26 01:26:41 +0100749 }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100750 }
Steve Block1e0659c2011-05-24 12:43:12 +0100751 if (!current.isWritable() && desc.hasValue() &&
752 !SameValue(desc.getValue(), current.getValue())) {
Steve Block44f0eee2011-05-26 01:26:41 +0100753 if (should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000754 throw MakeTypeError("redefine_disallowed", [p]);
Steve Block44f0eee2011-05-26 01:26:41 +0100755 } else {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000756 return false;
Steve Block44f0eee2011-05-26 01:26:41 +0100757 }
Steve Block1e0659c2011-05-24 12:43:12 +0100758 }
759 }
760 // Step 11
761 if (IsAccessorDescriptor(desc) && IsAccessorDescriptor(current)) {
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100762 if (desc.hasSetter() && !SameValue(desc.getSet(), current.getSet())) {
Steve Block44f0eee2011-05-26 01:26:41 +0100763 if (should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000764 throw MakeTypeError("redefine_disallowed", [p]);
Steve Block44f0eee2011-05-26 01:26:41 +0100765 } else {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000766 return false;
Steve Block44f0eee2011-05-26 01:26:41 +0100767 }
Steve Block1e0659c2011-05-24 12:43:12 +0100768 }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100769 if (desc.hasGetter() && !SameValue(desc.getGet(),current.getGet())) {
Steve Block44f0eee2011-05-26 01:26:41 +0100770 if (should_throw) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000771 throw MakeTypeError("redefine_disallowed", [p]);
Steve Block44f0eee2011-05-26 01:26:41 +0100772 } else {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000773 return false;
Steve Block44f0eee2011-05-26 01:26:41 +0100774 }
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100775 }
Steve Block1e0659c2011-05-24 12:43:12 +0100776 }
Andrei Popescu31002712010-02-23 13:46:05 +0000777 }
778 }
Andrei Popescu31002712010-02-23 13:46:05 +0000779 }
780
Steve Block6ded16b2010-05-10 14:33:55 +0100781 // Send flags - enumerable and configurable are common - writable is
Andrei Popescu31002712010-02-23 13:46:05 +0000782 // only send to the data descriptor.
783 // Take special care if enumerable and configurable is not defined on
784 // desc (we need to preserve the existing values from current).
785 var flag = NONE;
786 if (desc.hasEnumerable()) {
787 flag |= desc.isEnumerable() ? 0 : DONT_ENUM;
788 } else if (!IS_UNDEFINED(current)) {
789 flag |= current.isEnumerable() ? 0 : DONT_ENUM;
Leon Clarkee46be812010-01-19 14:06:41 +0000790 } else {
Andrei Popescu31002712010-02-23 13:46:05 +0000791 flag |= DONT_ENUM;
792 }
793
794 if (desc.hasConfigurable()) {
795 flag |= desc.isConfigurable() ? 0 : DONT_DELETE;
796 } else if (!IS_UNDEFINED(current)) {
797 flag |= current.isConfigurable() ? 0 : DONT_DELETE;
798 } else
799 flag |= DONT_DELETE;
800
Steve Block1e0659c2011-05-24 12:43:12 +0100801 if (IsDataDescriptor(desc) ||
802 (IsGenericDescriptor(desc) &&
803 (IS_UNDEFINED(current) || IsDataDescriptor(current)))) {
804 // There are 3 cases that lead here:
805 // Step 4a - defining a new data property.
806 // Steps 9b & 12 - replacing an existing accessor property with a data
807 // property.
808 // Step 12 - updating an existing data property with a data or generic
809 // descriptor.
810
Leon Clarkef7060e22010-06-03 12:02:55 +0100811 if (desc.hasWritable()) {
812 flag |= desc.isWritable() ? 0 : READ_ONLY;
813 } else if (!IS_UNDEFINED(current)) {
814 flag |= current.isWritable() ? 0 : READ_ONLY;
815 } else {
816 flag |= READ_ONLY;
817 }
Steve Block1e0659c2011-05-24 12:43:12 +0100818
Ben Murdochb0fe1622011-05-05 13:52:32 +0100819 var value = void 0; // Default value is undefined.
820 if (desc.hasValue()) {
821 value = desc.getValue();
Steve Block1e0659c2011-05-24 12:43:12 +0100822 } else if (!IS_UNDEFINED(current) && IsDataDescriptor(current)) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100823 value = current.getValue();
824 }
Steve Block1e0659c2011-05-24 12:43:12 +0100825
Ben Murdochb0fe1622011-05-05 13:52:32 +0100826 %DefineOrRedefineDataProperty(obj, p, value, flag);
Steve Block1e0659c2011-05-24 12:43:12 +0100827 } else if (IsGenericDescriptor(desc)) {
828 // Step 12 - updating an existing accessor property with generic
829 // descriptor. Changing flags only.
830 %DefineOrRedefineAccessorProperty(obj, p, GETTER, current.getGet(), flag);
Andrei Popescu31002712010-02-23 13:46:05 +0000831 } else {
Steve Block1e0659c2011-05-24 12:43:12 +0100832 // There are 3 cases that lead here:
833 // Step 4b - defining a new accessor property.
834 // Steps 9c & 12 - replacing an existing data property with an accessor
835 // property.
836 // Step 12 - updating an existing accessor property with an accessor
837 // descriptor.
838 if (desc.hasGetter()) {
839 %DefineOrRedefineAccessorProperty(obj, p, GETTER, desc.getGet(), flag);
Andrei Popescu31002712010-02-23 13:46:05 +0000840 }
Steve Block1e0659c2011-05-24 12:43:12 +0100841 if (desc.hasSetter()) {
Andrei Popescu31002712010-02-23 13:46:05 +0000842 %DefineOrRedefineAccessorProperty(obj, p, SETTER, desc.getSet(), flag);
843 }
Leon Clarkee46be812010-01-19 14:06:41 +0000844 }
845 return true;
846}
847
848
849// ES5 section 15.2.3.2.
850function ObjectGetPrototypeOf(obj) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000851 if (!IS_SPEC_OBJECT(obj)) {
Leon Clarkee46be812010-01-19 14:06:41 +0000852 throw MakeTypeError("obj_ctor_property_non_object", ["getPrototypeOf"]);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000853 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000854 return %GetPrototype(obj);
Leon Clarkee46be812010-01-19 14:06:41 +0000855}
856
857
Steve Block6ded16b2010-05-10 14:33:55 +0100858// ES5 section 15.2.3.3
Leon Clarkee46be812010-01-19 14:06:41 +0000859function ObjectGetOwnPropertyDescriptor(obj, p) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000860 if (!IS_SPEC_OBJECT(obj)) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000861 throw MakeTypeError("obj_ctor_property_non_object",
862 ["getOwnPropertyDescriptor"]);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000863 }
Leon Clarkee46be812010-01-19 14:06:41 +0000864 var desc = GetOwnProperty(obj, p);
865 return FromPropertyDescriptor(desc);
866}
867
868
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000869// For Harmony proxies
870function ToStringArray(obj, trap) {
871 if (!IS_SPEC_OBJECT(obj)) {
872 throw MakeTypeError("proxy_non_object_prop_names", [obj, trap]);
873 }
874 var n = ToUint32(obj.length);
875 var array = new $Array(n);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000876 var names = {}; // TODO(rossberg): use sets once they are ready.
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000877 for (var index = 0; index < n; index++) {
878 var s = ToString(obj[index]);
879 if (s in names) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000880 throw MakeTypeError("proxy_repeated_prop_name", [obj, trap, s]);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000881 }
882 array[index] = s;
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000883 names[s] = 0;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000884 }
885 return array;
886}
887
888
Leon Clarkee46be812010-01-19 14:06:41 +0000889// ES5 section 15.2.3.4.
890function ObjectGetOwnPropertyNames(obj) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000891 if (!IS_SPEC_OBJECT(obj)) {
892 throw MakeTypeError("obj_ctor_property_non_object",
893 ["getOwnPropertyNames"]);
894 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000895 // Special handling for proxies.
896 if (%IsJSProxy(obj)) {
897 var handler = %GetHandler(obj);
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000898 var names = CallTrap0(handler, "getOwnPropertyNames", void 0);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000899 return ToStringArray(names, "getOwnPropertyNames");
900 }
901
Leon Clarkee46be812010-01-19 14:06:41 +0000902 // Find all the indexed properties.
903
904 // Get the local element names.
905 var propertyNames = %GetLocalElementNames(obj);
906
907 // Get names for indexed interceptor properties.
908 if (%GetInterceptorInfo(obj) & 1) {
909 var indexedInterceptorNames =
910 %GetIndexedInterceptorElementNames(obj);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000911 if (indexedInterceptorNames) {
Leon Clarkee46be812010-01-19 14:06:41 +0000912 propertyNames = propertyNames.concat(indexedInterceptorNames);
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000913 }
Leon Clarkee46be812010-01-19 14:06:41 +0000914 }
915
916 // Find all the named properties.
917
918 // Get the local property names.
919 propertyNames = propertyNames.concat(%GetLocalPropertyNames(obj));
920
921 // Get names for named interceptor properties if any.
922
923 if (%GetInterceptorInfo(obj) & 2) {
924 var namedInterceptorNames =
925 %GetNamedInterceptorPropertyNames(obj);
926 if (namedInterceptorNames) {
927 propertyNames = propertyNames.concat(namedInterceptorNames);
928 }
929 }
930
Steve Block8defd9f2010-07-08 12:39:36 +0100931 // Property names are expected to be unique strings.
932 var propertySet = {};
933 var j = 0;
934 for (var i = 0; i < propertyNames.length; ++i) {
935 var name = ToString(propertyNames[i]);
936 // We need to check for the exact property value since for intrinsic
937 // properties like toString if(propertySet["toString"]) will always
938 // succeed.
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000939 if (propertySet[name] === true) {
Steve Block8defd9f2010-07-08 12:39:36 +0100940 continue;
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000941 }
Steve Block8defd9f2010-07-08 12:39:36 +0100942 propertySet[name] = true;
943 propertyNames[j++] = name;
944 }
945 propertyNames.length = j;
Andrei Popescu402d9372010-02-26 13:31:12 +0000946
Leon Clarkee46be812010-01-19 14:06:41 +0000947 return propertyNames;
948}
949
950
951// ES5 section 15.2.3.5.
952function ObjectCreate(proto, properties) {
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100953 if (!IS_SPEC_OBJECT(proto) && proto !== null) {
Leon Clarkee46be812010-01-19 14:06:41 +0000954 throw MakeTypeError("proto_object_or_null", [proto]);
955 }
956 var obj = new $Object();
957 obj.__proto__ = proto;
958 if (!IS_UNDEFINED(properties)) ObjectDefineProperties(obj, properties);
959 return obj;
960}
961
962
Andrei Popescu31002712010-02-23 13:46:05 +0000963// ES5 section 15.2.3.6.
964function ObjectDefineProperty(obj, p, attributes) {
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100965 if (!IS_SPEC_OBJECT(obj)) {
Andrei Popescu31002712010-02-23 13:46:05 +0000966 throw MakeTypeError("obj_ctor_property_non_object", ["defineProperty"]);
Leon Clarkef7060e22010-06-03 12:02:55 +0100967 }
Andrei Popescu31002712010-02-23 13:46:05 +0000968 var name = ToString(p);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000969 if (%IsJSProxy(obj)) {
970 // Clone the attributes object for protection.
971 // TODO(rossberg): not spec'ed yet, so not sure if this should involve
972 // non-own properties as it does (or non-enumerable ones, as it doesn't?).
Ben Murdoch589d6972011-11-30 16:04:58 +0000973 var attributesClone = {};
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000974 for (var a in attributes) {
975 attributesClone[a] = attributes[a];
976 }
977 DefineProxyProperty(obj, name, attributesClone, true);
978 // The following would implement the spec as in the current proposal,
979 // but after recent comments on es-discuss, is most likely obsolete.
980 /*
981 var defineObj = FromGenericPropertyDescriptor(desc);
982 var names = ObjectGetOwnPropertyNames(attributes);
983 var standardNames =
984 {value: 0, writable: 0, get: 0, set: 0, enumerable: 0, configurable: 0};
985 for (var i = 0; i < names.length; i++) {
986 var N = names[i];
987 if (!(%HasLocalProperty(standardNames, N))) {
988 var attr = GetOwnProperty(attributes, N);
989 DefineOwnProperty(descObj, N, attr, true);
990 }
991 }
992 // This is really confusing the types, but it is what the proxies spec
993 // currently requires:
994 desc = descObj;
995 */
996 } else {
997 var desc = ToPropertyDescriptor(attributes);
998 DefineOwnProperty(obj, name, desc, true);
999 }
Andrei Popescu31002712010-02-23 13:46:05 +00001000 return obj;
1001}
1002
1003
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001004function GetOwnEnumerablePropertyNames(properties) {
1005 var names = new InternalArray();
1006 for (var key in properties) {
1007 if (%HasLocalProperty(properties, key)) {
1008 names.push(key);
1009 }
1010 }
1011 return names;
1012}
1013
1014
Andrei Popescu31002712010-02-23 13:46:05 +00001015// ES5 section 15.2.3.7.
Leon Clarkee46be812010-01-19 14:06:41 +00001016function ObjectDefineProperties(obj, properties) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001017 if (!IS_SPEC_OBJECT(obj)) {
Andrei Popescu31002712010-02-23 13:46:05 +00001018 throw MakeTypeError("obj_ctor_property_non_object", ["defineProperties"]);
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001019 }
Leon Clarkee46be812010-01-19 14:06:41 +00001020 var props = ToObject(properties);
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001021 var names = GetOwnEnumerablePropertyNames(props);
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001022 var descriptors = new InternalArray();
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001023 for (var i = 0; i < names.length; i++) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001024 descriptors.push(ToPropertyDescriptor(props[names[i]]));
1025 }
1026 for (var i = 0; i < names.length; i++) {
1027 DefineOwnProperty(obj, names[i], descriptors[i], true);
Leon Clarkee46be812010-01-19 14:06:41 +00001028 }
Andrei Popescu31002712010-02-23 13:46:05 +00001029 return obj;
Leon Clarkee46be812010-01-19 14:06:41 +00001030}
1031
1032
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001033// Harmony proxies.
1034function ProxyFix(obj) {
1035 var handler = %GetHandler(obj);
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001036 var props = CallTrap0(handler, "fix", void 0);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001037 if (IS_UNDEFINED(props)) {
1038 throw MakeTypeError("handler_returned_undefined", [handler, "fix"]);
1039 }
Ben Murdoch589d6972011-11-30 16:04:58 +00001040
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001041 if (%IsJSFunctionProxy(obj)) {
Ben Murdoch589d6972011-11-30 16:04:58 +00001042 var callTrap = %GetCallTrap(obj);
1043 var constructTrap = %GetConstructTrap(obj);
1044 var code = DelegateCallAndConstruct(callTrap, constructTrap);
1045 %Fix(obj); // becomes a regular function
1046 %SetCode(obj, code);
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001047 // TODO(rossberg): What about length and other properties? Not specified.
1048 // We just put in some half-reasonable defaults for now.
1049 var prototype = new $Object();
1050 $Object.defineProperty(prototype, "constructor",
1051 {value: obj, writable: true, enumerable: false, configurable: true});
1052 // TODO(v8:1530): defineProperty does not handle prototype and length.
1053 %FunctionSetPrototype(obj, prototype);
1054 obj.length = 0;
Ben Murdoch589d6972011-11-30 16:04:58 +00001055 } else {
1056 %Fix(obj);
1057 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001058 ObjectDefineProperties(obj, props);
1059}
1060
1061
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001062// ES5 section 15.2.3.8.
1063function ObjectSeal(obj) {
1064 if (!IS_SPEC_OBJECT(obj)) {
1065 throw MakeTypeError("obj_ctor_property_non_object", ["seal"]);
1066 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001067 if (%IsJSProxy(obj)) {
1068 ProxyFix(obj);
1069 }
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001070 var names = ObjectGetOwnPropertyNames(obj);
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001071 for (var i = 0; i < names.length; i++) {
1072 var name = names[i];
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001073 var desc = GetOwnProperty(obj, name);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001074 if (desc.isConfigurable()) {
1075 desc.setConfigurable(false);
1076 DefineOwnProperty(obj, name, desc, true);
1077 }
Ben Murdochf87a2032010-10-22 12:50:53 +01001078 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001079 %PreventExtensions(obj);
1080 return obj;
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001081}
1082
1083
1084// ES5 section 15.2.3.9.
1085function ObjectFreeze(obj) {
1086 if (!IS_SPEC_OBJECT(obj)) {
1087 throw MakeTypeError("obj_ctor_property_non_object", ["freeze"]);
1088 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001089 if (%IsJSProxy(obj)) {
1090 ProxyFix(obj);
1091 }
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001092 var names = ObjectGetOwnPropertyNames(obj);
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001093 for (var i = 0; i < names.length; i++) {
1094 var name = names[i];
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001095 var desc = GetOwnProperty(obj, name);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001096 if (desc.isWritable() || desc.isConfigurable()) {
1097 if (IsDataDescriptor(desc)) desc.setWritable(false);
1098 desc.setConfigurable(false);
1099 DefineOwnProperty(obj, name, desc, true);
1100 }
Ben Murdochf87a2032010-10-22 12:50:53 +01001101 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001102 %PreventExtensions(obj);
1103 return obj;
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001104}
1105
1106
Steve Block8defd9f2010-07-08 12:39:36 +01001107// ES5 section 15.2.3.10
1108function ObjectPreventExtension(obj) {
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001109 if (!IS_SPEC_OBJECT(obj)) {
Steve Block8defd9f2010-07-08 12:39:36 +01001110 throw MakeTypeError("obj_ctor_property_non_object", ["preventExtension"]);
1111 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001112 if (%IsJSProxy(obj)) {
1113 ProxyFix(obj);
1114 }
Steve Block8defd9f2010-07-08 12:39:36 +01001115 %PreventExtensions(obj);
1116 return obj;
1117}
1118
1119
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001120// ES5 section 15.2.3.11
1121function ObjectIsSealed(obj) {
1122 if (!IS_SPEC_OBJECT(obj)) {
1123 throw MakeTypeError("obj_ctor_property_non_object", ["isSealed"]);
1124 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001125 if (%IsJSProxy(obj)) {
1126 return false;
1127 }
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001128 var names = ObjectGetOwnPropertyNames(obj);
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001129 for (var i = 0; i < names.length; i++) {
1130 var name = names[i];
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001131 var desc = GetOwnProperty(obj, name);
1132 if (desc.isConfigurable()) return false;
1133 }
1134 if (!ObjectIsExtensible(obj)) {
1135 return true;
1136 }
1137 return false;
1138}
1139
1140
1141// ES5 section 15.2.3.12
1142function ObjectIsFrozen(obj) {
1143 if (!IS_SPEC_OBJECT(obj)) {
1144 throw MakeTypeError("obj_ctor_property_non_object", ["isFrozen"]);
1145 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001146 if (%IsJSProxy(obj)) {
1147 return false;
1148 }
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001149 var names = ObjectGetOwnPropertyNames(obj);
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001150 for (var i = 0; i < names.length; i++) {
1151 var name = names[i];
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001152 var desc = GetOwnProperty(obj, name);
1153 if (IsDataDescriptor(desc) && desc.isWritable()) return false;
1154 if (desc.isConfigurable()) return false;
1155 }
1156 if (!ObjectIsExtensible(obj)) {
1157 return true;
1158 }
1159 return false;
1160}
1161
1162
Steve Block8defd9f2010-07-08 12:39:36 +01001163// ES5 section 15.2.3.13
1164function ObjectIsExtensible(obj) {
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001165 if (!IS_SPEC_OBJECT(obj)) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001166 throw MakeTypeError("obj_ctor_property_non_object", ["isExtensible"]);
1167 }
1168 if (%IsJSProxy(obj)) {
1169 return true;
Steve Block8defd9f2010-07-08 12:39:36 +01001170 }
1171 return %IsExtensible(obj);
1172}
1173
1174
Steve Blocka7e24c12009-10-30 11:49:00 +00001175%SetCode($Object, function(x) {
1176 if (%_IsConstructCall()) {
1177 if (x == null) return this;
1178 return ToObject(x);
1179 } else {
1180 if (x == null) return { };
1181 return ToObject(x);
1182 }
1183});
1184
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001185%SetExpectedNumberOfProperties($Object, 4);
Steve Blocka7e24c12009-10-30 11:49:00 +00001186
1187// ----------------------------------------------------------------------------
Ben Murdoch589d6972011-11-30 16:04:58 +00001188// Object
Steve Blocka7e24c12009-10-30 11:49:00 +00001189
Ben Murdoch589d6972011-11-30 16:04:58 +00001190function SetUpObject() {
1191 %CheckIsBootstrapping();
1192 // Set Up non-enumerable functions on the Object.prototype object.
Steve Blocka7e24c12009-10-30 11:49:00 +00001193 InstallFunctions($Object.prototype, DONT_ENUM, $Array(
1194 "toString", ObjectToString,
1195 "toLocaleString", ObjectToLocaleString,
1196 "valueOf", ObjectValueOf,
1197 "hasOwnProperty", ObjectHasOwnProperty,
1198 "isPrototypeOf", ObjectIsPrototypeOf,
1199 "propertyIsEnumerable", ObjectPropertyIsEnumerable,
1200 "__defineGetter__", ObjectDefineGetter,
1201 "__lookupGetter__", ObjectLookupGetter,
1202 "__defineSetter__", ObjectDefineSetter,
1203 "__lookupSetter__", ObjectLookupSetter
1204 ));
1205 InstallFunctions($Object, DONT_ENUM, $Array(
Leon Clarkee46be812010-01-19 14:06:41 +00001206 "keys", ObjectKeys,
1207 "create", ObjectCreate,
Andrei Popescu31002712010-02-23 13:46:05 +00001208 "defineProperty", ObjectDefineProperty,
1209 "defineProperties", ObjectDefineProperties,
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001210 "freeze", ObjectFreeze,
Leon Clarkee46be812010-01-19 14:06:41 +00001211 "getPrototypeOf", ObjectGetPrototypeOf,
1212 "getOwnPropertyDescriptor", ObjectGetOwnPropertyDescriptor,
Steve Block8defd9f2010-07-08 12:39:36 +01001213 "getOwnPropertyNames", ObjectGetOwnPropertyNames,
1214 "isExtensible", ObjectIsExtensible,
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001215 "isFrozen", ObjectIsFrozen,
1216 "isSealed", ObjectIsSealed,
1217 "preventExtensions", ObjectPreventExtension,
1218 "seal", ObjectSeal
Steve Blocka7e24c12009-10-30 11:49:00 +00001219 ));
1220}
1221
Ben Murdoch589d6972011-11-30 16:04:58 +00001222SetUpObject();
Steve Blocka7e24c12009-10-30 11:49:00 +00001223
1224// ----------------------------------------------------------------------------
1225// Boolean
1226
1227function BooleanToString() {
1228 // NOTE: Both Boolean objects and values can enter here as
1229 // 'this'. This is not as dictated by ECMA-262.
Ben Murdoch086aeea2011-05-13 15:57:08 +01001230 var b = this;
1231 if (!IS_BOOLEAN(b)) {
1232 if (!IS_BOOLEAN_WRAPPER(b)) {
1233 throw new $TypeError('Boolean.prototype.toString is not generic');
1234 }
1235 b = %_ValueOf(b);
1236 }
1237 return b ? 'true' : 'false';
Steve Blocka7e24c12009-10-30 11:49:00 +00001238}
1239
1240
1241function BooleanValueOf() {
1242 // NOTE: Both Boolean objects and values can enter here as
1243 // 'this'. This is not as dictated by ECMA-262.
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001244 if (!IS_BOOLEAN(this) && !IS_BOOLEAN_WRAPPER(this)) {
Steve Blocka7e24c12009-10-30 11:49:00 +00001245 throw new $TypeError('Boolean.prototype.valueOf is not generic');
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001246 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001247 return %_ValueOf(this);
1248}
1249
1250
Steve Blocka7e24c12009-10-30 11:49:00 +00001251// ----------------------------------------------------------------------------
1252
1253
Ben Murdoch589d6972011-11-30 16:04:58 +00001254function SetUpBoolean () {
1255 %CheckIsBootstrapping();
Steve Blocka7e24c12009-10-30 11:49:00 +00001256 InstallFunctions($Boolean.prototype, DONT_ENUM, $Array(
1257 "toString", BooleanToString,
Ben Murdochb0fe1622011-05-05 13:52:32 +01001258 "valueOf", BooleanValueOf
Steve Blocka7e24c12009-10-30 11:49:00 +00001259 ));
1260}
1261
Ben Murdoch589d6972011-11-30 16:04:58 +00001262SetUpBoolean();
1263
Steve Blocka7e24c12009-10-30 11:49:00 +00001264
1265// ----------------------------------------------------------------------------
1266// Number
1267
1268// Set the Number function and constructor.
1269%SetCode($Number, function(x) {
1270 var value = %_ArgumentsLength() == 0 ? 0 : ToNumber(x);
1271 if (%_IsConstructCall()) {
1272 %_SetValueOf(this, value);
1273 } else {
1274 return value;
1275 }
1276});
1277
1278%FunctionSetPrototype($Number, new $Number(0));
1279
1280// ECMA-262 section 15.7.4.2.
1281function NumberToString(radix) {
1282 // NOTE: Both Number objects and values can enter here as
1283 // 'this'. This is not as dictated by ECMA-262.
1284 var number = this;
1285 if (!IS_NUMBER(this)) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001286 if (!IS_NUMBER_WRAPPER(this)) {
Steve Blocka7e24c12009-10-30 11:49:00 +00001287 throw new $TypeError('Number.prototype.toString is not generic');
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001288 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001289 // Get the value of this number in case it's an object.
1290 number = %_ValueOf(this);
1291 }
1292 // Fast case: Convert number in radix 10.
1293 if (IS_UNDEFINED(radix) || radix === 10) {
Ben Murdoch086aeea2011-05-13 15:57:08 +01001294 return %_NumberToString(number);
Steve Blocka7e24c12009-10-30 11:49:00 +00001295 }
1296
1297 // Convert the radix to an integer and check the range.
1298 radix = TO_INTEGER(radix);
1299 if (radix < 2 || radix > 36) {
1300 throw new $RangeError('toString() radix argument must be between 2 and 36');
1301 }
1302 // Convert the number to a string in the given radix.
1303 return %NumberToRadixString(number, radix);
1304}
1305
1306
1307// ECMA-262 section 15.7.4.3
1308function NumberToLocaleString() {
Ben Murdoch257744e2011-11-30 15:57:28 +00001309 if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
1310 throw MakeTypeError("called_on_null_or_undefined",
1311 ["Number.prototype.toLocaleString"]);
1312 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001313 return this.toString();
1314}
1315
1316
1317// ECMA-262 section 15.7.4.4
1318function NumberValueOf() {
1319 // NOTE: Both Number objects and values can enter here as
1320 // 'this'. This is not as dictated by ECMA-262.
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001321 if (!IS_NUMBER(this) && !IS_NUMBER_WRAPPER(this)) {
Steve Blocka7e24c12009-10-30 11:49:00 +00001322 throw new $TypeError('Number.prototype.valueOf is not generic');
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001323 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001324 return %_ValueOf(this);
1325}
1326
1327
1328// ECMA-262 section 15.7.4.5
1329function NumberToFixed(fractionDigits) {
1330 var f = TO_INTEGER(fractionDigits);
1331 if (f < 0 || f > 20) {
1332 throw new $RangeError("toFixed() digits argument must be between 0 and 20");
1333 }
Ben Murdoch257744e2011-11-30 15:57:28 +00001334 if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
1335 throw MakeTypeError("called_on_null_or_undefined",
1336 ["Number.prototype.toFixed"]);
1337 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001338 var x = ToNumber(this);
1339 return %NumberToFixed(x, f);
1340}
1341
1342
1343// ECMA-262 section 15.7.4.6
1344function NumberToExponential(fractionDigits) {
1345 var f = -1;
1346 if (!IS_UNDEFINED(fractionDigits)) {
1347 f = TO_INTEGER(fractionDigits);
1348 if (f < 0 || f > 20) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001349 throw new $RangeError(
1350 "toExponential() argument must be between 0 and 20");
Steve Blocka7e24c12009-10-30 11:49:00 +00001351 }
1352 }
Ben Murdoch257744e2011-11-30 15:57:28 +00001353 if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
1354 throw MakeTypeError("called_on_null_or_undefined",
1355 ["Number.prototype.toExponential"]);
1356 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001357 var x = ToNumber(this);
1358 return %NumberToExponential(x, f);
1359}
1360
1361
1362// ECMA-262 section 15.7.4.7
1363function NumberToPrecision(precision) {
Ben Murdoch257744e2011-11-30 15:57:28 +00001364 if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
1365 throw MakeTypeError("called_on_null_or_undefined",
1366 ["Number.prototype.toPrecision"]);
1367 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001368 if (IS_UNDEFINED(precision)) return ToString(%_ValueOf(this));
1369 var p = TO_INTEGER(precision);
1370 if (p < 1 || p > 21) {
1371 throw new $RangeError("toPrecision() argument must be between 1 and 21");
1372 }
1373 var x = ToNumber(this);
1374 return %NumberToPrecision(x, p);
1375}
1376
1377
Steve Blocka7e24c12009-10-30 11:49:00 +00001378// ----------------------------------------------------------------------------
1379
Ben Murdoch589d6972011-11-30 16:04:58 +00001380function SetUpNumber() {
1381 %CheckIsBootstrapping();
Steve Blocka7e24c12009-10-30 11:49:00 +00001382 %OptimizeObjectForAddingMultipleProperties($Number.prototype, 8);
Ben Murdoch589d6972011-11-30 16:04:58 +00001383 // Set up the constructor property on the Number prototype object.
Steve Blocka7e24c12009-10-30 11:49:00 +00001384 %SetProperty($Number.prototype, "constructor", $Number, DONT_ENUM);
1385
1386 %OptimizeObjectForAddingMultipleProperties($Number, 5);
1387 // ECMA-262 section 15.7.3.1.
1388 %SetProperty($Number,
1389 "MAX_VALUE",
1390 1.7976931348623157e+308,
1391 DONT_ENUM | DONT_DELETE | READ_ONLY);
1392
1393 // ECMA-262 section 15.7.3.2.
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001394 %SetProperty($Number, "MIN_VALUE", 5e-324,
1395 DONT_ENUM | DONT_DELETE | READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +00001396
1397 // ECMA-262 section 15.7.3.3.
1398 %SetProperty($Number, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY);
1399
1400 // ECMA-262 section 15.7.3.4.
1401 %SetProperty($Number,
1402 "NEGATIVE_INFINITY",
1403 -1/0,
1404 DONT_ENUM | DONT_DELETE | READ_ONLY);
1405
1406 // ECMA-262 section 15.7.3.5.
1407 %SetProperty($Number,
1408 "POSITIVE_INFINITY",
1409 1/0,
1410 DONT_ENUM | DONT_DELETE | READ_ONLY);
Andrei Popescu402d9372010-02-26 13:31:12 +00001411 %ToFastProperties($Number);
Steve Blocka7e24c12009-10-30 11:49:00 +00001412
Ben Murdoch589d6972011-11-30 16:04:58 +00001413 // Set up non-enumerable functions on the Number prototype object.
Steve Blocka7e24c12009-10-30 11:49:00 +00001414 InstallFunctions($Number.prototype, DONT_ENUM, $Array(
1415 "toString", NumberToString,
1416 "toLocaleString", NumberToLocaleString,
1417 "valueOf", NumberValueOf,
1418 "toFixed", NumberToFixed,
1419 "toExponential", NumberToExponential,
Ben Murdochb0fe1622011-05-05 13:52:32 +01001420 "toPrecision", NumberToPrecision
Steve Blocka7e24c12009-10-30 11:49:00 +00001421 ));
1422}
1423
Ben Murdoch589d6972011-11-30 16:04:58 +00001424SetUpNumber();
Steve Blocka7e24c12009-10-30 11:49:00 +00001425
1426
Steve Blocka7e24c12009-10-30 11:49:00 +00001427// ----------------------------------------------------------------------------
1428// Function
1429
1430$Function.prototype.constructor = $Function;
1431
1432function FunctionSourceString(func) {
Ben Murdoch589d6972011-11-30 16:04:58 +00001433 while (%IsJSFunctionProxy(func)) {
1434 func = %GetCallTrap(func);
1435 }
1436
Steve Blocka7e24c12009-10-30 11:49:00 +00001437 if (!IS_FUNCTION(func)) {
1438 throw new $TypeError('Function.prototype.toString is not generic');
1439 }
1440
1441 var source = %FunctionGetSourceCode(func);
1442 if (!IS_STRING(source) || %FunctionIsBuiltin(func)) {
1443 var name = %FunctionGetName(func);
1444 if (name) {
1445 // Mimic what KJS does.
1446 return 'function ' + name + '() { [native code] }';
1447 } else {
1448 return 'function () { [native code] }';
1449 }
1450 }
1451
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001452 var name = %FunctionNameShouldPrintAsAnonymous(func)
1453 ? 'anonymous'
1454 : %FunctionGetName(func);
Steve Blocka7e24c12009-10-30 11:49:00 +00001455 return 'function ' + name + source;
1456}
1457
1458
1459function FunctionToString() {
1460 return FunctionSourceString(this);
1461}
1462
1463
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001464// ES5 15.3.4.5
1465function FunctionBind(this_arg) { // Length is 1.
Ben Murdoch589d6972011-11-30 16:04:58 +00001466 if (!IS_SPEC_FUNCTION(this)) {
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001467 throw new $TypeError('Bind must be called on a function');
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001468 }
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001469 var boundFunction = function () {
1470 // Poison .arguments and .caller, but is otherwise not detectable.
1471 "use strict";
1472 // This function must not use any object literals (Object, Array, RegExp),
1473 // since the literals-array is being used to store the bound data.
1474 if (%_IsConstructCall()) {
1475 return %NewObjectFromBound(boundFunction);
Ben Murdochf87a2032010-10-22 12:50:53 +01001476 }
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001477 var bindings = %BoundFunctionGetBindings(boundFunction);
Steve Block1e0659c2011-05-24 12:43:12 +01001478
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001479 var argc = %_ArgumentsLength();
1480 if (argc == 0) {
1481 return %Apply(bindings[0], bindings[1], bindings, 2, bindings.length - 2);
1482 }
1483 if (bindings.length === 2) {
1484 return %Apply(bindings[0], bindings[1], arguments, 0, argc);
1485 }
1486 var bound_argc = bindings.length - 2;
1487 var argv = new InternalArray(bound_argc + argc);
1488 for (var i = 0; i < bound_argc; i++) {
1489 argv[i] = bindings[i + 2];
1490 }
1491 for (var j = 0; j < argc; j++) {
1492 argv[i++] = %_Arguments(j);
1493 }
1494 return %Apply(bindings[0], bindings[1], argv, 0, bound_argc + argc);
1495 };
Steve Block1e0659c2011-05-24 12:43:12 +01001496
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001497 %FunctionRemovePrototype(boundFunction);
1498 var new_length = 0;
1499 if (%_ClassOf(this) == "Function") {
1500 // Function or FunctionProxy.
1501 var old_length = this.length;
1502 // FunctionProxies might provide a non-UInt32 value. If so, ignore it.
1503 if ((typeof old_length === "number") &&
1504 ((old_length >>> 0) === old_length)) {
Steve Block1e0659c2011-05-24 12:43:12 +01001505 var argc = %_ArgumentsLength();
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001506 if (argc > 0) argc--; // Don't count the thisArg as parameter.
1507 new_length = old_length - argc;
1508 if (new_length < 0) new_length = 0;
1509 }
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001510 }
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001511 // This runtime function finds any remaining arguments on the stack,
1512 // so we don't pass the arguments object.
1513 var result = %FunctionBindArguments(boundFunction, this,
1514 this_arg, new_length);
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001515
1516 // We already have caller and arguments properties on functions,
1517 // which are non-configurable. It therefore makes no sence to
1518 // try to redefine these as defined by the spec. The spec says
1519 // that bind should make these throw a TypeError if get or set
1520 // is called and make them non-enumerable and non-configurable.
Ben Murdochf87a2032010-10-22 12:50:53 +01001521 // To be consistent with our normal functions we leave this as it is.
Ben Murdoch592a9fc2012-03-05 11:04:45 +00001522 // TODO(lrn): Do set these to be thrower.
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001523 return result;
1524}
1525
1526
Steve Blocka7e24c12009-10-30 11:49:00 +00001527function NewFunction(arg1) { // length == 1
1528 var n = %_ArgumentsLength();
1529 var p = '';
1530 if (n > 1) {
Ben Murdoche0cee9b2011-05-25 10:26:03 +01001531 p = new InternalArray(n - 1);
Ben Murdoch086aeea2011-05-13 15:57:08 +01001532 for (var i = 0; i < n - 1; i++) p[i] = %_Arguments(i);
1533 p = Join(p, n - 1, ',', NonStringToString);
Steve Blocka7e24c12009-10-30 11:49:00 +00001534 // If the formal parameters string include ) - an illegal
1535 // character - it may make the combined function expression
1536 // compile. We avoid this problem by checking for this early on.
1537 if (p.indexOf(')') != -1) throw MakeSyntaxError('unable_to_parse',[]);
1538 }
1539 var body = (n > 0) ? ToString(%_Arguments(n - 1)) : '';
1540 var source = '(function(' + p + ') {\n' + body + '\n})';
1541
1542 // The call to SetNewFunctionAttributes will ensure the prototype
1543 // property of the resulting function is enumerable (ECMA262, 15.3.5.2).
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001544 var f = %CompileString(source)();
Ben Murdoch3fb3ca82011-12-02 17:19:32 +00001545 %FunctionMarkNameShouldPrintAsAnonymous(f);
Steve Blocka7e24c12009-10-30 11:49:00 +00001546 return %SetNewFunctionAttributes(f);
1547}
1548
1549%SetCode($Function, NewFunction);
1550
1551// ----------------------------------------------------------------------------
1552
Ben Murdoch589d6972011-11-30 16:04:58 +00001553function SetUpFunction() {
1554 %CheckIsBootstrapping();
Steve Blocka7e24c12009-10-30 11:49:00 +00001555 InstallFunctions($Function.prototype, DONT_ENUM, $Array(
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001556 "bind", FunctionBind,
Steve Blocka7e24c12009-10-30 11:49:00 +00001557 "toString", FunctionToString
1558 ));
1559}
1560
Ben Murdoch589d6972011-11-30 16:04:58 +00001561SetUpFunction();