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

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

Issue 2814683002: [builtins] Implement %TypedArray%.prototype.map in the CSA (Closed)
Patch Set: added todo Created 3 years, 7 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/builtins/builtins-array-gen.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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ 942 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \
943 /* ES6 %TypedArray%.prototype.some */ \ 943 /* ES6 %TypedArray%.prototype.some */ \
944 TFJ(TypedArrayPrototypeSome, \ 944 TFJ(TypedArrayPrototypeSome, \
945 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ 945 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \
946 /* ES6 %TypedArray%.prototype.reduce */ \ 946 /* ES6 %TypedArray%.prototype.reduce */ \
947 TFJ(TypedArrayPrototypeReduce, \ 947 TFJ(TypedArrayPrototypeReduce, \
948 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ 948 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \
949 /* ES6 %TypedArray%.prototype.reduceRight */ \ 949 /* ES6 %TypedArray%.prototype.reduceRight */ \
950 TFJ(TypedArrayPrototypeReduceRight, \ 950 TFJ(TypedArrayPrototypeReduceRight, \
951 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ 951 SharedFunctionInfo::kDontAdaptArgumentsSentinel) \
952 /* ES6 %TypedArray%.prototype.map */ \
953 TFJ(TypedArrayPrototypeMap, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \
952 \ 954 \
953 /* Wasm */ \ 955 /* Wasm */ \
954 ASM(WasmCompileLazy) \ 956 ASM(WasmCompileLazy) \
955 TFC(WasmStackGuard, WasmRuntimeCall, 1) \ 957 TFC(WasmStackGuard, WasmRuntimeCall, 1) \
956 TFC(ThrowWasmTrapUnreachable, WasmRuntimeCall, 1) \ 958 TFC(ThrowWasmTrapUnreachable, WasmRuntimeCall, 1) \
957 TFC(ThrowWasmTrapMemOutOfBounds, WasmRuntimeCall, 1) \ 959 TFC(ThrowWasmTrapMemOutOfBounds, WasmRuntimeCall, 1) \
958 TFC(ThrowWasmTrapDivByZero, WasmRuntimeCall, 1) \ 960 TFC(ThrowWasmTrapDivByZero, WasmRuntimeCall, 1) \
959 TFC(ThrowWasmTrapDivUnrepresentable, WasmRuntimeCall, 1) \ 961 TFC(ThrowWasmTrapDivUnrepresentable, WasmRuntimeCall, 1) \
960 TFC(ThrowWasmTrapRemByZero, WasmRuntimeCall, 1) \ 962 TFC(ThrowWasmTrapRemByZero, WasmRuntimeCall, 1) \
961 TFC(ThrowWasmTrapFloatUnrepresentable, WasmRuntimeCall, 1) \ 963 TFC(ThrowWasmTrapFloatUnrepresentable, WasmRuntimeCall, 1) \
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 #define BUILTIN_LIST_TFS(V) \ 1060 #define BUILTIN_LIST_TFS(V) \
1059 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1061 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
1060 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) 1062 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN)
1061 1063
1062 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1064 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1063 1065
1064 } // namespace internal 1066 } // namespace internal
1065 } // namespace v8 1067 } // namespace v8
1066 1068
1067 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1069 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-array-gen.cc ('k') | src/builtins/builtins-typedarray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698