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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 CPP(RegExpInputGetter) \ | 546 CPP(RegExpInputGetter) \ |
547 CPP(RegExpInputSetter) \ | 547 CPP(RegExpInputSetter) \ |
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 TFJ(RegExpPrototypeMultilineGetter, 1) \ | 557 TFJ(RegExpPrototypeMultilineGetter, 1) \ |
| 558 CPP(RegExpPrototypeSearch) \ |
557 CPP(RegExpPrototypeSourceGetter) \ | 559 CPP(RegExpPrototypeSourceGetter) \ |
558 CPP(RegExpPrototypeSpeciesGetter) \ | 560 CPP(RegExpPrototypeSpeciesGetter) \ |
559 TFJ(RegExpPrototypeStickyGetter, 1) \ | 561 TFJ(RegExpPrototypeStickyGetter, 1) \ |
| 562 CPP(RegExpPrototypeTest) \ |
560 CPP(RegExpPrototypeToString) \ | 563 CPP(RegExpPrototypeToString) \ |
561 TFJ(RegExpPrototypeUnicodeGetter, 1) \ | 564 TFJ(RegExpPrototypeUnicodeGetter, 1) \ |
562 CPP(RegExpRightContextGetter) \ | 565 CPP(RegExpRightContextGetter) \ |
563 \ | 566 \ |
564 /* SharedArrayBuffer */ \ | 567 /* SharedArrayBuffer */ \ |
565 CPP(SharedArrayBufferPrototypeGetByteLength) \ | 568 CPP(SharedArrayBufferPrototypeGetByteLength) \ |
566 TFJ(AtomicsLoad, 3) \ | 569 TFJ(AtomicsLoad, 3) \ |
567 TFJ(AtomicsStore, 4) \ | 570 TFJ(AtomicsStore, 4) \ |
568 \ | 571 \ |
569 /* String */ \ | 572 /* String */ \ |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 | 763 |
761 friend class Isolate; | 764 friend class Isolate; |
762 | 765 |
763 DISALLOW_COPY_AND_ASSIGN(Builtins); | 766 DISALLOW_COPY_AND_ASSIGN(Builtins); |
764 }; | 767 }; |
765 | 768 |
766 } // namespace internal | 769 } // namespace internal |
767 } // namespace v8 | 770 } // namespace v8 |
768 | 771 |
769 #endif // V8_BUILTINS_BUILTINS_H_ | 772 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |