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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 macro IS_BOOLEAN_WRAPPER(arg) = (%_ClassOf(arg) === 'Boolean'); | 90 macro IS_BOOLEAN_WRAPPER(arg) = (%_ClassOf(arg) === 'Boolean'); |
91 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error'); | 91 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error'); |
92 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script'); | 92 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script'); |
93 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); | 93 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); |
94 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); | 94 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); |
95 macro FLOOR(arg) = $floor(arg); | 95 macro FLOOR(arg) = $floor(arg); |
96 | 96 |
97 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once. | 97 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once. |
98 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); | 98 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); |
99 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); | 99 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); |
100 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInt32(arg)); | 100 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0)); |
| 101 macro TO_UINT32(arg) = (arg >>> 0); |
101 | 102 |
102 # Macros implemented in Python. | 103 # Macros implemented in Python. |
103 python macro CHAR_CODE(str) = ord(str[1]); | 104 python macro CHAR_CODE(str) = ord(str[1]); |
104 | 105 |
105 # Accessors for original global properties that ensure they have been loaded. | 106 # Accessors for original global properties that ensure they have been loaded. |
106 const ORIGINAL_REGEXP = (global.RegExp, $RegExp); | 107 const ORIGINAL_REGEXP = (global.RegExp, $RegExp); |
107 const ORIGINAL_DATE = (global.Date, $Date); | 108 const ORIGINAL_DATE = (global.Date, $Date); |
108 | 109 |
109 # Constants used on an array to implement the properties of the RegExp object. | 110 # Constants used on an array to implement the properties of the RegExp object. |
110 const REGEXP_NUMBER_OF_CAPTURES = 0; | 111 const REGEXP_NUMBER_OF_CAPTURES = 0; |
111 const REGEXP_FIRST_CAPTURE = 3; | 112 const REGEXP_FIRST_CAPTURE = 3; |
112 | 113 |
113 # We can't put macros in macros so we use constants here. | 114 # We can't put macros in macros so we use constants here. |
114 # REGEXP_NUMBER_OF_CAPTURES | 115 # REGEXP_NUMBER_OF_CAPTURES |
115 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); | 116 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); |
116 | 117 |
117 # Gets the value of a Date object. If arg is not a Date object | 118 # Gets the value of a Date object. If arg is not a Date object |
118 # a type error is thrown. | 119 # a type error is thrown. |
119 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT
ypeError()); | 120 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT
ypeError()); |
120 | 121 |
121 # Last input and last subject of regexp matches. | 122 # Last input and last subject of regexp matches. |
122 macro LAST_SUBJECT(array) = ((array)[1]); | 123 macro LAST_SUBJECT(array) = ((array)[1]); |
123 macro LAST_INPUT(array) = ((array)[2]); | 124 macro LAST_INPUT(array) = ((array)[2]); |
124 | 125 |
125 # REGEXP_FIRST_CAPTURE | 126 # REGEXP_FIRST_CAPTURE |
126 macro CAPTURE(index) = (3 + (index)); | 127 macro CAPTURE(index) = (3 + (index)); |
127 const CAPTURE0 = 3; | 128 const CAPTURE0 = 3; |
128 const CAPTURE1 = 4; | 129 const CAPTURE1 = 4; |
OLD | NEW |