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

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

Issue 2056503003: [turbofan] Add comments to CodeAssembler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove extraneous change Created 4 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/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 V(Float32Equal) \ 247 V(Float32Equal) \
248 V(Float32LessThan) \ 248 V(Float32LessThan) \
249 V(Float32LessThanOrEqual) \ 249 V(Float32LessThanOrEqual) \
250 V(Float64Equal) \ 250 V(Float64Equal) \
251 V(Float64LessThan) \ 251 V(Float64LessThan) \
252 V(Float64LessThanOrEqual) 252 V(Float64LessThanOrEqual)
253 253
254 #define MACHINE_OP_LIST(V) \ 254 #define MACHINE_OP_LIST(V) \
255 MACHINE_COMPARE_BINOP_LIST(V) \ 255 MACHINE_COMPARE_BINOP_LIST(V) \
256 V(DebugBreak) \ 256 V(DebugBreak) \
257 V(Comment) \
257 V(Load) \ 258 V(Load) \
258 V(Store) \ 259 V(Store) \
259 V(StackSlot) \ 260 V(StackSlot) \
260 V(Word32And) \ 261 V(Word32And) \
261 V(Word32Or) \ 262 V(Word32Or) \
262 V(Word32Xor) \ 263 V(Word32Xor) \
263 V(Word32Shl) \ 264 V(Word32Shl) \
264 V(Word32Shr) \ 265 V(Word32Shr) \
265 V(Word32Sar) \ 266 V(Word32Sar) \
266 V(Word32Ror) \ 267 V(Word32Ror) \
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 } 641 }
641 }; 642 };
642 643
643 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 644 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
644 645
645 } // namespace compiler 646 } // namespace compiler
646 } // namespace internal 647 } // namespace internal
647 } // namespace v8 648 } // namespace v8
648 649
649 #endif // V8_COMPILER_OPCODES_H_ 650 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698