OLD | NEW |
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_LIVE_RANGE_SEPARATOR_H_ | 5 #ifndef V8_LIVE_RANGE_SEPARATOR_H_ |
6 #define V8_LIVE_RANGE_SEPARATOR_H_ | 6 #define V8_LIVE_RANGE_SEPARATOR_H_ |
7 | 7 |
8 | 8 #include "src/zone/zone.h" |
9 #include <src/zone.h> | |
10 namespace v8 { | 9 namespace v8 { |
11 namespace internal { | 10 namespace internal { |
12 | 11 |
13 class Zone; | 12 class Zone; |
14 | 13 |
15 namespace compiler { | 14 namespace compiler { |
16 | 15 |
17 class RegisterAllocationData; | 16 class RegisterAllocationData; |
18 | 17 |
19 | 18 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 Zone* const zone_; | 55 Zone* const zone_; |
57 | 56 |
58 DISALLOW_COPY_AND_ASSIGN(LiveRangeMerger); | 57 DISALLOW_COPY_AND_ASSIGN(LiveRangeMerger); |
59 }; | 58 }; |
60 | 59 |
61 | 60 |
62 } // namespace compiler | 61 } // namespace compiler |
63 } // namespace internal | 62 } // namespace internal |
64 } // namespace v8 | 63 } // namespace v8 |
65 #endif // V8_LIVE_RANGE_SEPARATOR_H_ | 64 #endif // V8_LIVE_RANGE_SEPARATOR_H_ |
OLD | NEW |