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

Side by Side Diff: src/compiler/opcodes.h

Issue 2949813002: [turbofan] Introduce new JSConstructWithArrayLike operator. (Closed)
Patch Set: Address feedback. Created 3 years, 6 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/compiler/js-operator.cc ('k') | src/compiler/operator-properties.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_COMPILER_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 V(JSStoreContext) \ 156 V(JSStoreContext) \
157 V(JSCreateFunctionContext) \ 157 V(JSCreateFunctionContext) \
158 V(JSCreateCatchContext) \ 158 V(JSCreateCatchContext) \
159 V(JSCreateWithContext) \ 159 V(JSCreateWithContext) \
160 V(JSCreateBlockContext) \ 160 V(JSCreateBlockContext) \
161 V(JSCreateScriptContext) 161 V(JSCreateScriptContext)
162 162
163 #define JS_OTHER_OP_LIST(V) \ 163 #define JS_OTHER_OP_LIST(V) \
164 V(JSConstructForwardVarargs) \ 164 V(JSConstructForwardVarargs) \
165 V(JSConstruct) \ 165 V(JSConstruct) \
166 V(JSConstructWithArrayLike) \
166 V(JSConstructWithSpread) \ 167 V(JSConstructWithSpread) \
167 V(JSCallForwardVarargs) \ 168 V(JSCallForwardVarargs) \
168 V(JSCall) \ 169 V(JSCall) \
169 V(JSCallWithArrayLike) \ 170 V(JSCallWithArrayLike) \
170 V(JSCallWithSpread) \ 171 V(JSCallWithSpread) \
171 V(JSCallRuntime) \ 172 V(JSCallRuntime) \
172 V(JSConvertReceiver) \ 173 V(JSConvertReceiver) \
173 V(JSForInNext) \ 174 V(JSForInNext) \
174 V(JSForInPrepare) \ 175 V(JSForInPrepare) \
175 V(JSLoadMessage) \ 176 V(JSLoadMessage) \
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 } 800 }
800 }; 801 };
801 802
802 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 803 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
803 804
804 } // namespace compiler 805 } // namespace compiler
805 } // namespace internal 806 } // namespace internal
806 } // namespace v8 807 } // namespace v8
807 808
808 #endif // V8_COMPILER_OPCODES_H_ 809 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698