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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 CPP(ReflectGetPrototypeOf) \ | 484 CPP(ReflectGetPrototypeOf) \ |
485 CPP(ReflectHas) \ | 485 CPP(ReflectHas) \ |
486 CPP(ReflectIsExtensible) \ | 486 CPP(ReflectIsExtensible) \ |
487 CPP(ReflectOwnKeys) \ | 487 CPP(ReflectOwnKeys) \ |
488 CPP(ReflectPreventExtensions) \ | 488 CPP(ReflectPreventExtensions) \ |
489 CPP(ReflectSet) \ | 489 CPP(ReflectSet) \ |
490 CPP(ReflectSetPrototypeOf) \ | 490 CPP(ReflectSetPrototypeOf) \ |
491 \ | 491 \ |
492 /* RegExp */ \ | 492 /* RegExp */ \ |
493 CPP(RegExpConstructor) \ | 493 CPP(RegExpConstructor) \ |
| 494 CPP(RegExpPrototypeCapture1Getter) \ |
| 495 CPP(RegExpPrototypeCapture2Getter) \ |
| 496 CPP(RegExpPrototypeCapture3Getter) \ |
| 497 CPP(RegExpPrototypeCapture4Getter) \ |
| 498 CPP(RegExpPrototypeCapture5Getter) \ |
| 499 CPP(RegExpPrototypeCapture6Getter) \ |
| 500 CPP(RegExpPrototypeCapture7Getter) \ |
| 501 CPP(RegExpPrototypeCapture8Getter) \ |
| 502 CPP(RegExpPrototypeCapture9Getter) \ |
| 503 CPP(RegExpPrototypeFlagsGetter) \ |
| 504 CPP(RegExpPrototypeGlobalGetter) \ |
| 505 CPP(RegExpPrototypeIgnoreCaseGetter) \ |
| 506 CPP(RegExpPrototypeInputGetter) \ |
| 507 CPP(RegExpPrototypeInputSetter) \ |
| 508 CPP(RegExpPrototypeLastMatchGetter) \ |
| 509 CPP(RegExpPrototypeLastParenGetter) \ |
| 510 CPP(RegExpPrototypeLeftContextGetter) \ |
| 511 CPP(RegExpPrototypeMultilineGetter) \ |
| 512 CPP(RegExpPrototypeRightContextGetter) \ |
| 513 CPP(RegExpPrototypeSourceGetter) \ |
| 514 CPP(RegExpPrototypeSpeciesGetter) \ |
| 515 CPP(RegExpPrototypeStickyGetter) \ |
| 516 CPP(RegExpPrototypeUnicodeGetter) \ |
494 \ | 517 \ |
495 /* SharedArrayBuffer */ \ | 518 /* SharedArrayBuffer */ \ |
496 CPP(SharedArrayBufferPrototypeGetByteLength) \ | 519 CPP(SharedArrayBufferPrototypeGetByteLength) \ |
497 TFJ(AtomicsLoad, 3) \ | 520 TFJ(AtomicsLoad, 3) \ |
498 TFJ(AtomicsStore, 4) \ | 521 TFJ(AtomicsStore, 4) \ |
499 \ | 522 \ |
500 /* String */ \ | 523 /* String */ \ |
501 ASM(StringConstructor) \ | 524 ASM(StringConstructor) \ |
502 ASM(StringConstructor_ConstructStub) \ | 525 ASM(StringConstructor_ConstructStub) \ |
503 CPP(StringFromCodePoint) \ | 526 CPP(StringFromCodePoint) \ |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 | 694 |
672 friend class Isolate; | 695 friend class Isolate; |
673 | 696 |
674 DISALLOW_COPY_AND_ASSIGN(Builtins); | 697 DISALLOW_COPY_AND_ASSIGN(Builtins); |
675 }; | 698 }; |
676 | 699 |
677 } // namespace internal | 700 } // namespace internal |
678 } // namespace v8 | 701 } // namespace v8 |
679 | 702 |
680 #endif // V8_BUILTINS_BUILTINS_H_ | 703 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |