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

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

Issue 1981323002: [compiler] Remove obsolete JSYield operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Reenable VisitYield Created 4 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/compiler/js-operator.cc ('k') | src/compiler/typer.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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 V(JSCallConstruct) \ 144 V(JSCallConstruct) \
145 V(JSCallFunction) \ 145 V(JSCallFunction) \
146 V(JSCallRuntime) \ 146 V(JSCallRuntime) \
147 V(JSConvertReceiver) \ 147 V(JSConvertReceiver) \
148 V(JSForInDone) \ 148 V(JSForInDone) \
149 V(JSForInNext) \ 149 V(JSForInNext) \
150 V(JSForInPrepare) \ 150 V(JSForInPrepare) \
151 V(JSForInStep) \ 151 V(JSForInStep) \
152 V(JSLoadMessage) \ 152 V(JSLoadMessage) \
153 V(JSStoreMessage) \ 153 V(JSStoreMessage) \
154 V(JSYield) \
155 V(JSStackCheck) 154 V(JSStackCheck)
156 155
157 #define JS_OP_LIST(V) \ 156 #define JS_OP_LIST(V) \
158 JS_SIMPLE_BINOP_LIST(V) \ 157 JS_SIMPLE_BINOP_LIST(V) \
159 JS_SIMPLE_UNOP_LIST(V) \ 158 JS_SIMPLE_UNOP_LIST(V) \
160 JS_OBJECT_OP_LIST(V) \ 159 JS_OBJECT_OP_LIST(V) \
161 JS_CONTEXT_OP_LIST(V) \ 160 JS_CONTEXT_OP_LIST(V) \
162 JS_OTHER_OP_LIST(V) 161 JS_OTHER_OP_LIST(V)
163 162
164 // Opcodes for VirtuaMachine-level operators. 163 // Opcodes for VirtuaMachine-level operators.
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 } 622 }
624 }; 623 };
625 624
626 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 625 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
627 626
628 } // namespace compiler 627 } // namespace compiler
629 } // namespace internal 628 } // namespace internal
630 } // namespace v8 629 } // namespace v8
631 630
632 #endif // V8_COMPILER_OPCODES_H_ 631 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698