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

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: REBASE. 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
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/instruction-selector-x64.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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 case IrOpcode::kWord64Clz: 1025 case IrOpcode::kWord64Clz:
1026 case IrOpcode::kWord64Popcnt: 1026 case IrOpcode::kWord64Popcnt:
1027 case IrOpcode::kWord64Ctz: 1027 case IrOpcode::kWord64Ctz:
1028 case IrOpcode::kWord64ReverseBits: 1028 case IrOpcode::kWord64ReverseBits:
1029 case IrOpcode::kWord64Equal: 1029 case IrOpcode::kWord64Equal:
1030 case IrOpcode::kInt32Add: 1030 case IrOpcode::kInt32Add:
1031 case IrOpcode::kInt32AddWithOverflow: 1031 case IrOpcode::kInt32AddWithOverflow:
1032 case IrOpcode::kInt32Sub: 1032 case IrOpcode::kInt32Sub:
1033 case IrOpcode::kInt32SubWithOverflow: 1033 case IrOpcode::kInt32SubWithOverflow:
1034 case IrOpcode::kInt32Mul: 1034 case IrOpcode::kInt32Mul:
1035 case IrOpcode::kInt32MulWithOverflow:
1035 case IrOpcode::kInt32MulHigh: 1036 case IrOpcode::kInt32MulHigh:
1036 case IrOpcode::kInt32Div: 1037 case IrOpcode::kInt32Div:
1037 case IrOpcode::kInt32Mod: 1038 case IrOpcode::kInt32Mod:
1038 case IrOpcode::kInt32LessThan: 1039 case IrOpcode::kInt32LessThan:
1039 case IrOpcode::kInt32LessThanOrEqual: 1040 case IrOpcode::kInt32LessThanOrEqual:
1040 case IrOpcode::kUint32Div: 1041 case IrOpcode::kUint32Div:
1041 case IrOpcode::kUint32Mod: 1042 case IrOpcode::kUint32Mod:
1042 case IrOpcode::kUint32MulHigh: 1043 case IrOpcode::kUint32MulHigh:
1043 case IrOpcode::kUint32LessThan: 1044 case IrOpcode::kUint32LessThan:
1044 case IrOpcode::kUint32LessThanOrEqual: 1045 case IrOpcode::kUint32LessThanOrEqual:
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1486 replacement->op()->EffectOutputCount() > 0); 1487 replacement->op()->EffectOutputCount() > 0);
1487 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1488 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1488 replacement->opcode() == IrOpcode::kFrameState); 1489 replacement->opcode() == IrOpcode::kFrameState);
1489 } 1490 }
1490 1491
1491 #endif // DEBUG 1492 #endif // DEBUG
1492 1493
1493 } // namespace compiler 1494 } // namespace compiler
1494 } // namespace internal 1495 } // namespace internal
1495 } // namespace v8 1496 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698