| 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 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 /* #sec-%asyncfromsynciteratorprototype%.return */ \ | 996 /* #sec-%asyncfromsynciteratorprototype%.return */ \ |
| 997 TFJ(AsyncFromSyncIteratorPrototypeReturn, 1, kValue) \ | 997 TFJ(AsyncFromSyncIteratorPrototypeReturn, 1, kValue) \ |
| 998 /* #sec-async-iterator-value-unwrap-functions */ \ | 998 /* #sec-async-iterator-value-unwrap-functions */ \ |
| 999 TFJ(AsyncIteratorValueUnwrap, 1, kValue) | 999 TFJ(AsyncIteratorValueUnwrap, 1, kValue) |
| 1000 | 1000 |
| 1001 #ifdef V8_INTL_SUPPORT | 1001 #ifdef V8_INTL_SUPPORT |
| 1002 #define BUILTIN_LIST(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ | 1002 #define BUILTIN_LIST(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ |
| 1003 BUILTIN_LIST_BASE(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ | 1003 BUILTIN_LIST_BASE(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ |
| 1004 \ | 1004 \ |
| 1005 /* ES #sec-string.prototype.tolowercase */ \ | 1005 /* ES #sec-string.prototype.tolowercase */ \ |
| 1006 CPP(StringPrototypeToLowerCaseIntl) \ | 1006 TFJ(StringPrototypeToLowerCaseIntl, 0) \ |
| 1007 /* ES #sec-string.prototype.touppercase */ \ | 1007 /* ES #sec-string.prototype.touppercase */ \ |
| 1008 CPP(StringPrototypeToUpperCaseIntl) \ | 1008 CPP(StringPrototypeToUpperCaseIntl) \ |
| 1009 /* ES #sec-string.prototype.normalize */ \ | 1009 /* ES #sec-string.prototype.normalize */ \ |
| 1010 CPP(StringPrototypeNormalizeIntl) | 1010 CPP(StringPrototypeNormalizeIntl) |
| 1011 #else | 1011 #else |
| 1012 #define BUILTIN_LIST(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ | 1012 #define BUILTIN_LIST(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ |
| 1013 BUILTIN_LIST_BASE(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ | 1013 BUILTIN_LIST_BASE(CPP, API, TFJ, TFC, TFS, TFH, ASM, DBG) \ |
| 1014 \ | 1014 \ |
| 1015 /* no-op fallback version */ \ | 1015 /* no-op fallback version */ \ |
| 1016 CPP(StringPrototypeNormalize) | 1016 CPP(StringPrototypeNormalize) |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1055 #define BUILTIN_LIST_TFS(V) \ | 1055 #define BUILTIN_LIST_TFS(V) \ |
| 1056 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 1056 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
| 1057 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) | 1057 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) |
| 1058 | 1058 |
| 1059 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) | 1059 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) |
| 1060 | 1060 |
| 1061 } // namespace internal | 1061 } // namespace internal |
| 1062 } // namespace v8 | 1062 } // namespace v8 |
| 1063 | 1063 |
| 1064 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 1064 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
| OLD | NEW |