< prev index next >

src/hotspot/share/gc/serial/defNewGeneration.cpp

Print this page
rev 58025 : imported patch 8238854-remove-superfluous-alloc-checks

*** 166,179 **** _eden_space = new ContiguousSpace(); _from_space = new ContiguousSpace(); _to_space = new ContiguousSpace(); - if (_eden_space == NULL || _from_space == NULL || _to_space == NULL) { - vm_exit_during_initialization("Could not allocate a new gen space"); - } - // Compute the maximum eden and survivor space sizes. These sizes // are computed assuming the entire reserved space is committed. // These values are exported as performance counters. uintx size = _virtual_space.reserved_size(); _max_survivor_size = compute_survivor_size(size, SpaceAlignment); --- 166,175 ----
< prev index next >