OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/representation-change.h" | 5 #include "src/compiler/representation-change.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/code-factory.h" | 10 #include "src/code-factory.h" |
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 case IrOpcode::kNumberLessThan: | 664 case IrOpcode::kNumberLessThan: |
665 case IrOpcode::kSpeculativeNumberLessThan: | 665 case IrOpcode::kSpeculativeNumberLessThan: |
666 return machine()->Float64LessThan(); | 666 return machine()->Float64LessThan(); |
667 case IrOpcode::kNumberLessThanOrEqual: | 667 case IrOpcode::kNumberLessThanOrEqual: |
668 case IrOpcode::kSpeculativeNumberLessThanOrEqual: | 668 case IrOpcode::kSpeculativeNumberLessThanOrEqual: |
669 return machine()->Float64LessThanOrEqual(); | 669 return machine()->Float64LessThanOrEqual(); |
670 case IrOpcode::kNumberAtan: | 670 case IrOpcode::kNumberAtan: |
671 return machine()->Float64Atan(); | 671 return machine()->Float64Atan(); |
672 case IrOpcode::kNumberAtan2: | 672 case IrOpcode::kNumberAtan2: |
673 return machine()->Float64Atan2(); | 673 return machine()->Float64Atan2(); |
| 674 case IrOpcode::kNumberExp: |
| 675 return machine()->Float64Exp(); |
674 case IrOpcode::kNumberFround: | 676 case IrOpcode::kNumberFround: |
675 return machine()->TruncateFloat64ToFloat32(); | 677 return machine()->TruncateFloat64ToFloat32(); |
676 case IrOpcode::kNumberLog: | 678 case IrOpcode::kNumberLog: |
677 return machine()->Float64Log(); | 679 return machine()->Float64Log(); |
678 case IrOpcode::kNumberLog1p: | 680 case IrOpcode::kNumberLog1p: |
679 return machine()->Float64Log1p(); | 681 return machine()->Float64Log1p(); |
680 case IrOpcode::kNumberLog2: | 682 case IrOpcode::kNumberLog2: |
681 return machine()->Float64Log2(); | 683 return machine()->Float64Log2(); |
682 case IrOpcode::kNumberLog10: | 684 case IrOpcode::kNumberLog10: |
683 return machine()->Float64Log10(); | 685 return machine()->Float64Log10(); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 } | 736 } |
735 | 737 |
736 Node* RepresentationChanger::InsertChangeTaggedToFloat64(Node* node) { | 738 Node* RepresentationChanger::InsertChangeTaggedToFloat64(Node* node) { |
737 return jsgraph()->graph()->NewNode(simplified()->ChangeTaggedToFloat64(), | 739 return jsgraph()->graph()->NewNode(simplified()->ChangeTaggedToFloat64(), |
738 node); | 740 node); |
739 } | 741 } |
740 | 742 |
741 } // namespace compiler | 743 } // namespace compiler |
742 } // namespace internal | 744 } // namespace internal |
743 } // namespace v8 | 745 } // namespace v8 |
OLD | NEW |