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