src/share/vm/utilities/taskqueue.cpp

Print this page
rev 6521 : 8044775: Improve usage of umbrella header atomic.inline.hpp.


   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "oops/oop.inline.hpp"

  27 #include "runtime/os.hpp"
  28 #include "runtime/thread.inline.hpp"
  29 #include "utilities/debug.hpp"
  30 #include "utilities/stack.inline.hpp"
  31 #include "utilities/taskqueue.hpp"
  32 
  33 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
  34 
  35 #ifdef TRACESPINNING
  36 uint ParallelTaskTerminator::_total_yields = 0;
  37 uint ParallelTaskTerminator::_total_spins = 0;
  38 uint ParallelTaskTerminator::_total_peeks = 0;
  39 #endif
  40 
  41 #if TASKQUEUE_STATS
  42 const char * const TaskQueueStats::_names[last_stat_id] = {
  43   "qpush", "qpop", "qpop-s", "qattempt", "qsteal", "opush", "omax"
  44 };
  45 
  46 TaskQueueStats & TaskQueueStats::operator +=(const TaskQueueStats & addend)




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "oops/oop.inline.hpp"
  27 #include "runtime/atomic.inline.hpp"
  28 #include "runtime/os.hpp"
  29 #include "runtime/thread.inline.hpp"
  30 #include "utilities/debug.hpp"
  31 #include "utilities/stack.inline.hpp"
  32 #include "utilities/taskqueue.hpp"
  33 
  34 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
  35 
  36 #ifdef TRACESPINNING
  37 uint ParallelTaskTerminator::_total_yields = 0;
  38 uint ParallelTaskTerminator::_total_spins = 0;
  39 uint ParallelTaskTerminator::_total_peeks = 0;
  40 #endif
  41 
  42 #if TASKQUEUE_STATS
  43 const char * const TaskQueueStats::_names[last_stat_id] = {
  44   "qpush", "qpop", "qpop-s", "qattempt", "qsteal", "opush", "omax"
  45 };
  46 
  47 TaskQueueStats & TaskQueueStats::operator +=(const TaskQueueStats & addend)