Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: src/compiler/instruction-selector.cc

Issue 1627263002: [turbofan] Add TruncateFloat32ToUint32 operator to Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Andreas' comment Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/ia32/instruction-selector-ia32.cc ('k') | src/compiler/machine-operator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
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: 959 case IrOpcode::kTruncateFloat32ToInt32:
960 return MarkAsWord32(node), VisitTruncateFloat32ToInt32(node); 960 return MarkAsWord32(node), VisitTruncateFloat32ToInt32(node);
961 case IrOpcode::kTruncateFloat32ToUint32:
962 return MarkAsWord32(node), VisitTruncateFloat32ToUint32(node);
961 case IrOpcode::kTryTruncateFloat32ToInt64: 963 case IrOpcode::kTryTruncateFloat32ToInt64:
962 return MarkAsWord64(node), VisitTryTruncateFloat32ToInt64(node); 964 return MarkAsWord64(node), VisitTryTruncateFloat32ToInt64(node);
963 case IrOpcode::kTryTruncateFloat64ToInt64: 965 case IrOpcode::kTryTruncateFloat64ToInt64:
964 return MarkAsWord64(node), VisitTryTruncateFloat64ToInt64(node); 966 return MarkAsWord64(node), VisitTryTruncateFloat64ToInt64(node);
965 case IrOpcode::kTryTruncateFloat32ToUint64: 967 case IrOpcode::kTryTruncateFloat32ToUint64:
966 return MarkAsWord64(node), VisitTryTruncateFloat32ToUint64(node); 968 return MarkAsWord64(node), VisitTryTruncateFloat32ToUint64(node);
967 case IrOpcode::kTryTruncateFloat64ToUint64: 969 case IrOpcode::kTryTruncateFloat64ToUint64:
968 return MarkAsWord64(node), VisitTryTruncateFloat64ToUint64(node); 970 return MarkAsWord64(node), VisitTryTruncateFloat64ToUint64(node);
969 case IrOpcode::kChangeInt32ToInt64: 971 case IrOpcode::kChangeInt32ToInt64:
970 return MarkAsWord64(node), VisitChangeInt32ToInt64(node); 972 return MarkAsWord64(node), VisitChangeInt32ToInt64(node);
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 return new (instruction_zone()) FrameStateDescriptor( 1627 return new (instruction_zone()) FrameStateDescriptor(
1626 instruction_zone(), state_info.type(), state_info.bailout_id(), 1628 instruction_zone(), state_info.type(), state_info.bailout_id(),
1627 state_info.state_combine(), parameters, locals, stack, 1629 state_info.state_combine(), parameters, locals, stack,
1628 state_info.shared_info(), outer_state); 1630 state_info.shared_info(), outer_state);
1629 } 1631 }
1630 1632
1631 1633
1632 } // namespace compiler 1634 } // namespace compiler
1633 } // namespace internal 1635 } // namespace internal
1634 } // namespace v8 1636 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/ia32/instruction-selector-ia32.cc ('k') | src/compiler/machine-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698