| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_HYDROGEN_GVN_H_ | 5 #ifndef V8_HYDROGEN_GVN_H_ |
| 6 #define V8_HYDROGEN_GVN_H_ | 6 #define V8_HYDROGEN_GVN_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 | 9 |
| 10 #include "src/hydrogen.h" | 10 #include "src/hydrogen.h" |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 // A map of loop header block IDs to their loop's side effects. | 141 // A map of loop header block IDs to their loop's side effects. |
| 142 ZoneList<SideEffects> loop_side_effects_; | 142 ZoneList<SideEffects> loop_side_effects_; |
| 143 | 143 |
| 144 // Used when collecting side effects on paths from dominator to | 144 // Used when collecting side effects on paths from dominator to |
| 145 // dominated. | 145 // dominated. |
| 146 BitVector visited_on_paths_; | 146 BitVector visited_on_paths_; |
| 147 | 147 |
| 148 DISALLOW_COPY_AND_ASSIGN(HGlobalValueNumberingPhase); | 148 DISALLOW_COPY_AND_ASSIGN(HGlobalValueNumberingPhase); |
| 149 }; | 149 }; |
| 150 | 150 |
| 151 } } // namespace v8::internal | 151 } // namespace internal |
| 152 } // namespace v8 |
| 152 | 153 |
| 153 #endif // V8_HYDROGEN_GVN_H_ | 154 #endif // V8_HYDROGEN_GVN_H_ |
| OLD | NEW |