| OLD | NEW |
| 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 Loading... |
| 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 removed_cho_(0), | 46 removed_cho_ = 0; |
| 47 narrowed_(0), | 47 narrowed_ = 0; |
| 48 loads_(0), | 48 loads_ = 0; |
| 49 empty_(0), | 49 empty_ = 0; |
| 50 compares_true_(0), | 50 compares_true_ = 0; |
| 51 compares_false_(0), | 51 compares_false_ = 0; |
| 52 transitions_(0) { } | 52 transitions_ = 0; |
| 53 #endif |
| 54 } |
| 53 | 55 |
| 54 void Run(); | 56 void Run(); |
| 55 | 57 |
| 56 friend class HCheckTable; | 58 friend class HCheckTable; |
| 57 | 59 |
| 58 private: | 60 private: |
| 59 void PrintStats(); | 61 void PrintStats(); |
| 60 | 62 |
| 61 HAliasAnalyzer* aliasing_; | 63 HAliasAnalyzer* aliasing_; |
| 64 #ifdef DEBUG |
| 62 int redundant_; | 65 int redundant_; |
| 63 int removed_; | 66 int removed_; |
| 64 int removed_cho_; | 67 int removed_cho_; |
| 65 int narrowed_; | 68 int narrowed_; |
| 66 int loads_; | 69 int loads_; |
| 67 int empty_; | 70 int empty_; |
| 68 int compares_true_; | 71 int compares_true_; |
| 69 int compares_false_; | 72 int compares_false_; |
| 70 int transitions_; | 73 int transitions_; |
| 74 #endif |
| 71 }; | 75 }; |
| 72 | 76 |
| 73 | 77 |
| 74 } } // namespace v8::internal | 78 } } // namespace v8::internal |
| 75 | 79 |
| 76 #endif // V8_HYDROGEN_CHECK_ELIMINATION_H_ | 80 #endif // V8_HYDROGEN_CHECK_ELIMINATION_H_ |
| OLD | NEW |