OLD | NEW |
1 # Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 # Copyright 2006-2009 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); | 113 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); |
114 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); | 114 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); |
115 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0)); | 115 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0)); |
116 macro TO_UINT32(arg) = (arg >>> 0); | 116 macro TO_UINT32(arg) = (arg >>> 0); |
117 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString
(arg)); | 117 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString
(arg)); |
118 | 118 |
119 | 119 |
120 # Macros implemented in Python. | 120 # Macros implemented in Python. |
121 python macro CHAR_CODE(str) = ord(str[1]); | 121 python macro CHAR_CODE(str) = ord(str[1]); |
122 | 122 |
123 # Accessors for original global properties that ensure they have been loaded. | |
124 const ORIGINAL_REGEXP = (global.RegExp, $RegExp); | |
125 const ORIGINAL_DATE = (global.Date, $Date); | |
126 | |
127 # Constants used on an array to implement the properties of the RegExp object. | 123 # Constants used on an array to implement the properties of the RegExp object. |
128 const REGEXP_NUMBER_OF_CAPTURES = 0; | 124 const REGEXP_NUMBER_OF_CAPTURES = 0; |
129 const REGEXP_FIRST_CAPTURE = 3; | 125 const REGEXP_FIRST_CAPTURE = 3; |
130 | 126 |
131 # We can't put macros in macros so we use constants here. | 127 # We can't put macros in macros so we use constants here. |
132 # REGEXP_NUMBER_OF_CAPTURES | 128 # REGEXP_NUMBER_OF_CAPTURES |
133 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); | 129 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); |
134 | 130 |
135 # Gets the value of a Date object. If arg is not a Date object | 131 # Gets the value of a Date object. If arg is not a Date object |
136 # a type error is thrown. | 132 # a type error is thrown. |
137 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT
ypeError()); | 133 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT
ypeError()); |
138 macro DAY(time) = ($floor(time / 86400000)); | 134 macro DAY(time) = ($floor(time / 86400000)); |
139 macro MONTH_FROM_TIME(time) = (MonthFromTime(time)); | 135 macro MONTH_FROM_TIME(time) = (MonthFromTime(time)); |
140 macro DATE_FROM_TIME(time) = (DateFromTime(time)); | 136 macro DATE_FROM_TIME(time) = (DateFromTime(time)); |
141 macro YEAR_FROM_TIME(time) = (YearFromTime(time)); | 137 macro YEAR_FROM_TIME(time) = (YearFromTime(time)); |
142 macro HOUR_FROM_TIME(time) = (Modulo($floor(time / 3600000), 24)); | 138 macro HOUR_FROM_TIME(time) = (Modulo($floor(time / 3600000), 24)); |
143 macro MIN_FROM_TIME(time) = (Modulo($floor(time / 60000), 60)); | 139 macro MIN_FROM_TIME(time) = (Modulo($floor(time / 60000), 60)); |
144 macro SEC_FROM_TIME(time) = (Modulo($floor(time / 1000), 60)); | 140 macro SEC_FROM_TIME(time) = (Modulo($floor(time / 1000), 60)); |
145 macro MS_FROM_TIME(time) = (Modulo(time, 1000)); | 141 macro MS_FROM_TIME(time) = (Modulo(time, 1000)); |
146 | 142 |
147 # Last input and last subject of regexp matches. | 143 # Last input and last subject of regexp matches. |
148 macro LAST_SUBJECT(array) = ((array)[1]); | 144 macro LAST_SUBJECT(array) = ((array)[1]); |
149 macro LAST_INPUT(array) = ((array)[2]); | 145 macro LAST_INPUT(array) = ((array)[2]); |
150 | 146 |
151 # REGEXP_FIRST_CAPTURE | 147 # REGEXP_FIRST_CAPTURE |
152 macro CAPTURE(index) = (3 + (index)); | 148 macro CAPTURE(index) = (3 + (index)); |
153 const CAPTURE0 = 3; | 149 const CAPTURE0 = 3; |
154 const CAPTURE1 = 4; | 150 const CAPTURE1 = 4; |
OLD | NEW |