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

Side by Side Diff: src/compiler/verifier.cc

Issue 1435603003: Implemented the RoundInt64ToFloat32 TurboFan operator for x64, arm64, and mips64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/typer.cc ('k') | src/compiler/x64/code-generator-x64.cc » ('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/verifier.h" 5 #include "src/compiler/verifier.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <sstream> 10 #include <sstream>
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 case IrOpcode::kFloat64Min: 877 case IrOpcode::kFloat64Min:
878 case IrOpcode::kFloat64Abs: 878 case IrOpcode::kFloat64Abs:
879 case IrOpcode::kFloat64Sqrt: 879 case IrOpcode::kFloat64Sqrt:
880 case IrOpcode::kFloat64RoundDown: 880 case IrOpcode::kFloat64RoundDown:
881 case IrOpcode::kFloat64RoundTruncate: 881 case IrOpcode::kFloat64RoundTruncate:
882 case IrOpcode::kFloat64RoundTiesAway: 882 case IrOpcode::kFloat64RoundTiesAway:
883 case IrOpcode::kFloat64Equal: 883 case IrOpcode::kFloat64Equal:
884 case IrOpcode::kFloat64LessThan: 884 case IrOpcode::kFloat64LessThan:
885 case IrOpcode::kFloat64LessThanOrEqual: 885 case IrOpcode::kFloat64LessThanOrEqual:
886 case IrOpcode::kTruncateInt64ToInt32: 886 case IrOpcode::kTruncateInt64ToInt32:
887 case IrOpcode::kRoundInt64ToFloat32:
887 case IrOpcode::kRoundInt64ToFloat64: 888 case IrOpcode::kRoundInt64ToFloat64:
888 case IrOpcode::kTruncateFloat64ToFloat32: 889 case IrOpcode::kTruncateFloat64ToFloat32:
889 case IrOpcode::kTruncateFloat64ToInt32: 890 case IrOpcode::kTruncateFloat64ToInt32:
890 case IrOpcode::kBitcastFloat32ToInt32: 891 case IrOpcode::kBitcastFloat32ToInt32:
891 case IrOpcode::kBitcastFloat64ToInt64: 892 case IrOpcode::kBitcastFloat64ToInt64:
892 case IrOpcode::kBitcastInt32ToFloat32: 893 case IrOpcode::kBitcastInt32ToFloat32:
893 case IrOpcode::kBitcastInt64ToFloat64: 894 case IrOpcode::kBitcastInt64ToFloat64:
894 case IrOpcode::kChangeInt32ToInt64: 895 case IrOpcode::kChangeInt32ToInt64:
895 case IrOpcode::kChangeUint32ToUint64: 896 case IrOpcode::kChangeUint32ToUint64:
896 case IrOpcode::kChangeInt32ToFloat64: 897 case IrOpcode::kChangeInt32ToFloat64:
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 replacement->op()->EffectOutputCount() > 0); 1230 replacement->op()->EffectOutputCount() > 0);
1230 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1231 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1231 replacement->opcode() == IrOpcode::kFrameState); 1232 replacement->opcode() == IrOpcode::kFrameState);
1232 } 1233 }
1233 1234
1234 #endif // DEBUG 1235 #endif // DEBUG
1235 1236
1236 } // namespace compiler 1237 } // namespace compiler
1237 } // namespace internal 1238 } // namespace internal
1238 } // namespace v8 1239 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/code-generator-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698