OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_LITHIUM_ALLOCATOR_H_ | 5 #ifndef V8_LITHIUM_ALLOCATOR_H_ |
6 #define V8_LITHIUM_ALLOCATOR_H_ | 6 #define V8_LITHIUM_ALLOCATOR_H_ |
7 | 7 |
8 #include "src/v8.h" | |
9 | |
10 #include "src/allocation.h" | 8 #include "src/allocation.h" |
11 #include "src/lithium.h" | 9 #include "src/lithium.h" |
12 #include "src/zone.h" | 10 #include "src/zone.h" |
13 | 11 |
14 namespace v8 { | 12 namespace v8 { |
15 namespace internal { | 13 namespace internal { |
16 | 14 |
17 // Forward declarations. | 15 // Forward declarations. |
18 class HBasicBlock; | 16 class HBasicBlock; |
19 class HGraph; | 17 class HGraph; |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
566 LAllocator* allocator_; | 564 LAllocator* allocator_; |
567 size_t allocator_zone_start_allocation_size_; | 565 size_t allocator_zone_start_allocation_size_; |
568 | 566 |
569 DISALLOW_COPY_AND_ASSIGN(LAllocatorPhase); | 567 DISALLOW_COPY_AND_ASSIGN(LAllocatorPhase); |
570 }; | 568 }; |
571 | 569 |
572 | 570 |
573 } } // namespace v8::internal | 571 } } // namespace v8::internal |
574 | 572 |
575 #endif // V8_LITHIUM_ALLOCATOR_H_ | 573 #endif // V8_LITHIUM_ALLOCATOR_H_ |
OLD | NEW |