src/share/vm/runtime/safepoint.cpp

changeset 9327
f96fcd9e1e1b
parent 8316
626f594dffa6
child 9448
73d689add964
child 9600
a253fe293726
     1.1 --- a/src/share/vm/runtime/safepoint.cpp	Tue Feb 23 18:58:36 2016 -0500
     1.2 +++ b/src/share/vm/runtime/safepoint.cpp	Thu Jun 14 09:15:08 2018 -0700
     1.3 @@ -914,7 +914,7 @@
     1.4  
     1.5      case _running:
     1.6      default:
     1.7 -       tty->print_cr("restart thread "INTPTR_FORMAT" with state %d",
     1.8 +       tty->print_cr("restart thread " INTPTR_FORMAT " with state %d",
     1.9                        _thread, _type);
    1.10         _thread->print();
    1.11        ShouldNotReachHere();
    1.12 @@ -1213,7 +1213,7 @@
    1.13      sstats = &_safepoint_stats[index];
    1.14      tty->print("%.3f: ", sstats->_time_stamp);
    1.15      tty->print("%-26s       ["
    1.16 -               INT32_FORMAT_W(8)INT32_FORMAT_W(11)INT32_FORMAT_W(15)
    1.17 +               INT32_FORMAT_W(8) INT32_FORMAT_W(11) INT32_FORMAT_W(15)
    1.18                 "    ]    ",
    1.19                 sstats->_vmop_type == -1 ? "no vm operation" :
    1.20                 VM_Operation::name(sstats->_vmop_type),
    1.21 @@ -1222,9 +1222,9 @@
    1.22                 sstats->_nof_threads_wait_to_block);
    1.23      // "/ MICROUNITS " is to convert the unit from nanos to millis.
    1.24      tty->print("  ["
    1.25 -               INT64_FORMAT_W(6)INT64_FORMAT_W(6)
    1.26 -               INT64_FORMAT_W(6)INT64_FORMAT_W(6)
    1.27 -               INT64_FORMAT_W(6)"    ]  ",
    1.28 +               INT64_FORMAT_W(6) INT64_FORMAT_W(6)
    1.29 +               INT64_FORMAT_W(6) INT64_FORMAT_W(6)
    1.30 +               INT64_FORMAT_W(6) "    ]  ",
    1.31                 sstats->_time_to_spin / MICROUNITS,
    1.32                 sstats->_time_to_wait_to_block / MICROUNITS,
    1.33                 sstats->_time_to_sync / MICROUNITS,
    1.34 @@ -1232,9 +1232,9 @@
    1.35                 sstats->_time_to_exec_vmop / MICROUNITS);
    1.36  
    1.37      if (need_to_track_page_armed_status) {
    1.38 -      tty->print(INT32_FORMAT"         ", sstats->_page_armed);
    1.39 +      tty->print(INT32_FORMAT "         ", sstats->_page_armed);
    1.40      }
    1.41 -    tty->print_cr(INT32_FORMAT"   ", sstats->_nof_threads_hit_page_trap);
    1.42 +    tty->print_cr(INT32_FORMAT "   ", sstats->_nof_threads_hit_page_trap);
    1.43    }
    1.44  }
    1.45  
    1.46 @@ -1271,17 +1271,17 @@
    1.47  
    1.48    for (int index = 0; index < VM_Operation::VMOp_Terminating; index++) {
    1.49      if (_safepoint_reasons[index] != 0) {
    1.50 -      tty->print_cr("%-26s"UINT64_FORMAT_W(10), VM_Operation::name(index),
    1.51 +      tty->print_cr("%-26s" UINT64_FORMAT_W(10), VM_Operation::name(index),
    1.52                      _safepoint_reasons[index]);
    1.53      }
    1.54    }
    1.55  
    1.56 -  tty->print_cr(UINT64_FORMAT_W(5)" VM operations coalesced during safepoint",
    1.57 +  tty->print_cr(UINT64_FORMAT_W(5) " VM operations coalesced during safepoint",
    1.58                  _coalesced_vmop_count);
    1.59 -  tty->print_cr("Maximum sync time  "INT64_FORMAT_W(5)" ms",
    1.60 +  tty->print_cr("Maximum sync time  " INT64_FORMAT_W(5) " ms",
    1.61                  _max_sync_time / MICROUNITS);
    1.62    tty->print_cr("Maximum vm operation time (except for Exit VM operation)  "
    1.63 -                INT64_FORMAT_W(5)" ms",
    1.64 +                INT64_FORMAT_W(5) " ms",
    1.65                  _max_vmop_time / MICROUNITS);
    1.66  }
    1.67  

mercurial