OLD | NEW |
1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 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_DEFINITIONS_H_ | 5 #ifndef V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 | 10 |
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
885 /* ES6 #sec-%typedarray%.prototype.fill */ \ | 885 /* ES6 #sec-%typedarray%.prototype.fill */ \ |
886 CPP(TypedArrayPrototypeFill) \ | 886 CPP(TypedArrayPrototypeFill) \ |
887 /* ES7 #sec-%typedarray%.prototype.includes */ \ | 887 /* ES7 #sec-%typedarray%.prototype.includes */ \ |
888 CPP(TypedArrayPrototypeIncludes) \ | 888 CPP(TypedArrayPrototypeIncludes) \ |
889 /* ES6 #sec-%typedarray%.prototype.indexof */ \ | 889 /* ES6 #sec-%typedarray%.prototype.indexof */ \ |
890 CPP(TypedArrayPrototypeIndexOf) \ | 890 CPP(TypedArrayPrototypeIndexOf) \ |
891 /* ES6 #sec-%typedarray%.prototype.lastindexof */ \ | 891 /* ES6 #sec-%typedarray%.prototype.lastindexof */ \ |
892 CPP(TypedArrayPrototypeLastIndexOf) \ | 892 CPP(TypedArrayPrototypeLastIndexOf) \ |
893 /* ES6 #sec-%typedarray%.prototype.reverse */ \ | 893 /* ES6 #sec-%typedarray%.prototype.reverse */ \ |
894 CPP(TypedArrayPrototypeReverse) \ | 894 CPP(TypedArrayPrototypeReverse) \ |
| 895 /* ES6 #sec-%typedarray%.prototype.slice */ \ |
| 896 CPP(TypedArrayPrototypeSlice) \ |
895 /* ES6 %TypedArray%.prototype.every */ \ | 897 /* ES6 %TypedArray%.prototype.every */ \ |
896 TFJ(TypedArrayPrototypeEvery, 2, kCallbackFn, kThisArg) \ | 898 TFJ(TypedArrayPrototypeEvery, 2, kCallbackFn, kThisArg) \ |
897 /* ES6 %TypedArray%.prototype.some */ \ | 899 /* ES6 %TypedArray%.prototype.some */ \ |
898 TFJ(TypedArrayPrototypeSome, 2, kCallbackFn, kThisArg) \ | 900 TFJ(TypedArrayPrototypeSome, 2, kCallbackFn, kThisArg) \ |
899 \ | 901 \ |
900 /* Wasm */ \ | 902 /* Wasm */ \ |
901 ASM(WasmCompileLazy) \ | 903 ASM(WasmCompileLazy) \ |
902 TFS(WasmStackGuard, WasmRuntimeCall, 1) \ | 904 TFS(WasmStackGuard, WasmRuntimeCall, 1) \ |
903 TFS(ThrowWasmTrapUnreachable, WasmRuntimeCall, 1) \ | 905 TFS(ThrowWasmTrapUnreachable, WasmRuntimeCall, 1) \ |
904 TFS(ThrowWasmTrapMemOutOfBounds, WasmRuntimeCall, 1) \ | 906 TFS(ThrowWasmTrapMemOutOfBounds, WasmRuntimeCall, 1) \ |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
999 #define BUILTIN_LIST_DBG(V) \ | 1001 #define BUILTIN_LIST_DBG(V) \ |
1000 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 1002 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
1001 IGNORE_BUILTIN, IGNORE_BUILTIN, V) | 1003 IGNORE_BUILTIN, IGNORE_BUILTIN, V) |
1002 | 1004 |
1003 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) | 1005 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) |
1004 | 1006 |
1005 } // namespace internal | 1007 } // namespace internal |
1006 } // namespace v8 | 1008 } // namespace v8 |
1007 | 1009 |
1008 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 1010 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
OLD | NEW |