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

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

Issue 1412443010: [turbofan] Switch message object manipulation to JSOperator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 137
138 #define JS_OTHER_OP_LIST(V) \ 138 #define JS_OTHER_OP_LIST(V) \
139 V(JSCallConstruct) \ 139 V(JSCallConstruct) \
140 V(JSCallFunction) \ 140 V(JSCallFunction) \
141 V(JSCallRuntime) \ 141 V(JSCallRuntime) \
142 V(JSConvertReceiver) \ 142 V(JSConvertReceiver) \
143 V(JSForInDone) \ 143 V(JSForInDone) \
144 V(JSForInNext) \ 144 V(JSForInNext) \
145 V(JSForInPrepare) \ 145 V(JSForInPrepare) \
146 V(JSForInStep) \ 146 V(JSForInStep) \
147 V(JSLoadMessage) \
148 V(JSStoreMessage) \
147 V(JSYield) \ 149 V(JSYield) \
148 V(JSStackCheck) 150 V(JSStackCheck)
149 151
150 #define JS_OP_LIST(V) \ 152 #define JS_OP_LIST(V) \
151 JS_SIMPLE_BINOP_LIST(V) \ 153 JS_SIMPLE_BINOP_LIST(V) \
152 JS_SIMPLE_UNOP_LIST(V) \ 154 JS_SIMPLE_UNOP_LIST(V) \
153 JS_OBJECT_OP_LIST(V) \ 155 JS_OBJECT_OP_LIST(V) \
154 JS_CONTEXT_OP_LIST(V) \ 156 JS_CONTEXT_OP_LIST(V) \
155 JS_OTHER_OP_LIST(V) 157 JS_OTHER_OP_LIST(V)
156 158
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 } 377 }
376 }; 378 };
377 379
378 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 380 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
379 381
380 } // namespace compiler 382 } // namespace compiler
381 } // namespace internal 383 } // namespace internal
382 } // namespace v8 384 } // namespace v8
383 385
384 #endif // V8_COMPILER_OPCODES_H_ 386 #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