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

Side by Side Diff: src/compiler/mips/code-generator-mips.cc

Issue 2778203002: MIPS[64]: Support for some SIMD operations (4) (Closed)
Patch Set: rebased 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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #include "src/compiler/code-generator.h" 5 #include "src/compiler/code-generator.h"
6 #include "src/compilation-info.h" 6 #include "src/compilation-info.h"
7 #include "src/compiler/code-generator-impl.h" 7 #include "src/compiler/code-generator-impl.h"
8 #include "src/compiler/gap-resolver.h" 8 #include "src/compiler/gap-resolver.h"
9 #include "src/compiler/node-matchers.h" 9 #include "src/compiler/node-matchers.h"
10 #include "src/compiler/osr.h" 10 #include "src/compiler/osr.h"
(...skipping 1623 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 __ addv_w(i.OutputSimd128Register(), i.InputSimd128Register(0), 1634 __ addv_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1635 i.InputSimd128Register(1)); 1635 i.InputSimd128Register(1));
1636 break; 1636 break;
1637 } 1637 }
1638 case kMipsI32x4Sub: { 1638 case kMipsI32x4Sub: {
1639 CpuFeatureScope msa_scope(masm(), MIPS_SIMD); 1639 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1640 __ subv_w(i.OutputSimd128Register(), i.InputSimd128Register(0), 1640 __ subv_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1641 i.InputSimd128Register(1)); 1641 i.InputSimd128Register(1));
1642 break; 1642 break;
1643 } 1643 }
1644 case kMipsF32x4Abs: {
1645 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1646 __ bclri_w(i.OutputSimd128Register(), i.InputSimd128Register(0), 31);
1647 break;
1648 }
1649 case kMipsF32x4Neg: {
1650 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1651 __ bnegi_w(i.OutputSimd128Register(), i.InputSimd128Register(0), 31);
1652 break;
1653 }
1654 case kMipsF32x4RecipApprox: {
1655 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1656 __ frcp_w(i.OutputSimd128Register(), i.InputSimd128Register(0));
1657 break;
1658 }
1659 case kMipsF32x4RecipRefine: {
1660 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1661 Simd128Register dst = i.OutputSimd128Register();
1662 // Emulate with 2.0f - a * b
1663 __ ldi_w(kSimd128ScratchReg, 2);
1664 __ ffint_u_w(kSimd128ScratchReg, kSimd128ScratchReg);
1665 __ fmul_w(dst, i.InputSimd128Register(0), i.InputSimd128Register(1));
1666 __ fsub_w(dst, kSimd128ScratchReg, dst);
1667 break;
1668 }
1669 case kMipsF32x4RecipSqrtApprox: {
1670 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1671 __ frsqrt_w(i.OutputSimd128Register(), i.InputSimd128Register(0));
1672 break;
1673 }
1674 case kMipsF32x4RecipSqrtRefine: {
1675 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1676 Simd128Register dst = i.OutputSimd128Register();
1677 // Emulate with (3.0f - a * b) * 0.5f;
1678 __ ldi_w(kSimd128ScratchReg, 3);
1679 __ ffint_u_w(kSimd128ScratchReg, kSimd128ScratchReg);
1680 __ fmul_w(dst, i.InputSimd128Register(0), i.InputSimd128Register(1));
1681 __ fsub_w(dst, kSimd128ScratchReg, dst);
1682 __ ldi_w(kSimd128ScratchReg, 0x3f);
1683 __ slli_w(kSimd128ScratchReg, kSimd128ScratchReg, 24);
1684 __ fmul_w(dst, dst, kSimd128ScratchReg);
1685 break;
1686 }
1687 case kMipsF32x4Add: {
1688 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1689 __ fadd_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1690 i.InputSimd128Register(1));
1691 break;
1692 }
1693 case kMipsF32x4Sub: {
1694 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1695 __ fsub_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1696 i.InputSimd128Register(1));
1697 break;
1698 }
1699 case kMipsF32x4Mul: {
1700 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1701 __ fmul_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1702 i.InputSimd128Register(1));
1703 break;
1704 }
1705 case kMipsF32x4Max: {
1706 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1707 __ fmax_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1708 i.InputSimd128Register(1));
1709 break;
1710 }
1711 case kMipsF32x4Min: {
1712 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1713 __ fmin_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1714 i.InputSimd128Register(1));
1715 break;
1716 }
1717 case kMipsF32x4Eq: {
1718 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1719 __ fceq_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1720 i.InputSimd128Register(1));
1721 break;
1722 }
1723 case kMipsF32x4Ne: {
1724 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1725 __ fcne_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1726 i.InputSimd128Register(1));
1727 break;
1728 }
1729 case kMipsF32x4Lt: {
1730 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1731 __ fclt_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1732 i.InputSimd128Register(1));
1733 break;
1734 }
1735 case kMipsF32x4Le: {
1736 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1737 __ fcle_w(i.OutputSimd128Register(), i.InputSimd128Register(0),
1738 i.InputSimd128Register(1));
1739 break;
1740 }
1741 case kMipsI32x4SConvertF32x4: {
1742 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1743 __ ftrunc_s_w(i.OutputSimd128Register(), i.InputSimd128Register(0));
1744 break;
1745 }
1746 case kMipsI32x4UConvertF32x4: {
1747 CpuFeatureScope msa_scope(masm(), MIPS_SIMD);
1748 __ ftrunc_u_w(i.OutputSimd128Register(), i.InputSimd128Register(0));
1749 break;
1750 }
1644 } 1751 }
1645 return kSuccess; 1752 return kSuccess;
1646 } // NOLINT(readability/fn_size) 1753 } // NOLINT(readability/fn_size)
1647 1754
1648 1755
1649 #define UNSUPPORTED_COND(opcode, condition) \ 1756 #define UNSUPPORTED_COND(opcode, condition) \
1650 OFStream out(stdout); \ 1757 OFStream out(stdout); \
1651 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \ 1758 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \
1652 UNIMPLEMENTED(); 1759 UNIMPLEMENTED();
1653 1760
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
2430 padding_size -= v8::internal::Assembler::kInstrSize; 2537 padding_size -= v8::internal::Assembler::kInstrSize;
2431 } 2538 }
2432 } 2539 }
2433 } 2540 }
2434 2541
2435 #undef __ 2542 #undef __
2436 2543
2437 } // namespace compiler 2544 } // namespace compiler
2438 } // namespace internal 2545 } // namespace internal
2439 } // namespace v8 2546 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698