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.h" | 5 #include "src/compiler/instruction-selector.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "src/base/adapters.h" | 9 #include "src/base/adapters.h" |
10 #include "src/compiler/instruction-selector-impl.h" | 10 #include "src/compiler/instruction-selector-impl.h" |
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
949 case IrOpcode::kChangeFloat32ToFloat64: | 949 case IrOpcode::kChangeFloat32ToFloat64: |
950 return MarkAsFloat64(node), VisitChangeFloat32ToFloat64(node); | 950 return MarkAsFloat64(node), VisitChangeFloat32ToFloat64(node); |
951 case IrOpcode::kChangeInt32ToFloat64: | 951 case IrOpcode::kChangeInt32ToFloat64: |
952 return MarkAsFloat64(node), VisitChangeInt32ToFloat64(node); | 952 return MarkAsFloat64(node), VisitChangeInt32ToFloat64(node); |
953 case IrOpcode::kChangeUint32ToFloat64: | 953 case IrOpcode::kChangeUint32ToFloat64: |
954 return MarkAsFloat64(node), VisitChangeUint32ToFloat64(node); | 954 return MarkAsFloat64(node), VisitChangeUint32ToFloat64(node); |
955 case IrOpcode::kChangeFloat64ToInt32: | 955 case IrOpcode::kChangeFloat64ToInt32: |
956 return MarkAsWord32(node), VisitChangeFloat64ToInt32(node); | 956 return MarkAsWord32(node), VisitChangeFloat64ToInt32(node); |
957 case IrOpcode::kChangeFloat64ToUint32: | 957 case IrOpcode::kChangeFloat64ToUint32: |
958 return MarkAsWord32(node), VisitChangeFloat64ToUint32(node); | 958 return MarkAsWord32(node), VisitChangeFloat64ToUint32(node); |
| 959 case IrOpcode::kTruncateFloat32ToInt32: |
| 960 return MarkAsWord32(node), VisitTruncateFloat32ToInt32(node); |
959 case IrOpcode::kTryTruncateFloat32ToInt64: | 961 case IrOpcode::kTryTruncateFloat32ToInt64: |
960 return MarkAsWord64(node), VisitTryTruncateFloat32ToInt64(node); | 962 return MarkAsWord64(node), VisitTryTruncateFloat32ToInt64(node); |
961 case IrOpcode::kTryTruncateFloat64ToInt64: | 963 case IrOpcode::kTryTruncateFloat64ToInt64: |
962 return MarkAsWord64(node), VisitTryTruncateFloat64ToInt64(node); | 964 return MarkAsWord64(node), VisitTryTruncateFloat64ToInt64(node); |
963 case IrOpcode::kTryTruncateFloat32ToUint64: | 965 case IrOpcode::kTryTruncateFloat32ToUint64: |
964 return MarkAsWord64(node), VisitTryTruncateFloat32ToUint64(node); | 966 return MarkAsWord64(node), VisitTryTruncateFloat32ToUint64(node); |
965 case IrOpcode::kTryTruncateFloat64ToUint64: | 967 case IrOpcode::kTryTruncateFloat64ToUint64: |
966 return MarkAsWord64(node), VisitTryTruncateFloat64ToUint64(node); | 968 return MarkAsWord64(node), VisitTryTruncateFloat64ToUint64(node); |
967 case IrOpcode::kChangeInt32ToInt64: | 969 case IrOpcode::kChangeInt32ToInt64: |
968 return MarkAsWord64(node), VisitChangeInt32ToInt64(node); | 970 return MarkAsWord64(node), VisitChangeInt32ToInt64(node); |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1614 return new (instruction_zone()) FrameStateDescriptor( | 1616 return new (instruction_zone()) FrameStateDescriptor( |
1615 instruction_zone(), state_info.type(), state_info.bailout_id(), | 1617 instruction_zone(), state_info.type(), state_info.bailout_id(), |
1616 state_info.state_combine(), parameters, locals, stack, | 1618 state_info.state_combine(), parameters, locals, stack, |
1617 state_info.shared_info(), outer_state); | 1619 state_info.shared_info(), outer_state); |
1618 } | 1620 } |
1619 | 1621 |
1620 | 1622 |
1621 } // namespace compiler | 1623 } // namespace compiler |
1622 } // namespace internal | 1624 } // namespace internal |
1623 } // namespace v8 | 1625 } // namespace v8 |
OLD | NEW |