|
24 | 24 |
|
25 | 25 | #include "precompiled.hpp"
|
26 | 26 | #include "code/codeCache.hpp"
|
27 |
| -#include "gc/parallel/adjoiningGenerations.hpp" |
28 |
| -#include "gc/parallel/adjoiningVirtualSpaces.hpp" |
29 | 27 | #include "gc/parallel/parallelArguments.hpp"
|
30 | 28 | #include "gc/parallel/objectStartArray.inline.hpp"
|
31 | 29 | #include "gc/parallel/parallelScavengeHeap.inline.hpp"
|
@@ -80,19 +78,34 @@ jint ParallelScavengeHeap::initialize() {
|
80 | 78 | BarrierSet::set_barrier_set(barrier_set);
|
81 | 79 |
|
82 | 80 | // Make up the generations
|
83 |
| - // Calculate the maximum size that a generation can grow. This |
84 |
| - // includes growth into the other generation. Note that the |
85 |
| - // parameter _max_gen_size is kept as the maximum |
86 |
| - // size of the generation as the boundaries currently stand. |
87 |
| - // _max_gen_size is still used as that value. |
| 81 | + assert(MinOldSize <= OldSize && OldSize <= MaxOldSize, "Parameter check"); |
| 82 | + assert(MinNewSize <= NewSize && NewSize <= MaxNewSize, "Parameter check"); |
| 83 | + |
| 84 | + // Layout the reserved space for the generations. |
| 85 | + // If OldGen is allocated on nv-dimm, we need to split the reservation (this is required for windows). |
| 86 | + ReservedSpace old_rs = heap_rs.first_part(MaxOldSize, ParallelArguments::is_heterogeneous_heap() /* split */); |
| 87 | + ReservedSpace young_rs = heap_rs.last_part(MaxOldSize); |
| 88 | + assert(young_rs.size() == MaxNewSize, "Didn't reserve all of the heap"); |
| 89 | + |
| 90 | + // Create and initialize the generations. |
| 91 | + _young_gen = new PSYoungGen( |
| 92 | + young_rs, |
| 93 | + NewSize, |
| 94 | + MinNewSize, |
| 95 | + MaxNewSize); |
| 96 | + _old_gen = new PSOldGen( |
| 97 | + old_rs, |
| 98 | + OldSize, |
| 99 | + MinOldSize, |
| 100 | + MaxOldSize, |
| 101 | + "old", 1); |
| 102 | + |
| 103 | + assert(young_gen()->gen_size_limit() == young_rs.size(),"Consistency check"); |
| 104 | + assert(old_gen()->gen_size_limit() == old_rs.size(), "Consistency check"); |
| 105 | + |
88 | 106 | double max_gc_pause_sec = ((double) MaxGCPauseMillis)/1000.0;
|
89 | 107 | double max_gc_minor_pause_sec = ((double) MaxGCMinorPauseMillis)/1000.0;
|
90 | 108 |
|
91 |
| - _gens = AdjoiningGenerations::create_adjoining_generations(heap_rs); |
92 |
| - |
93 |
| - _old_gen = _gens->old_gen(); |
94 |
| - _young_gen = _gens->young_gen(); |
95 |
| - |
96 | 109 | const size_t eden_capacity = _young_gen->eden_space()->capacity_in_bytes();
|
97 | 110 | const size_t old_capacity = _old_gen->capacity_in_bytes();
|
98 | 111 | const size_t initial_promo_size = MIN2(eden_capacity, old_capacity);
|
|
0 commit comments