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

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

Issue 1644283002: Revert of [turbofan] Add the StackSlot operator to turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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/mips64/code-generator-mips64.cc ('k') | src/compiler/pipeline.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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 V(Float32LessThan) \ 220 V(Float32LessThan) \
221 V(Float32LessThanOrEqual) \ 221 V(Float32LessThanOrEqual) \
222 V(Float64Equal) \ 222 V(Float64Equal) \
223 V(Float64LessThan) \ 223 V(Float64LessThan) \
224 V(Float64LessThanOrEqual) 224 V(Float64LessThanOrEqual)
225 225
226 #define MACHINE_OP_LIST(V) \ 226 #define MACHINE_OP_LIST(V) \
227 MACHINE_COMPARE_BINOP_LIST(V) \ 227 MACHINE_COMPARE_BINOP_LIST(V) \
228 V(Load) \ 228 V(Load) \
229 V(Store) \ 229 V(Store) \
230 V(StackSlot) \
231 V(Word32And) \ 230 V(Word32And) \
232 V(Word32Or) \ 231 V(Word32Or) \
233 V(Word32Xor) \ 232 V(Word32Xor) \
234 V(Word32Shl) \ 233 V(Word32Shl) \
235 V(Word32Shr) \ 234 V(Word32Shr) \
236 V(Word32Sar) \ 235 V(Word32Sar) \
237 V(Word32Ror) \ 236 V(Word32Ror) \
238 V(Word32Clz) \ 237 V(Word32Clz) \
239 V(Word32Ctz) \ 238 V(Word32Ctz) \
240 V(Word32Popcnt) \ 239 V(Word32Popcnt) \
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 } 403 }
405 }; 404 };
406 405
407 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 406 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
408 407
409 } // namespace compiler 408 } // namespace compiler
410 } // namespace internal 409 } // namespace internal
411 } // namespace v8 410 } // namespace v8
412 411
413 #endif // V8_COMPILER_OPCODES_H_ 412 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698