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/verifier.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/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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 case IrOpcode::kBitcastFloat64ToInt64: 942 case IrOpcode::kBitcastFloat64ToInt64:
943 case IrOpcode::kBitcastInt32ToFloat32: 943 case IrOpcode::kBitcastInt32ToFloat32:
944 case IrOpcode::kBitcastInt64ToFloat64: 944 case IrOpcode::kBitcastInt64ToFloat64:
945 case IrOpcode::kChangeInt32ToInt64: 945 case IrOpcode::kChangeInt32ToInt64:
946 case IrOpcode::kChangeUint32ToUint64: 946 case IrOpcode::kChangeUint32ToUint64:
947 case IrOpcode::kChangeInt32ToFloat64: 947 case IrOpcode::kChangeInt32ToFloat64:
948 case IrOpcode::kChangeUint32ToFloat64: 948 case IrOpcode::kChangeUint32ToFloat64:
949 case IrOpcode::kChangeFloat32ToFloat64: 949 case IrOpcode::kChangeFloat32ToFloat64:
950 case IrOpcode::kChangeFloat64ToInt32: 950 case IrOpcode::kChangeFloat64ToInt32:
951 case IrOpcode::kChangeFloat64ToUint32: 951 case IrOpcode::kChangeFloat64ToUint32:
952 case IrOpcode::kTruncateFloat64ToUint32:
952 case IrOpcode::kTruncateFloat32ToInt32: 953 case IrOpcode::kTruncateFloat32ToInt32:
953 case IrOpcode::kTruncateFloat32ToUint32: 954 case IrOpcode::kTruncateFloat32ToUint32:
954 case IrOpcode::kTryTruncateFloat32ToInt64: 955 case IrOpcode::kTryTruncateFloat32ToInt64:
955 case IrOpcode::kTryTruncateFloat64ToInt64: 956 case IrOpcode::kTryTruncateFloat64ToInt64:
956 case IrOpcode::kTryTruncateFloat32ToUint64: 957 case IrOpcode::kTryTruncateFloat32ToUint64:
957 case IrOpcode::kTryTruncateFloat64ToUint64: 958 case IrOpcode::kTryTruncateFloat64ToUint64:
958 case IrOpcode::kFloat64ExtractLowWord32: 959 case IrOpcode::kFloat64ExtractLowWord32:
959 case IrOpcode::kFloat64ExtractHighWord32: 960 case IrOpcode::kFloat64ExtractHighWord32:
960 case IrOpcode::kFloat64InsertLowWord32: 961 case IrOpcode::kFloat64InsertLowWord32:
961 case IrOpcode::kFloat64InsertHighWord32: 962 case IrOpcode::kFloat64InsertHighWord32:
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 replacement->op()->EffectOutputCount() > 0); 1294 replacement->op()->EffectOutputCount() > 0);
1294 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1295 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1295 replacement->opcode() == IrOpcode::kFrameState); 1296 replacement->opcode() == IrOpcode::kFrameState);
1296 } 1297 }
1297 1298
1298 #endif // DEBUG 1299 #endif // DEBUG
1299 1300
1300 } // namespace compiler 1301 } // namespace compiler
1301 } // namespace internal 1302 } // namespace internal
1302 } // namespace v8 1303 } // 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