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/machine-operator.h" | 5 #include "src/compiler/machine-operator.h" |
6 | 6 |
7 #include "src/base/lazy-instance.h" | 7 #include "src/base/lazy-instance.h" |
8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" |
9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" |
10 | 10 |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 V(ChangeFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 123 V(ChangeFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
124 V(ChangeFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ | 124 V(ChangeFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ |
125 V(TruncateFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ | 125 V(TruncateFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \ |
126 V(TruncateFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 126 V(TruncateFloat32ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
127 V(TruncateFloat32ToUint32, Operator::kNoProperties, 1, 0, 1) \ | 127 V(TruncateFloat32ToUint32, Operator::kNoProperties, 1, 0, 1) \ |
128 V(TryTruncateFloat32ToInt64, Operator::kNoProperties, 1, 0, 2) \ | 128 V(TryTruncateFloat32ToInt64, Operator::kNoProperties, 1, 0, 2) \ |
129 V(TryTruncateFloat64ToInt64, Operator::kNoProperties, 1, 0, 2) \ | 129 V(TryTruncateFloat64ToInt64, Operator::kNoProperties, 1, 0, 2) \ |
130 V(TryTruncateFloat32ToUint64, Operator::kNoProperties, 1, 0, 2) \ | 130 V(TryTruncateFloat32ToUint64, Operator::kNoProperties, 1, 0, 2) \ |
131 V(TryTruncateFloat64ToUint64, Operator::kNoProperties, 1, 0, 2) \ | 131 V(TryTruncateFloat64ToUint64, Operator::kNoProperties, 1, 0, 2) \ |
132 V(ChangeInt32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 132 V(ChangeInt32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
| 133 V(Float64SilenceNaN, Operator::kNoProperties, 1, 0, 1) \ |
133 V(RoundFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ | 134 V(RoundFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \ |
134 V(RoundInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 135 V(RoundInt32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
135 V(RoundInt64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 136 V(RoundInt64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
136 V(RoundInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 137 V(RoundInt64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
137 V(RoundUint32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 138 V(RoundUint32ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
138 V(RoundUint64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ | 139 V(RoundUint64ToFloat32, Operator::kNoProperties, 1, 0, 1) \ |
139 V(RoundUint64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 140 V(RoundUint64ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
140 V(ChangeInt32ToInt64, Operator::kNoProperties, 1, 0, 1) \ | 141 V(ChangeInt32ToInt64, Operator::kNoProperties, 1, 0, 1) \ |
141 V(ChangeUint32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ | 142 V(ChangeUint32ToFloat64, Operator::kNoProperties, 1, 0, 1) \ |
142 V(ChangeUint32ToUint64, Operator::kNoProperties, 1, 0, 1) \ | 143 V(ChangeUint32ToUint64, Operator::kNoProperties, 1, 0, 1) \ |
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 } | 695 } |
695 ATOMIC_REPRESENTATION_LIST(STORE) | 696 ATOMIC_REPRESENTATION_LIST(STORE) |
696 #undef STORE | 697 #undef STORE |
697 UNREACHABLE(); | 698 UNREACHABLE(); |
698 return nullptr; | 699 return nullptr; |
699 } | 700 } |
700 | 701 |
701 } // namespace compiler | 702 } // namespace compiler |
702 } // namespace internal | 703 } // namespace internal |
703 } // namespace v8 | 704 } // namespace v8 |
OLD | NEW |