--- a/src/hotspot/share/gc/epsilon/epsilonHeap.cpp Sun May 20 22:18:11 2018 +0200
+++ b/src/hotspot/share/gc/epsilon/epsilonHeap.cpp Mon May 21 10:34:21 2018 +0200
@@ -59,18 +59,18 @@
_decay_time_ns = (int64_t) EpsilonTLABDecayTime * 1000 * 1000;
if (init_byte_size != max_byte_size) {
- log_info(gc)("Initialized with " SIZE_FORMAT "M heap, resizeable to up to " SIZE_FORMAT "M heap with " SIZE_FORMAT "M steps",
+ log_info(gc)("Resizeable heap; starting at " SIZE_FORMAT "M, max: " SIZE_FORMAT "M, step: " SIZE_FORMAT "M",
init_byte_size / M, max_byte_size / M, EpsilonMinHeapExpand / M);
} else {
- log_info(gc)("Initialized with " SIZE_FORMAT "M non-resizeable heap", init_byte_size / M);
+ log_info(gc)("Non-resizeable heap; start/max: " SIZE_FORMAT "M", init_byte_size / M);
}
if (UseTLAB) {
log_info(gc)("Using TLAB allocation; max: " SIZE_FORMAT "K", _max_tlab_size * HeapWordSize / K);
if (EpsilonElasticTLAB) {
- log_info(gc)("Elastic TLABs with elasticity = %.2fx", EpsilonTLABElasticity);
+ log_info(gc)("Elastic TLABs enabled; elasticity: %.2fx", EpsilonTLABElasticity);
}
if (EpsilonElasticTLABDecay) {
- log_info(gc)("Elastic TLABs with decay = " INT64_FORMAT " ms", EpsilonTLABDecayTime);
+ log_info(gc)("Elastic TLABs decay enabled; decay time: " SIZE_FORMAT "ms", EpsilonTLABDecayTime);
}
} else {
log_info(gc)("Not using TLAB allocation");