| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \ | 83 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \ |
| 84 ASM(ConstructFunction) \ | 84 ASM(ConstructFunction) \ |
| 85 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \ | 85 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \ |
| 86 ASM(ConstructBoundFunction) \ | 86 ASM(ConstructBoundFunction) \ |
| 87 ASM(ConstructedNonConstructable) \ | 87 ASM(ConstructedNonConstructable) \ |
| 88 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \ | 88 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \ |
| 89 ASM(ConstructProxy) \ | 89 ASM(ConstructProxy) \ |
| 90 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \ | 90 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \ |
| 91 ASM(Construct) \ | 91 ASM(Construct) \ |
| 92 ASM(ConstructWithSpread) \ | 92 ASM(ConstructWithSpread) \ |
| 93 ASM(ConstructForwardVarargs) \ |
| 94 ASM(ConstructFunctionForwardVarargs) \ |
| 93 ASM(JSConstructStubApi) \ | 95 ASM(JSConstructStubApi) \ |
| 94 ASM(JSConstructStubGenericRestrictedReturn) \ | 96 ASM(JSConstructStubGenericRestrictedReturn) \ |
| 95 ASM(JSConstructStubGenericUnrestrictedReturn) \ | 97 ASM(JSConstructStubGenericUnrestrictedReturn) \ |
| 96 ASM(JSBuiltinsConstructStub) \ | 98 ASM(JSBuiltinsConstructStub) \ |
| 97 TFC(FastNewClosure, FastNewClosure, 1) \ | 99 TFC(FastNewClosure, FastNewClosure, 1) \ |
| 98 TFC(FastNewFunctionContextEval, FastNewFunctionContext, 1) \ | 100 TFC(FastNewFunctionContextEval, FastNewFunctionContext, 1) \ |
| 99 TFC(FastNewFunctionContextFunction, FastNewFunctionContext, 1) \ | 101 TFC(FastNewFunctionContextFunction, FastNewFunctionContext, 1) \ |
| 100 TFC(FastNewStrictArguments, FastNewArguments, 1) \ | 102 TFC(FastNewStrictArguments, FastNewArguments, 1) \ |
| 101 TFC(FastNewSloppyArguments, FastNewArguments, 1) \ | 103 TFC(FastNewSloppyArguments, FastNewArguments, 1) \ |
| 102 TFC(FastNewRestParameter, FastNewArguments, 1) \ | 104 TFC(FastNewRestParameter, FastNewArguments, 1) \ |
| (...skipping 955 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 |