src/share/vm/gc_implementation/g1/concurrentMark.cpp

changeset 9342
5792d995ed26
parent 9327
f96fcd9e1e1b
child 9448
73d689add964
child 9982
72053ed6f8d4
     1.1 --- a/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Wed Apr 25 12:21:29 2018 -0400
     1.2 +++ b/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Wed Jun 27 03:04:33 2018 -0700
     1.3 @@ -2846,7 +2846,7 @@
     1.4        }
     1.5      }
     1.6  
     1.7 -    _out->print_cr("  "PTR_FORMAT": "PTR_FORMAT"%s%s",
     1.8 +    _out->print_cr("  " PTR_FORMAT ": " PTR_FORMAT "%s%s",
     1.9                     p2i(p), p2i((void*) obj), str, str2);
    1.10    }
    1.11  };
    1.12 @@ -2873,7 +2873,7 @@
    1.13      bool print_it = _all || over_tams || marked;
    1.14  
    1.15      if (print_it) {
    1.16 -      _out->print_cr(" "PTR_FORMAT"%s",
    1.17 +      _out->print_cr(" " PTR_FORMAT "%s",
    1.18                       p2i((void *)o), (over_tams) ? " >" : (marked) ? " M" : "");
    1.19        PrintReachableOopClosure oopCl(_out, _vo, _all);
    1.20        o->oop_iterate_no_header(&oopCl);
    1.21 @@ -2894,7 +2894,7 @@
    1.22      HeapWord* e = hr->end();
    1.23      HeapWord* t = hr->top();
    1.24      HeapWord* p = _g1h->top_at_mark_start(hr, _vo);
    1.25 -    _out->print_cr("** ["PTR_FORMAT", "PTR_FORMAT"] top: "PTR_FORMAT" "
    1.26 +    _out->print_cr("** [" PTR_FORMAT ", " PTR_FORMAT "] top: " PTR_FORMAT " "
    1.27                     "TAMS: " PTR_FORMAT, p2i(b), p2i(e), p2i(t), p2i(p));
    1.28      _out->cr();
    1.29  

mercurial