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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); | 112 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); |
113 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); | 113 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); |
114 macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg)); | 114 macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg)); |
115 macro FLOOR(arg) = $floor(arg); | 115 macro FLOOR(arg) = $floor(arg); |
116 | 116 |
117 # Macro for ECMAScript 5 queries of the type: | 117 # Macro for ECMAScript 5 queries of the type: |
118 # "Type(O) is object." | 118 # "Type(O) is object." |
119 # This is the same as being either a function or an object in V8 terminology. | 119 # This is the same as being either a function or an object in V8 terminology. |
120 # In addition, an undetectable object is also included by this. | 120 # In addition, an undetectable object is also included by this. |
121 macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg)); | 121 macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg)); |
| 122 macro IS_SPEC_FUNCTION(arg) = (%_ClassOf(arg) == 'Function'); |
122 | 123 |
123 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once. | 124 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once. |
124 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); | 125 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); |
125 macro NUMBER_IS_FINITE(arg) = (%_IsSmi(%IS_VAR(arg)) || ((arg == arg) && (arg !=
1/0) && (arg != -1/0))); | 126 macro NUMBER_IS_FINITE(arg) = (%_IsSmi(%IS_VAR(arg)) || ((arg == arg) && (arg !=
1/0) && (arg != -1/0))); |
126 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : %NumberToInteger(ToNumber
(arg))); | 127 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : %NumberToInteger(ToNumber
(arg))); |
127 macro TO_INTEGER_MAP_MINUS_ZERO(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : %NumberToI
ntegerMapMinusZero(ToNumber(arg))); | 128 macro TO_INTEGER_MAP_MINUS_ZERO(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : %NumberToI
ntegerMapMinusZero(ToNumber(arg))); |
128 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0)); | 129 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0)); |
129 macro TO_UINT32(arg) = (arg >>> 0); | 130 macro TO_UINT32(arg) = (arg >>> 0); |
130 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString
(arg)); | 131 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString
(arg)); |
131 macro TO_NUMBER_INLINE(arg) = (IS_NUMBER(%IS_VAR(arg)) ? arg : NonNumberToNumber
(arg)); | 132 macro TO_NUMBER_INLINE(arg) = (IS_NUMBER(%IS_VAR(arg)) ? arg : NonNumberToNumber
(arg)); |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 const TYPE_EXTENSION = 1; | 187 const TYPE_EXTENSION = 1; |
187 const TYPE_NORMAL = 2; | 188 const TYPE_NORMAL = 2; |
188 | 189 |
189 # Matches Script::CompilationType from objects.h | 190 # Matches Script::CompilationType from objects.h |
190 const COMPILATION_TYPE_HOST = 0; | 191 const COMPILATION_TYPE_HOST = 0; |
191 const COMPILATION_TYPE_EVAL = 1; | 192 const COMPILATION_TYPE_EVAL = 1; |
192 const COMPILATION_TYPE_JSON = 2; | 193 const COMPILATION_TYPE_JSON = 2; |
193 | 194 |
194 # Matches Messages::kNoLineNumberInfo from v8.h | 195 # Matches Messages::kNoLineNumberInfo from v8.h |
195 const kNoLineNumberInfo = 0; | 196 const kNoLineNumberInfo = 0; |
OLD | NEW |