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

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

Issue 1413463009: Implemented the Word64Clz TurboFan operator for x64, arm64, and mips64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed a typing problem, and added mips64. Created 5 years, 1 month 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/code-generator-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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 case IrOpcode::kWord32Clz: 817 case IrOpcode::kWord32Clz:
818 case IrOpcode::kWord32Ctz: 818 case IrOpcode::kWord32Ctz:
819 case IrOpcode::kWord32Popcnt: 819 case IrOpcode::kWord32Popcnt:
820 case IrOpcode::kWord64And: 820 case IrOpcode::kWord64And:
821 case IrOpcode::kWord64Or: 821 case IrOpcode::kWord64Or:
822 case IrOpcode::kWord64Xor: 822 case IrOpcode::kWord64Xor:
823 case IrOpcode::kWord64Shl: 823 case IrOpcode::kWord64Shl:
824 case IrOpcode::kWord64Shr: 824 case IrOpcode::kWord64Shr:
825 case IrOpcode::kWord64Sar: 825 case IrOpcode::kWord64Sar:
826 case IrOpcode::kWord64Ror: 826 case IrOpcode::kWord64Ror:
827 case IrOpcode::kWord64Clz:
827 case IrOpcode::kWord64Equal: 828 case IrOpcode::kWord64Equal:
828 case IrOpcode::kInt32Add: 829 case IrOpcode::kInt32Add:
829 case IrOpcode::kInt32AddWithOverflow: 830 case IrOpcode::kInt32AddWithOverflow:
830 case IrOpcode::kInt32Sub: 831 case IrOpcode::kInt32Sub:
831 case IrOpcode::kInt32SubWithOverflow: 832 case IrOpcode::kInt32SubWithOverflow:
832 case IrOpcode::kInt32Mul: 833 case IrOpcode::kInt32Mul:
833 case IrOpcode::kInt32MulHigh: 834 case IrOpcode::kInt32MulHigh:
834 case IrOpcode::kInt32Div: 835 case IrOpcode::kInt32Div:
835 case IrOpcode::kInt32Mod: 836 case IrOpcode::kInt32Mod:
836 case IrOpcode::kInt32LessThan: 837 case IrOpcode::kInt32LessThan:
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 replacement->op()->EffectOutputCount() > 0); 1224 replacement->op()->EffectOutputCount() > 0);
1224 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1225 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1225 replacement->opcode() == IrOpcode::kFrameState); 1226 replacement->opcode() == IrOpcode::kFrameState);
1226 } 1227 }
1227 1228
1228 #endif // DEBUG 1229 #endif // DEBUG
1229 1230
1230 } // namespace compiler 1231 } // namespace compiler
1231 } // namespace internal 1232 } // namespace internal
1232 } // namespace v8 1233 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/compiler/x64/code-generator-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698