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