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

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

Issue 1589363002: [turbofan] Add the RoundInt32ToFloat32 operator to turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/typer.cc ('k') | src/compiler/wasm-compiler.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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 case IrOpcode::kFloat64RoundUp: 900 case IrOpcode::kFloat64RoundUp:
901 case IrOpcode::kFloat32RoundTruncate: 901 case IrOpcode::kFloat32RoundTruncate:
902 case IrOpcode::kFloat64RoundTruncate: 902 case IrOpcode::kFloat64RoundTruncate:
903 case IrOpcode::kFloat64RoundTiesAway: 903 case IrOpcode::kFloat64RoundTiesAway:
904 case IrOpcode::kFloat32RoundTiesEven: 904 case IrOpcode::kFloat32RoundTiesEven:
905 case IrOpcode::kFloat64RoundTiesEven: 905 case IrOpcode::kFloat64RoundTiesEven:
906 case IrOpcode::kFloat64Equal: 906 case IrOpcode::kFloat64Equal:
907 case IrOpcode::kFloat64LessThan: 907 case IrOpcode::kFloat64LessThan:
908 case IrOpcode::kFloat64LessThanOrEqual: 908 case IrOpcode::kFloat64LessThanOrEqual:
909 case IrOpcode::kTruncateInt64ToInt32: 909 case IrOpcode::kTruncateInt64ToInt32:
910 case IrOpcode::kRoundInt32ToFloat32:
910 case IrOpcode::kRoundInt64ToFloat32: 911 case IrOpcode::kRoundInt64ToFloat32:
911 case IrOpcode::kRoundInt64ToFloat64: 912 case IrOpcode::kRoundInt64ToFloat64:
912 case IrOpcode::kRoundUint64ToFloat64: 913 case IrOpcode::kRoundUint64ToFloat64:
913 case IrOpcode::kRoundUint64ToFloat32: 914 case IrOpcode::kRoundUint64ToFloat32:
914 case IrOpcode::kTruncateFloat64ToFloat32: 915 case IrOpcode::kTruncateFloat64ToFloat32:
915 case IrOpcode::kTruncateFloat64ToInt32: 916 case IrOpcode::kTruncateFloat64ToInt32:
916 case IrOpcode::kBitcastFloat32ToInt32: 917 case IrOpcode::kBitcastFloat32ToInt32:
917 case IrOpcode::kBitcastFloat64ToInt64: 918 case IrOpcode::kBitcastFloat64ToInt64:
918 case IrOpcode::kBitcastInt32ToFloat32: 919 case IrOpcode::kBitcastInt32ToFloat32:
919 case IrOpcode::kBitcastInt64ToFloat64: 920 case IrOpcode::kBitcastInt64ToFloat64:
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 replacement->op()->EffectOutputCount() > 0); 1260 replacement->op()->EffectOutputCount() > 0);
1260 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1261 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1261 replacement->opcode() == IrOpcode::kFrameState); 1262 replacement->opcode() == IrOpcode::kFrameState);
1262 } 1263 }
1263 1264
1264 #endif // DEBUG 1265 #endif // DEBUG
1265 1266
1266 } // namespace compiler 1267 } // namespace compiler
1267 } // namespace internal 1268 } // namespace internal
1268 } // namespace v8 1269 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/wasm-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698