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 \ | |
683 /* RegExp */ \ | 680 /* RegExp */ \ |
684 CPP(RegExpCapture1Getter) \ | 681 CPP(RegExpCapture1Getter) \ |
685 CPP(RegExpCapture2Getter) \ | 682 CPP(RegExpCapture2Getter) \ |
686 CPP(RegExpCapture3Getter) \ | 683 CPP(RegExpCapture3Getter) \ |
687 CPP(RegExpCapture4Getter) \ | 684 CPP(RegExpCapture4Getter) \ |
688 CPP(RegExpCapture5Getter) \ | 685 CPP(RegExpCapture5Getter) \ |
689 CPP(RegExpCapture6Getter) \ | 686 CPP(RegExpCapture6Getter) \ |
690 CPP(RegExpCapture7Getter) \ | 687 CPP(RegExpCapture7Getter) \ |
691 CPP(RegExpCapture8Getter) \ | 688 CPP(RegExpCapture8Getter) \ |
692 CPP(RegExpCapture9Getter) \ | 689 CPP(RegExpCapture9Getter) \ |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
948 | 945 |
949 friend class Isolate; | 946 friend class Isolate; |
950 | 947 |
951 DISALLOW_COPY_AND_ASSIGN(Builtins); | 948 DISALLOW_COPY_AND_ASSIGN(Builtins); |
952 }; | 949 }; |
953 | 950 |
954 } // namespace internal | 951 } // namespace internal |
955 } // namespace v8 | 952 } // namespace v8 |
956 | 953 |
957 #endif // V8_BUILTINS_BUILTINS_H_ | 954 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |