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

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

Issue 974313002: [turbofan] Support for %_DoubleHi, %_DoubleLo and %_ConstructDouble. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: arm port. Created 5 years, 9 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 #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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 Reduction ReduceInt32Mod(Node* node); 71 Reduction ReduceInt32Mod(Node* node);
72 Reduction ReduceUint32Mod(Node* node); 72 Reduction ReduceUint32Mod(Node* node);
73 Reduction ReduceTruncateFloat64ToInt32(Node* node); 73 Reduction ReduceTruncateFloat64ToInt32(Node* node);
74 Reduction ReduceStore(Node* node); 74 Reduction ReduceStore(Node* node);
75 Reduction ReduceProjection(size_t index, Node* node); 75 Reduction ReduceProjection(size_t index, Node* node);
76 Reduction ReduceWord32Shifts(Node* node); 76 Reduction ReduceWord32Shifts(Node* node);
77 Reduction ReduceWord32Shl(Node* node); 77 Reduction ReduceWord32Shl(Node* node);
78 Reduction ReduceWord32Sar(Node* node); 78 Reduction ReduceWord32Sar(Node* node);
79 Reduction ReduceWord32And(Node* node); 79 Reduction ReduceWord32And(Node* node);
80 Reduction ReduceWord32Or(Node* node); 80 Reduction ReduceWord32Or(Node* node);
81 Reduction ReduceFloat64InsertWord32(Node* node);
81 82
82 Graph* graph() const; 83 Graph* graph() const;
83 JSGraph* jsgraph() const { return jsgraph_; } 84 JSGraph* jsgraph() const { return jsgraph_; }
84 CommonOperatorBuilder* common() const; 85 CommonOperatorBuilder* common() const;
85 MachineOperatorBuilder* machine() const; 86 MachineOperatorBuilder* machine() const;
86 87
87 JSGraph* jsgraph_; 88 JSGraph* jsgraph_;
88 }; 89 };
89 90
90 } // namespace compiler 91 } // namespace compiler
91 } // namespace internal 92 } // namespace internal
92 } // namespace v8 93 } // namespace v8
93 94
94 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_ 95 #endif // V8_COMPILER_MACHINE_OPERATOR_REDUCER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698