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

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

Issue 2215403002: [turbofan] Make Float32Neg and Float64Neg mandatory operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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
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/instruction-selector-impl.h" 5 #include "src/compiler/instruction-selector-impl.h"
6 #include "src/compiler/node-matchers.h" 6 #include "src/compiler/node-matchers.h"
7 #include "src/compiler/node-properties.h" 7 #include "src/compiler/node-properties.h"
8 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 2725 matching lines...) Expand 10 before | Expand all | Expand 10 after
2736 MachineOperatorBuilder::kFloat64RoundUp | 2736 MachineOperatorBuilder::kFloat64RoundUp |
2737 MachineOperatorBuilder::kFloat32RoundTruncate | 2737 MachineOperatorBuilder::kFloat32RoundTruncate |
2738 MachineOperatorBuilder::kFloat64RoundTruncate | 2738 MachineOperatorBuilder::kFloat64RoundTruncate |
2739 MachineOperatorBuilder::kFloat64RoundTiesAway | 2739 MachineOperatorBuilder::kFloat64RoundTiesAway |
2740 MachineOperatorBuilder::kFloat32RoundTiesEven | 2740 MachineOperatorBuilder::kFloat32RoundTiesEven |
2741 MachineOperatorBuilder::kFloat64RoundTiesEven | 2741 MachineOperatorBuilder::kFloat64RoundTiesEven |
2742 MachineOperatorBuilder::kWord32ShiftIsSafe | 2742 MachineOperatorBuilder::kWord32ShiftIsSafe |
2743 MachineOperatorBuilder::kInt32DivIsSafe | 2743 MachineOperatorBuilder::kInt32DivIsSafe |
2744 MachineOperatorBuilder::kUint32DivIsSafe | 2744 MachineOperatorBuilder::kUint32DivIsSafe |
2745 MachineOperatorBuilder::kWord32ReverseBits | 2745 MachineOperatorBuilder::kWord32ReverseBits |
2746 MachineOperatorBuilder::kWord64ReverseBits | 2746 MachineOperatorBuilder::kWord64ReverseBits;
2747 MachineOperatorBuilder::kFloat32Neg |
2748 MachineOperatorBuilder::kFloat64Neg;
2749 } 2747 }
2750 2748
2751 // static 2749 // static
2752 MachineOperatorBuilder::AlignmentRequirements 2750 MachineOperatorBuilder::AlignmentRequirements
2753 InstructionSelector::AlignmentRequirements() { 2751 InstructionSelector::AlignmentRequirements() {
2754 return MachineOperatorBuilder::AlignmentRequirements:: 2752 return MachineOperatorBuilder::AlignmentRequirements::
2755 FullUnalignedAccessSupport(); 2753 FullUnalignedAccessSupport();
2756 } 2754 }
2757 2755
2758 } // namespace compiler 2756 } // namespace compiler
2759 } // namespace internal 2757 } // namespace internal
2760 } // namespace v8 2758 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/arm/instruction-selector-arm.cc ('k') | src/compiler/ia32/instruction-selector-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698