Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: src/builtins/builtins-definitions.h

Issue 2763473002: [typedarrays] Move %TypedArray%.prototype.slice to C++ (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-typedarray.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-typedarray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698