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

Side by Side Diff: src/compiler/load-elimination.h

Issue 1994503002: [turbofan] Turn common Guard operator into simplified TypeGuard. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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 | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/load-elimination.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_LOAD_ELIMINATION_H_ 5 #ifndef V8_COMPILER_LOAD_ELIMINATION_H_
6 #define V8_COMPILER_LOAD_ELIMINATION_H_ 6 #define V8_COMPILER_LOAD_ELIMINATION_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 {
11 namespace internal { 11 namespace internal {
12 namespace compiler { 12 namespace compiler {
13 13
14 class CommonOperatorBuilder;
15 class Graph; 14 class Graph;
15 class SimplifiedOperatorBuilder;
16 16
17 class LoadElimination final : public AdvancedReducer { 17 class LoadElimination final : public AdvancedReducer {
18 public: 18 public:
19 explicit LoadElimination(Editor* editor, Graph* graph, 19 explicit LoadElimination(Editor* editor, Graph* graph,
20 CommonOperatorBuilder* common) 20 SimplifiedOperatorBuilder* simplified)
21 : AdvancedReducer(editor), graph_(graph), common_(common) {} 21 : AdvancedReducer(editor), graph_(graph), simplified_(simplified) {}
22 ~LoadElimination() final; 22 ~LoadElimination() final;
23 23
24 Reduction Reduce(Node* node) final; 24 Reduction Reduce(Node* node) final;
25 25
26 private: 26 private:
27 CommonOperatorBuilder* common() const { return common_; } 27 SimplifiedOperatorBuilder* simplified() const { return simplified_; }
28 Graph* graph() { return graph_; } 28 Graph* graph() const { return graph_; }
29 29
30 Reduction ReduceLoadField(Node* node); 30 Reduction ReduceLoadField(Node* node);
31 Graph* graph_; 31
32 CommonOperatorBuilder* common_; 32 Graph* const graph_;
33 SimplifiedOperatorBuilder* const simplified_;
33 }; 34 };
34 35
35 } // namespace compiler 36 } // namespace compiler
36 } // namespace internal 37 } // namespace internal
37 } // namespace v8 38 } // namespace v8
38 39
39 #endif // V8_COMPILER_LOAD_ELIMINATION_H_ 40 #endif // V8_COMPILER_LOAD_ELIMINATION_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/load-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698