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

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

Issue 1768233002: [wasm] Int64Lowering of I64ShrU and I64ShrS on ia32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 9 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 934 matching lines...) Expand 10 before | Expand all | Expand 10 after
945 case IrOpcode::kTruncateFloat32ToUint32: 945 case IrOpcode::kTruncateFloat32ToUint32:
946 case IrOpcode::kTryTruncateFloat32ToInt64: 946 case IrOpcode::kTryTruncateFloat32ToInt64:
947 case IrOpcode::kTryTruncateFloat64ToInt64: 947 case IrOpcode::kTryTruncateFloat64ToInt64:
948 case IrOpcode::kTryTruncateFloat32ToUint64: 948 case IrOpcode::kTryTruncateFloat32ToUint64:
949 case IrOpcode::kTryTruncateFloat64ToUint64: 949 case IrOpcode::kTryTruncateFloat64ToUint64:
950 case IrOpcode::kFloat64ExtractLowWord32: 950 case IrOpcode::kFloat64ExtractLowWord32:
951 case IrOpcode::kFloat64ExtractHighWord32: 951 case IrOpcode::kFloat64ExtractHighWord32:
952 case IrOpcode::kFloat64InsertLowWord32: 952 case IrOpcode::kFloat64InsertLowWord32:
953 case IrOpcode::kFloat64InsertHighWord32: 953 case IrOpcode::kFloat64InsertHighWord32:
954 case IrOpcode::kWord32PairShl: 954 case IrOpcode::kWord32PairShl:
955 case IrOpcode::kWord32PairShr:
956 case IrOpcode::kWord32PairSar:
955 case IrOpcode::kLoadStackPointer: 957 case IrOpcode::kLoadStackPointer:
956 case IrOpcode::kLoadFramePointer: 958 case IrOpcode::kLoadFramePointer:
957 case IrOpcode::kLoadParentFramePointer: 959 case IrOpcode::kLoadParentFramePointer:
958 case IrOpcode::kCheckedLoad: 960 case IrOpcode::kCheckedLoad:
959 case IrOpcode::kCheckedStore: 961 case IrOpcode::kCheckedStore:
960 // TODO(rossberg): Check. 962 // TODO(rossberg): Check.
961 break; 963 break;
962 } 964 }
963 } // NOLINT(readability/fn_size) 965 } // NOLINT(readability/fn_size)
964 966
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 replacement->op()->EffectOutputCount() > 0); 1282 replacement->op()->EffectOutputCount() > 0);
1281 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1283 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1282 replacement->opcode() == IrOpcode::kFrameState); 1284 replacement->opcode() == IrOpcode::kFrameState);
1283 } 1285 }
1284 1286
1285 #endif // DEBUG 1287 #endif // DEBUG
1286 1288
1287 } // namespace compiler 1289 } // namespace compiler
1288 } // namespace internal 1290 } // namespace internal
1289 } // namespace v8 1291 } // 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