| 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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 TFJ(TypedArrayPrototypeByteLength, 0) \ | 797 TFJ(TypedArrayPrototypeByteLength, 0) \ |
| 798 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ | 798 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ |
| 799 TFJ(TypedArrayPrototypeByteOffset, 0) \ | 799 TFJ(TypedArrayPrototypeByteOffset, 0) \ |
| 800 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ | 800 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ |
| 801 TFJ(TypedArrayPrototypeLength, 0) \ | 801 TFJ(TypedArrayPrototypeLength, 0) \ |
| 802 /* ES6 #sec-%typedarray%.prototype.entries */ \ | 802 /* ES6 #sec-%typedarray%.prototype.entries */ \ |
| 803 TFJ(TypedArrayPrototypeEntries, 0) \ | 803 TFJ(TypedArrayPrototypeEntries, 0) \ |
| 804 /* ES6 #sec-%typedarray%.prototype.keys */ \ | 804 /* ES6 #sec-%typedarray%.prototype.keys */ \ |
| 805 TFJ(TypedArrayPrototypeKeys, 0) \ | 805 TFJ(TypedArrayPrototypeKeys, 0) \ |
| 806 /* ES6 #sec-%typedarray%.prototype.values */ \ | 806 /* ES6 #sec-%typedarray%.prototype.values */ \ |
| 807 TFJ(TypedArrayPrototypeValues, 0) | 807 TFJ(TypedArrayPrototypeValues, 0) \ |
| 808 /* ES6 #sec-%typedarray%.prototype.copywithin */ \ |
| 809 CPP(TypedArrayPrototypeCopyWithin) |
| 808 | 810 |
| 809 #define IGNORE_BUILTIN(...) | 811 #define IGNORE_BUILTIN(...) |
| 810 | 812 |
| 811 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) | 813 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) |
| 812 | 814 |
| 813 #define BUILTIN_LIST_C(V) \ | 815 #define BUILTIN_LIST_C(V) \ |
| 814 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 816 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
| 815 IGNORE_BUILTIN, IGNORE_BUILTIN) | 817 IGNORE_BUILTIN, IGNORE_BUILTIN) |
| 816 | 818 |
| 817 #define BUILTIN_LIST_A(V) \ | 819 #define BUILTIN_LIST_A(V) \ |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 | 954 |
| 953 friend class Isolate; | 955 friend class Isolate; |
| 954 | 956 |
| 955 DISALLOW_COPY_AND_ASSIGN(Builtins); | 957 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 956 }; | 958 }; |
| 957 | 959 |
| 958 } // namespace internal | 960 } // namespace internal |
| 959 } // namespace v8 | 961 } // namespace v8 |
| 960 | 962 |
| 961 #endif // V8_BUILTINS_BUILTINS_H_ | 963 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |