OLD | NEW |
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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 CPP(ObjectIsFrozen) \ | 722 CPP(ObjectIsFrozen) \ |
723 CPP(ObjectIsSealed) \ | 723 CPP(ObjectIsSealed) \ |
724 TFJ(ObjectKeys, 1, kObject) \ | 724 TFJ(ObjectKeys, 1, kObject) \ |
725 CPP(ObjectLookupGetter) \ | 725 CPP(ObjectLookupGetter) \ |
726 CPP(ObjectLookupSetter) \ | 726 CPP(ObjectLookupSetter) \ |
727 CPP(ObjectPreventExtensions) \ | 727 CPP(ObjectPreventExtensions) \ |
728 /* ES6 #sec-object.prototype.tostring */ \ | 728 /* ES6 #sec-object.prototype.tostring */ \ |
729 TFJ(ObjectProtoToString, 0) \ | 729 TFJ(ObjectProtoToString, 0) \ |
730 /* ES6 #sec-object.prototype.valueof */ \ | 730 /* ES6 #sec-object.prototype.valueof */ \ |
731 TFJ(ObjectPrototypeValueOf, 0) \ | 731 TFJ(ObjectPrototypeValueOf, 0) \ |
| 732 TFJ(ObjectPrototypeIsPrototypeOf, 1, kValue) \ |
732 CPP(ObjectPrototypePropertyIsEnumerable) \ | 733 CPP(ObjectPrototypePropertyIsEnumerable) \ |
733 CPP(ObjectPrototypeGetProto) \ | 734 CPP(ObjectPrototypeGetProto) \ |
734 CPP(ObjectPrototypeSetProto) \ | 735 CPP(ObjectPrototypeSetProto) \ |
735 CPP(ObjectSeal) \ | 736 CPP(ObjectSeal) \ |
736 CPP(ObjectValues) \ | 737 CPP(ObjectValues) \ |
737 \ | 738 \ |
738 /* instanceof */ \ | 739 /* instanceof */ \ |
739 TFC(OrdinaryHasInstance, Compare, 1) \ | 740 TFC(OrdinaryHasInstance, Compare, 1) \ |
740 TFC(InstanceOf, Compare, 1) \ | 741 TFC(InstanceOf, Compare, 1) \ |
741 \ | 742 \ |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 #define BUILTIN_LIST_TFC(V) \ | 1128 #define BUILTIN_LIST_TFC(V) \ |
1128 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, V, \ | 1129 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, V, \ |
1129 IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) | 1130 IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) |
1130 | 1131 |
1131 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) | 1132 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) |
1132 | 1133 |
1133 } // namespace internal | 1134 } // namespace internal |
1134 } // namespace v8 | 1135 } // namespace v8 |
1135 | 1136 |
1136 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 1137 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
OLD | NEW |