| 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 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 TFJ(RegExpInternalMatch, 2, kRegExp, kString) \ | 730 TFJ(RegExpInternalMatch, 2, kRegExp, kString) \ |
| 731 CPP(RegExpInputGetter) \ | 731 CPP(RegExpInputGetter) \ |
| 732 CPP(RegExpInputSetter) \ | 732 CPP(RegExpInputSetter) \ |
| 733 CPP(RegExpLastMatchGetter) \ | 733 CPP(RegExpLastMatchGetter) \ |
| 734 CPP(RegExpLastParenGetter) \ | 734 CPP(RegExpLastParenGetter) \ |
| 735 CPP(RegExpLeftContextGetter) \ | 735 CPP(RegExpLeftContextGetter) \ |
| 736 /* ES #sec-regexp.prototype.compile */ \ | 736 /* ES #sec-regexp.prototype.compile */ \ |
| 737 TFJ(RegExpPrototypeCompile, 2, kPattern, kFlags) \ | 737 TFJ(RegExpPrototypeCompile, 2, kPattern, kFlags) \ |
| 738 /* ES #sec-regexp.prototype.exec */ \ | 738 /* ES #sec-regexp.prototype.exec */ \ |
| 739 TFJ(RegExpPrototypeExec, 1, kString) \ | 739 TFJ(RegExpPrototypeExec, 1, kString) \ |
| 740 /* ES #sec-get-regexp.prototype.dotAll */ \ |
| 741 TFJ(RegExpPrototypeDotAllGetter, 0) \ |
| 740 /* ES #sec-get-regexp.prototype.flags */ \ | 742 /* ES #sec-get-regexp.prototype.flags */ \ |
| 741 TFJ(RegExpPrototypeFlagsGetter, 0) \ | 743 TFJ(RegExpPrototypeFlagsGetter, 0) \ |
| 742 /* ES #sec-get-regexp.prototype.global */ \ | 744 /* ES #sec-get-regexp.prototype.global */ \ |
| 743 TFJ(RegExpPrototypeGlobalGetter, 0) \ | 745 TFJ(RegExpPrototypeGlobalGetter, 0) \ |
| 744 /* ES #sec-get-regexp.prototype.ignorecase */ \ | 746 /* ES #sec-get-regexp.prototype.ignorecase */ \ |
| 745 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ | 747 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ |
| 746 /* ES #sec-regexp.prototype-@@match */ \ | 748 /* ES #sec-regexp.prototype-@@match */ \ |
| 747 TFJ(RegExpPrototypeMatch, 1, kString) \ | 749 TFJ(RegExpPrototypeMatch, 1, kString) \ |
| 748 /* ES #sec-get-regexp.prototype.multiline */ \ | 750 /* ES #sec-get-regexp.prototype.multiline */ \ |
| 749 TFJ(RegExpPrototypeMultilineGetter, 0) \ | 751 TFJ(RegExpPrototypeMultilineGetter, 0) \ |
| (...skipping 242 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 |