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

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

Issue 2890023004: [turbofan] Avoid allocating rest parameters for spread calls. (Closed)
Patch Set: 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-constructor-gen.cc ('k') | src/builtins/ia32/builtins-ia32.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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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-constructor-gen.cc ('k') | src/builtins/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698