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

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

Issue 2853393002: [builtins] Migrate Object.keys to CodeStubAssembler builtin. (Closed)
Patch Set: Really fix the test, meh. Created 3 years, 7 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 CPP(ObjectGetOwnPropertyNames) \ 675 CPP(ObjectGetOwnPropertyNames) \
676 CPP(ObjectGetOwnPropertySymbols) \ 676 CPP(ObjectGetOwnPropertySymbols) \
677 CPP(ObjectGetPrototypeOf) \ 677 CPP(ObjectGetPrototypeOf) \
678 CPP(ObjectSetPrototypeOf) \ 678 CPP(ObjectSetPrototypeOf) \
679 /* ES6 #sec-object.prototype.hasownproperty */ \ 679 /* ES6 #sec-object.prototype.hasownproperty */ \
680 TFJ(ObjectHasOwnProperty, 1, kKey) \ 680 TFJ(ObjectHasOwnProperty, 1, kKey) \
681 CPP(ObjectIs) \ 681 CPP(ObjectIs) \
682 CPP(ObjectIsExtensible) \ 682 CPP(ObjectIsExtensible) \
683 CPP(ObjectIsFrozen) \ 683 CPP(ObjectIsFrozen) \
684 CPP(ObjectIsSealed) \ 684 CPP(ObjectIsSealed) \
685 CPP(ObjectKeys) \ 685 TFJ(ObjectKeys, 1, kObject) \
686 CPP(ObjectLookupGetter) \ 686 CPP(ObjectLookupGetter) \
687 CPP(ObjectLookupSetter) \ 687 CPP(ObjectLookupSetter) \
688 CPP(ObjectPreventExtensions) \ 688 CPP(ObjectPreventExtensions) \
689 /* ES6 #sec-object.prototype.tostring */ \ 689 /* ES6 #sec-object.prototype.tostring */ \
690 TFJ(ObjectProtoToString, 0) \ 690 TFJ(ObjectProtoToString, 0) \
691 /* ES6 #sec-object.prototype.valueof */ \ 691 /* ES6 #sec-object.prototype.valueof */ \
692 TFJ(ObjectPrototypeValueOf, 0) \ 692 TFJ(ObjectPrototypeValueOf, 0) \
693 CPP(ObjectPrototypePropertyIsEnumerable) \ 693 CPP(ObjectPrototypePropertyIsEnumerable) \
694 CPP(ObjectPrototypeGetProto) \ 694 CPP(ObjectPrototypeGetProto) \
695 CPP(ObjectPrototypeSetProto) \ 695 CPP(ObjectPrototypeSetProto) \
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 #define BUILTIN_LIST_TFS(V) \ 1058 #define BUILTIN_LIST_TFS(V) \
1059 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1059 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
1060 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) 1060 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN)
1061 1061
1062 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1062 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1063 1063
1064 } // namespace internal 1064 } // namespace internal
1065 } // namespace v8 1065 } // namespace v8
1066 1066
1067 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1067 #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