hotspot/src/share/vm/gc/shared/workgroup.hpp
author brutisso
Fri, 01 Apr 2016 07:08:40 +0200
changeset 37225 ac6c704f9a8c
parent 37214 bc4e0e0995e6
child 38153 4f13f0b690c3
permissions -rw-r--r--
8153187: Convert TraceWorkGang to use unified logging Reviewed-by: mgerdin, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
37214
bc4e0e0995e6 8152952: Allow G1 phase logging to use individual number of threads
brutisso
parents: 36201
diff changeset
     2
 * Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_WORKGROUP_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
    26
#define SHARE_VM_GC_SHARED_WORKGROUP_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    27
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    28
#include "memory/allocation.hpp"
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    29
#include "runtime/globals.hpp"
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    30
#include "runtime/thread.hpp"
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
    31
#include "gc/shared/gcId.hpp"
36201
8d947f31586e 8150367: Add back information about the number of GC workers
brutisso
parents: 35465
diff changeset
    32
#include "logging/log.hpp"
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    33
#include "utilities/debug.hpp"
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    34
#include "utilities/globalDefinitions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    35
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    36
// Task class hierarchy:
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    37
//   AbstractGangTask
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    38
//
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    39
// Gang/Group class hierarchy:
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    40
//   AbstractWorkGang
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    41
//     WorkGang
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    42
//     YieldingFlexibleWorkGang (defined in another file)
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    43
//
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    44
// Worker class hierarchy:
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    45
//   AbstractGangWorker (subclass of WorkerThread)
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    46
//     GangWorker
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    47
//     YieldingFlexibleGangWorker   (defined in another file)
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    48
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// Forward declarations of classes defined here
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    51
class AbstractGangWorker;
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    52
class Semaphore;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    53
class WorkGang;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// An abstract task to be worked on by a gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// You subclass this to supply your own work() method
2013
49e915da0905 6700941: G1: allocation spec missing for some G1 classes
apetrusenko
parents: 1374
diff changeset
    57
class AbstractGangTask VALUE_OBJ_CLASS_SPEC {
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    58
  const char* _name;
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
    59
  const uint _gc_id;
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    60
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    61
 public:
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
    62
  AbstractGangTask(const char* name) :
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
    63
    _name(name),
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
    64
    _gc_id(GCId::current_raw())
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
    65
 {}
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    66
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // The abstract work method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // The argument tells you which member of the gang you are.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
    69
  virtual void work(uint worker_id) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Debugging accessor for the name.
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    72
  const char* name() const { return _name; }
33107
77bf0d2069a3 8134953: Make the GC ID available in a central place
brutisso
parents: 33105
diff changeset
    73
  const uint gc_id() const { return _gc_id; }
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    74
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    76
struct WorkData {
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    77
  AbstractGangTask* _task;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    78
  uint              _worker_id;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    79
  WorkData(AbstractGangTask* task, uint worker_id) : _task(task), _worker_id(worker_id) {}
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    80
};
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    81
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    82
// Interface to handle the synchronization between the coordinator thread and the worker threads,
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    83
// when a task is dispatched out to the worker threads.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    84
class GangTaskDispatcher : public CHeapObj<mtGC> {
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    85
 public:
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    86
  virtual ~GangTaskDispatcher() {}
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    87
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    88
  // Coordinator API.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    89
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    90
  // Distributes the task out to num_workers workers.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    91
  // Returns when the task has been completed by all workers.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    92
  virtual void coordinator_execute_on_workers(AbstractGangTask* task, uint num_workers) = 0;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    93
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    94
  // Worker API.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    95
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    96
  // Waits for a task to become available to the worker.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    97
  // Returns when the worker has been assigned a task.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    98
  virtual WorkData worker_wait_for_task() = 0;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
    99
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   100
  // Signal to the coordinator that the worker is done with the assigned task.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   101
  virtual void     worker_done_with_task() = 0;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   102
};
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   103
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   104
// The work gang is the collection of workers to execute tasks.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   105
// The number of workers run for a task is "_active_workers"
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   106
// while "_total_workers" is the number of available of workers.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   107
class AbstractWorkGang : public CHeapObj<mtInternal> {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   108
 protected:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   109
  // The array of worker threads for this gang.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   110
  AbstractGangWorker** _workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   111
  // The count of the number of workers in the gang.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   112
  uint _total_workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   113
  // The currently active workers in this gang.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   114
  uint _active_workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   115
  // Printing support.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   116
  const char* _name;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   117
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   118
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // Initialize only instance data.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   120
  const bool _are_GC_task_threads;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   121
  const bool _are_ConcurrentGC_threads;
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   122
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   123
 public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   124
  AbstractWorkGang(const char* name, uint workers, bool are_GC_task_threads, bool are_ConcurrentGC_threads) :
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   125
      _name(name),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   126
      _total_workers(workers),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   127
      _active_workers(UseDynamicNumberOfGCThreads ? 1U : workers),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   128
      _are_GC_task_threads(are_GC_task_threads),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   129
      _are_ConcurrentGC_threads(are_ConcurrentGC_threads)
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   130
  { }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   131
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   132
  // Initialize workers in the gang.  Return true if initialization succeeded.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   133
  bool initialize_workers();
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   134
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   135
  bool are_GC_task_threads()      const { return _are_GC_task_threads; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   136
  bool are_ConcurrentGC_threads() const { return _are_ConcurrentGC_threads; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   137
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   138
  uint total_workers() const { return _total_workers; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   139
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   140
  virtual uint active_workers() const {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   141
    assert(_active_workers <= _total_workers,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32361
diff changeset
   142
           "_active_workers: %u > _total_workers: %u", _active_workers, _total_workers);
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   143
    assert(UseDynamicNumberOfGCThreads || _active_workers == _total_workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   144
           "Unless dynamic should use total workers");
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   145
    return _active_workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   146
  }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   147
  void set_active_workers(uint v) {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   148
    assert(v <= _total_workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   149
           "Trying to set more workers active than there are");
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   150
    _active_workers = MIN2(v, _total_workers);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   151
    assert(v != 0, "Trying to set active workers to 0");
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   152
    _active_workers = MAX2(1U, _active_workers);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   153
    assert(UseDynamicNumberOfGCThreads || _active_workers == _total_workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   154
           "Unless dynamic should use total workers");
37214
bc4e0e0995e6 8152952: Allow G1 phase logging to use individual number of threads
brutisso
parents: 36201
diff changeset
   155
    log_info(gc, task)("GC Workers: using %d out of %d", _active_workers, _total_workers);
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   156
  }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   157
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   158
  // Return the Ith worker.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   159
  AbstractGangWorker* worker(uint i) const;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   160
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   161
  void threads_do(ThreadClosure* tc) const;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   162
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   163
  // Debugging.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   164
  const char* name() const { return _name; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   165
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   166
  // Printing
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   167
  void print_worker_threads_on(outputStream *st) const;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   168
  void print_worker_threads() const {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   169
    print_worker_threads_on(tty);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   170
  }
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   171
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   172
 protected:
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   173
  virtual AbstractGangWorker* allocate_worker(uint which) = 0;
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   174
};
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   175
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   176
// An class representing a gang of workers.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   177
class WorkGang: public AbstractWorkGang {
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   178
  // To get access to the GangTaskDispatcher instance.
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   179
  friend class GangWorker;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   180
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   181
  // Never deleted.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   182
  ~WorkGang();
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   183
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   184
  GangTaskDispatcher* const _dispatcher;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   185
  GangTaskDispatcher* dispatcher() const {
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   186
    return _dispatcher;
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   187
  }
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   188
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   189
public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   190
  WorkGang(const char* name,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   191
           uint workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   192
           bool are_GC_task_threads,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   193
           bool are_ConcurrentGC_threads);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   194
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   195
  // Run a task, returns when the task is done.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   196
  virtual void run_task(AbstractGangTask* task);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   197
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   198
protected:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   199
  virtual AbstractGangWorker* allocate_worker(uint which);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   202
// Several instances of this class run in parallel as workers for a gang.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   203
class AbstractGangWorker: public WorkerThread {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
public:
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   205
  AbstractGangWorker(AbstractWorkGang* gang, uint id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // The only real method: run a task for the gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  virtual void run();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Predicate for Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  virtual bool is_GC_task_thread() const;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   211
  virtual bool is_ConcurrentGC_thread() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  virtual void print() const { print_on(tty); }
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   215
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  AbstractWorkGang* _gang;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  virtual void initialize();
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   220
  virtual void loop() = 0;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   221
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   222
  AbstractWorkGang* gang() const { return _gang; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   223
};
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   224
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   225
class GangWorker: public AbstractGangWorker {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   226
public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   227
  GangWorker(WorkGang* gang, uint id) : AbstractGangWorker(gang, id) {}
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   228
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   229
protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  virtual void loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   232
private:
32361
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   233
  WorkData wait_for_task();
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   234
  void run_task(WorkData work);
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   235
  void signal_task_done();
3de9a2e1e2d0 8087324: Use semaphores when starting and stopping GC task threads
stefank
parents: 32360
diff changeset
   236
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   237
  WorkGang* gang() const { return (WorkGang*)_gang; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// A class that acts as a synchronisation barrier. Workers enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// the barrier and must wait until all other workers have entered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// before any of them may leave.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
class WorkGangBarrierSync : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  Monitor _monitor;
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   247
  uint    _n_workers;
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   248
  uint    _n_completed;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   249
  bool    _should_reset;
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   250
  bool    _aborted;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   252
  Monitor* monitor()        { return &_monitor; }
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   253
  uint     n_workers()      { return _n_workers; }
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   254
  uint     n_completed()    { return _n_completed; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   255
  bool     should_reset()   { return _should_reset; }
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   256
  bool     aborted()        { return _aborted; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   258
  void     zero_completed() { _n_completed = 0; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   259
  void     inc_completed()  { _n_completed++; }
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   260
  void     set_aborted()    { _aborted = true; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   261
  void     set_should_reset(bool v) { _should_reset = v; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  WorkGangBarrierSync();
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   265
  WorkGangBarrierSync(uint n_workers, const char* name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // Set the number of workers that will use the barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // Must be called before any of the workers start running.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   269
  void set_n_workers(uint n_workers);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Enter the barrier. A worker that enters the barrier will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // not be allowed to leave until all other threads have
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   273
  // also entered the barrier or the barrier is aborted.
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   274
  // Returns false if the barrier was aborted.
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   275
  bool enter();
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   276
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   277
  // Aborts the barrier and wakes up any threads waiting for
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   278
  // the barrier to complete. The barrier will remain in the
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   279
  // aborted state until the next call to set_n_workers().
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   280
  void abort();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
// A class to manage claiming of subtasks within a group of tasks.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
// subtasks will be identified by integer indices, usually elements of an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
// enumeration type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11396
diff changeset
   287
class SubTasksDone: public CHeapObj<mtInternal> {
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   288
  uint* _tasks;
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   289
  uint _n_tasks;
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   290
  uint _threads_completed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
#ifdef ASSERT
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   292
  volatile uint _claimed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // Set all tasks to unclaimed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // Initializes "this" to a state in which there are "n" tasks to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // processed, none of the which are originally claimed.  The number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // threads doing the tasks is initialized 1.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   302
  SubTasksDone(uint n);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // True iff the object is in a valid state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  bool valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Returns "false" if the task "t" is unclaimed, and ensures that task is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // claimed.  The task "t" is required to be within the range of "this".
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   309
  bool is_task_claimed(uint t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // The calling thread asserts that it has attempted to claim all the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // tasks that it will try to claim.  Every thread in the parallel task
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // must execute this.  (When the last thread does so, the task array is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  // cleared.)
30869
d5cbedffb50b 8080111: Remove SubTaskDone::_n_threads
stefank
parents: 30764
diff changeset
   315
  //
d5cbedffb50b 8080111: Remove SubTaskDone::_n_threads
stefank
parents: 30764
diff changeset
   316
  // n_threads - Number of threads executing the sub-tasks.
d5cbedffb50b 8080111: Remove SubTaskDone::_n_threads
stefank
parents: 30764
diff changeset
   317
  void all_tasks_completed(uint n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // Destructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  ~SubTasksDone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
// As above, but for sequential tasks, i.e. instead of claiming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
// sub-tasks from a set (possibly an enumeration), claim sub-tasks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// in sequential order. This is ideal for claiming dynamically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// partitioned tasks (like striding in the parallel remembered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// set scanning). Note that unlike the above class this is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// a stack object - is there any reason for it not to be?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
class SequentialSubTasksDone : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
protected:
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   332
  uint _n_tasks;     // Total number of tasks available.
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   333
  uint _n_claimed;   // Number of tasks claimed.
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   334
  // _n_threads is used to determine when a sub task is done.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   335
  // See comments on SubTasksDone::_n_threads
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   336
  uint _n_threads;   // Total number of parallel threads.
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   337
  uint _n_completed; // Number of completed threads.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
public:
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   342
  SequentialSubTasksDone() {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   343
    clear();
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   344
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  ~SequentialSubTasksDone() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // True iff the object is in a valid state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  bool valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  // number of tasks
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   351
  uint n_tasks() const { return _n_tasks; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   353
  // Get/set the number of parallel threads doing the tasks to t.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Should be called before the task starts but it is safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // to call this once a task is running provided that all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // threads agree on the number of threads.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   357
  uint n_threads() { return _n_threads; }
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   358
  void set_n_threads(uint t) { _n_threads = t; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // Set the number of tasks to be claimed to t. As above,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // should be called before the tasks start but it is safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // to call this once a task is running provided all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // agree on the number of tasks.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   364
  void set_n_tasks(uint t) { _n_tasks = t; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // Returns false if the next task in the sequence is unclaimed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  // and ensures that it is claimed. Will set t to be the index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // of the claimed task in the sequence. Will return true if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // the task cannot be claimed and there are none left to claim.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   370
  bool is_task_claimed(uint& t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // The calling thread asserts that it has attempted to claim
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // all the tasks it possibly can in the sequence. Every thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  // claiming tasks must promise call this. Returns true if this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // is the last thread to complete so that the thread can perform
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // cleanup if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  bool all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
};
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   379
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
   380
#endif // SHARE_VM_GC_SHARED_WORKGROUP_HPP