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

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

Issue 1807273002: [wasm] Int64Lowering of Int64Mul on ia32 and arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-phi
Patch Set: Rebase 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 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 case IrOpcode::kTryTruncateFloat32ToInt64: 951 case IrOpcode::kTryTruncateFloat32ToInt64:
952 case IrOpcode::kTryTruncateFloat64ToInt64: 952 case IrOpcode::kTryTruncateFloat64ToInt64:
953 case IrOpcode::kTryTruncateFloat32ToUint64: 953 case IrOpcode::kTryTruncateFloat32ToUint64:
954 case IrOpcode::kTryTruncateFloat64ToUint64: 954 case IrOpcode::kTryTruncateFloat64ToUint64:
955 case IrOpcode::kFloat64ExtractLowWord32: 955 case IrOpcode::kFloat64ExtractLowWord32:
956 case IrOpcode::kFloat64ExtractHighWord32: 956 case IrOpcode::kFloat64ExtractHighWord32:
957 case IrOpcode::kFloat64InsertLowWord32: 957 case IrOpcode::kFloat64InsertLowWord32:
958 case IrOpcode::kFloat64InsertHighWord32: 958 case IrOpcode::kFloat64InsertHighWord32:
959 case IrOpcode::kInt32PairAdd: 959 case IrOpcode::kInt32PairAdd:
960 case IrOpcode::kInt32PairSub: 960 case IrOpcode::kInt32PairSub:
961 case IrOpcode::kInt32PairMul:
961 case IrOpcode::kWord32PairShl: 962 case IrOpcode::kWord32PairShl:
962 case IrOpcode::kWord32PairShr: 963 case IrOpcode::kWord32PairShr:
963 case IrOpcode::kWord32PairSar: 964 case IrOpcode::kWord32PairSar:
964 case IrOpcode::kLoadStackPointer: 965 case IrOpcode::kLoadStackPointer:
965 case IrOpcode::kLoadFramePointer: 966 case IrOpcode::kLoadFramePointer:
966 case IrOpcode::kLoadParentFramePointer: 967 case IrOpcode::kLoadParentFramePointer:
967 case IrOpcode::kCheckedLoad: 968 case IrOpcode::kCheckedLoad:
968 case IrOpcode::kCheckedStore: 969 case IrOpcode::kCheckedStore:
969 // TODO(rossberg): Check. 970 // TODO(rossberg): Check.
970 break; 971 break;
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 replacement->op()->EffectOutputCount() > 0); 1290 replacement->op()->EffectOutputCount() > 0);
1290 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1291 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1291 replacement->opcode() == IrOpcode::kFrameState); 1292 replacement->opcode() == IrOpcode::kFrameState);
1292 } 1293 }
1293 1294
1294 #endif // DEBUG 1295 #endif // DEBUG
1295 1296
1296 } // namespace compiler 1297 } // namespace compiler
1297 } // namespace internal 1298 } // namespace internal
1298 } // namespace v8 1299 } // 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