| 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |