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