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

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

Issue 136643008: A64: Synchronize with r18256. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | 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 21 matching lines...) Expand all
32 #include "hydrogen-alias-analysis.h" 32 #include "hydrogen-alias-analysis.h"
33 33
34 namespace v8 { 34 namespace v8 {
35 namespace internal { 35 namespace internal {
36 36
37 37
38 // Remove CheckMaps instructions through flow- and branch-sensitive analysis. 38 // Remove CheckMaps instructions through flow- and branch-sensitive analysis.
39 class HCheckEliminationPhase : public HPhase { 39 class HCheckEliminationPhase : public HPhase {
40 public: 40 public:
41 explicit HCheckEliminationPhase(HGraph* graph) 41 explicit HCheckEliminationPhase(HGraph* graph)
42 : HPhase("H_Check Elimination", graph), 42 : HPhase("H_Check Elimination", graph), aliasing_() {
43 aliasing_(), 43 #ifdef DEBUG
44 redundant_(0), 44 redundant_ = 0;
45 removed_(0), 45 removed_ = 0;
46 narrowed_(0), 46 removed_cho_ = 0;
47 loads_(0), 47 narrowed_ = 0;
48 empty_(0), 48 loads_ = 0;
49 compares_true_(0), 49 empty_ = 0;
50 compares_false_(0), 50 compares_true_ = 0;
51 transitions_(0) { } 51 compares_false_ = 0;
52 transitions_ = 0;
53 #endif
54 }
52 55
53 void Run(); 56 void Run();
54 57
55 friend class HCheckTable; 58 friend class HCheckTable;
56 59
57 private: 60 private:
58 void PrintStats(); 61 void PrintStats();
59 62
60 HAliasAnalyzer* aliasing_; 63 HAliasAnalyzer* aliasing_;
64 #ifdef DEBUG
61 int redundant_; 65 int redundant_;
62 int removed_; 66 int removed_;
67 int removed_cho_;
63 int narrowed_; 68 int narrowed_;
64 int loads_; 69 int loads_;
65 int empty_; 70 int empty_;
66 int compares_true_; 71 int compares_true_;
67 int compares_false_; 72 int compares_false_;
68 int transitions_; 73 int transitions_;
74 #endif
69 }; 75 };
70 76
71 77
72 } } // namespace v8::internal 78 } } // namespace v8::internal
73 79
74 #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