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