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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error'); | 109 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error'); |
110 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script'); | 110 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script'); |
111 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); | 111 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); |
112 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); | 112 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); |
113 macro IS_ARRAYBUFFER(arg) = (%_ClassOf(arg) === 'ArrayBuffer'); | 113 macro IS_ARRAYBUFFER(arg) = (%_ClassOf(arg) === 'ArrayBuffer'); |
114 macro IS_DATAVIEW(arg) = (%_ClassOf(arg) === 'DataView'); | 114 macro IS_DATAVIEW(arg) = (%_ClassOf(arg) === 'DataView'); |
115 macro IS_GENERATOR(arg) = (%_ClassOf(arg) === 'Generator'); | 115 macro IS_GENERATOR(arg) = (%_ClassOf(arg) === 'Generator'); |
116 macro IS_SET_ITERATOR(arg) = (%_ClassOf(arg) === 'Set Iterator'); | 116 macro IS_SET_ITERATOR(arg) = (%_ClassOf(arg) === 'Set Iterator'); |
117 macro IS_MAP_ITERATOR(arg) = (%_ClassOf(arg) === 'Map Iterator'); | 117 macro IS_MAP_ITERATOR(arg) = (%_ClassOf(arg) === 'Map Iterator'); |
118 macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg)); | 118 macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg)); |
| 119 macro IS_STRONG(arg) = (%IsStrong(arg)); |
119 | 120 |
120 # Macro for ECMAScript 5 queries of the type: | 121 # Macro for ECMAScript 5 queries of the type: |
121 # "Type(O) is object." | 122 # "Type(O) is object." |
122 # This is the same as being either a function or an object in V8 terminology | 123 # This is the same as being either a function or an object in V8 terminology |
123 # (including proxies). | 124 # (including proxies). |
124 # In addition, an undetectable object is also included by this. | 125 # In addition, an undetectable object is also included by this. |
125 macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg)); | 126 macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg)); |
126 | 127 |
127 # Macro for ECMAScript 5 queries of the type: | 128 # Macro for ECMAScript 5 queries of the type: |
128 # "IsCallable(O)" | 129 # "IsCallable(O)" |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 macro ORDERED_HASH_MAP_VALUE_AT(table, entry, numBuckets) = (FIXED_ARRAY_GET(tab
le, ORDERED_HASH_MAP_ENTRY_TO_INDEX(entry, numBuckets) + 1)); | 301 macro ORDERED_HASH_MAP_VALUE_AT(table, entry, numBuckets) = (FIXED_ARRAY_GET(tab
le, ORDERED_HASH_MAP_ENTRY_TO_INDEX(entry, numBuckets) + 1)); |
301 macro ORDERED_HASH_MAP_CHAIN_AT(table, entry, numBuckets) = (FIXED_ARRAY_GET(tab
le, ORDERED_HASH_MAP_ENTRY_TO_INDEX(entry, numBuckets) + 2)); | 302 macro ORDERED_HASH_MAP_CHAIN_AT(table, entry, numBuckets) = (FIXED_ARRAY_GET(tab
le, ORDERED_HASH_MAP_ENTRY_TO_INDEX(entry, numBuckets) + 2)); |
302 | 303 |
303 # Must match OrderedHashTable::kNotFound. | 304 # Must match OrderedHashTable::kNotFound. |
304 define NOT_FOUND = -1; | 305 define NOT_FOUND = -1; |
305 | 306 |
306 # Check whether debug is active. | 307 # Check whether debug is active. |
307 define DEBUG_IS_ACTIVE = (%_DebugIsActive() != 0); | 308 define DEBUG_IS_ACTIVE = (%_DebugIsActive() != 0); |
308 macro DEBUG_IS_STEPPING(function) = (%_DebugIsActive() != 0 && %DebugCallbackSup
portsStepping(function)); | 309 macro DEBUG_IS_STEPPING(function) = (%_DebugIsActive() != 0 && %DebugCallbackSup
portsStepping(function)); |
309 macro DEBUG_PREPARE_STEP_IN_IF_STEPPING(function) = if (DEBUG_IS_STEPPING(functi
on)) %DebugPrepareStepInIfStepping(function); | 310 macro DEBUG_PREPARE_STEP_IN_IF_STEPPING(function) = if (DEBUG_IS_STEPPING(functi
on)) %DebugPrepareStepInIfStepping(function); |
OLD | NEW |