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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 TFS(AddWithFeedback, BinaryOpWithVector, 1) \ | 618 TFS(AddWithFeedback, BinaryOpWithVector, 1) \ |
619 TFS(SubtractWithFeedback, BinaryOpWithVector, 1) \ | 619 TFS(SubtractWithFeedback, BinaryOpWithVector, 1) \ |
620 \ | 620 \ |
621 /* Object */ \ | 621 /* Object */ \ |
622 CPP(ObjectAssign) \ | 622 CPP(ObjectAssign) \ |
623 /* ES #sec-object.create */ \ | 623 /* ES #sec-object.create */ \ |
624 TFJ(ObjectCreate, 2, kPrototype, kProperties) \ | 624 TFJ(ObjectCreate, 2, kPrototype, kProperties) \ |
625 CPP(ObjectDefineGetter) \ | 625 CPP(ObjectDefineGetter) \ |
626 CPP(ObjectDefineProperties) \ | 626 CPP(ObjectDefineProperties) \ |
627 CPP(ObjectDefineProperty) \ | 627 CPP(ObjectDefineProperty) \ |
| 628 CPP(ObjectDefinePropertyWithoutInterceptors) \ |
628 CPP(ObjectDefineSetter) \ | 629 CPP(ObjectDefineSetter) \ |
629 CPP(ObjectEntries) \ | 630 CPP(ObjectEntries) \ |
630 CPP(ObjectFreeze) \ | 631 CPP(ObjectFreeze) \ |
631 CPP(ObjectGetOwnPropertyDescriptor) \ | 632 CPP(ObjectGetOwnPropertyDescriptor) \ |
632 CPP(ObjectGetOwnPropertyDescriptors) \ | 633 CPP(ObjectGetOwnPropertyDescriptors) \ |
633 CPP(ObjectGetOwnPropertyNames) \ | 634 CPP(ObjectGetOwnPropertyNames) \ |
634 CPP(ObjectGetOwnPropertySymbols) \ | 635 CPP(ObjectGetOwnPropertySymbols) \ |
635 CPP(ObjectGetPrototypeOf) \ | 636 CPP(ObjectGetPrototypeOf) \ |
636 CPP(ObjectSetPrototypeOf) \ | 637 CPP(ObjectSetPrototypeOf) \ |
637 /* ES6 #sec-object.prototype.hasownproperty */ \ | 638 /* ES6 #sec-object.prototype.hasownproperty */ \ |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1004 #define BUILTIN_LIST_DBG(V) \ | 1005 #define BUILTIN_LIST_DBG(V) \ |
1005 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 1006 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
1006 IGNORE_BUILTIN, IGNORE_BUILTIN, V) | 1007 IGNORE_BUILTIN, IGNORE_BUILTIN, V) |
1007 | 1008 |
1008 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) | 1009 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) |
1009 | 1010 |
1010 } // namespace internal | 1011 } // namespace internal |
1011 } // namespace v8 | 1012 } // namespace v8 |
1012 | 1013 |
1013 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 1014 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
OLD | NEW |