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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 CPP(RegExpCapture1Getter) \ | 568 CPP(RegExpCapture1Getter) \ |
569 CPP(RegExpCapture2Getter) \ | 569 CPP(RegExpCapture2Getter) \ |
570 CPP(RegExpCapture3Getter) \ | 570 CPP(RegExpCapture3Getter) \ |
571 CPP(RegExpCapture4Getter) \ | 571 CPP(RegExpCapture4Getter) \ |
572 CPP(RegExpCapture5Getter) \ | 572 CPP(RegExpCapture5Getter) \ |
573 CPP(RegExpCapture6Getter) \ | 573 CPP(RegExpCapture6Getter) \ |
574 CPP(RegExpCapture7Getter) \ | 574 CPP(RegExpCapture7Getter) \ |
575 CPP(RegExpCapture8Getter) \ | 575 CPP(RegExpCapture8Getter) \ |
576 CPP(RegExpCapture9Getter) \ | 576 CPP(RegExpCapture9Getter) \ |
577 CPP(RegExpConstructor) \ | 577 CPP(RegExpConstructor) \ |
| 578 TFJ(RegExpInternalMatch, 3) \ |
578 CPP(RegExpInputGetter) \ | 579 CPP(RegExpInputGetter) \ |
579 CPP(RegExpInputSetter) \ | 580 CPP(RegExpInputSetter) \ |
580 CPP(RegExpLastMatchGetter) \ | 581 CPP(RegExpLastMatchGetter) \ |
581 CPP(RegExpLastParenGetter) \ | 582 CPP(RegExpLastParenGetter) \ |
582 CPP(RegExpLeftContextGetter) \ | 583 CPP(RegExpLeftContextGetter) \ |
583 CPP(RegExpPrototypeCompile) \ | 584 CPP(RegExpPrototypeCompile) \ |
584 TFJ(RegExpPrototypeExec, 2) \ | 585 TFJ(RegExpPrototypeExec, 2) \ |
585 TFJ(RegExpPrototypeFlagsGetter, 1) \ | 586 TFJ(RegExpPrototypeFlagsGetter, 1) \ |
586 TFJ(RegExpPrototypeGlobalGetter, 1) \ | 587 TFJ(RegExpPrototypeGlobalGetter, 1) \ |
587 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ | 588 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 | 813 |
813 friend class Isolate; | 814 friend class Isolate; |
814 | 815 |
815 DISALLOW_COPY_AND_ASSIGN(Builtins); | 816 DISALLOW_COPY_AND_ASSIGN(Builtins); |
816 }; | 817 }; |
817 | 818 |
818 } // namespace internal | 819 } // namespace internal |
819 } // namespace v8 | 820 } // namespace v8 |
820 | 821 |
821 #endif // V8_BUILTINS_BUILTINS_H_ | 822 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |