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 1946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1957 | 1957 |
1958 void InstructionSelector::VisitFloat64ExtractLowWord32(Node* node) { | 1958 void InstructionSelector::VisitFloat64ExtractLowWord32(Node* node) { |
1959 VisitRR(this, kMips64Float64ExtractLowWord32, node); | 1959 VisitRR(this, kMips64Float64ExtractLowWord32, node); |
1960 } | 1960 } |
1961 | 1961 |
1962 | 1962 |
1963 void InstructionSelector::VisitFloat64ExtractHighWord32(Node* node) { | 1963 void InstructionSelector::VisitFloat64ExtractHighWord32(Node* node) { |
1964 VisitRR(this, kMips64Float64ExtractHighWord32, node); | 1964 VisitRR(this, kMips64Float64ExtractHighWord32, node); |
1965 } | 1965 } |
1966 | 1966 |
| 1967 void InstructionSelector::VisitFloat64SilenceNaN(Node* node) { |
| 1968 VisitRR(this, kMips64Float64SilenceNaN, node); |
| 1969 } |
1967 | 1970 |
1968 void InstructionSelector::VisitFloat64InsertLowWord32(Node* node) { | 1971 void InstructionSelector::VisitFloat64InsertLowWord32(Node* node) { |
1969 Mips64OperandGenerator g(this); | 1972 Mips64OperandGenerator g(this); |
1970 Node* left = node->InputAt(0); | 1973 Node* left = node->InputAt(0); |
1971 Node* right = node->InputAt(1); | 1974 Node* right = node->InputAt(1); |
1972 Emit(kMips64Float64InsertLowWord32, g.DefineSameAsFirst(node), | 1975 Emit(kMips64Float64InsertLowWord32, g.DefineSameAsFirst(node), |
1973 g.UseRegister(left), g.UseRegister(right)); | 1976 g.UseRegister(left), g.UseRegister(right)); |
1974 } | 1977 } |
1975 | 1978 |
1976 | 1979 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2083 } else { | 2086 } else { |
2084 DCHECK(kArchVariant == kMips64r2); | 2087 DCHECK(kArchVariant == kMips64r2); |
2085 return MachineOperatorBuilder::AlignmentRequirements:: | 2088 return MachineOperatorBuilder::AlignmentRequirements:: |
2086 NoUnalignedAccessSupport(); | 2089 NoUnalignedAccessSupport(); |
2087 } | 2090 } |
2088 } | 2091 } |
2089 | 2092 |
2090 } // namespace compiler | 2093 } // namespace compiler |
2091 } // namespace internal | 2094 } // namespace internal |
2092 } // namespace v8 | 2095 } // namespace v8 |
OLD | NEW |