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

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

Issue 2571563004: [Turbofan] Implement super calls with spread bytecode in assembly code. (Closed)
Patch Set: Rebase on master Created 4 years 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 | « no previous file | src/builtins/x64/builtins-x64.cc » ('j') | src/builtins/x64/builtins-x64.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 /* Construct */ \ 75 /* Construct */ \
76 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \ 76 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \
77 ASM(ConstructFunction) \ 77 ASM(ConstructFunction) \
78 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \ 78 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \
79 ASM(ConstructBoundFunction) \ 79 ASM(ConstructBoundFunction) \
80 ASM(ConstructedNonConstructable) \ 80 ASM(ConstructedNonConstructable) \
81 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \ 81 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \
82 ASM(ConstructProxy) \ 82 ASM(ConstructProxy) \
83 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \ 83 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \
84 ASM(Construct) \ 84 ASM(Construct) \
85 ASM(ConstructWithSpread) \
85 ASM(JSConstructStubApi) \ 86 ASM(JSConstructStubApi) \
86 ASM(JSConstructStubGeneric) \ 87 ASM(JSConstructStubGeneric) \
87 ASM(JSBuiltinsConstructStub) \ 88 ASM(JSBuiltinsConstructStub) \
88 ASM(JSBuiltinsConstructStubForDerived) \ 89 ASM(JSBuiltinsConstructStubForDerived) \
89 \ 90 \
90 /* Apply and entries */ \ 91 /* Apply and entries */ \
91 ASM(Apply) \ 92 ASM(Apply) \
92 ASM(JSEntryTrampoline) \ 93 ASM(JSEntryTrampoline) \
93 ASM(JSConstructEntryTrampoline) \ 94 ASM(JSConstructEntryTrampoline) \
94 ASM(ResumeGeneratorTrampoline) \ 95 ASM(ResumeGeneratorTrampoline) \
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 857
857 friend class Isolate; 858 friend class Isolate;
858 859
859 DISALLOW_COPY_AND_ASSIGN(Builtins); 860 DISALLOW_COPY_AND_ASSIGN(Builtins);
860 }; 861 };
861 862
862 } // namespace internal 863 } // namespace internal
863 } // namespace v8 864 } // namespace v8
864 865
865 #endif // V8_BUILTINS_BUILTINS_H_ 866 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/x64/builtins-x64.cc » ('j') | src/builtins/x64/builtins-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698