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

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

Issue 2561103003: [Turbofan] Add CallConstructWithSpread JSOperator. (Closed)
Patch Set: Add line spaces back that auto-format zapped 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 | « 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 V(JSLoadContext) \ 148 V(JSLoadContext) \
149 V(JSStoreContext) \ 149 V(JSStoreContext) \
150 V(JSCreateFunctionContext) \ 150 V(JSCreateFunctionContext) \
151 V(JSCreateCatchContext) \ 151 V(JSCreateCatchContext) \
152 V(JSCreateWithContext) \ 152 V(JSCreateWithContext) \
153 V(JSCreateBlockContext) \ 153 V(JSCreateBlockContext) \
154 V(JSCreateScriptContext) 154 V(JSCreateScriptContext)
155 155
156 #define JS_OTHER_OP_LIST(V) \ 156 #define JS_OTHER_OP_LIST(V) \
157 V(JSCallConstruct) \ 157 V(JSCallConstruct) \
158 V(JSCallConstructWithSpread) \
158 V(JSCallFunction) \ 159 V(JSCallFunction) \
159 V(JSCallRuntime) \ 160 V(JSCallRuntime) \
160 V(JSConvertReceiver) \ 161 V(JSConvertReceiver) \
161 V(JSForInNext) \ 162 V(JSForInNext) \
162 V(JSForInPrepare) \ 163 V(JSForInPrepare) \
163 V(JSLoadMessage) \ 164 V(JSLoadMessage) \
164 V(JSStoreMessage) \ 165 V(JSStoreMessage) \
165 V(JSLoadModule) \ 166 V(JSLoadModule) \
166 V(JSStoreModule) \ 167 V(JSStoreModule) \
167 V(JSGeneratorStore) \ 168 V(JSGeneratorStore) \
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 } 795 }
795 }; 796 };
796 797
797 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 798 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
798 799
799 } // namespace compiler 800 } // namespace compiler
800 } // namespace internal 801 } // namespace internal
801 } // namespace v8 802 } // namespace v8
802 803
803 #endif // V8_COMPILER_OPCODES_H_ 804 #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