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

Side by Side Diff: src/contexts.h

Issue 1350113002: [runtime] Replace COMPARE/COMPARE_STRONG with proper Object::Compare. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \ 85 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \
86 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) \ 86 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) \
87 V(TO_LENGTH_FUN_INDEX, JSFunction, to_length_fun) \ 87 V(TO_LENGTH_FUN_INDEX, JSFunction, to_length_fun) \
88 V(TO_NUMBER_FUN_INDEX, JSFunction, to_number_fun) \ 88 V(TO_NUMBER_FUN_INDEX, JSFunction, to_number_fun) \
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) \
96 V(COMPARE_STRONG_BUILTIN_INDEX, JSFunction, compare_strong_builtin) \
97 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \ 95 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \
98 concat_iterable_to_array_builtin) \ 96 concat_iterable_to_array_builtin) \
99 V(REFLECT_APPLY_PREPARE_BUILTIN_INDEX, JSFunction, \ 97 V(REFLECT_APPLY_PREPARE_BUILTIN_INDEX, JSFunction, \
100 reflect_apply_prepare_builtin) \ 98 reflect_apply_prepare_builtin) \
101 V(REFLECT_CONSTRUCT_PREPARE_BUILTIN_INDEX, JSFunction, \ 99 V(REFLECT_CONSTRUCT_PREPARE_BUILTIN_INDEX, JSFunction, \
102 reflect_construct_prepare_builtin) 100 reflect_construct_prepare_builtin)
103 101
104 102
105 #define NATIVE_CONTEXT_IMPORTED_FIELDS(V) \ 103 #define NATIVE_CONTEXT_IMPORTED_FIELDS(V) \
106 V(ARRAY_CONCAT_INDEX, JSFunction, array_concat) \ 104 V(ARRAY_CONCAT_INDEX, JSFunction, array_concat) \
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 static bool IsBootstrappingOrGlobalObject(Isolate* isolate, Object* object); 550 static bool IsBootstrappingOrGlobalObject(Isolate* isolate, Object* object);
553 #endif 551 #endif
554 552
555 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); 553 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize);
556 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); 554 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex);
557 }; 555 };
558 556
559 } } // namespace v8::internal 557 } } // namespace v8::internal
560 558
561 #endif // V8_CONTEXTS_H_ 559 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/full-codegen/full-codegen.h » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698