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

Side by Side Diff: src/compiler/ppc/instruction-selector-ppc.cc

Issue 1698483002: [arm][arm64] Improve CountTrailingZero implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: comments addressed Created 4 years, 10 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/opcodes.h ('k') | src/compiler/typer.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/base/adapters.h" 5 #include "src/base/adapters.h"
6 #include "src/compiler/instruction-selector-impl.h" 6 #include "src/compiler/instruction-selector-impl.h"
7 #include "src/compiler/node-matchers.h" 7 #include "src/compiler/node-matchers.h"
8 #include "src/compiler/node-properties.h" 8 #include "src/compiler/node-properties.h"
9 #include "src/ppc/frames-ppc.h" 9 #include "src/ppc/frames-ppc.h"
10 10
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 818
819 819
820 void InstructionSelector::VisitWord32Ctz(Node* node) { UNREACHABLE(); } 820 void InstructionSelector::VisitWord32Ctz(Node* node) { UNREACHABLE(); }
821 821
822 822
823 #if V8_TARGET_ARCH_PPC64 823 #if V8_TARGET_ARCH_PPC64
824 void InstructionSelector::VisitWord64Ctz(Node* node) { UNREACHABLE(); } 824 void InstructionSelector::VisitWord64Ctz(Node* node) { UNREACHABLE(); }
825 #endif 825 #endif
826 826
827 827
828 void InstructionSelector::VisitWord32ReverseBits(Node* node) { UNREACHABLE(); }
829
830
831 #if V8_TARGET_ARCH_PPC64
832 void InstructionSelector::VisitWord64ReverseBits(Node* node) { UNREACHABLE(); }
833 #endif
834
835
828 void InstructionSelector::VisitInt32Add(Node* node) { 836 void InstructionSelector::VisitInt32Add(Node* node) {
829 VisitBinop<Int32BinopMatcher>(this, node, kPPC_Add, kInt16Imm); 837 VisitBinop<Int32BinopMatcher>(this, node, kPPC_Add, kInt16Imm);
830 } 838 }
831 839
832 840
833 #if V8_TARGET_ARCH_PPC64 841 #if V8_TARGET_ARCH_PPC64
834 void InstructionSelector::VisitInt64Add(Node* node) { 842 void InstructionSelector::VisitInt64Add(Node* node) {
835 VisitBinop<Int64BinopMatcher>(this, node, kPPC_Add, kInt16Imm); 843 VisitBinop<Int64BinopMatcher>(this, node, kPPC_Add, kInt16Imm);
836 } 844 }
837 #endif 845 #endif
(...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after
1783 MachineOperatorBuilder::kFloat64RoundTruncate | 1791 MachineOperatorBuilder::kFloat64RoundTruncate |
1784 MachineOperatorBuilder::kFloat64RoundTiesAway | 1792 MachineOperatorBuilder::kFloat64RoundTiesAway |
1785 MachineOperatorBuilder::kWord32Popcnt | 1793 MachineOperatorBuilder::kWord32Popcnt |
1786 MachineOperatorBuilder::kWord64Popcnt; 1794 MachineOperatorBuilder::kWord64Popcnt;
1787 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f. 1795 // We omit kWord32ShiftIsSafe as s[rl]w use 0x3f as a mask rather than 0x1f.
1788 } 1796 }
1789 1797
1790 } // namespace compiler 1798 } // namespace compiler
1791 } // namespace internal 1799 } // namespace internal
1792 } // namespace v8 1800 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698