blob: d699c1462119103771da961660018cc94b849a22 [file] [log] [blame]
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00001# Copyright 2006-2009 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +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# Dictionary that is passed as defines for js2c.py.
ulan@chromium.org2efb9002012-01-19 15:36:35 +000029# Used for defines that must be defined for all native JS files.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000030
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000031const NONE = 0;
32const READ_ONLY = 1;
33const DONT_ENUM = 2;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000034const DONT_DELETE = 4;
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +000035const NEW_ONE_BYTE_STRING = true;
36const NEW_TWO_BYTE_STRING = false;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000037
38# Constants used for getter and setter operations.
39const GETTER = 0;
40const SETTER = 1;
41
kasper.lund212ac232008-07-16 07:07:30 +000042# These definitions must match the index of the properties in objects.h.
ager@chromium.org04921a82011-06-27 13:21:41 +000043const kApiTagOffset = 0;
44const kApiPropertyListOffset = 1;
jkummerow@chromium.org3d00d0a2013-09-04 13:57:32 +000045const kApiSerialNumberOffset = 3;
46const kApiConstructorOffset = 3;
ager@chromium.org04921a82011-06-27 13:21:41 +000047const kApiPrototypeTemplateOffset = 5;
48const kApiParentTemplateOffset = 6;
ricow@chromium.org2c99e282011-07-28 09:15:17 +000049const kApiFlagOffset = 14;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050
51const NO_HINT = 0;
52const NUMBER_HINT = 1;
53const STRING_HINT = 2;
54
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000055const kFunctionTag = 0;
56const kNewObjectTag = 1;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000057
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000058# For date.js.
59const HoursPerDay = 24;
60const MinutesPerHour = 60;
61const SecondsPerMinute = 60;
62const msPerSecond = 1000;
63const msPerMinute = 60000;
64const msPerHour = 3600000;
65const msPerDay = 86400000;
ager@chromium.orgeadaf222009-06-16 09:43:10 +000066const msPerMonth = 2592000000;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000067
ager@chromium.org32912102009-01-16 10:38:43 +000068# For apinatives.js
69const kUninitialized = -1;
verwaest@chromium.org662436e2013-08-28 08:41:27 +000070const kReadOnlyPrototypeBit = 3;
71const kRemovePrototypeBit = 4; # For FunctionTemplateInfo, matches objects.h
dslomov@chromium.org639bac02013-09-09 11:58:54 +000072const kDoNotCacheBit = 5; # For FunctionTemplateInfo, matches objects.h
ager@chromium.org32912102009-01-16 10:38:43 +000073
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000074# Note: kDayZeroInJulianDay = ToJulianDay(1970, 0, 1).
75const kInvalidDate = 'Invalid Date';
76const kDayZeroInJulianDay = 2440588;
77const kMonthMask = 0x1e0;
78const kDayMask = 0x01f;
79const kYearShift = 9;
80const kMonthShift = 5;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000081
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000082# Limits for parts of the date, so that we support all the dates that
83# ECMA 262 - 15.9.1.1 requires us to, but at the same time be sure that
84# the date (days since 1970) is in SMI range.
85const kMinYear = -1000000;
86const kMaxYear = 1000000;
87const kMinMonth = -10000000;
88const kMaxMonth = 10000000;
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000089
ricow@chromium.orgc9c80822010-04-21 08:22:37 +000090# Native cache ids.
91const STRING_TO_REGEXP_CACHE_ID = 0;
92
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000093# Type query macros.
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +000094#
95# Note: We have special support for typeof(foo) === 'bar' in the compiler.
96# It will *not* generate a runtime typeof call for the most important
97# values of 'bar'.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000098macro IS_NULL(arg) = (arg === null);
99macro IS_NULL_OR_UNDEFINED(arg) = (arg == null);
100macro IS_UNDEFINED(arg) = (typeof(arg) === 'undefined');
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000101macro IS_NUMBER(arg) = (typeof(arg) === 'number');
102macro IS_STRING(arg) = (typeof(arg) === 'string');
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000103macro IS_BOOLEAN(arg) = (typeof(arg) === 'boolean');
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000104macro IS_SYMBOL(arg) = (typeof(arg) === 'symbol');
ager@chromium.org6141cbe2009-11-20 12:14:52 +0000105macro IS_OBJECT(arg) = (%_IsObject(arg));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000106macro IS_ARRAY(arg) = (%_IsArray(arg));
ager@chromium.org6141cbe2009-11-20 12:14:52 +0000107macro IS_FUNCTION(arg) = (%_IsFunction(arg));
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000108macro IS_REGEXP(arg) = (%_IsRegExp(arg));
rossberg@chromium.orgfab14982012-01-05 15:02:15 +0000109macro IS_SET(arg) = (%_ClassOf(arg) === 'Set');
110macro IS_MAP(arg) = (%_ClassOf(arg) === 'Map');
111macro IS_WEAKMAP(arg) = (%_ClassOf(arg) === 'WeakMap');
jkummerow@chromium.orgba72ec82013-07-22 09:21:20 +0000112macro IS_WEAKSET(arg) = (%_ClassOf(arg) === 'WeakSet');
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000113macro IS_DATE(arg) = (%_ClassOf(arg) === 'Date');
114macro IS_NUMBER_WRAPPER(arg) = (%_ClassOf(arg) === 'Number');
115macro IS_STRING_WRAPPER(arg) = (%_ClassOf(arg) === 'String');
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000116macro IS_SYMBOL_WRAPPER(arg) = (%_ClassOf(arg) === 'Symbol');
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000117macro IS_BOOLEAN_WRAPPER(arg) = (%_ClassOf(arg) === 'Boolean');
118macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error');
119macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script');
120macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments');
121macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global');
danno@chromium.orgf005df62013-04-30 16:36:45 +0000122macro IS_ARRAYBUFFER(arg) = (%_ClassOf(arg) === 'ArrayBuffer');
mstarzinger@chromium.org1510d582013-06-28 14:00:48 +0000123macro IS_DATAVIEW(arg) = (%_ClassOf(arg) === 'DataView');
mstarzinger@chromium.orgb228be02013-04-18 14:56:59 +0000124macro IS_GENERATOR(arg) = (%_ClassOf(arg) === 'Generator');
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000125macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg));
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000126macro FLOOR(arg) = $floor(arg);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000127
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000128# Macro for ECMAScript 5 queries of the type:
129# "Type(O) is object."
lrn@chromium.org34e60782011-09-15 07:25:40 +0000130# This is the same as being either a function or an object in V8 terminology
131# (including proxies).
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000132# In addition, an undetectable object is also included by this.
lrn@chromium.org34e60782011-09-15 07:25:40 +0000133macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg));
134
135# Macro for ECMAScript 5 queries of the type:
136# "IsCallable(O)"
137# We assume here that this is the same as being either a function or a function
138# proxy. That ignores host objects with [[Call]] methods, but in most situations
139# we cannot handle those anyway.
140macro IS_SPEC_FUNCTION(arg) = (%_ClassOf(arg) === 'Function');
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000141
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000142# Indices in bound function info retrieved by %BoundFunctionGetBindings(...).
143const kBoundFunctionIndex = 0;
144const kBoundThisIndex = 1;
145const kBoundArgumentsStartIndex = 2;
146
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000147# Inline macros. Use %IS_VAR to make sure arg is evaluated only once.
148macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg));
jkummerow@chromium.org486075a2011-09-07 12:44:28 +0000149macro NUMBER_IS_FINITE(arg) = (%_IsSmi(%IS_VAR(arg)) || ((arg == arg) && (arg != 1/0) && (arg != -1/0)));
ricow@chromium.org65fae842010-08-25 15:26:24 +0000150macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : %NumberToInteger(ToNumber(arg)));
mstarzinger@chromium.orge0e1b0d2013-07-08 08:38:06 +0000151macro TO_INTEGER_FOR_SIDE_EFFECT(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToNumber(arg));
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000152macro TO_INTEGER_MAP_MINUS_ZERO(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : %NumberToIntegerMapMinusZero(ToNumber(arg)));
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000153macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0));
154macro TO_UINT32(arg) = (arg >>> 0);
155macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000156macro TO_NUMBER_INLINE(arg) = (IS_NUMBER(%IS_VAR(arg)) ? arg : NonNumberToNumber(arg));
vegorov@chromium.org7304bca2011-05-16 12:14:13 +0000157macro TO_OBJECT_INLINE(arg) = (IS_SPEC_OBJECT(%IS_VAR(arg)) ? arg : ToObject(arg));
ricow@chromium.orgd2be9012011-06-01 06:00:58 +0000158macro JSON_NUMBER_TO_STRING(arg) = ((%_IsSmi(%IS_VAR(arg)) || arg - arg == 0) ? %_NumberToString(arg) : "null");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000159
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000160# Macros implemented in Python.
161python macro CHAR_CODE(str) = ord(str[1]);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000162
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000163# Constants used on an array to implement the properties of the RegExp object.
164const REGEXP_NUMBER_OF_CAPTURES = 0;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000165const REGEXP_FIRST_CAPTURE = 3;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000166
167# We can't put macros in macros so we use constants here.
168# REGEXP_NUMBER_OF_CAPTURES
169macro NUMBER_OF_CAPTURES(array) = ((array)[0]);
170
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000171# Limit according to ECMA 262 15.9.1.1
172const MAX_TIME_MS = 8640000000000000;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000173# Limit which is MAX_TIME_MS + msPerMonth.
174const MAX_TIME_BEFORE_UTC = 8640002592000000;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000175
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000176# Gets the value of a Date object. If arg is not a Date object
177# a type error is thrown.
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000178macro CHECK_DATE(arg) = if (%_ClassOf(arg) !== 'Date') ThrowDateTypeError();
179macro LOCAL_DATE_VALUE(arg) = (%_DateField(arg, 0) + %_DateField(arg, 21));
180macro UTC_DATE_VALUE(arg) = (%_DateField(arg, 0));
181
182macro LOCAL_YEAR(arg) = (%_DateField(arg, 1));
183macro LOCAL_MONTH(arg) = (%_DateField(arg, 2));
184macro LOCAL_DAY(arg) = (%_DateField(arg, 3));
185macro LOCAL_WEEKDAY(arg) = (%_DateField(arg, 4));
186macro LOCAL_HOUR(arg) = (%_DateField(arg, 5));
187macro LOCAL_MIN(arg) = (%_DateField(arg, 6));
188macro LOCAL_SEC(arg) = (%_DateField(arg, 7));
189macro LOCAL_MS(arg) = (%_DateField(arg, 8));
190macro LOCAL_DAYS(arg) = (%_DateField(arg, 9));
191macro LOCAL_TIME_IN_DAY(arg) = (%_DateField(arg, 10));
192
193macro UTC_YEAR(arg) = (%_DateField(arg, 11));
194macro UTC_MONTH(arg) = (%_DateField(arg, 12));
195macro UTC_DAY(arg) = (%_DateField(arg, 13));
196macro UTC_WEEKDAY(arg) = (%_DateField(arg, 14));
197macro UTC_HOUR(arg) = (%_DateField(arg, 15));
198macro UTC_MIN(arg) = (%_DateField(arg, 16));
199macro UTC_SEC(arg) = (%_DateField(arg, 17));
200macro UTC_MS(arg) = (%_DateField(arg, 18));
201macro UTC_DAYS(arg) = (%_DateField(arg, 19));
202macro UTC_TIME_IN_DAY(arg) = (%_DateField(arg, 20));
203
204macro TIMEZONE_OFFSET(arg) = (%_DateField(arg, 21));
205
206macro SET_UTC_DATE_VALUE(arg, value) = (%DateSetValue(arg, value, 1));
207macro SET_LOCAL_DATE_VALUE(arg, value) = (%DateSetValue(arg, value, 0));
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000208
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000209# Last input and last subject of regexp matches.
yangguo@chromium.orgefdb9d72012-04-26 08:21:05 +0000210const LAST_SUBJECT_INDEX = 1;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000211macro LAST_SUBJECT(array) = ((array)[1]);
212macro LAST_INPUT(array) = ((array)[2]);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000213
214# REGEXP_FIRST_CAPTURE
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000215macro CAPTURE(index) = (3 + (index));
216const CAPTURE0 = 3;
217const CAPTURE1 = 4;
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000218
erik.corry@gmail.comed49e962012-04-17 11:57:53 +0000219# For the regexp capture override array. This has the same
220# format as the arguments to a function called from
221# String.prototype.replace.
222macro OVERRIDE_MATCH(override) = ((override)[0]);
223macro OVERRIDE_POS(override) = ((override)[(override).length - 2]);
224macro OVERRIDE_SUBJECT(override) = ((override)[(override).length - 1]);
225# 1-based so index of 1 returns the first capture
226macro OVERRIDE_CAPTURE(override, index) = ((override)[(index)]);
227
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000228# PropertyDescriptor return value indices - must match
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000229# PropertyDescriptorIndices in runtime.cc.
230const IS_ACCESSOR_INDEX = 0;
231const VALUE_INDEX = 1;
232const GETTER_INDEX = 2;
233const SETTER_INDEX = 3;
234const WRITABLE_INDEX = 4;
235const ENUMERABLE_INDEX = 5;
236const CONFIGURABLE_INDEX = 6;
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000237
238# For messages.js
239# Matches Script::Type from objects.h
240const TYPE_NATIVE = 0;
241const TYPE_EXTENSION = 1;
242const TYPE_NORMAL = 2;
243
244# Matches Script::CompilationType from objects.h
245const COMPILATION_TYPE_HOST = 0;
246const COMPILATION_TYPE_EVAL = 1;
247const COMPILATION_TYPE_JSON = 2;
248
249# Matches Messages::kNoLineNumberInfo from v8.h
250const kNoLineNumberInfo = 0;