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

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

Issue 2770753003: Migrate Object constructor to C++
Patch Set: Ack comments 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-object.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 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 #define BUILTIN_LIST_DBG(V) \ 994 #define BUILTIN_LIST_DBG(V) \
993 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 995 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
994 IGNORE_BUILTIN, IGNORE_BUILTIN, V) 996 IGNORE_BUILTIN, IGNORE_BUILTIN, V)
995 997
996 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 998 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
997 999
998 } // namespace internal 1000 } // namespace internal
999 } // namespace v8 1001 } // namespace v8
1000 1002
1001 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1003 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698