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

Side by Side Diff: src/contexts.h

Issue 1337993005: [runtime] Replace the EQUALS builtin with proper Object::Equals. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address Michi's nit. Created 5 years, 3 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/arm64/code-stubs-arm64.cc ('k') | src/ia32/code-stubs-ia32.cc » ('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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 V(TO_PRIMITIVE_INDEX, JSFunction, to_primitive) \ 89 V(TO_PRIMITIVE_INDEX, JSFunction, to_primitive) \
90 V(TO_STRING_FUN_INDEX, JSFunction, to_string_fun) 90 V(TO_STRING_FUN_INDEX, JSFunction, to_string_fun)
91 91
92 92
93 #define NATIVE_CONTEXT_JS_BUILTINS(V) \ 93 #define NATIVE_CONTEXT_JS_BUILTINS(V) \
94 V(APPLY_PREPARE_BUILTIN_INDEX, JSFunction, apply_prepare_builtin) \ 94 V(APPLY_PREPARE_BUILTIN_INDEX, JSFunction, apply_prepare_builtin) \
95 V(COMPARE_BUILTIN_INDEX, JSFunction, compare_builtin) \ 95 V(COMPARE_BUILTIN_INDEX, JSFunction, compare_builtin) \
96 V(COMPARE_STRONG_BUILTIN_INDEX, JSFunction, compare_strong_builtin) \ 96 V(COMPARE_STRONG_BUILTIN_INDEX, JSFunction, compare_strong_builtin) \
97 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \ 97 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \
98 concat_iterable_to_array_builtin) \ 98 concat_iterable_to_array_builtin) \
99 V(EQUALS_BUILTIN_INDEX, JSFunction, equals_builtin) \
100 V(REFLECT_APPLY_PREPARE_BUILTIN_INDEX, JSFunction, \ 99 V(REFLECT_APPLY_PREPARE_BUILTIN_INDEX, JSFunction, \
101 reflect_apply_prepare_builtin) \ 100 reflect_apply_prepare_builtin) \
102 V(REFLECT_CONSTRUCT_PREPARE_BUILTIN_INDEX, JSFunction, \ 101 V(REFLECT_CONSTRUCT_PREPARE_BUILTIN_INDEX, JSFunction, \
103 reflect_construct_prepare_builtin) 102 reflect_construct_prepare_builtin)
104 103
105 104
106 #define NATIVE_CONTEXT_IMPORTED_FIELDS(V) \ 105 #define NATIVE_CONTEXT_IMPORTED_FIELDS(V) \
107 V(ARRAY_CONCAT_INDEX, JSFunction, array_concat) \ 106 V(ARRAY_CONCAT_INDEX, JSFunction, array_concat) \
108 V(ARRAY_POP_INDEX, JSFunction, array_pop) \ 107 V(ARRAY_POP_INDEX, JSFunction, array_pop) \
109 V(ARRAY_PUSH_INDEX, JSFunction, array_push) \ 108 V(ARRAY_PUSH_INDEX, JSFunction, array_push) \
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 static bool IsBootstrappingOrGlobalObject(Isolate* isolate, Object* object); 551 static bool IsBootstrappingOrGlobalObject(Isolate* isolate, Object* object);
553 #endif 552 #endif
554 553
555 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); 554 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize);
556 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); 555 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex);
557 }; 556 };
558 557
559 } } // namespace v8::internal 558 } } // namespace v8::internal
560 559
561 #endif // V8_CONTEXTS_H_ 560 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698