| OLD | NEW |
| 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/base/adapters.h" | 5 #include "src/base/adapters.h" |
| 6 #include "src/base/bits.h" | 6 #include "src/base/bits.h" |
| 7 #include "src/compiler/instruction-selector-impl.h" | 7 #include "src/compiler/instruction-selector-impl.h" |
| 8 #include "src/compiler/node-matchers.h" | 8 #include "src/compiler/node-matchers.h" |
| 9 #include "src/compiler/node-properties.h" | 9 #include "src/compiler/node-properties.h" |
| 10 | 10 |
| (...skipping 2780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2791 } | 2791 } |
| 2792 | 2792 |
| 2793 void InstructionSelector::VisitF32x4Neg(Node* node) { | 2793 void InstructionSelector::VisitF32x4Neg(Node* node) { |
| 2794 VisitRR(this, kMips64F32x4Neg, node); | 2794 VisitRR(this, kMips64F32x4Neg, node); |
| 2795 } | 2795 } |
| 2796 | 2796 |
| 2797 void InstructionSelector::VisitF32x4RecipApprox(Node* node) { | 2797 void InstructionSelector::VisitF32x4RecipApprox(Node* node) { |
| 2798 VisitRR(this, kMips64F32x4RecipApprox, node); | 2798 VisitRR(this, kMips64F32x4RecipApprox, node); |
| 2799 } | 2799 } |
| 2800 | 2800 |
| 2801 void InstructionSelector::VisitF32x4RecipRefine(Node* node) { | |
| 2802 VisitRRR(this, kMips64F32x4RecipRefine, node); | |
| 2803 } | |
| 2804 | |
| 2805 void InstructionSelector::VisitF32x4RecipSqrtApprox(Node* node) { | 2801 void InstructionSelector::VisitF32x4RecipSqrtApprox(Node* node) { |
| 2806 VisitRR(this, kMips64F32x4RecipSqrtApprox, node); | 2802 VisitRR(this, kMips64F32x4RecipSqrtApprox, node); |
| 2807 } | 2803 } |
| 2808 | 2804 |
| 2809 void InstructionSelector::VisitF32x4RecipSqrtRefine(Node* node) { | |
| 2810 VisitRRR(this, kMips64F32x4RecipSqrtRefine, node); | |
| 2811 } | |
| 2812 | |
| 2813 void InstructionSelector::VisitF32x4Add(Node* node) { | 2805 void InstructionSelector::VisitF32x4Add(Node* node) { |
| 2814 VisitRRR(this, kMips64F32x4Add, node); | 2806 VisitRRR(this, kMips64F32x4Add, node); |
| 2815 } | 2807 } |
| 2816 | 2808 |
| 2817 void InstructionSelector::VisitF32x4Sub(Node* node) { | 2809 void InstructionSelector::VisitF32x4Sub(Node* node) { |
| 2818 VisitRRR(this, kMips64F32x4Sub, node); | 2810 VisitRRR(this, kMips64F32x4Sub, node); |
| 2819 } | 2811 } |
| 2820 | 2812 |
| 2821 void InstructionSelector::VisitF32x4Mul(Node* node) { | 2813 void InstructionSelector::VisitF32x4Mul(Node* node) { |
| 2822 VisitRRR(this, kMips64F32x4Mul, node); | 2814 VisitRRR(this, kMips64F32x4Mul, node); |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2886 } else { | 2878 } else { |
| 2887 DCHECK(kArchVariant == kMips64r2); | 2879 DCHECK(kArchVariant == kMips64r2); |
| 2888 return MachineOperatorBuilder::AlignmentRequirements:: | 2880 return MachineOperatorBuilder::AlignmentRequirements:: |
| 2889 NoUnalignedAccessSupport(); | 2881 NoUnalignedAccessSupport(); |
| 2890 } | 2882 } |
| 2891 } | 2883 } |
| 2892 | 2884 |
| 2893 } // namespace compiler | 2885 } // namespace compiler |
| 2894 } // namespace internal | 2886 } // namespace internal |
| 2895 } // namespace v8 | 2887 } // namespace v8 |
| OLD | NEW |