| 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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ | 704 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ |
| 705 TFJ(TypedArrayPrototypeByteOffset, 0) \ | 705 TFJ(TypedArrayPrototypeByteOffset, 0) \ |
| 706 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ | 706 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ |
| 707 TFJ(TypedArrayPrototypeLength, 0) \ | 707 TFJ(TypedArrayPrototypeLength, 0) \ |
| 708 /* ES6 #sec-%typedarray%.prototype.entries */ \ | 708 /* ES6 #sec-%typedarray%.prototype.entries */ \ |
| 709 TFJ(TypedArrayPrototypeEntries, 0) \ | 709 TFJ(TypedArrayPrototypeEntries, 0) \ |
| 710 /* ES6 #sec-%typedarray%.prototype.keys */ \ | 710 /* ES6 #sec-%typedarray%.prototype.keys */ \ |
| 711 TFJ(TypedArrayPrototypeKeys, 0) \ | 711 TFJ(TypedArrayPrototypeKeys, 0) \ |
| 712 /* ES6 #sec-%typedarray%.prototype.values */ \ | 712 /* ES6 #sec-%typedarray%.prototype.values */ \ |
| 713 TFJ(TypedArrayPrototypeValues, 0) \ | 713 TFJ(TypedArrayPrototypeValues, 0) \ |
| 714 \ | |
| 715 CPP(ModuleNamespaceIterator) \ | |
| 716 CPP(FixedArrayIteratorNext) | |
| 717 | 714 |
| 718 #define IGNORE_BUILTIN(...) | 715 #define IGNORE_BUILTIN(...) |
| 719 | 716 |
| 720 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) | 717 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) |
| 721 | 718 |
| 722 #define BUILTIN_LIST_C(V) \ | 719 #define BUILTIN_LIST_C(V) \ |
| 723 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 720 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
| 724 IGNORE_BUILTIN, IGNORE_BUILTIN) | 721 IGNORE_BUILTIN, IGNORE_BUILTIN) |
| 725 | 722 |
| 726 #define BUILTIN_LIST_A(V) \ | 723 #define BUILTIN_LIST_A(V) \ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 | 853 |
| 857 friend class Isolate; | 854 friend class Isolate; |
| 858 | 855 |
| 859 DISALLOW_COPY_AND_ASSIGN(Builtins); | 856 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 860 }; | 857 }; |
| 861 | 858 |
| 862 } // namespace internal | 859 } // namespace internal |
| 863 } // namespace v8 | 860 } // namespace v8 |
| 864 | 861 |
| 865 #endif // V8_BUILTINS_BUILTINS_H_ | 862 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |