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

Side by Side Diff: src/compiler/machine-operator-reducer.h

Issue 2230213002: Revert of [turbofan] Reduces x << y ^ x >>> (32 - y) to x ror (32 - y). (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
« no previous file with comments | « no previous file | src/compiler/machine-operator-reducer.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 #ifndef V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_
6 #define V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ 6 #define V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 #include "src/compiler/machine-operator.h" 9 #include "src/compiler/machine-operator.h"
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 Reduction ReduceUint32Div(Node* node); 72 Reduction ReduceUint32Div(Node* node);
73 Reduction ReduceInt32Mod(Node* node); 73 Reduction ReduceInt32Mod(Node* node);
74 Reduction ReduceUint32Mod(Node* node); 74 Reduction ReduceUint32Mod(Node* node);
75 Reduction ReduceStore(Node* node); 75 Reduction ReduceStore(Node* node);
76 Reduction ReduceProjection(size_t index, Node* node); 76 Reduction ReduceProjection(size_t index, Node* node);
77 Reduction ReduceWord32Shifts(Node* node); 77 Reduction ReduceWord32Shifts(Node* node);
78 Reduction ReduceWord32Shl(Node* node); 78 Reduction ReduceWord32Shl(Node* node);
79 Reduction ReduceWord32Shr(Node* node); 79 Reduction ReduceWord32Shr(Node* node);
80 Reduction ReduceWord32Sar(Node* node); 80 Reduction ReduceWord32Sar(Node* node);
81 Reduction ReduceWord32And(Node* node); 81 Reduction ReduceWord32And(Node* node);
82 Reduction TryMatchWord32Ror(Node* node);
83 Reduction ReduceWord32Or(Node* node); 82 Reduction ReduceWord32Or(Node* node);
84 Reduction ReduceWord32Xor(Node* node);
85 Reduction ReduceFloat64InsertLowWord32(Node* node); 83 Reduction ReduceFloat64InsertLowWord32(Node* node);
86 Reduction ReduceFloat64InsertHighWord32(Node* node); 84 Reduction ReduceFloat64InsertHighWord32(Node* node);
87 Reduction ReduceFloat64Compare(Node* node); 85 Reduction ReduceFloat64Compare(Node* node);
88 86
89 Graph* graph() const; 87 Graph* graph() const;
90 JSGraph* jsgraph() const { return jsgraph_; } 88 JSGraph* jsgraph() const { return jsgraph_; }
91 CommonOperatorBuilder* common() const; 89 CommonOperatorBuilder* common() const;
92 MachineOperatorBuilder* machine() const; 90 MachineOperatorBuilder* machine() const;
93 91
94 JSGraph* jsgraph_; 92 JSGraph* jsgraph_;
95 }; 93 };
96 94
97 } // namespace compiler 95 } // namespace compiler
98 } // namespace internal 96 } // namespace internal
99 } // namespace v8 97 } // namespace v8
100 98
101 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ 99 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/machine-operator-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698