| 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 | 7 |
| 8 namespace v8 { | 8 namespace v8 { |
| 9 namespace internal { | 9 namespace internal { |
| 10 namespace compiler { | 10 namespace compiler { |
| (...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1407 VisitFloat64Compare(this, node, &cont); | 1407 VisitFloat64Compare(this, node, &cont); |
| 1408 } | 1408 } |
| 1409 | 1409 |
| 1410 | 1410 |
| 1411 // static | 1411 // static |
| 1412 MachineOperatorBuilder::Flags | 1412 MachineOperatorBuilder::Flags |
| 1413 InstructionSelector::SupportedMachineOperatorFlags() { | 1413 InstructionSelector::SupportedMachineOperatorFlags() { |
| 1414 return MachineOperatorBuilder::kFloat64Floor | | 1414 return MachineOperatorBuilder::kFloat64Floor | |
| 1415 MachineOperatorBuilder::kFloat64Ceil | | 1415 MachineOperatorBuilder::kFloat64Ceil | |
| 1416 MachineOperatorBuilder::kFloat64RoundTruncate | | 1416 MachineOperatorBuilder::kFloat64RoundTruncate | |
| 1417 MachineOperatorBuilder::kFloat64RoundTiesAway; | 1417 MachineOperatorBuilder::kFloat64RoundTiesAway | |
| 1418 MachineOperatorBuilder::kWord32ShiftIsSafe; |
| 1418 } | 1419 } |
| 1419 } // namespace compiler | 1420 } // namespace compiler |
| 1420 } // namespace internal | 1421 } // namespace internal |
| 1421 } // namespace v8 | 1422 } // namespace v8 |
| OLD | NEW |