hotspot/src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.cpp
changeset 24424 2658d7834c6e
parent 24092 e274d864545a
child 27154 ccf8883e01be
equal deleted inserted replaced
24358:8528b67f6562 24424:2658d7834c6e
     1 /*
     1 /*
     2  * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    33 #include "memory/memRegion.hpp"
    33 #include "memory/memRegion.hpp"
    34 #include "memory/padded.inline.hpp"
    34 #include "memory/padded.inline.hpp"
    35 #include "oops/oop.inline.hpp"
    35 #include "oops/oop.inline.hpp"
    36 #include "oops/oop.psgc.inline.hpp"
    36 #include "oops/oop.psgc.inline.hpp"
    37 
    37 
       
    38 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
       
    39 
    38 PaddedEnd<PSPromotionManager>* PSPromotionManager::_manager_array = NULL;
    40 PaddedEnd<PSPromotionManager>* PSPromotionManager::_manager_array = NULL;
    39 OopStarTaskQueueSet*           PSPromotionManager::_stack_array_depth = NULL;
    41 OopStarTaskQueueSet*           PSPromotionManager::_stack_array_depth = NULL;
    40 PSOldGen*                      PSPromotionManager::_old_gen = NULL;
    42 PSOldGen*                      PSPromotionManager::_old_gen = NULL;
    41 MutableSpace*                  PSPromotionManager::_young_space = NULL;
    43 MutableSpace*                  PSPromotionManager::_young_space = NULL;
    42 
    44 
   134   for (uint i = 0; i < ParallelGCThreads + 1; ++i) {
   136   for (uint i = 0; i < ParallelGCThreads + 1; ++i) {
   135     manager_array(i)->print_taskqueue_stats(i);
   137     manager_array(i)->print_taskqueue_stats(i);
   136   }
   138   }
   137 
   139 
   138   const uint hlines = sizeof(pm_stats_hdr) / sizeof(pm_stats_hdr[0]);
   140   const uint hlines = sizeof(pm_stats_hdr) / sizeof(pm_stats_hdr[0]);
   139   for (uint i = 0; i < hlines; ++i) tty->print_cr(pm_stats_hdr[i]);
   141   for (uint i = 0; i < hlines; ++i) tty->print_cr("%s", pm_stats_hdr[i]);
   140   for (uint i = 0; i < ParallelGCThreads + 1; ++i) {
   142   for (uint i = 0; i < ParallelGCThreads + 1; ++i) {
   141     manager_array(i)->print_local_stats(i);
   143     manager_array(i)->print_local_stats(i);
   142   }
   144   }
   143 }
   145 }
   144 
   146