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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 CPP(ReflectGetOwnPropertyDescriptor) \ | 683 CPP(ReflectGetOwnPropertyDescriptor) \ |
684 CPP(ReflectGetPrototypeOf) \ | 684 CPP(ReflectGetPrototypeOf) \ |
685 CPP(ReflectHas) \ | 685 CPP(ReflectHas) \ |
686 CPP(ReflectIsExtensible) \ | 686 CPP(ReflectIsExtensible) \ |
687 CPP(ReflectOwnKeys) \ | 687 CPP(ReflectOwnKeys) \ |
688 CPP(ReflectPreventExtensions) \ | 688 CPP(ReflectPreventExtensions) \ |
689 CPP(ReflectSet) \ | 689 CPP(ReflectSet) \ |
690 CPP(ReflectSetPrototypeOf) \ | 690 CPP(ReflectSetPrototypeOf) \ |
691 \ | 691 \ |
692 /* RegExp */ \ | 692 /* RegExp */ \ |
| 693 TFS(RegExpPrototypeExecSlow, BUILTIN, kNoExtraICState, GenericTagged2, 2) \ |
693 CPP(RegExpCapture1Getter) \ | 694 CPP(RegExpCapture1Getter) \ |
694 CPP(RegExpCapture2Getter) \ | 695 CPP(RegExpCapture2Getter) \ |
695 CPP(RegExpCapture3Getter) \ | 696 CPP(RegExpCapture3Getter) \ |
696 CPP(RegExpCapture4Getter) \ | 697 CPP(RegExpCapture4Getter) \ |
697 CPP(RegExpCapture5Getter) \ | 698 CPP(RegExpCapture5Getter) \ |
698 CPP(RegExpCapture6Getter) \ | 699 CPP(RegExpCapture6Getter) \ |
699 CPP(RegExpCapture7Getter) \ | 700 CPP(RegExpCapture7Getter) \ |
700 CPP(RegExpCapture8Getter) \ | 701 CPP(RegExpCapture8Getter) \ |
701 CPP(RegExpCapture9Getter) \ | 702 CPP(RegExpCapture9Getter) \ |
702 TFJ(RegExpConstructor, 2) \ | 703 TFJ(RegExpConstructor, 2) \ |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 | 996 |
996 friend class Isolate; | 997 friend class Isolate; |
997 | 998 |
998 DISALLOW_COPY_AND_ASSIGN(Builtins); | 999 DISALLOW_COPY_AND_ASSIGN(Builtins); |
999 }; | 1000 }; |
1000 | 1001 |
1001 } // namespace internal | 1002 } // namespace internal |
1002 } // namespace v8 | 1003 } // namespace v8 |
1003 | 1004 |
1004 #endif // V8_BUILTINS_BUILTINS_H_ | 1005 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |