| 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/bit-vector.h" | 8 #include "src/bit-vector.h" |
| 9 #include "src/compiler/escape-analysis.h" | 9 #include "src/compiler/escape-analysis.h" |
| 10 #include "src/compiler/graph-reducer.h" | 10 #include "src/compiler/graph-reducer.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 class EscapeAnalysisReducer final : public AdvancedReducer { | 26 class EscapeAnalysisReducer final : public AdvancedReducer { |
| 27 public: | 27 public: |
| 28 EscapeAnalysisReducer(Editor* editor, JSGraph* jsgraph, | 28 EscapeAnalysisReducer(Editor* editor, JSGraph* jsgraph, |
| 29 EscapeAnalysis* escape_analysis, Zone* zone); | 29 EscapeAnalysis* escape_analysis, Zone* zone); |
| 30 | 30 |
| 31 Reduction Reduce(Node* node) final; | 31 Reduction Reduce(Node* node) final; |
| 32 void SetExistsVirtualAllocate(bool exists) { | 32 void SetExistsVirtualAllocate(bool exists) { |
| 33 exists_virtual_allocate_ = exists; | 33 exists_virtual_allocate_ = exists; |
| 34 } | 34 } |
| 35 void VerifyReplacement() const; |
| 35 | 36 |
| 36 private: | 37 private: |
| 37 Reduction ReduceLoad(Node* node); | 38 Reduction ReduceLoad(Node* node); |
| 38 Reduction ReduceStore(Node* node); | 39 Reduction ReduceStore(Node* node); |
| 39 Reduction ReduceAllocate(Node* node); | 40 Reduction ReduceAllocate(Node* node); |
| 40 Reduction ReduceFinishRegion(Node* node); | 41 Reduction ReduceFinishRegion(Node* node); |
| 41 Reduction ReduceReferenceEqual(Node* node); | 42 Reduction ReduceReferenceEqual(Node* node); |
| 42 Reduction ReduceObjectIsSmi(Node* node); | 43 Reduction ReduceObjectIsSmi(Node* node); |
| 43 Reduction ReduceFrameStateUses(Node* node); | 44 Reduction ReduceFrameStateUses(Node* node); |
| 44 Node* ReduceDeoptState(Node* node, Node* effect, bool multiple_users); | 45 Node* ReduceDeoptState(Node* node, Node* effect, bool multiple_users); |
| 45 Node* ReduceStateValueInput(Node* node, int node_index, Node* effect, | 46 Node* ReduceStateValueInput(Node* node, int node_index, Node* effect, |
| 46 bool node_multiused, bool already_cloned, | 47 bool node_multiused, bool already_cloned, |
| 47 bool multiple_users); | 48 bool multiple_users); |
| 48 | 49 |
| 49 JSGraph* jsgraph() const { return jsgraph_; } | 50 JSGraph* jsgraph() const { return jsgraph_; } |
| 50 EscapeAnalysis* escape_analysis() const { return escape_analysis_; } | 51 EscapeAnalysis* escape_analysis() const { return escape_analysis_; } |
| 51 Zone* zone() const { return zone_; } | 52 Zone* zone() const { return zone_; } |
| 52 Counters* counters() const; | 53 Counters* counters() const; |
| 53 | 54 |
| 54 JSGraph* const jsgraph_; | 55 JSGraph* const jsgraph_; |
| 55 EscapeAnalysis* escape_analysis_; | 56 EscapeAnalysis* escape_analysis_; |
| 56 Zone* const zone_; | 57 Zone* const zone_; |
| 57 // _visited marks nodes we already processed (allocs, loads, stores) | 58 // _visited marks nodes we already processed (allocs, loads, stores) |
| 58 // and nodes that do not need a visit from ReduceDeoptState etc. | 59 // and nodes that do not need a visit from ReduceDeoptState etc. |
| 59 BitVector visited_; | 60 BitVector fully_reduced_; |
| 60 bool exists_virtual_allocate_; | 61 bool exists_virtual_allocate_; |
| 61 | 62 |
| 62 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysisReducer); | 63 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysisReducer); |
| 63 }; | 64 }; |
| 64 | 65 |
| 65 } // namespace compiler | 66 } // namespace compiler |
| 66 } // namespace internal | 67 } // namespace internal |
| 67 } // namespace v8 | 68 } // namespace v8 |
| 68 | 69 |
| 69 #endif // V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ | 70 #endif // V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ |
| OLD | NEW |