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

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

Issue 2120253002: [turbofan] Initial version of the new LoadElimination. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@TurboFan_StackCheck_NoWrite
Patch Set: Fix DCHECK. Check types on substitution. Created 4 years, 5 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 2016 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"
9
10 namespace v8 { 8 namespace v8 {
11 namespace internal { 9 namespace internal {
10
11 // Forward declarations.
12 class Zone;
13
12 namespace compiler { 14 namespace compiler {
13 15
16 // Forward declarations.
14 class Graph; 17 class Graph;
15 class SimplifiedOperatorBuilder; 18 class JSGraph;
16 19
17 class LoadElimination final : public AdvancedReducer { 20 // Eliminates redundant loads via scalar replacement of aggregates.
21 class LoadElimination final {
18 public: 22 public:
19 explicit LoadElimination(Editor* editor, Graph* graph, 23 LoadElimination(JSGraph* jsgraph, Zone* zone)
20 SimplifiedOperatorBuilder* simplified) 24 : jsgraph_(jsgraph), zone_(zone) {}
21 : AdvancedReducer(editor), graph_(graph), simplified_(simplified) {}
22 ~LoadElimination() final;
23 25
24 Reduction Reduce(Node* node) final; 26 void Run();
25 27
26 private: 28 private:
27 SimplifiedOperatorBuilder* simplified() const { return simplified_; } 29 Graph* graph() const;
28 Graph* graph() const { return graph_; } 30 JSGraph* jsgraph() const { return jsgraph_; }
31 Zone* zone() const { return zone_; }
29 32
30 Reduction ReduceLoadField(Node* node); 33 JSGraph* const jsgraph_;
31 34 Zone* const zone_;
32 Graph* const graph_;
33 SimplifiedOperatorBuilder* const simplified_;
34 }; 35 };
35 36
36 } // namespace compiler 37 } // namespace compiler
37 } // namespace internal 38 } // namespace internal
38 } // namespace v8 39 } // namespace v8
39 40
40 #endif // V8_COMPILER_LOAD_ELIMINATION_H_ 41 #endif // V8_COMPILER_LOAD_ELIMINATION_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/load-elimination.cc » ('j') | test/unittests/compiler/load-elimination-unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698