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

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

Issue 1778893005: [wasm] Int64Lowering of Int64Sub on ia32 and arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-add
Patch Set: copy paste mistake 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
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 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 case IrOpcode::kTruncateFloat32ToUint32: 940 case IrOpcode::kTruncateFloat32ToUint32:
941 case IrOpcode::kTryTruncateFloat32ToInt64: 941 case IrOpcode::kTryTruncateFloat32ToInt64:
942 case IrOpcode::kTryTruncateFloat64ToInt64: 942 case IrOpcode::kTryTruncateFloat64ToInt64:
943 case IrOpcode::kTryTruncateFloat32ToUint64: 943 case IrOpcode::kTryTruncateFloat32ToUint64:
944 case IrOpcode::kTryTruncateFloat64ToUint64: 944 case IrOpcode::kTryTruncateFloat64ToUint64:
945 case IrOpcode::kFloat64ExtractLowWord32: 945 case IrOpcode::kFloat64ExtractLowWord32:
946 case IrOpcode::kFloat64ExtractHighWord32: 946 case IrOpcode::kFloat64ExtractHighWord32:
947 case IrOpcode::kFloat64InsertLowWord32: 947 case IrOpcode::kFloat64InsertLowWord32:
948 case IrOpcode::kFloat64InsertHighWord32: 948 case IrOpcode::kFloat64InsertHighWord32:
949 case IrOpcode::kInt32PairAdd: 949 case IrOpcode::kInt32PairAdd:
950 case IrOpcode::kInt32PairSub:
950 case IrOpcode::kWord32PairShl: 951 case IrOpcode::kWord32PairShl:
951 case IrOpcode::kWord32PairShr: 952 case IrOpcode::kWord32PairShr:
952 case IrOpcode::kWord32PairSar: 953 case IrOpcode::kWord32PairSar:
953 case IrOpcode::kLoadStackPointer: 954 case IrOpcode::kLoadStackPointer:
954 case IrOpcode::kLoadFramePointer: 955 case IrOpcode::kLoadFramePointer:
955 case IrOpcode::kLoadParentFramePointer: 956 case IrOpcode::kLoadParentFramePointer:
956 case IrOpcode::kCheckedLoad: 957 case IrOpcode::kCheckedLoad:
957 case IrOpcode::kCheckedStore: 958 case IrOpcode::kCheckedStore:
958 // TODO(rossberg): Check. 959 // TODO(rossberg): Check.
959 break; 960 break;
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1278 replacement->op()->EffectOutputCount() > 0); 1279 replacement->op()->EffectOutputCount() > 0);
1279 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1280 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1280 replacement->opcode() == IrOpcode::kFrameState); 1281 replacement->opcode() == IrOpcode::kFrameState);
1281 } 1282 }
1282 1283
1283 #endif // DEBUG 1284 #endif // DEBUG
1284 1285
1285 } // namespace compiler 1286 } // namespace compiler
1286 } // namespace internal 1287 } // namespace internal
1287 } // namespace v8 1288 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698