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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 /* ES6 section 19.4.3.3 Symbol.prototype.valueOf ( ) */ \ | 659 /* ES6 section 19.4.3.3 Symbol.prototype.valueOf ( ) */ \ |
660 TFJ(SymbolPrototypeValueOf, 1) \ | 660 TFJ(SymbolPrototypeValueOf, 1) \ |
661 \ | 661 \ |
662 /* TypedArray */ \ | 662 /* TypedArray */ \ |
663 CPP(TypedArrayPrototypeBuffer) \ | 663 CPP(TypedArrayPrototypeBuffer) \ |
664 /* ES6 section 22.2.3.2 get %TypedArray%.prototype.byteLength */ \ | 664 /* ES6 section 22.2.3.2 get %TypedArray%.prototype.byteLength */ \ |
665 TFJ(TypedArrayPrototypeByteLength, 1) \ | 665 TFJ(TypedArrayPrototypeByteLength, 1) \ |
666 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ | 666 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ |
667 TFJ(TypedArrayPrototypeByteOffset, 1) \ | 667 TFJ(TypedArrayPrototypeByteOffset, 1) \ |
668 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ | 668 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ |
669 TFJ(TypedArrayPrototypeLength, 1) | 669 TFJ(TypedArrayPrototypeLength, 1) \ |
| 670 \ |
| 671 CPP(ModuleNamespaceIterator) \ |
| 672 CPP(FixedArrayIteratorNext) |
670 | 673 |
671 #define IGNORE_BUILTIN(...) | 674 #define IGNORE_BUILTIN(...) |
672 | 675 |
673 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) | 676 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) |
674 | 677 |
675 #define BUILTIN_LIST_C(V) \ | 678 #define BUILTIN_LIST_C(V) \ |
676 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 679 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
677 IGNORE_BUILTIN, IGNORE_BUILTIN) | 680 IGNORE_BUILTIN, IGNORE_BUILTIN) |
678 | 681 |
679 #define BUILTIN_LIST_A(V) \ | 682 #define BUILTIN_LIST_A(V) \ |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 | 812 |
810 friend class Isolate; | 813 friend class Isolate; |
811 | 814 |
812 DISALLOW_COPY_AND_ASSIGN(Builtins); | 815 DISALLOW_COPY_AND_ASSIGN(Builtins); |
813 }; | 816 }; |
814 | 817 |
815 } // namespace internal | 818 } // namespace internal |
816 } // namespace v8 | 819 } // namespace v8 |
817 | 820 |
818 #endif // V8_BUILTINS_BUILTINS_H_ | 821 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |