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

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

Issue 2827143002: [WASM SIMD] Remove opcodes that are slow on some platforms. (Closed)
Patch Set: Remove stray tests. Created 3 years, 8 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 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 V(UnsafePointerAdd) 568 V(UnsafePointerAdd)
569 569
570 #define MACHINE_SIMD_OP_LIST(V) \ 570 #define MACHINE_SIMD_OP_LIST(V) \
571 V(F32x4Splat) \ 571 V(F32x4Splat) \
572 V(F32x4ExtractLane) \ 572 V(F32x4ExtractLane) \
573 V(F32x4ReplaceLane) \ 573 V(F32x4ReplaceLane) \
574 V(F32x4SConvertI32x4) \ 574 V(F32x4SConvertI32x4) \
575 V(F32x4UConvertI32x4) \ 575 V(F32x4UConvertI32x4) \
576 V(F32x4Abs) \ 576 V(F32x4Abs) \
577 V(F32x4Neg) \ 577 V(F32x4Neg) \
578 V(F32x4Sqrt) \
579 V(F32x4RecipApprox) \ 578 V(F32x4RecipApprox) \
580 V(F32x4RecipSqrtApprox) \ 579 V(F32x4RecipSqrtApprox) \
581 V(F32x4Add) \ 580 V(F32x4Add) \
582 V(F32x4Sub) \ 581 V(F32x4Sub) \
583 V(F32x4Mul) \ 582 V(F32x4Mul) \
584 V(F32x4Div) \
585 V(F32x4Min) \ 583 V(F32x4Min) \
586 V(F32x4Max) \ 584 V(F32x4Max) \
587 V(F32x4MinNum) \
588 V(F32x4MaxNum) \
589 V(F32x4RecipRefine) \
590 V(F32x4RecipSqrtRefine) \
591 V(F32x4Eq) \ 585 V(F32x4Eq) \
592 V(F32x4Ne) \ 586 V(F32x4Ne) \
593 V(F32x4Lt) \ 587 V(F32x4Lt) \
594 V(F32x4Le) \ 588 V(F32x4Le) \
595 V(F32x4Gt) \ 589 V(F32x4Gt) \
596 V(F32x4Ge) \ 590 V(F32x4Ge) \
597 V(I32x4Splat) \ 591 V(I32x4Splat) \
598 V(I32x4ExtractLane) \ 592 V(I32x4ExtractLane) \
599 V(I32x4ReplaceLane) \ 593 V(I32x4ReplaceLane) \
600 V(I32x4SConvertF32x4) \ 594 V(I32x4SConvertF32x4) \
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 } 809 }
816 }; 810 };
817 811
818 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 812 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
819 813
820 } // namespace compiler 814 } // namespace compiler
821 } // namespace internal 815 } // namespace internal
822 } // namespace v8 816 } // namespace v8
823 817
824 #endif // V8_COMPILER_OPCODES_H_ 818 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/simd-scalar-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698