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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 CPP(RegExpLastMatchGetter) \ | 580 CPP(RegExpLastMatchGetter) \ |
581 CPP(RegExpLastParenGetter) \ | 581 CPP(RegExpLastParenGetter) \ |
582 CPP(RegExpLeftContextGetter) \ | 582 CPP(RegExpLeftContextGetter) \ |
583 CPP(RegExpPrototypeCompile) \ | 583 CPP(RegExpPrototypeCompile) \ |
584 TFJ(RegExpPrototypeExec, 2) \ | 584 TFJ(RegExpPrototypeExec, 2) \ |
585 TFJ(RegExpPrototypeFlagsGetter, 1) \ | 585 TFJ(RegExpPrototypeFlagsGetter, 1) \ |
586 TFJ(RegExpPrototypeGlobalGetter, 1) \ | 586 TFJ(RegExpPrototypeGlobalGetter, 1) \ |
587 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ | 587 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ |
588 CPP(RegExpPrototypeMatch) \ | 588 CPP(RegExpPrototypeMatch) \ |
589 TFJ(RegExpPrototypeMultilineGetter, 1) \ | 589 TFJ(RegExpPrototypeMultilineGetter, 1) \ |
| 590 TFJ(RegExpPrototypeReplace, 3) \ |
590 CPP(RegExpPrototypeSearch) \ | 591 CPP(RegExpPrototypeSearch) \ |
591 CPP(RegExpPrototypeSourceGetter) \ | 592 CPP(RegExpPrototypeSourceGetter) \ |
592 CPP(RegExpPrototypeSpeciesGetter) \ | 593 CPP(RegExpPrototypeSpeciesGetter) \ |
593 CPP(RegExpPrototypeSplit) \ | 594 CPP(RegExpPrototypeSplit) \ |
594 TFJ(RegExpPrototypeStickyGetter, 1) \ | 595 TFJ(RegExpPrototypeStickyGetter, 1) \ |
595 CPP(RegExpPrototypeTest) \ | 596 CPP(RegExpPrototypeTest) \ |
596 CPP(RegExpPrototypeToString) \ | 597 CPP(RegExpPrototypeToString) \ |
597 TFJ(RegExpPrototypeUnicodeGetter, 1) \ | 598 TFJ(RegExpPrototypeUnicodeGetter, 1) \ |
598 CPP(RegExpRightContextGetter) \ | 599 CPP(RegExpRightContextGetter) \ |
599 \ | 600 \ |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 | 809 |
809 friend class Isolate; | 810 friend class Isolate; |
810 | 811 |
811 DISALLOW_COPY_AND_ASSIGN(Builtins); | 812 DISALLOW_COPY_AND_ASSIGN(Builtins); |
812 }; | 813 }; |
813 | 814 |
814 } // namespace internal | 815 } // namespace internal |
815 } // namespace v8 | 816 } // namespace v8 |
816 | 817 |
817 #endif // V8_BUILTINS_BUILTINS_H_ | 818 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |