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

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

Issue 1424333002: [turbofan] Added the RoundInt64ToFloat64 instruction to TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@BufferedRawMachineAssemblerTester
Patch Set: Fixed the type of RoundInt64ToFloat64 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 860 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 case IrOpcode::kFloat64Min: 871 case IrOpcode::kFloat64Min:
872 case IrOpcode::kFloat64Abs: 872 case IrOpcode::kFloat64Abs:
873 case IrOpcode::kFloat64Sqrt: 873 case IrOpcode::kFloat64Sqrt:
874 case IrOpcode::kFloat64RoundDown: 874 case IrOpcode::kFloat64RoundDown:
875 case IrOpcode::kFloat64RoundTruncate: 875 case IrOpcode::kFloat64RoundTruncate:
876 case IrOpcode::kFloat64RoundTiesAway: 876 case IrOpcode::kFloat64RoundTiesAway:
877 case IrOpcode::kFloat64Equal: 877 case IrOpcode::kFloat64Equal:
878 case IrOpcode::kFloat64LessThan: 878 case IrOpcode::kFloat64LessThan:
879 case IrOpcode::kFloat64LessThanOrEqual: 879 case IrOpcode::kFloat64LessThanOrEqual:
880 case IrOpcode::kTruncateInt64ToInt32: 880 case IrOpcode::kTruncateInt64ToInt32:
881 case IrOpcode::kRoundInt64ToFloat64:
881 case IrOpcode::kTruncateFloat64ToFloat32: 882 case IrOpcode::kTruncateFloat64ToFloat32:
882 case IrOpcode::kTruncateFloat64ToInt32: 883 case IrOpcode::kTruncateFloat64ToInt32:
883 case IrOpcode::kBitcastFloat32ToInt32: 884 case IrOpcode::kBitcastFloat32ToInt32:
884 case IrOpcode::kBitcastFloat64ToInt64: 885 case IrOpcode::kBitcastFloat64ToInt64:
885 case IrOpcode::kBitcastInt32ToFloat32: 886 case IrOpcode::kBitcastInt32ToFloat32:
886 case IrOpcode::kBitcastInt64ToFloat64: 887 case IrOpcode::kBitcastInt64ToFloat64:
887 case IrOpcode::kChangeInt32ToInt64: 888 case IrOpcode::kChangeInt32ToInt64:
888 case IrOpcode::kChangeUint32ToUint64: 889 case IrOpcode::kChangeUint32ToUint64:
889 case IrOpcode::kChangeInt32ToFloat64: 890 case IrOpcode::kChangeInt32ToFloat64:
890 case IrOpcode::kChangeUint32ToFloat64: 891 case IrOpcode::kChangeUint32ToFloat64:
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1222 replacement->op()->EffectOutputCount() > 0); 1223 replacement->op()->EffectOutputCount() > 0);
1223 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1224 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1224 replacement->opcode() == IrOpcode::kFrameState); 1225 replacement->opcode() == IrOpcode::kFrameState);
1225 } 1226 }
1226 1227
1227 #endif // DEBUG 1228 #endif // DEBUG
1228 1229
1229 } // namespace compiler 1230 } // namespace compiler
1230 } // namespace internal 1231 } // namespace internal
1231 } // namespace v8 1232 } // 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