hotspot/src/share/vm/gc/parallel/psAdaptiveSizePolicy.hpp
changeset 46619 a3919f5e8d2b
parent 35061 be6025ebffea
child 46625 edefffab74e2
equal deleted inserted replaced
46618:d503911aa948 46619:a3919f5e8d2b
   372     // might grow by moving the bottom boundary "down" -- so from space will
   372     // might grow by moving the bottom boundary "down" -- so from space will
   373     // remain almost full anyway (top() will be near end(), but there will be a
   373     // remain almost full anyway (top() will be near end(), but there will be a
   374     // large filler object at the bottom).
   374     // large filler object at the bottom).
   375     const size_t sz = gen_size / MinSurvivorRatio;
   375     const size_t sz = gen_size / MinSurvivorRatio;
   376     const size_t alignment = _space_alignment;
   376     const size_t alignment = _space_alignment;
   377     return sz > alignment ? align_size_down(sz, alignment) : alignment;
   377     return sz > alignment ? align_down(sz, alignment) : alignment;
   378   }
   378   }
   379 
   379 
   380   size_t live_at_last_full_gc() {
   380   size_t live_at_last_full_gc() {
   381     return _live_at_last_full_gc;
   381     return _live_at_last_full_gc;
   382   }
   382   }