OLD | NEW |
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 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 X87OperandGenerator g(this); | 684 X87OperandGenerator g(this); |
685 Emit(kX87Lzcnt, g.DefineAsRegister(node), g.Use(node->InputAt(0))); | 685 Emit(kX87Lzcnt, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
686 } | 686 } |
687 | 687 |
688 | 688 |
689 void InstructionSelector::VisitWord32Ctz(Node* node) { UNREACHABLE(); } | 689 void InstructionSelector::VisitWord32Ctz(Node* node) { UNREACHABLE(); } |
690 | 690 |
691 | 691 |
692 void InstructionSelector::VisitWord32ReverseBits(Node* node) { UNREACHABLE(); } | 692 void InstructionSelector::VisitWord32ReverseBits(Node* node) { UNREACHABLE(); } |
693 | 693 |
| 694 void InstructionSelector::VisitWord64ReverseBytes(Node* node) { UNREACHABLE(); } |
| 695 |
| 696 void InstructionSelector::VisitWord32ReverseBytes(Node* node) { UNREACHABLE(); } |
694 | 697 |
695 void InstructionSelector::VisitWord32Popcnt(Node* node) { | 698 void InstructionSelector::VisitWord32Popcnt(Node* node) { |
696 X87OperandGenerator g(this); | 699 X87OperandGenerator g(this); |
697 Emit(kX87Popcnt, g.DefineAsRegister(node), g.Use(node->InputAt(0))); | 700 Emit(kX87Popcnt, g.DefineAsRegister(node), g.Use(node->InputAt(0))); |
698 } | 701 } |
699 | 702 |
700 | 703 |
701 void InstructionSelector::VisitInt32Add(Node* node) { | 704 void InstructionSelector::VisitInt32Add(Node* node) { |
702 X87OperandGenerator g(this); | 705 X87OperandGenerator g(this); |
703 | 706 |
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1728 // static | 1731 // static |
1729 MachineOperatorBuilder::AlignmentRequirements | 1732 MachineOperatorBuilder::AlignmentRequirements |
1730 InstructionSelector::AlignmentRequirements() { | 1733 InstructionSelector::AlignmentRequirements() { |
1731 return MachineOperatorBuilder::AlignmentRequirements:: | 1734 return MachineOperatorBuilder::AlignmentRequirements:: |
1732 FullUnalignedAccessSupport(); | 1735 FullUnalignedAccessSupport(); |
1733 } | 1736 } |
1734 | 1737 |
1735 } // namespace compiler | 1738 } // namespace compiler |
1736 } // namespace internal | 1739 } // namespace internal |
1737 } // namespace v8 | 1740 } // namespace v8 |
OLD | NEW |