| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 /* ES6 section 7.3.12 Call(F, V, [argumentsList]) */ \ | 71 /* ES6 section 7.3.12 Call(F, V, [argumentsList]) */ \ |
| 72 ASM(Call_ReceiverIsNullOrUndefined) \ | 72 ASM(Call_ReceiverIsNullOrUndefined) \ |
| 73 ASM(Call_ReceiverIsNotNullOrUndefined) \ | 73 ASM(Call_ReceiverIsNotNullOrUndefined) \ |
| 74 ASM(Call_ReceiverIsAny) \ | 74 ASM(Call_ReceiverIsAny) \ |
| 75 ASM(TailCall_ReceiverIsNullOrUndefined) \ | 75 ASM(TailCall_ReceiverIsNullOrUndefined) \ |
| 76 ASM(TailCall_ReceiverIsNotNullOrUndefined) \ | 76 ASM(TailCall_ReceiverIsNotNullOrUndefined) \ |
| 77 ASM(TailCall_ReceiverIsAny) \ | 77 ASM(TailCall_ReceiverIsAny) \ |
| 78 ASM(CallWithSpread) \ | 78 ASM(CallWithSpread) \ |
| 79 ASM(CallForwardVarargs) \ | 79 ASM(CallForwardVarargs) \ |
| 80 ASM(CallFunctionForwardVarargs) \ | 80 ASM(CallFunctionForwardVarargs) \ |
| 81 /* API */ \ |
| 82 ASM(CallFunctionCallback) \ |
| 81 \ | 83 \ |
| 82 /* Construct */ \ | 84 /* Construct */ \ |
| 83 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \ | 85 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \ |
| 84 ASM(ConstructFunction) \ | 86 ASM(ConstructFunction) \ |
| 85 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \ | 87 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \ |
| 86 ASM(ConstructBoundFunction) \ | 88 ASM(ConstructBoundFunction) \ |
| 87 ASM(ConstructedNonConstructable) \ | 89 ASM(ConstructedNonConstructable) \ |
| 88 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \ | 90 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \ |
| 89 ASM(ConstructProxy) \ | 91 ASM(ConstructProxy) \ |
| 90 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \ | 92 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \ |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1051 #define BUILTIN_LIST_TFS(V) \ | 1053 #define BUILTIN_LIST_TFS(V) \ |
| 1052 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ | 1054 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ |
| 1053 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) | 1055 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) |
| 1054 | 1056 |
| 1055 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) | 1057 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) |
| 1056 | 1058 |
| 1057 } // namespace internal | 1059 } // namespace internal |
| 1058 } // namespace v8 | 1060 } // namespace v8 |
| 1059 | 1061 |
| 1060 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ | 1062 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ |
| OLD | NEW |