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

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

Issue 2045943002: [compiler] [wasm] Introduce Word32/64ReverseBytes as TF Optional Opcode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix according to titzer Created 4 years, 4 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
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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 V(Word32And) \ 328 V(Word32And) \
329 V(Word32Or) \ 329 V(Word32Or) \
330 V(Word32Xor) \ 330 V(Word32Xor) \
331 V(Word32Shl) \ 331 V(Word32Shl) \
332 V(Word32Shr) \ 332 V(Word32Shr) \
333 V(Word32Sar) \ 333 V(Word32Sar) \
334 V(Word32Ror) \ 334 V(Word32Ror) \
335 V(Word32Clz) \ 335 V(Word32Clz) \
336 V(Word32Ctz) \ 336 V(Word32Ctz) \
337 V(Word32ReverseBits) \ 337 V(Word32ReverseBits) \
338 V(Word32ReverseBytes) \
338 V(Word32Popcnt) \ 339 V(Word32Popcnt) \
339 V(Word64Popcnt) \ 340 V(Word64Popcnt) \
340 V(Word64And) \ 341 V(Word64And) \
341 V(Word64Or) \ 342 V(Word64Or) \
342 V(Word64Xor) \ 343 V(Word64Xor) \
343 V(Word64Shl) \ 344 V(Word64Shl) \
344 V(Word64Shr) \ 345 V(Word64Shr) \
345 V(Word64Sar) \ 346 V(Word64Sar) \
346 V(Word64Ror) \ 347 V(Word64Ror) \
347 V(Word64Clz) \ 348 V(Word64Clz) \
348 V(Word64Ctz) \ 349 V(Word64Ctz) \
349 V(Word64ReverseBits) \ 350 V(Word64ReverseBits) \
351 V(Word64ReverseBytes) \
350 V(Int32Add) \ 352 V(Int32Add) \
351 V(Int32AddWithOverflow) \ 353 V(Int32AddWithOverflow) \
352 V(Int32Sub) \ 354 V(Int32Sub) \
353 V(Int32SubWithOverflow) \ 355 V(Int32SubWithOverflow) \
354 V(Int32Mul) \ 356 V(Int32Mul) \
355 V(Int32MulWithOverflow) \ 357 V(Int32MulWithOverflow) \
356 V(Int32MulHigh) \ 358 V(Int32MulHigh) \
357 V(Int32Div) \ 359 V(Int32Div) \
358 V(Int32Mod) \ 360 V(Int32Mod) \
359 V(Uint32Div) \ 361 V(Uint32Div) \
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 } 739 }
738 }; 740 };
739 741
740 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 742 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
741 743
742 } // namespace compiler 744 } // namespace compiler
743 } // namespace internal 745 } // namespace internal
744 } // namespace v8 746 } // namespace v8
745 747
746 #endif // V8_COMPILER_OPCODES_H_ 748 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698