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

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

Issue 1421163005: Implemented the ctz Turbo Fan operator for x64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed the comments 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 case IrOpcode::kWord32Ctz: 822 case IrOpcode::kWord32Ctz:
823 case IrOpcode::kWord32Popcnt: 823 case IrOpcode::kWord32Popcnt:
824 case IrOpcode::kWord64And: 824 case IrOpcode::kWord64And:
825 case IrOpcode::kWord64Or: 825 case IrOpcode::kWord64Or:
826 case IrOpcode::kWord64Xor: 826 case IrOpcode::kWord64Xor:
827 case IrOpcode::kWord64Shl: 827 case IrOpcode::kWord64Shl:
828 case IrOpcode::kWord64Shr: 828 case IrOpcode::kWord64Shr:
829 case IrOpcode::kWord64Sar: 829 case IrOpcode::kWord64Sar:
830 case IrOpcode::kWord64Ror: 830 case IrOpcode::kWord64Ror:
831 case IrOpcode::kWord64Clz: 831 case IrOpcode::kWord64Clz:
832 case IrOpcode::kWord64Ctz:
832 case IrOpcode::kWord64Equal: 833 case IrOpcode::kWord64Equal:
833 case IrOpcode::kInt32Add: 834 case IrOpcode::kInt32Add:
834 case IrOpcode::kInt32AddWithOverflow: 835 case IrOpcode::kInt32AddWithOverflow:
835 case IrOpcode::kInt32Sub: 836 case IrOpcode::kInt32Sub:
836 case IrOpcode::kInt32SubWithOverflow: 837 case IrOpcode::kInt32SubWithOverflow:
837 case IrOpcode::kInt32Mul: 838 case IrOpcode::kInt32Mul:
838 case IrOpcode::kInt32MulHigh: 839 case IrOpcode::kInt32MulHigh:
839 case IrOpcode::kInt32Div: 840 case IrOpcode::kInt32Div:
840 case IrOpcode::kInt32Mod: 841 case IrOpcode::kInt32Mod:
841 case IrOpcode::kInt32LessThan: 842 case IrOpcode::kInt32LessThan:
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 replacement->op()->EffectOutputCount() > 0); 1229 replacement->op()->EffectOutputCount() > 0);
1229 DCHECK(!NodeProperties::IsFrameStateEdge(edge) || 1230 DCHECK(!NodeProperties::IsFrameStateEdge(edge) ||
1230 replacement->opcode() == IrOpcode::kFrameState); 1231 replacement->opcode() == IrOpcode::kFrameState);
1231 } 1232 }
1232 1233
1233 #endif // DEBUG 1234 #endif // DEBUG
1234 1235
1235 } // namespace compiler 1236 } // namespace compiler
1236 } // namespace internal 1237 } // namespace internal
1237 } // namespace v8 1238 } // 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