| 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |