Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(939)

Side by Side Diff: src/contexts.h

Issue 1567963002: [builtins] Migrate Object.keys to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/builtins.cc ('k') | src/execution.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 #define NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(V) \ 80 #define NATIVE_CONTEXT_INTRINSIC_FUNCTIONS(V) \
81 V(IS_ARRAYLIKE, JSFunction, is_arraylike) \ 81 V(IS_ARRAYLIKE, JSFunction, is_arraylike) \
82 V(CONCAT_ITERABLE_TO_ARRAY_INDEX, JSFunction, concat_iterable_to_array) \ 82 V(CONCAT_ITERABLE_TO_ARRAY_INDEX, JSFunction, concat_iterable_to_array) \
83 V(GET_TEMPLATE_CALL_SITE_INDEX, JSFunction, get_template_call_site) \ 83 V(GET_TEMPLATE_CALL_SITE_INDEX, JSFunction, get_template_call_site) \
84 V(MAKE_RANGE_ERROR_INDEX, JSFunction, make_range_error) \ 84 V(MAKE_RANGE_ERROR_INDEX, JSFunction, make_range_error) \
85 V(MAKE_TYPE_ERROR_INDEX, JSFunction, make_type_error) \ 85 V(MAKE_TYPE_ERROR_INDEX, JSFunction, make_type_error) \
86 V(OBJECT_FREEZE, JSFunction, object_freeze) \ 86 V(OBJECT_FREEZE, JSFunction, object_freeze) \
87 V(OBJECT_IS_EXTENSIBLE, JSFunction, object_is_extensible) \ 87 V(OBJECT_IS_EXTENSIBLE, JSFunction, object_is_extensible) \
88 V(OBJECT_IS_FROZEN, JSFunction, object_is_frozen) \ 88 V(OBJECT_IS_FROZEN, JSFunction, object_is_frozen) \
89 V(OBJECT_IS_SEALED, JSFunction, object_is_sealed) \ 89 V(OBJECT_IS_SEALED, JSFunction, object_is_sealed) \
90 V(OBJECT_KEYS, JSFunction, object_keys) \
90 V(REFLECT_APPLY_INDEX, JSFunction, reflect_apply) \ 91 V(REFLECT_APPLY_INDEX, JSFunction, reflect_apply) \
91 V(REFLECT_CONSTRUCT_INDEX, JSFunction, reflect_construct) \ 92 V(REFLECT_CONSTRUCT_INDEX, JSFunction, reflect_construct) \
92 V(REFLECT_DEFINE_PROPERTY_INDEX, JSFunction, reflect_define_property) \ 93 V(REFLECT_DEFINE_PROPERTY_INDEX, JSFunction, reflect_define_property) \
93 V(REFLECT_DELETE_PROPERTY_INDEX, JSFunction, reflect_delete_property) \ 94 V(REFLECT_DELETE_PROPERTY_INDEX, JSFunction, reflect_delete_property) \
94 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \ 95 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \
95 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) 96 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable)
96 97
97 98
98 #define NATIVE_CONTEXT_JS_BUILTINS(V) \ 99 #define NATIVE_CONTEXT_JS_BUILTINS(V) \
99 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \ 100 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 #endif 592 #endif
592 593
593 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); 594 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize);
594 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); 595 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex);
595 }; 596 };
596 597
597 } // namespace internal 598 } // namespace internal
598 } // namespace v8 599 } // namespace v8
599 600
600 #endif // V8_CONTEXTS_H_ 601 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/execution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698