hotspot/src/share/vm/utilities/workgroup.hpp
author jrose
Sat, 09 Apr 2011 21:16:12 -0700
changeset 9124 f60dee480d49
parent 8688 493d12ccc6db
child 10565 dc90c239f4ec
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
     2
 * Copyright (c) 2002, 2011, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    25
#ifndef SHARE_VM_UTILITIES_WORKGROUP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    26
#define SHARE_VM_UTILITIES_WORKGROUP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    28
#include "utilities/taskqueue.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    29
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    30
# include "thread_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    31
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    32
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    33
# include "thread_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    34
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    35
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    36
# include "thread_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    37
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    38
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    39
// Task class hierarchy:
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    40
//   AbstractGangTask
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    41
//     AbstractGangTaskWOopQueues
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    42
//
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    43
// Gang/Group class hierarchy:
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    44
//   AbstractWorkGang
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    45
//     WorkGang
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    46
//       FlexibleWorkGang
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    47
//         YieldingFlexibleWorkGang (defined in another file)
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    48
//
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    49
// Worker class hierarchy:
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    50
//   GangWorker (subclass of WorkerThread)
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    51
//     YieldingFlexibleGangWorker   (defined in another file)
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    52
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// Forward declarations of classes defined here
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
class WorkGang;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
class GangWorker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
class YieldingFlexibleGangWorker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
class YieldingFlexibleGangTask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
class WorkData;
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    60
class AbstractWorkGang;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// An abstract task to be worked on by a gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// 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
    64
class AbstractGangTask VALUE_OBJ_CLASS_SPEC {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // The abstract work method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // The argument tells you which member of the gang you are.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  virtual void work(int i) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    70
  // This method configures the task for proper termination.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    71
  // Some tasks do not have any requirements on termination
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    72
  // and may inherit this method that does nothing.  Some
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    73
  // tasks do some coordination on termination and override
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    74
  // this method to implement that coordination.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    75
  virtual void set_for_termination(int active_workers) {};
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    76
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Debugging accessor for the name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  const char* name() const PRODUCT_RETURN_(return NULL;);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  int counter() { return _counter; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void set_counter(int value) { _counter = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  int *address_of_counter() { return &_counter; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // RTTI
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  NOT_PRODUCT(virtual bool is_YieldingFlexibleGang_task() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  })
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  NOT_PRODUCT(const char* _name;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // ??? Should a task have a priority associated with it?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // ??? Or can the run method adjust priority as needed?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  int _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Constructor and desctructor: only construct subclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  AbstractGangTask(const char* name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    NOT_PRODUCT(_name = name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _counter = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  virtual ~AbstractGangTask() { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   103
class AbstractGangTaskWOopQueues : public AbstractGangTask {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   104
  OopTaskQueueSet*       _queues;
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   105
  ParallelTaskTerminator _terminator;
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   106
 public:
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   107
  AbstractGangTaskWOopQueues(const char* name, OopTaskQueueSet* queues) :
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   108
    AbstractGangTask(name), _queues(queues), _terminator(0, _queues) {}
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   109
  ParallelTaskTerminator* terminator() { return &_terminator; }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   110
  virtual void set_for_termination(int active_workers) {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   111
    terminator()->reset_for_reuse(active_workers);
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   112
  }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   113
  OopTaskQueueSet* queues() { return _queues; }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   114
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// Class AbstractWorkGang:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// An abstract class representing a gang of workers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// You subclass this to supply an implementation of run_task().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
class AbstractWorkGang: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Here's the public interface to this class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Constructor and destructor.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   123
  AbstractWorkGang(const char* name, bool are_GC_task_threads,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   124
                   bool are_ConcurrentGC_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  ~AbstractWorkGang();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Run a task, returns when the task is done (or terminated).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  virtual void run_task(AbstractGangTask* task) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Stop and terminate all workers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  virtual void stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Debugging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  const char* name() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // Initialize only instance data.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   135
  const bool _are_GC_task_threads;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   136
  const bool _are_ConcurrentGC_threads;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // Printing support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  const char* _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // The monitor which protects these data,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // and notifies of changes in it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  Monitor*  _monitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // The count of the number of workers in the gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  int _total_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Whether the workers should terminate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  bool _terminate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // The array of worker threads for this gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // This is only needed for cleaning up.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  GangWorker** _gang_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // The task for this gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  AbstractGangTask* _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // A sequence number for the current task.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  int _sequence_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // The number of started workers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  int _started_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // The number of finished workers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  int _finished_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Accessors for fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  Monitor* monitor() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    return _monitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  int total_workers() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    return _total_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  }
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   165
  virtual int active_workers() const {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   166
    return _total_workers;
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   167
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  bool terminate() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    return _terminate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  GangWorker** gang_workers() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    return _gang_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  AbstractGangTask* task() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    return _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  int sequence_number() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    return _sequence_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  int started_workers() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    return _started_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  int finished_workers() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    return _finished_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   186
  bool are_GC_task_threads() const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   187
    return _are_GC_task_threads;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   188
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   189
  bool are_ConcurrentGC_threads() const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   190
    return _are_ConcurrentGC_threads;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Predicates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  bool is_idle() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    return (task() == NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Return the Ith gang worker.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  GangWorker* gang_worker(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  void threads_do(ThreadClosure* tc) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void print_worker_threads_on(outputStream *st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  void print_worker_threads() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    print_worker_threads_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  friend class GangWorker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  friend class YieldingFlexibleGangWorker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Note activation and deactivation of workers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // These methods should only be called with the mutex held.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  void internal_worker_poll(WorkData* data) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void internal_note_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  void internal_note_finish();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
class WorkData: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // This would be a struct, but I want accessor methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  bool              _terminate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  AbstractGangTask* _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  int               _sequence_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // Constructor and destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  WorkData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    _terminate       = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    _task            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    _sequence_number = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  ~WorkData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // Accessors and modifiers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  bool terminate()                       const { return _terminate;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  void set_terminate(bool value)               { _terminate = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  AbstractGangTask* task()               const { return _task; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  void set_task(AbstractGangTask* value)       { _task = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  int sequence_number()                  const { return _sequence_number; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void set_sequence_number(int value)          { _sequence_number = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  YieldingFlexibleGangTask* yf_task()    const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    return (YieldingFlexibleGangTask*)_task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
// Class WorkGang:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
class WorkGang: public AbstractWorkGang {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // Constructor
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   249
  WorkGang(const char* name, int workers,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   250
           bool are_GC_task_threads, bool are_ConcurrentGC_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // Run a task, returns when the task is done (or terminated).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  virtual void run_task(AbstractGangTask* task);
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   253
  void run_task(AbstractGangTask* task, uint no_of_parallel_workers);
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   254
  // Allocate a worker and return a pointer to it.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   255
  virtual GangWorker* allocate_worker(int which);
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   256
  // Initialize workers in the gang.  Return true if initialization
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   257
  // succeeded. The type of the worker can be overridden in a derived
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   258
  // class with the appropriate implementation of allocate_worker().
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   259
  bool initialize_workers();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
// Class GangWorker:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
//   Several instances of this class run in parallel as workers for a gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
class GangWorker: public WorkerThread {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Constructors and destructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  GangWorker(AbstractWorkGang* gang, uint id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // The only real method: run a task for the gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  virtual void run();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Predicate for Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  virtual bool is_GC_task_thread() const;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   273
  virtual bool is_ConcurrentGC_thread() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  virtual void print() const { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  AbstractWorkGang* _gang;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  virtual void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  virtual void loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  AbstractWorkGang* gang() const { return _gang; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   287
class FlexibleWorkGang: public WorkGang {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   288
 protected:
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   289
  int _active_workers;
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   290
 public:
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   291
  // Constructor and destructor.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   292
  FlexibleWorkGang(const char* name, int workers,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   293
                   bool are_GC_task_threads,
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   294
                   bool  are_ConcurrentGC_threads) :
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   295
    WorkGang(name, workers, are_GC_task_threads, are_ConcurrentGC_threads) {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   296
    _active_workers = ParallelGCThreads;
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   297
  };
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   298
  // Accessors for fields
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   299
  virtual int active_workers() const { return _active_workers; }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   300
  void set_active_workers(int v) { _active_workers = v; }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   301
};
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   302
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   303
// Work gangs in garbage collectors: 2009-06-10
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   304
//
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   305
// SharedHeap - work gang for stop-the-world parallel collection.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   306
//   Used by
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   307
//     ParNewGeneration
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   308
//     CMSParRemarkTask
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   309
//     CMSRefProcTaskExecutor
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   310
//     G1CollectedHeap
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   311
//     G1ParFinalCountTask
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   312
// ConcurrentMark
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   313
// CMSCollector
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   314
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// A class that acts as a synchronisation barrier. Workers enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
// the barrier and must wait until all other workers have entered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
// before any of them may leave.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
class WorkGangBarrierSync : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  Monitor _monitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  int     _n_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  int     _n_completed;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   324
  bool    _should_reset;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   326
  Monitor* monitor()        { return &_monitor; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   327
  int      n_workers()      { return _n_workers; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   328
  int      n_completed()    { return _n_completed; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   329
  bool     should_reset()   { return _should_reset; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   331
  void     zero_completed() { _n_completed = 0; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   332
  void     inc_completed()  { _n_completed++; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   333
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   334
  void     set_should_reset(bool v) { _should_reset = v; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  WorkGangBarrierSync();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  WorkGangBarrierSync(int n_workers, const char* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // Set the number of workers that will use the barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // Must be called before any of the workers start running.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  void set_n_workers(int n_workers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // Enter the barrier. A worker that enters the barrier will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // not be allowed to leave until all other threads have
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // also entered the barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  void enter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
// A class to manage claiming of subtasks within a group of tasks.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
// subtasks will be identified by integer indices, usually elements of an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
// enumeration type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
class SubTasksDone: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  jint* _tasks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  int _n_tasks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  int _n_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  jint _threads_completed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
#ifdef ASSERT
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   360
  volatile jint _claimed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // Set all tasks to unclaimed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  // Initializes "this" to a state in which there are "n" tasks to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // processed, none of the which are originally claimed.  The number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // threads doing the tasks is initialized 1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  SubTasksDone(int n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // True iff the object is in a valid state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  bool valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   375
  // Get/set the number of parallel threads doing the tasks to "t".  Can only
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // be called before tasks start or after they are complete.
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   377
  int n_threads() { return _n_threads; }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   378
  void set_n_threads(int t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // Returns "false" if the task "t" is unclaimed, and ensures that task is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // claimed.  The task "t" is required to be within the range of "this".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  bool is_task_claimed(int t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // The calling thread asserts that it has attempted to claim all the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // tasks that it will try to claim.  Every thread in the parallel task
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // must execute this.  (When the last thread does so, the task array is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // cleared.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // Destructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  ~SubTasksDone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// As above, but for sequential tasks, i.e. instead of claiming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// sub-tasks from a set (possibly an enumeration), claim sub-tasks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
// in sequential order. This is ideal for claiming dynamically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
// partitioned tasks (like striding in the parallel remembered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
// set scanning). Note that unlike the above class this is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
// a stack object - is there any reason for it not to be?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
class SequentialSubTasksDone : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  jint _n_tasks;     // Total number of tasks available.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  jint _n_claimed;   // Number of tasks claimed.
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   405
  // _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
   406
  // See comments on SubTasksDone::_n_threads
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  jint _n_threads;   // Total number of parallel threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  jint _n_completed; // Number of completed threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
public:
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   413
  SequentialSubTasksDone() {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   414
    clear();
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   415
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  ~SequentialSubTasksDone() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  // True iff the object is in a valid state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  bool valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // number of tasks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  jint n_tasks() const { return _n_tasks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   424
  // Get/set the number of parallel threads doing the tasks to t.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // Should be called before the task starts but it is safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // to call this once a task is running provided that all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  // threads agree on the number of threads.
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   428
  int n_threads() { return _n_threads; }
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   429
  void set_n_threads(int t) { _n_threads = t; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // Set the number of tasks to be claimed to t. As above,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // should be called before the tasks start but it is safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // to call this once a task is running provided all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // agree on the number of tasks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  void set_n_tasks(int t) { _n_tasks = t; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // Returns false if the next task in the sequence is unclaimed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // and ensures that it is claimed. Will set t to be the index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  // of the claimed task in the sequence. Will return true if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // the task cannot be claimed and there are none left to claim.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  bool is_task_claimed(int& t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // The calling thread asserts that it has attempted to claim
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  // all the tasks it possibly can in the sequence. Every thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // claiming tasks must promise call this. Returns true if this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // is the last thread to complete so that the thread can perform
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // cleanup if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  bool all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
};
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   450
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   451
// Represents a set of free small integer ids.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   452
class FreeIdSet {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   453
  enum {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   454
    end_of_list = -1,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   455
    claimed = -2
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   456
  };
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   457
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   458
  int _sz;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   459
  Monitor* _mon;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   460
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   461
  int* _ids;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   462
  int _hd;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   463
  int _waiters;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   464
  int _claimed;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   465
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   466
  static bool _safepoint;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   467
  typedef FreeIdSet* FreeIdSetPtr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   468
  static const int NSets = 10;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   469
  static FreeIdSetPtr _sets[NSets];
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   470
  static bool _stat_init;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   471
  int _index;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   472
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   473
public:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   474
  FreeIdSet(int sz, Monitor* mon);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   475
  ~FreeIdSet();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   476
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   477
  static void set_safepoint(bool b);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   478
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   479
  // Attempt to claim the given id permanently.  Returns "true" iff
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   480
  // successful.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   481
  bool claim_perm_id(int i);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   482
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   483
  // Returns an unclaimed parallel id (waiting for one to be released if
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   484
  // necessary).  Returns "-1" if a GC wakes up a wait for an id.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   485
  int claim_par_id();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   486
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   487
  void release_par_id(int id);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   488
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
   489
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
   490
#endif // SHARE_VM_UTILITIES_WORKGROUP_HPP