| 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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 CPP(ReflectGetOwnPropertyDescriptor) \ | 691 CPP(ReflectGetOwnPropertyDescriptor) \ |
| 692 CPP(ReflectGetPrototypeOf) \ | 692 CPP(ReflectGetPrototypeOf) \ |
| 693 CPP(ReflectHas) \ | 693 CPP(ReflectHas) \ |
| 694 CPP(ReflectIsExtensible) \ | 694 CPP(ReflectIsExtensible) \ |
| 695 CPP(ReflectOwnKeys) \ | 695 CPP(ReflectOwnKeys) \ |
| 696 CPP(ReflectPreventExtensions) \ | 696 CPP(ReflectPreventExtensions) \ |
| 697 CPP(ReflectSet) \ | 697 CPP(ReflectSet) \ |
| 698 CPP(ReflectSetPrototypeOf) \ | 698 CPP(ReflectSetPrototypeOf) \ |
| 699 \ | 699 \ |
| 700 /* RegExp */ \ | 700 /* RegExp */ \ |
| 701 TFS(RegExpPrototypeExecSlow, BUILTIN, kNoExtraICState, \ |
| 702 RegExpPrototypeExecSlow, 1) \ |
| 701 CPP(RegExpCapture1Getter) \ | 703 CPP(RegExpCapture1Getter) \ |
| 702 CPP(RegExpCapture2Getter) \ | 704 CPP(RegExpCapture2Getter) \ |
| 703 CPP(RegExpCapture3Getter) \ | 705 CPP(RegExpCapture3Getter) \ |
| 704 CPP(RegExpCapture4Getter) \ | 706 CPP(RegExpCapture4Getter) \ |
| 705 CPP(RegExpCapture5Getter) \ | 707 CPP(RegExpCapture5Getter) \ |
| 706 CPP(RegExpCapture6Getter) \ | 708 CPP(RegExpCapture6Getter) \ |
| 707 CPP(RegExpCapture7Getter) \ | 709 CPP(RegExpCapture7Getter) \ |
| 708 CPP(RegExpCapture8Getter) \ | 710 CPP(RegExpCapture8Getter) \ |
| 709 CPP(RegExpCapture9Getter) \ | 711 CPP(RegExpCapture9Getter) \ |
| 710 TFJ(RegExpConstructor, 2) \ | 712 TFJ(RegExpConstructor, 2) \ |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 | 1039 |
| 1038 friend class Isolate; | 1040 friend class Isolate; |
| 1039 | 1041 |
| 1040 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1042 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 1041 }; | 1043 }; |
| 1042 | 1044 |
| 1043 } // namespace internal | 1045 } // namespace internal |
| 1044 } // namespace v8 | 1046 } // namespace v8 |
| 1045 | 1047 |
| 1046 #endif // V8_BUILTINS_BUILTINS_H_ | 1048 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |