| 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 TFC(LessThan, Compare, 1) \ | 696 TFC(LessThan, Compare, 1) \ |
| 697 TFC(LessThanOrEqual, Compare, 1) \ | 697 TFC(LessThanOrEqual, Compare, 1) \ |
| 698 TFC(GreaterThan, Compare, 1) \ | 698 TFC(GreaterThan, Compare, 1) \ |
| 699 TFC(GreaterThanOrEqual, Compare, 1) \ | 699 TFC(GreaterThanOrEqual, Compare, 1) \ |
| 700 TFC(Equal, Compare, 1) \ | 700 TFC(Equal, Compare, 1) \ |
| 701 TFC(StrictEqual, Compare, 1) \ | 701 TFC(StrictEqual, Compare, 1) \ |
| 702 \ | 702 \ |
| 703 /* Object */ \ | 703 /* Object */ \ |
| 704 CPP(ObjectAssign) \ | 704 CPP(ObjectAssign) \ |
| 705 /* ES #sec-object.create */ \ | 705 /* ES #sec-object.create */ \ |
| 706 TFJ(ObjectCreate, 2, kPrototype, kProperties) \ | 706 TFJ(ObjectCreate, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ |
| 707 CPP(ObjectDefineGetter) \ | 707 CPP(ObjectDefineGetter) \ |
| 708 CPP(ObjectDefineProperties) \ | 708 CPP(ObjectDefineProperties) \ |
| 709 CPP(ObjectDefineProperty) \ | 709 CPP(ObjectDefineProperty) \ |
| 710 CPP(ObjectDefineSetter) \ | 710 CPP(ObjectDefineSetter) \ |
| 711 CPP(ObjectEntries) \ | 711 CPP(ObjectEntries) \ |
| 712 CPP(ObjectFreeze) \ | 712 CPP(ObjectFreeze) \ |
| 713 CPP(ObjectGetOwnPropertyDescriptor) \ | 713 CPP(ObjectGetOwnPropertyDescriptor) \ |
| 714 CPP(ObjectGetOwnPropertyDescriptors) \ | 714 CPP(ObjectGetOwnPropertyDescriptors) \ |
| 715 CPP(ObjectGetOwnPropertyNames) \ | 715 CPP(ObjectGetOwnPropertyNames) \ |
| 716 CPP(ObjectGetOwnPropertySymbols) \ | 716 CPP(ObjectGetOwnPropertySymbols) \ |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1142 #define BUILTIN_LIST_TFC(V) \ | 1142 #define BUILTIN_LIST_TFC(V) \ |
| 1143 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, V, \ | 1143 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, V, \ |
| 1144 IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) | 1144 IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) |
| 1145 | 1145 |
| 1146 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) | 1146 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) |
| 1147 | 1147 |
| 1148 } // namespace internal | 1148 } // namespace internal |
| 1149 } // namespace v8 | 1149 } // namespace v8 |
| 1150 | 1150 |
| 1151 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 1151 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
| OLD | NEW |