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 1510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1521 } | 1521 } |
1522 | 1522 |
1523 | 1523 |
1524 // static | 1524 // static |
1525 MachineOperatorBuilder::Flags | 1525 MachineOperatorBuilder::Flags |
1526 InstructionSelector::SupportedMachineOperatorFlags() { | 1526 InstructionSelector::SupportedMachineOperatorFlags() { |
1527 return MachineOperatorBuilder::kFloat64Floor | | 1527 return MachineOperatorBuilder::kFloat64Floor | |
1528 MachineOperatorBuilder::kFloat64Ceil | | 1528 MachineOperatorBuilder::kFloat64Ceil | |
1529 MachineOperatorBuilder::kFloat64RoundTruncate | | 1529 MachineOperatorBuilder::kFloat64RoundTruncate | |
1530 MachineOperatorBuilder::kFloat64RoundTiesAway | | 1530 MachineOperatorBuilder::kFloat64RoundTiesAway | |
1531 MachineOperatorBuilder::kWord32ShiftIsSafe; | 1531 MachineOperatorBuilder::kWord32ShiftIsSafe | |
| 1532 MachineOperatorBuilder::kInt32DivIsSafe | |
| 1533 MachineOperatorBuilder::kUint32DivIsSafe; |
1532 } | 1534 } |
1533 } // namespace compiler | 1535 } // namespace compiler |
1534 } // namespace internal | 1536 } // namespace internal |
1535 } // namespace v8 | 1537 } // namespace v8 |
OLD | NEW |