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

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

Issue 1420283009: [turbofan] Add support for storing to double fields. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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_COMMON_OPERATOR_REDUCER_H_ 5 #ifndef V8_COMPILER_COMMON_OPERATOR_REDUCER_H_
6 #define V8_COMPILER_COMMON_OPERATOR_REDUCER_H_ 6 #define V8_COMPILER_COMMON_OPERATOR_REDUCER_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 17 matching lines...) Expand all
28 28
29 Reduction Reduce(Node* node) final; 29 Reduction Reduce(Node* node) final;
30 30
31 private: 31 private:
32 Reduction ReduceBranch(Node* node); 32 Reduction ReduceBranch(Node* node);
33 Reduction ReduceMerge(Node* node); 33 Reduction ReduceMerge(Node* node);
34 Reduction ReduceEffectPhi(Node* node); 34 Reduction ReduceEffectPhi(Node* node);
35 Reduction ReducePhi(Node* node); 35 Reduction ReducePhi(Node* node);
36 Reduction ReduceReturn(Node* node); 36 Reduction ReduceReturn(Node* node);
37 Reduction ReduceSelect(Node* node); 37 Reduction ReduceSelect(Node* node);
38 Reduction ReduceGuard(Node* node);
38 39
39 Reduction Change(Node* node, Operator const* op, Node* a); 40 Reduction Change(Node* node, Operator const* op, Node* a);
40 Reduction Change(Node* node, Operator const* op, Node* a, Node* b); 41 Reduction Change(Node* node, Operator const* op, Node* a, Node* b);
41 42
42 Graph* graph() const { return graph_; } 43 Graph* graph() const { return graph_; }
43 CommonOperatorBuilder* common() const { return common_; } 44 CommonOperatorBuilder* common() const { return common_; }
44 MachineOperatorBuilder* machine() const { return machine_; } 45 MachineOperatorBuilder* machine() const { return machine_; }
45 Node* dead() const { return dead_; } 46 Node* dead() const { return dead_; }
46 47
47 Graph* const graph_; 48 Graph* const graph_;
48 CommonOperatorBuilder* const common_; 49 CommonOperatorBuilder* const common_;
49 MachineOperatorBuilder* const machine_; 50 MachineOperatorBuilder* const machine_;
50 Node* const dead_; 51 Node* const dead_;
51 }; 52 };
52 53
53 } // namespace compiler 54 } // namespace compiler
54 } // namespace internal 55 } // namespace internal
55 } // namespace v8 56 } // namespace v8
56 57
57 #endif // V8_COMPILER_COMMON_OPERATOR_REDUCER_H_ 58 #endif // V8_COMPILER_COMMON_OPERATOR_REDUCER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698