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/globals.h" | 9 #include "src/globals.h" |
10 | 10 |
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 CPP(ReflectGet) \ | 670 CPP(ReflectGet) \ |
671 CPP(ReflectGetOwnPropertyDescriptor) \ | 671 CPP(ReflectGetOwnPropertyDescriptor) \ |
672 CPP(ReflectGetPrototypeOf) \ | 672 CPP(ReflectGetPrototypeOf) \ |
673 CPP(ReflectHas) \ | 673 CPP(ReflectHas) \ |
674 CPP(ReflectIsExtensible) \ | 674 CPP(ReflectIsExtensible) \ |
675 CPP(ReflectOwnKeys) \ | 675 CPP(ReflectOwnKeys) \ |
676 CPP(ReflectPreventExtensions) \ | 676 CPP(ReflectPreventExtensions) \ |
677 CPP(ReflectSet) \ | 677 CPP(ReflectSet) \ |
678 CPP(ReflectSetPrototypeOf) \ | 678 CPP(ReflectSetPrototypeOf) \ |
679 \ | 679 \ |
| 680 TFS(RegExpExecInternalFast, BUILTIN, kNoExtraICState, RegExpExecInternal) \ |
| 681 TFS(RegExpExecInternalSlow, BUILTIN, kNoExtraICState, RegExpExecInternal) \ |
| 682 \ |
680 /* RegExp */ \ | 683 /* RegExp */ \ |
681 CPP(RegExpCapture1Getter) \ | 684 CPP(RegExpCapture1Getter) \ |
682 CPP(RegExpCapture2Getter) \ | 685 CPP(RegExpCapture2Getter) \ |
683 CPP(RegExpCapture3Getter) \ | 686 CPP(RegExpCapture3Getter) \ |
684 CPP(RegExpCapture4Getter) \ | 687 CPP(RegExpCapture4Getter) \ |
685 CPP(RegExpCapture5Getter) \ | 688 CPP(RegExpCapture5Getter) \ |
686 CPP(RegExpCapture6Getter) \ | 689 CPP(RegExpCapture6Getter) \ |
687 CPP(RegExpCapture7Getter) \ | 690 CPP(RegExpCapture7Getter) \ |
688 CPP(RegExpCapture8Getter) \ | 691 CPP(RegExpCapture8Getter) \ |
689 CPP(RegExpCapture9Getter) \ | 692 CPP(RegExpCapture9Getter) \ |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
945 | 948 |
946 friend class Isolate; | 949 friend class Isolate; |
947 | 950 |
948 DISALLOW_COPY_AND_ASSIGN(Builtins); | 951 DISALLOW_COPY_AND_ASSIGN(Builtins); |
949 }; | 952 }; |
950 | 953 |
951 } // namespace internal | 954 } // namespace internal |
952 } // namespace v8 | 955 } // namespace v8 |
953 | 956 |
954 #endif // V8_BUILTINS_BUILTINS_H_ | 957 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |