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 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 void InstructionSelector::VisitTruncateFloat32ToInt64(Node* node) { | 1240 void InstructionSelector::VisitTruncateFloat32ToInt64(Node* node) { |
1241 VisitRR(this, kArm64Float32ToInt64, node); | 1241 VisitRR(this, kArm64Float32ToInt64, node); |
1242 } | 1242 } |
1243 | 1243 |
1244 | 1244 |
1245 void InstructionSelector::VisitTruncateFloat64ToInt64(Node* node) { | 1245 void InstructionSelector::VisitTruncateFloat64ToInt64(Node* node) { |
1246 VisitRR(this, kArm64Float64ToInt64, node); | 1246 VisitRR(this, kArm64Float64ToInt64, node); |
1247 } | 1247 } |
1248 | 1248 |
1249 | 1249 |
| 1250 void InstructionSelector::VisitTruncateFloat32ToUint64(Node* node) { |
| 1251 VisitRR(this, kArm64Float32ToUint64, node); |
| 1252 } |
| 1253 |
| 1254 |
1250 void InstructionSelector::VisitTruncateFloat64ToUint64(Node* node) { | 1255 void InstructionSelector::VisitTruncateFloat64ToUint64(Node* node) { |
1251 VisitRR(this, kArm64Float64ToUint64, node); | 1256 VisitRR(this, kArm64Float64ToUint64, node); |
1252 } | 1257 } |
1253 | 1258 |
1254 | 1259 |
1255 void InstructionSelector::VisitChangeInt32ToInt64(Node* node) { | 1260 void InstructionSelector::VisitChangeInt32ToInt64(Node* node) { |
1256 VisitRR(this, kArm64Sxtw, node); | 1261 VisitRR(this, kArm64Sxtw, node); |
1257 } | 1262 } |
1258 | 1263 |
1259 | 1264 |
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2101 MachineOperatorBuilder::kFloat32RoundTiesEven | | 2106 MachineOperatorBuilder::kFloat32RoundTiesEven | |
2102 MachineOperatorBuilder::kFloat64RoundTiesEven | | 2107 MachineOperatorBuilder::kFloat64RoundTiesEven | |
2103 MachineOperatorBuilder::kWord32ShiftIsSafe | | 2108 MachineOperatorBuilder::kWord32ShiftIsSafe | |
2104 MachineOperatorBuilder::kInt32DivIsSafe | | 2109 MachineOperatorBuilder::kInt32DivIsSafe | |
2105 MachineOperatorBuilder::kUint32DivIsSafe; | 2110 MachineOperatorBuilder::kUint32DivIsSafe; |
2106 } | 2111 } |
2107 | 2112 |
2108 } // namespace compiler | 2113 } // namespace compiler |
2109 } // namespace internal | 2114 } // namespace internal |
2110 } // namespace v8 | 2115 } // namespace v8 |
OLD | NEW |