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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 CPP(RegExpLastParenGetter) \ | 603 CPP(RegExpLastParenGetter) \ |
604 CPP(RegExpLeftContextGetter) \ | 604 CPP(RegExpLeftContextGetter) \ |
605 CPP(RegExpPrototypeCompile) \ | 605 CPP(RegExpPrototypeCompile) \ |
606 TFJ(RegExpPrototypeExec, 1) \ | 606 TFJ(RegExpPrototypeExec, 1) \ |
607 TFJ(RegExpPrototypeFlagsGetter, 0) \ | 607 TFJ(RegExpPrototypeFlagsGetter, 0) \ |
608 TFJ(RegExpPrototypeGlobalGetter, 0) \ | 608 TFJ(RegExpPrototypeGlobalGetter, 0) \ |
609 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ | 609 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ |
610 CPP(RegExpPrototypeMatch) \ | 610 CPP(RegExpPrototypeMatch) \ |
611 TFJ(RegExpPrototypeMultilineGetter, 0) \ | 611 TFJ(RegExpPrototypeMultilineGetter, 0) \ |
612 TFJ(RegExpPrototypeReplace, 2) \ | 612 TFJ(RegExpPrototypeReplace, 2) \ |
613 CPP(RegExpPrototypeSearch) \ | 613 TFJ(RegExpPrototypeSearch, 1) \ |
614 CPP(RegExpPrototypeSourceGetter) \ | 614 CPP(RegExpPrototypeSourceGetter) \ |
615 CPP(RegExpPrototypeSpeciesGetter) \ | 615 CPP(RegExpPrototypeSpeciesGetter) \ |
616 CPP(RegExpPrototypeSplit) \ | 616 CPP(RegExpPrototypeSplit) \ |
617 TFJ(RegExpPrototypeStickyGetter, 0) \ | 617 TFJ(RegExpPrototypeStickyGetter, 0) \ |
618 TFJ(RegExpPrototypeTest, 1) \ | 618 TFJ(RegExpPrototypeTest, 1) \ |
619 CPP(RegExpPrototypeToString) \ | 619 CPP(RegExpPrototypeToString) \ |
620 TFJ(RegExpPrototypeUnicodeGetter, 0) \ | 620 TFJ(RegExpPrototypeUnicodeGetter, 0) \ |
621 CPP(RegExpRightContextGetter) \ | 621 CPP(RegExpRightContextGetter) \ |
622 \ | 622 \ |
623 /* SharedArrayBuffer */ \ | 623 /* SharedArrayBuffer */ \ |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 | 841 |
842 friend class Isolate; | 842 friend class Isolate; |
843 | 843 |
844 DISALLOW_COPY_AND_ASSIGN(Builtins); | 844 DISALLOW_COPY_AND_ASSIGN(Builtins); |
845 }; | 845 }; |
846 | 846 |
847 } // namespace internal | 847 } // namespace internal |
848 } // namespace v8 | 848 } // namespace v8 |
849 | 849 |
850 #endif // V8_BUILTINS_BUILTINS_H_ | 850 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |