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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 TFJ(RegExpPrototypeGlobalGetter, 0) \ | 599 TFJ(RegExpPrototypeGlobalGetter, 0) \ |
600 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ | 600 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ |
601 CPP(RegExpPrototypeMatch) \ | 601 CPP(RegExpPrototypeMatch) \ |
602 TFJ(RegExpPrototypeMultilineGetter, 0) \ | 602 TFJ(RegExpPrototypeMultilineGetter, 0) \ |
603 TFJ(RegExpPrototypeReplace, 2) \ | 603 TFJ(RegExpPrototypeReplace, 2) \ |
604 CPP(RegExpPrototypeSearch) \ | 604 CPP(RegExpPrototypeSearch) \ |
605 CPP(RegExpPrototypeSourceGetter) \ | 605 CPP(RegExpPrototypeSourceGetter) \ |
606 CPP(RegExpPrototypeSpeciesGetter) \ | 606 CPP(RegExpPrototypeSpeciesGetter) \ |
607 CPP(RegExpPrototypeSplit) \ | 607 CPP(RegExpPrototypeSplit) \ |
608 TFJ(RegExpPrototypeStickyGetter, 0) \ | 608 TFJ(RegExpPrototypeStickyGetter, 0) \ |
609 CPP(RegExpPrototypeTest) \ | 609 TFJ(RegExpPrototypeTest, 1) \ |
610 CPP(RegExpPrototypeToString) \ | 610 CPP(RegExpPrototypeToString) \ |
611 TFJ(RegExpPrototypeUnicodeGetter, 0) \ | 611 TFJ(RegExpPrototypeUnicodeGetter, 0) \ |
612 CPP(RegExpRightContextGetter) \ | 612 CPP(RegExpRightContextGetter) \ |
613 \ | 613 \ |
614 /* SharedArrayBuffer */ \ | 614 /* SharedArrayBuffer */ \ |
615 CPP(SharedArrayBufferPrototypeGetByteLength) \ | 615 CPP(SharedArrayBufferPrototypeGetByteLength) \ |
616 TFJ(AtomicsLoad, 2) \ | 616 TFJ(AtomicsLoad, 2) \ |
617 TFJ(AtomicsStore, 3) \ | 617 TFJ(AtomicsStore, 3) \ |
618 \ | 618 \ |
619 /* String */ \ | 619 /* String */ \ |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 | 832 |
833 friend class Isolate; | 833 friend class Isolate; |
834 | 834 |
835 DISALLOW_COPY_AND_ASSIGN(Builtins); | 835 DISALLOW_COPY_AND_ASSIGN(Builtins); |
836 }; | 836 }; |
837 | 837 |
838 } // namespace internal | 838 } // namespace internal |
839 } // namespace v8 | 839 } // namespace v8 |
840 | 840 |
841 #endif // V8_BUILTINS_BUILTINS_H_ | 841 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |