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

Side by Side Diff: src/hydrogen-check-elimination.h

Issue 112863002: Merge bleeding_edge 18021:18297 (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/hydrogen.cc ('k') | src/hydrogen-check-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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 11 matching lines...) Expand all
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #ifndef V8_HYDROGEN_CHECK_ELIMINATION_H_ 28 #ifndef V8_HYDROGEN_CHECK_ELIMINATION_H_
29 #define V8_HYDROGEN_CHECK_ELIMINATION_H_ 29 #define V8_HYDROGEN_CHECK_ELIMINATION_H_
30 30
31 #include "hydrogen.h" 31 #include "hydrogen.h"
32 #include "hydrogen-alias-analysis.h"
32 33
33 namespace v8 { 34 namespace v8 {
34 namespace internal { 35 namespace internal {
35 36
36 37
37 // Remove CheckMaps instructions through flow- and branch-sensitive analysis. 38 // Remove CheckMaps instructions through flow- and branch-sensitive analysis.
38 class HCheckEliminationPhase : public HPhase { 39 class HCheckEliminationPhase : public HPhase {
39 public: 40 public:
40 explicit HCheckEliminationPhase(HGraph* graph) 41 explicit HCheckEliminationPhase(HGraph* graph)
41 : HPhase("H_Check Elimination", graph) { } 42 : HPhase("H_Check Elimination", graph), aliasing_() {
43 #ifdef DEBUG
44 redundant_ = 0;
45 removed_ = 0;
46 removed_cho_ = 0;
47 narrowed_ = 0;
48 loads_ = 0;
49 empty_ = 0;
50 compares_true_ = 0;
51 compares_false_ = 0;
52 transitions_ = 0;
53 #endif
54 }
42 55
43 void Run(); 56 void Run();
44 57
58 friend class HCheckTable;
59
45 private: 60 private:
46 void EliminateLocalChecks(HBasicBlock* block); 61 void PrintStats();
62
63 HAliasAnalyzer* aliasing_;
64 #ifdef DEBUG
65 int redundant_;
66 int removed_;
67 int removed_cho_;
68 int narrowed_;
69 int loads_;
70 int empty_;
71 int compares_true_;
72 int compares_false_;
73 int transitions_;
74 #endif
47 }; 75 };
48 76
49 77
50 } } // namespace v8::internal 78 } } // namespace v8::internal
51 79
52 #endif // V8_HYDROGEN_CHECK_ELIMINATION_H_ 80 #endif // V8_HYDROGEN_CHECK_ELIMINATION_H_
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | src/hydrogen-check-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698