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

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

Issue 1843983002: [wasm] Fixed float-to-int conversion tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 1002 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 case IrOpcode::kChangeFloat32ToFloat64: 1013 case IrOpcode::kChangeFloat32ToFloat64:
1014 return MarkAsFloat64(node), VisitChangeFloat32ToFloat64(node); 1014 return MarkAsFloat64(node), VisitChangeFloat32ToFloat64(node);
1015 case IrOpcode::kChangeInt32ToFloat64: 1015 case IrOpcode::kChangeInt32ToFloat64:
1016 return MarkAsFloat64(node), VisitChangeInt32ToFloat64(node); 1016 return MarkAsFloat64(node), VisitChangeInt32ToFloat64(node);
1017 case IrOpcode::kChangeUint32ToFloat64: 1017 case IrOpcode::kChangeUint32ToFloat64:
1018 return MarkAsFloat64(node), VisitChangeUint32ToFloat64(node); 1018 return MarkAsFloat64(node), VisitChangeUint32ToFloat64(node);
1019 case IrOpcode::kChangeFloat64ToInt32: 1019 case IrOpcode::kChangeFloat64ToInt32:
1020 return MarkAsWord32(node), VisitChangeFloat64ToInt32(node); 1020 return MarkAsWord32(node), VisitChangeFloat64ToInt32(node);
1021 case IrOpcode::kChangeFloat64ToUint32: 1021 case IrOpcode::kChangeFloat64ToUint32:
1022 return MarkAsWord32(node), VisitChangeFloat64ToUint32(node); 1022 return MarkAsWord32(node), VisitChangeFloat64ToUint32(node);
1023 case IrOpcode::kTruncateFloat64ToUint32:
1024 return MarkAsWord32(node), VisitTruncateFloat64ToUint32(node);
1023 case IrOpcode::kTruncateFloat32ToInt32: 1025 case IrOpcode::kTruncateFloat32ToInt32:
1024 return MarkAsWord32(node), VisitTruncateFloat32ToInt32(node); 1026 return MarkAsWord32(node), VisitTruncateFloat32ToInt32(node);
1025 case IrOpcode::kTruncateFloat32ToUint32: 1027 case IrOpcode::kTruncateFloat32ToUint32:
1026 return MarkAsWord32(node), VisitTruncateFloat32ToUint32(node); 1028 return MarkAsWord32(node), VisitTruncateFloat32ToUint32(node);
1027 case IrOpcode::kTryTruncateFloat32ToInt64: 1029 case IrOpcode::kTryTruncateFloat32ToInt64:
1028 return MarkAsWord64(node), VisitTryTruncateFloat32ToInt64(node); 1030 return MarkAsWord64(node), VisitTryTruncateFloat32ToInt64(node);
1029 case IrOpcode::kTryTruncateFloat64ToInt64: 1031 case IrOpcode::kTryTruncateFloat64ToInt64:
1030 return MarkAsWord64(node), VisitTryTruncateFloat64ToInt64(node); 1032 return MarkAsWord64(node), VisitTryTruncateFloat64ToInt64(node);
1031 case IrOpcode::kTryTruncateFloat32ToUint64: 1033 case IrOpcode::kTryTruncateFloat32ToUint64:
1032 return MarkAsWord64(node), VisitTryTruncateFloat32ToUint64(node); 1034 return MarkAsWord64(node), VisitTryTruncateFloat32ToUint64(node);
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1793 return new (instruction_zone()) FrameStateDescriptor( 1795 return new (instruction_zone()) FrameStateDescriptor(
1794 instruction_zone(), state_info.type(), state_info.bailout_id(), 1796 instruction_zone(), state_info.type(), state_info.bailout_id(),
1795 state_info.state_combine(), parameters, locals, stack, 1797 state_info.state_combine(), parameters, locals, stack,
1796 state_info.shared_info(), outer_state); 1798 state_info.shared_info(), outer_state);
1797 } 1799 }
1798 1800
1799 1801
1800 } // namespace compiler 1802 } // namespace compiler
1801 } // namespace internal 1803 } // namespace internal
1802 } // namespace v8 1804 } // 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