| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_CONTEXTS_H_ | 5 #ifndef V8_CONTEXTS_H_ |
| 6 #define V8_CONTEXTS_H_ | 6 #define V8_CONTEXTS_H_ |
| 7 | 7 |
| 8 #include "src/heap/heap.h" | 8 #include "src/heap/heap.h" |
| 9 #include "src/objects.h" | 9 #include "src/objects.h" |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // Note: Context must have no virtual functions and Context objects | 66 // Note: Context must have no virtual functions and Context objects |
| 67 // must always be allocated via Heap::AllocateContext() or | 67 // must always be allocated via Heap::AllocateContext() or |
| 68 // Factory::NewContext. | 68 // Factory::NewContext. |
| 69 | 69 |
| 70 #define NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(V) \ | 70 #define NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(V) \ |
| 71 V(IS_ARRAYLIKE, JSFunction, is_arraylike) \ | 71 V(IS_ARRAYLIKE, JSFunction, is_arraylike) \ |
| 72 V(GET_TEMPLATE_CALL_SITE_INDEX, JSFunction, get_template_call_site) \ | 72 V(GET_TEMPLATE_CALL_SITE_INDEX, JSFunction, get_template_call_site) \ |
| 73 V(MAKE_RANGE_ERROR_INDEX, JSFunction, make_range_error) \ | 73 V(MAKE_RANGE_ERROR_INDEX, JSFunction, make_range_error) \ |
| 74 V(MAKE_TYPE_ERROR_INDEX, JSFunction, make_type_error) \ | 74 V(MAKE_TYPE_ERROR_INDEX, JSFunction, make_type_error) \ |
| 75 V(OBJECT_FREEZE, JSFunction, object_freeze) \ | 75 V(OBJECT_FREEZE, JSFunction, object_freeze) \ |
| 76 V(OBJECT_GET_PROTOTYPE_OF, JSFunction, object_get_prototype_of) \ |
| 76 V(OBJECT_IS_EXTENSIBLE, JSFunction, object_is_extensible) \ | 77 V(OBJECT_IS_EXTENSIBLE, JSFunction, object_is_extensible) \ |
| 77 V(OBJECT_IS_FROZEN, JSFunction, object_is_frozen) \ | 78 V(OBJECT_IS_FROZEN, JSFunction, object_is_frozen) \ |
| 78 V(OBJECT_IS_SEALED, JSFunction, object_is_sealed) \ | 79 V(OBJECT_IS_SEALED, JSFunction, object_is_sealed) \ |
| 79 V(OBJECT_KEYS, JSFunction, object_keys) \ | 80 V(OBJECT_KEYS, JSFunction, object_keys) \ |
| 80 V(REFLECT_APPLY_INDEX, JSFunction, reflect_apply) \ | 81 V(REFLECT_APPLY_INDEX, JSFunction, reflect_apply) \ |
| 81 V(REFLECT_CONSTRUCT_INDEX, JSFunction, reflect_construct) \ | 82 V(REFLECT_CONSTRUCT_INDEX, JSFunction, reflect_construct) \ |
| 82 V(REFLECT_DEFINE_PROPERTY_INDEX, JSFunction, reflect_define_property) \ | 83 V(REFLECT_DEFINE_PROPERTY_INDEX, JSFunction, reflect_define_property) \ |
| 83 V(REFLECT_DELETE_PROPERTY_INDEX, JSFunction, reflect_delete_property) \ | 84 V(REFLECT_DELETE_PROPERTY_INDEX, JSFunction, reflect_delete_property) \ |
| 84 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \ | 85 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \ |
| 85 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) \ | 86 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) \ |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 #endif | 557 #endif |
| 557 | 558 |
| 558 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); | 559 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); |
| 559 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); | 560 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); |
| 560 }; | 561 }; |
| 561 | 562 |
| 562 } // namespace internal | 563 } // namespace internal |
| 563 } // namespace v8 | 564 } // namespace v8 |
| 564 | 565 |
| 565 #endif // V8_CONTEXTS_H_ | 566 #endif // V8_CONTEXTS_H_ |
| OLD | NEW |