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

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

Issue 2101123005: [turbofan] Introduce integer multiplication with overflow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compile error. Created 4 years, 5 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 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 case IrOpcode::kWord64Clz: 1050 case IrOpcode::kWord64Clz:
1051 case IrOpcode::kWord64Popcnt: 1051 case IrOpcode::kWord64Popcnt:
1052 case IrOpcode::kWord64Ctz: 1052 case IrOpcode::kWord64Ctz:
1053 case IrOpcode::kWord64ReverseBits: 1053 case IrOpcode::kWord64ReverseBits:
1054 case IrOpcode::kWord64Equal: 1054 case IrOpcode::kWord64Equal:
1055 case IrOpcode::kInt32Add: 1055 case IrOpcode::kInt32Add:
1056 case IrOpcode::kInt32AddWithOverflow: 1056 case IrOpcode::kInt32AddWithOverflow:
1057 case IrOpcode::kInt32Sub: 1057 case IrOpcode::kInt32Sub:
1058 case IrOpcode::kInt32SubWithOverflow: 1058 case IrOpcode::kInt32SubWithOverflow:
1059 case IrOpcode::kInt32Mul: 1059 case IrOpcode::kInt32Mul:
1060 case IrOpcode::kInt32MulWithOverflow:
1060 case IrOpcode::kInt32MulHigh: 1061 case IrOpcode::kInt32MulHigh:
1061 case IrOpcode::kInt32Div: 1062 case IrOpcode::kInt32Div:
1062 case IrOpcode::kInt32Mod: 1063 case IrOpcode::kInt32Mod:
1063 case IrOpcode::kInt32LessThan: 1064 case IrOpcode::kInt32LessThan:
1064 case IrOpcode::kInt32LessThanOrEqual: 1065 case IrOpcode::kInt32LessThanOrEqual:
1065 case IrOpcode::kUint32Div: 1066 case IrOpcode::kUint32Div:
1066 case IrOpcode::kUint32Mod: 1067 case IrOpcode::kUint32Mod:
1067 case IrOpcode::kUint32MulHigh: 1068 case IrOpcode::kUint32MulHigh:
1068 case IrOpcode::kUint32LessThan: 1069 case IrOpcode::kUint32LessThan:
1069 case IrOpcode::kUint32LessThanOrEqual: 1070 case IrOpcode::kUint32LessThanOrEqual:
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 replacement->op()->EffectOutputCount() > 0); 1512 replacement->op()->EffectOutputCount() > 0);
1512 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1513 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1513 replacement->opcode() == IrOpcode::kFrameState); 1514 replacement->opcode() == IrOpcode::kFrameState);
1514 } 1515 }
1515 1516
1516 #endif // DEBUG 1517 #endif // DEBUG
1517 1518
1518 } // namespace compiler 1519 } // namespace compiler
1519 } // namespace internal 1520 } // namespace internal
1520 } // namespace v8 1521 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698