Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_ESCAPE_ANALYSIS_REDUCER_H_ | 5 #ifndef V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ |
| 6 #define V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ | 6 #define V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ |
| 7 | 7 |
| 8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
| 9 #include "src/bit-vector.h" | 9 #include "src/bit-vector.h" |
| 10 #include "src/compiler/escape-analysis.h" | 10 #include "src/compiler/escape-analysis.h" |
| 11 #include "src/compiler/graph-reducer.h" | 11 #include "src/compiler/graph-reducer.h" |
| 12 #include "src/globals.h" | 12 #include "src/globals.h" |
| 13 | 13 |
| 14 namespace v8 { | 14 namespace v8 { |
| 15 namespace internal { | 15 namespace internal { |
| 16 namespace compiler { | 16 namespace compiler { |
| 17 | 17 |
| 18 // Forward declarations. | 18 // Forward declarations. |
| 19 class JSGraph; | 19 class JSGraph; |
| 20 | 20 |
| 21 class V8_EXPORT_PRIVATE EscapeAnalysisReducer final | 21 class V8_EXPORT_PRIVATE EscapeAnalysisReducer final |
| 22 : public NON_EXPORTED_BASE(AdvancedReducer) { | 22 : public NON_EXPORTED_BASE(AdvancedReducer) { |
| 23 public: | 23 public: |
| 24 EscapeAnalysisReducer(Editor* editor, JSGraph* jsgraph, | 24 EscapeAnalysisReducer(Editor* editor, JSGraph* jsgraph, |
| 25 EscapeAnalysis* escape_analysis, Zone* zone); | 25 EscapeAnalysis* escape_analysis, Zone* zone); |
| 26 | 26 |
| 27 Reduction Reduce(Node* node) final; | 27 Reduction Reduce(Node* node) final; |
| 28 | 28 |
| 29 void Finalize() override; | |
| 30 | |
| 29 // Verifies that all virtual allocation nodes have been dealt with. Run it | 31 // Verifies that all virtual allocation nodes have been dealt with. Run it |
| 30 // after this reducer has been applied. Has no effect in release mode. | 32 // after this reducer has been applied. Has no effect in release mode. |
| 31 void VerifyReplacement() const; | 33 void VerifyReplacement() const; |
| 32 | 34 |
| 33 bool compilation_failed() const { return compilation_failed_; } | 35 bool compilation_failed() const { return compilation_failed_; } |
| 34 | 36 |
| 35 private: | 37 private: |
| 36 Reduction ReduceNode(Node* node); | 38 Reduction ReduceNode(Node* node); |
| 37 Reduction ReduceLoad(Node* node); | 39 Reduction ReduceLoad(Node* node); |
| 38 Reduction ReduceStore(Node* node); | 40 Reduction ReduceStore(Node* node); |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 51 EscapeAnalysis* escape_analysis() const { return escape_analysis_; } | 53 EscapeAnalysis* escape_analysis() const { return escape_analysis_; } |
| 52 Zone* zone() const { return zone_; } | 54 Zone* zone() const { return zone_; } |
| 53 | 55 |
| 54 JSGraph* const jsgraph_; | 56 JSGraph* const jsgraph_; |
| 55 EscapeAnalysis* escape_analysis_; | 57 EscapeAnalysis* escape_analysis_; |
| 56 Zone* const zone_; | 58 Zone* const zone_; |
| 57 // This bit vector marks nodes we already processed (allocs, loads, stores) | 59 // This bit vector marks nodes we already processed (allocs, loads, stores) |
| 58 // and nodes that do not need a visit from ReduceDeoptState etc. | 60 // and nodes that do not need a visit from ReduceDeoptState etc. |
| 59 BitVector fully_reduced_; | 61 BitVector fully_reduced_; |
| 60 bool exists_virtual_allocate_; | 62 bool exists_virtual_allocate_; |
| 63 std::set<Node*> arguments_elements_; | |
|
Tobias Tebbi
2017/02/15 14:16:05
This is a small set, at most 2 elements, and only
| |
| 61 bool compilation_failed_ = false; | 64 bool compilation_failed_ = false; |
| 62 | 65 |
| 63 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysisReducer); | 66 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysisReducer); |
| 64 }; | 67 }; |
| 65 | 68 |
| 66 } // namespace compiler | 69 } // namespace compiler |
| 67 } // namespace internal | 70 } // namespace internal |
| 68 } // namespace v8 | 71 } // namespace v8 |
| 69 | 72 |
| 70 #endif // V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ | 73 #endif // V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ |
| OLD | NEW |