OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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_H_ | 5 #ifndef V8_BUILTINS_BUILTINS_H_ |
6 #define V8_BUILTINS_BUILTINS_H_ | 6 #define V8_BUILTINS_BUILTINS_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 CPP(RegExpLastMatchGetter) \ | 548 CPP(RegExpLastMatchGetter) \ |
549 CPP(RegExpLastParenGetter) \ | 549 CPP(RegExpLastParenGetter) \ |
550 CPP(RegExpLeftContextGetter) \ | 550 CPP(RegExpLeftContextGetter) \ |
551 CPP(RegExpPrototypeCompile) \ | 551 CPP(RegExpPrototypeCompile) \ |
552 TFJ(RegExpPrototypeExec, 2) \ | 552 TFJ(RegExpPrototypeExec, 2) \ |
553 TFJ(RegExpPrototypeFlagsGetter, 1) \ | 553 TFJ(RegExpPrototypeFlagsGetter, 1) \ |
554 TFJ(RegExpPrototypeGlobalGetter, 1) \ | 554 TFJ(RegExpPrototypeGlobalGetter, 1) \ |
555 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ | 555 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ |
556 CPP(RegExpPrototypeMatch) \ | 556 CPP(RegExpPrototypeMatch) \ |
557 TFJ(RegExpPrototypeMultilineGetter, 1) \ | 557 TFJ(RegExpPrototypeMultilineGetter, 1) \ |
| 558 TFJ(RegExpPrototypeReplace, 3) \ |
558 CPP(RegExpPrototypeSearch) \ | 559 CPP(RegExpPrototypeSearch) \ |
559 CPP(RegExpPrototypeSourceGetter) \ | 560 CPP(RegExpPrototypeSourceGetter) \ |
560 CPP(RegExpPrototypeSpeciesGetter) \ | 561 CPP(RegExpPrototypeSpeciesGetter) \ |
561 CPP(RegExpPrototypeSplit) \ | 562 CPP(RegExpPrototypeSplit) \ |
562 TFJ(RegExpPrototypeStickyGetter, 1) \ | 563 TFJ(RegExpPrototypeStickyGetter, 1) \ |
563 CPP(RegExpPrototypeTest) \ | 564 CPP(RegExpPrototypeTest) \ |
564 CPP(RegExpPrototypeToString) \ | 565 CPP(RegExpPrototypeToString) \ |
565 TFJ(RegExpPrototypeUnicodeGetter, 1) \ | 566 TFJ(RegExpPrototypeUnicodeGetter, 1) \ |
566 CPP(RegExpRightContextGetter) \ | 567 CPP(RegExpRightContextGetter) \ |
567 \ | 568 \ |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 | 765 |
765 friend class Isolate; | 766 friend class Isolate; |
766 | 767 |
767 DISALLOW_COPY_AND_ASSIGN(Builtins); | 768 DISALLOW_COPY_AND_ASSIGN(Builtins); |
768 }; | 769 }; |
769 | 770 |
770 } // namespace internal | 771 } // namespace internal |
771 } // namespace v8 | 772 } // namespace v8 |
772 | 773 |
773 #endif // V8_BUILTINS_BUILTINS_H_ | 774 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |