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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 CPP(RegExpCapture6Getter) \ | 571 CPP(RegExpCapture6Getter) \ |
572 CPP(RegExpCapture7Getter) \ | 572 CPP(RegExpCapture7Getter) \ |
573 CPP(RegExpCapture8Getter) \ | 573 CPP(RegExpCapture8Getter) \ |
574 CPP(RegExpCapture9Getter) \ | 574 CPP(RegExpCapture9Getter) \ |
575 CPP(RegExpConstructor) \ | 575 CPP(RegExpConstructor) \ |
576 CPP(RegExpInputGetter) \ | 576 CPP(RegExpInputGetter) \ |
577 CPP(RegExpInputSetter) \ | 577 CPP(RegExpInputSetter) \ |
578 CPP(RegExpLastMatchGetter) \ | 578 CPP(RegExpLastMatchGetter) \ |
579 CPP(RegExpLastParenGetter) \ | 579 CPP(RegExpLastParenGetter) \ |
580 CPP(RegExpLeftContextGetter) \ | 580 CPP(RegExpLeftContextGetter) \ |
| 581 CPP(RegExpPrototypeCompile) \ |
581 TFJ(RegExpPrototypeExec, 2) \ | 582 TFJ(RegExpPrototypeExec, 2) \ |
582 TFJ(RegExpPrototypeFlagsGetter, 1) \ | 583 TFJ(RegExpPrototypeFlagsGetter, 1) \ |
583 TFJ(RegExpPrototypeGlobalGetter, 1) \ | 584 TFJ(RegExpPrototypeGlobalGetter, 1) \ |
584 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ | 585 TFJ(RegExpPrototypeIgnoreCaseGetter, 1) \ |
585 TFJ(RegExpPrototypeMultilineGetter, 1) \ | 586 TFJ(RegExpPrototypeMultilineGetter, 1) \ |
586 CPP(RegExpPrototypeSourceGetter) \ | 587 CPP(RegExpPrototypeSourceGetter) \ |
587 CPP(RegExpPrototypeSpeciesGetter) \ | 588 CPP(RegExpPrototypeSpeciesGetter) \ |
588 TFJ(RegExpPrototypeStickyGetter, 1) \ | 589 TFJ(RegExpPrototypeStickyGetter, 1) \ |
| 590 CPP(RegExpPrototypeToString) \ |
589 TFJ(RegExpPrototypeUnicodeGetter, 1) \ | 591 TFJ(RegExpPrototypeUnicodeGetter, 1) \ |
590 CPP(RegExpRightContextGetter) \ | 592 CPP(RegExpRightContextGetter) \ |
591 \ | 593 \ |
592 /* SharedArrayBuffer */ \ | 594 /* SharedArrayBuffer */ \ |
593 CPP(SharedArrayBufferPrototypeGetByteLength) \ | 595 CPP(SharedArrayBufferPrototypeGetByteLength) \ |
594 TFJ(AtomicsLoad, 3) \ | 596 TFJ(AtomicsLoad, 3) \ |
595 TFJ(AtomicsStore, 4) \ | 597 TFJ(AtomicsStore, 4) \ |
596 \ | 598 \ |
597 /* String */ \ | 599 /* String */ \ |
598 ASM(StringConstructor) \ | 600 ASM(StringConstructor) \ |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 | 796 |
795 friend class Isolate; | 797 friend class Isolate; |
796 | 798 |
797 DISALLOW_COPY_AND_ASSIGN(Builtins); | 799 DISALLOW_COPY_AND_ASSIGN(Builtins); |
798 }; | 800 }; |
799 | 801 |
800 } // namespace internal | 802 } // namespace internal |
801 } // namespace v8 | 803 } // namespace v8 |
802 | 804 |
803 #endif // V8_BUILTINS_BUILTINS_H_ | 805 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |