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

Side by Side Diff: src/compiler/escape-analysis-reducer.h

Issue 1510973006: Stabilize escape analysis (without deopt) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@fix-guard-bug
Patch Set: Rebase Created 5 years 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/escape-analysis.cc ('k') | src/compiler/escape-analysis-reducer.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 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/compiler/escape-analysis.h" 8 #include "src/compiler/escape-analysis.h"
9 #include "src/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 10
(...skipping 11 matching lines...) Expand all
22 EscapeAnalysis* escape_analysis, Zone* zone); 22 EscapeAnalysis* escape_analysis, Zone* zone);
23 23
24 Reduction Reduce(Node* node) final; 24 Reduction Reduce(Node* node) final;
25 25
26 private: 26 private:
27 Reduction ReduceLoad(Node* node); 27 Reduction ReduceLoad(Node* node);
28 Reduction ReduceStore(Node* node); 28 Reduction ReduceStore(Node* node);
29 Reduction ReduceAllocate(Node* node); 29 Reduction ReduceAllocate(Node* node);
30 Reduction ReduceFinishRegion(Node* node); 30 Reduction ReduceFinishRegion(Node* node);
31 Reduction ReduceReferenceEqual(Node* node); 31 Reduction ReduceReferenceEqual(Node* node);
32 Reduction ReduceObjectIsSmi(Node* node);
32 33
33 Reduction ReplaceWithDeoptDummy(Node* node); 34 Reduction ReplaceWithDeoptDummy(Node* node);
34 35
35 JSGraph* jsgraph() const { return jsgraph_; } 36 JSGraph* jsgraph() const { return jsgraph_; }
36 EscapeAnalysis* escape_analysis() const { return escape_analysis_; } 37 EscapeAnalysis* escape_analysis() const { return escape_analysis_; }
37 Zone* zone() const { return zone_; } 38 Zone* zone() const { return zone_; }
38 39
39 JSGraph* const jsgraph_; 40 JSGraph* const jsgraph_;
40 EscapeAnalysis* escape_analysis_; 41 EscapeAnalysis* escape_analysis_;
41 Zone* const zone_; 42 Zone* const zone_;
42 43
43 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysisReducer); 44 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysisReducer);
44 }; 45 };
45 46
46 } // namespace compiler 47 } // namespace compiler
47 } // namespace internal 48 } // namespace internal
48 } // namespace v8 49 } // namespace v8
49 50
50 #endif // V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_ 51 #endif // V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_
OLDNEW
« no previous file with comments | « src/compiler/escape-analysis.cc ('k') | src/compiler/escape-analysis-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698