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

Side by Side Diff: src/builtins/builtins-definitions.h

Issue 2770753003: Migrate Object constructor to C++
Patch Set: Manually set ElementsKind Created 3 years, 8 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 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 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_BUILTINS_BUILTINS_DEFINITIONS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_DEFINITIONS_H_
6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 TFS(LessThan, Compare, 1) \ 611 TFS(LessThan, Compare, 1) \
612 TFS(LessThanOrEqual, Compare, 1) \ 612 TFS(LessThanOrEqual, Compare, 1) \
613 TFS(GreaterThan, Compare, 1) \ 613 TFS(GreaterThan, Compare, 1) \
614 TFS(GreaterThanOrEqual, Compare, 1) \ 614 TFS(GreaterThanOrEqual, Compare, 1) \
615 TFS(Equal, Compare, 1) \ 615 TFS(Equal, Compare, 1) \
616 TFS(StrictEqual, Compare, 1) \ 616 TFS(StrictEqual, Compare, 1) \
617 TFS(AddWithFeedback, BinaryOpWithVector, 1) \ 617 TFS(AddWithFeedback, BinaryOpWithVector, 1) \
618 TFS(SubtractWithFeedback, BinaryOpWithVector, 1) \ 618 TFS(SubtractWithFeedback, BinaryOpWithVector, 1) \
619 \ 619 \
620 /* Object */ \ 620 /* Object */ \
621 CPP(ObjectConstructor) \
622 CPP(ObjectConstructor_ConstructStub) \
621 CPP(ObjectAssign) \ 623 CPP(ObjectAssign) \
622 /* ES #sec-object.create */ \ 624 /* ES #sec-object.create */ \
623 TFJ(ObjectCreate, 2, kPrototype, kProperties) \ 625 TFJ(ObjectCreate, 2, kPrototype, kProperties) \
624 CPP(ObjectDefineGetter) \ 626 CPP(ObjectDefineGetter) \
625 CPP(ObjectDefineProperties) \ 627 CPP(ObjectDefineProperties) \
626 CPP(ObjectDefineProperty) \ 628 CPP(ObjectDefineProperty) \
627 CPP(ObjectDefineSetter) \ 629 CPP(ObjectDefineSetter) \
628 CPP(ObjectEntries) \ 630 CPP(ObjectEntries) \
629 CPP(ObjectFreeze) \ 631 CPP(ObjectFreeze) \
630 CPP(ObjectGetOwnPropertyDescriptor) \ 632 CPP(ObjectGetOwnPropertyDescriptor) \
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 #define BUILTIN_LIST_DBG(V) \ 959 #define BUILTIN_LIST_DBG(V) \
958 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 960 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
959 IGNORE_BUILTIN, IGNORE_BUILTIN, V) 961 IGNORE_BUILTIN, IGNORE_BUILTIN, V)
960 962
961 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 963 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
962 964
963 } // namespace internal 965 } // namespace internal
964 } // namespace v8 966 } // namespace v8
965 967
966 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 968 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698