Fix 32-bit builds epsilon-gc-branch
authorshade
Mon, 21 May 2018 10:34:21 +0200
branchepsilon-gc-branch
changeset 56580 b6c934c3fda2
parent 56578 e8414c8ead61
child 56581 d6ace215b52c
Fix 32-bit builds
src/hotspot/share/gc/epsilon/epsilonHeap.cpp
--- 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");