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/compiler/instruction-selector-impl.h" | 5 #include "src/compiler/instruction-selector-impl.h" |
6 #include "src/compiler/node-matchers.h" | 6 #include "src/compiler/node-matchers.h" |
7 #include "src/compiler/node-properties.h" | 7 #include "src/compiler/node-properties.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1153 | 1153 |
1154 void InstructionSelector::VisitWord32ReverseBits(Node* node) { | 1154 void InstructionSelector::VisitWord32ReverseBits(Node* node) { |
1155 VisitRR(this, kArm64Rbit32, node); | 1155 VisitRR(this, kArm64Rbit32, node); |
1156 } | 1156 } |
1157 | 1157 |
1158 | 1158 |
1159 void InstructionSelector::VisitWord64ReverseBits(Node* node) { | 1159 void InstructionSelector::VisitWord64ReverseBits(Node* node) { |
1160 VisitRR(this, kArm64Rbit, node); | 1160 VisitRR(this, kArm64Rbit, node); |
1161 } | 1161 } |
1162 | 1162 |
| 1163 void InstructionSelector::VisitWord64ReverseBytes(Node* node) { UNREACHABLE(); } |
| 1164 |
| 1165 void InstructionSelector::VisitWord32ReverseBytes(Node* node) { UNREACHABLE(); } |
1163 | 1166 |
1164 void InstructionSelector::VisitWord32Popcnt(Node* node) { UNREACHABLE(); } | 1167 void InstructionSelector::VisitWord32Popcnt(Node* node) { UNREACHABLE(); } |
1165 | 1168 |
1166 | 1169 |
1167 void InstructionSelector::VisitWord64Popcnt(Node* node) { UNREACHABLE(); } | 1170 void InstructionSelector::VisitWord64Popcnt(Node* node) { UNREACHABLE(); } |
1168 | 1171 |
1169 | 1172 |
1170 void InstructionSelector::VisitInt32Add(Node* node) { | 1173 void InstructionSelector::VisitInt32Add(Node* node) { |
1171 Arm64OperandGenerator g(this); | 1174 Arm64OperandGenerator g(this); |
1172 Int32BinopMatcher m(node); | 1175 Int32BinopMatcher m(node); |
(...skipping 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2723 // static | 2726 // static |
2724 MachineOperatorBuilder::AlignmentRequirements | 2727 MachineOperatorBuilder::AlignmentRequirements |
2725 InstructionSelector::AlignmentRequirements() { | 2728 InstructionSelector::AlignmentRequirements() { |
2726 return MachineOperatorBuilder::AlignmentRequirements:: | 2729 return MachineOperatorBuilder::AlignmentRequirements:: |
2727 FullUnalignedAccessSupport(); | 2730 FullUnalignedAccessSupport(); |
2728 } | 2731 } |
2729 | 2732 |
2730 } // namespace compiler | 2733 } // namespace compiler |
2731 } // namespace internal | 2734 } // namespace internal |
2732 } // namespace v8 | 2735 } // namespace v8 |
OLD | NEW |