hotspot/src/share/vm/gc/shared/workgroup.hpp
author stefank
Mon, 29 Jun 2015 11:09:39 +0200
changeset 32360 86790204fc23
parent 31030 811c2501a5a6
child 32361 3de9a2e1e2d0
permissions -rw-r--r--
8087323: Unify and split the work gang classes Reviewed-by: jmasa, sjohanss
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30154
diff changeset
     2
 * Copyright (c) 2002, 2015, 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
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 13963
diff changeset
    28
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    29
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    30
// Task class hierarchy:
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    31
//   AbstractGangTask
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    32
//
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    33
// Gang/Group class hierarchy:
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    34
//   AbstractWorkGang
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    35
//     WorkGang
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    36
//     YieldingFlexibleWorkGang (defined in another file)
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    37
//
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    38
// Worker class hierarchy:
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    39
//   AbstractGangWorker (subclass of WorkerThread)
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    40
//     GangWorker
8688
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    41
//     YieldingFlexibleGangWorker   (defined in another file)
493d12ccc6db 6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents: 7397
diff changeset
    42
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// Forward declarations of classes defined here
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    45
class AbstractGangWorker;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class GangWorker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class WorkData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// An abstract task to be worked on by a gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// 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
    51
class AbstractGangTask VALUE_OBJ_CLASS_SPEC {
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    52
  const char* _name;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    53
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    54
 public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    55
  AbstractGangTask(const char* name) : _name(name) {}
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    56
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // The abstract work method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // 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
    59
  virtual void work(uint worker_id) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Debugging accessor for the name.
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    62
  const char* name() const { return _name; }
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    63
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
    65
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    66
// 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
    67
// 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
    68
// while "_total_workers" is the number of available of workers.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    69
class AbstractWorkGang : public CHeapObj<mtInternal> {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    70
 protected:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    71
  // The array of worker threads for this gang.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    72
  AbstractGangWorker** _workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    73
  // The count of the number of workers in the gang.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    74
  uint _total_workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    75
  // The currently active workers in this gang.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    76
  uint _active_workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    77
  // Printing support.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    78
  const char* _name;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    79
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    80
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // Initialize only instance data.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    82
  const bool _are_GC_task_threads;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    83
  const bool _are_ConcurrentGC_threads;
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    84
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    85
 public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    86
  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
    87
      _name(name),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    88
      _total_workers(workers),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    89
      _active_workers(UseDynamicNumberOfGCThreads ? 1U : workers),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    90
      _are_GC_task_threads(are_GC_task_threads),
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    91
      _are_ConcurrentGC_threads(are_ConcurrentGC_threads)
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    92
  { }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    93
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    94
  virtual AbstractGangWorker* allocate_worker(uint which) = 0;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    95
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    96
  // Initialize workers in the gang.  Return true if initialization succeeded.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    97
  bool initialize_workers();
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    98
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
    99
  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
   100
  bool are_ConcurrentGC_threads() const { return _are_ConcurrentGC_threads; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   101
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   102
  uint total_workers() const { return _total_workers; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   103
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   104
  virtual uint active_workers() const {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   105
    assert(_active_workers <= _total_workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   106
           err_msg("_active_workers: %u > _total_workers: %u", _active_workers, _total_workers));
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   107
    assert(UseDynamicNumberOfGCThreads || _active_workers == _total_workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   108
           "Unless dynamic should use total workers");
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   109
    return _active_workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   110
  }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   111
  void set_active_workers(uint v) {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   112
    assert(v <= _total_workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   113
           "Trying to set more workers active than there are");
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   114
    _active_workers = MIN2(v, _total_workers);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   115
    assert(v != 0, "Trying to set active workers to 0");
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   116
    _active_workers = MAX2(1U, _active_workers);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   117
    assert(UseDynamicNumberOfGCThreads || _active_workers == _total_workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   118
           "Unless dynamic should use total workers");
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   119
  }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   120
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   121
  // Return the Ith worker.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   122
  AbstractGangWorker* worker(uint i) const;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   123
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   124
  void threads_do(ThreadClosure* tc) const;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   125
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   126
  // Debugging.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   127
  const char* name() const { return _name; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   128
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   129
  // Printing
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   130
  void print_worker_threads_on(outputStream *st) const;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   131
  void print_worker_threads() const {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   132
    print_worker_threads_on(tty);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   133
  }
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
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   136
// An class representing a gang of workers.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   137
class WorkGang: public AbstractWorkGang {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   138
private:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   139
  // Never deleted.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   140
  ~WorkGang();
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   141
public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   142
  WorkGang(const char* name,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   143
           uint workers,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   144
           bool are_GC_task_threads,
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   145
           bool are_ConcurrentGC_threads);
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
  // Run a task, returns when the task is done.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   148
  virtual void run_task(AbstractGangTask* task);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   149
  void run_task(AbstractGangTask* task, uint no_of_parallel_workers);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   150
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   151
  // Return true if more workers should be applied to the task.
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   152
  virtual bool needs_more_workers() const {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   153
    return _started_workers < _active_workers;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   154
  }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   155
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   156
protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // The monitor which protects these data,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // and notifies of changes in it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  Monitor*  _monitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // The task for this gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  AbstractGangTask* _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // A sequence number for the current task.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  int _sequence_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // The number of started workers.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   165
  uint _started_workers;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // The number of finished workers.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   167
  uint _finished_workers;
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   168
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
public:
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   170
  virtual AbstractGangWorker* allocate_worker(uint which);
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   171
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // Accessors for fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  Monitor* monitor() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    return _monitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  AbstractGangTask* task() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    return _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  int sequence_number() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    return _sequence_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   182
  uint started_workers() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    return _started_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   185
  uint finished_workers() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    return _finished_workers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Predicates.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  bool is_idle() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    return (task() == NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Return the Ith gang worker.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   193
  GangWorker* gang_worker(uint i) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  friend class GangWorker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // Note activation and deactivation of workers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // These methods should only be called with the mutex held.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  void internal_worker_poll(WorkData* data) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  void internal_note_start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  void internal_note_finish();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
class WorkData: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // This would be a struct, but I want accessor methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  AbstractGangTask* _task;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  int               _sequence_number;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Constructor and destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  WorkData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    _task            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    _sequence_number = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  ~WorkData() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  AbstractGangTask* task()               const { return _task; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void set_task(AbstractGangTask* value)       { _task = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  int sequence_number()                  const { return _sequence_number; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void set_sequence_number(int value)          { _sequence_number = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   223
// 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
   224
class AbstractGangWorker: public WorkerThread {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // Constructors and destructor.
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   227
  AbstractGangWorker(AbstractWorkGang* gang, uint id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // The only real method: run a task for the gang.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  virtual void run();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // Predicate for Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  virtual bool is_GC_task_thread() const;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   233
  virtual bool is_ConcurrentGC_thread() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  virtual void print() const { print_on(tty); }
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   237
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  AbstractWorkGang* _gang;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  virtual void initialize();
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   242
  virtual void loop() = 0;
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   243
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   244
  AbstractWorkGang* gang() const { return _gang; }
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   245
};
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   246
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   247
class GangWorker: public AbstractGangWorker {
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   248
public:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   249
  GangWorker(WorkGang* gang, uint id) : AbstractGangWorker(gang, id) {}
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   250
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   251
protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  virtual void loop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
32360
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   254
private:
86790204fc23 8087323: Unify and split the work gang classes
stefank
parents: 31030
diff changeset
   255
  WorkGang* gang() const { return (WorkGang*)_gang; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
11174
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   258
// Dynamic number of worker threads
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   259
//
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   260
// This type of work gang is used to run different numbers of
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   261
// worker threads at different times.  The
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   262
// number of workers run for a task is "_active_workers"
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   263
// instead of "_total_workers" in a WorkGang.  The method
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   264
// "needs_more_workers()" returns true until "_active_workers"
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   265
// have been started and returns false afterwards.  The
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   266
// implementation of "needs_more_workers()" in WorkGang always
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   267
// returns true so that all workers are started.  The method
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   268
// "loop()" in GangWorker was modified to ask "needs_more_workers()"
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   269
// in its loop to decide if it should start working on a task.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   270
// A worker in "loop()" waits for notification on the WorkGang
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   271
// monitor and execution of each worker as it checks for work
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   272
// is serialized via the same monitor.  The "needs_more_workers()"
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   273
// call is serialized and additionally the calculation for the
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   274
// "part" (effectively the worker id for executing the task) is
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   275
// serialized to give each worker a unique "part".  Workers that
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   276
// are not needed for this tasks (i.e., "_active_workers" have
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   277
// been started before it, continue to wait for work.
fccee5238e70 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 10565
diff changeset
   278
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
// A class that acts as a synchronisation barrier. Workers enter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
// the barrier and must wait until all other workers have entered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
// before any of them may leave.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
class WorkGangBarrierSync : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  Monitor _monitor;
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   286
  uint    _n_workers;
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   287
  uint    _n_completed;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   288
  bool    _should_reset;
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   289
  bool    _aborted;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   291
  Monitor* monitor()        { return &_monitor; }
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   292
  uint     n_workers()      { return _n_workers; }
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   293
  uint     n_completed()    { return _n_completed; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   294
  bool     should_reset()   { return _should_reset; }
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   295
  bool     aborted()        { return _aborted; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   297
  void     zero_completed() { _n_completed = 0; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   298
  void     inc_completed()  { _n_completed++; }
24468
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   299
  void     set_aborted()    { _aborted = true; }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   300
  void     set_should_reset(bool v) { _should_reset = v; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  WorkGangBarrierSync();
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   304
  WorkGangBarrierSync(uint n_workers, const char* name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // Set the number of workers that will use the barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // 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
   308
  void set_n_workers(uint n_workers);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // Enter the barrier. A worker that enters the barrier will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // 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
   312
  // also entered the barrier or the barrier is aborted.
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   313
  // Returns false if the barrier was aborted.
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   314
  bool enter();
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   315
cb71997b6484 8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents: 17376
diff changeset
   316
  // 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
   317
  // 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
   318
  // 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
   319
  void abort();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
// A class to manage claiming of subtasks within a group of tasks.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
// subtasks will be identified by integer indices, usually elements of an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
// enumeration type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11396
diff changeset
   326
class SubTasksDone: public CHeapObj<mtInternal> {
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   327
  uint* _tasks;
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   328
  uint _n_tasks;
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   329
  uint _threads_completed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
#ifdef ASSERT
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   331
  volatile uint _claimed;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  // Set all tasks to unclaimed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // Initializes "this" to a state in which there are "n" tasks to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // processed, none of the which are originally claimed.  The number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // 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
   341
  SubTasksDone(uint n);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // True iff the object is in a valid state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  bool valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // Returns "false" if the task "t" is unclaimed, and ensures that task is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // 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
   348
  bool is_task_claimed(uint t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  // The calling thread asserts that it has attempted to claim all the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // tasks that it will try to claim.  Every thread in the parallel task
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // must execute this.  (When the last thread does so, the task array is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // cleared.)
30869
d5cbedffb50b 8080111: Remove SubTaskDone::_n_threads
stefank
parents: 30764
diff changeset
   354
  //
d5cbedffb50b 8080111: Remove SubTaskDone::_n_threads
stefank
parents: 30764
diff changeset
   355
  // n_threads - Number of threads executing the sub-tasks.
d5cbedffb50b 8080111: Remove SubTaskDone::_n_threads
stefank
parents: 30764
diff changeset
   356
  void all_tasks_completed(uint n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // Destructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  ~SubTasksDone();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
// As above, but for sequential tasks, i.e. instead of claiming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
// sub-tasks from a set (possibly an enumeration), claim sub-tasks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
// in sequential order. This is ideal for claiming dynamically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
// partitioned tasks (like striding in the parallel remembered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
// set scanning). Note that unlike the above class this is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
// a stack object - is there any reason for it not to be?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
class SequentialSubTasksDone : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
protected:
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   371
  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
   372
  uint _n_claimed;   // Number of tasks claimed.
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   373
  // _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
   374
  // See comments on SubTasksDone::_n_threads
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   375
  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
   376
  uint _n_completed; // Number of completed threads.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  void clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
public:
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   381
  SequentialSubTasksDone() {
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   382
    clear();
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   383
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  ~SequentialSubTasksDone() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // True iff the object is in a valid state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  bool valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // number of tasks
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   390
  uint n_tasks() const { return _n_tasks; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   392
  // Get/set the number of parallel threads doing the tasks to t.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // Should be called before the task starts but it is safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // to call this once a task is running provided that all
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // 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
   396
  uint n_threads() { return _n_threads; }
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   397
  void set_n_threads(uint t) { _n_threads = t; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // Set the number of tasks to be claimed to t. As above,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // should be called before the tasks start but it is safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // to call this once a task is running provided all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // agree on the number of tasks.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11174
diff changeset
   403
  void set_n_tasks(uint t) { _n_tasks = t; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // Returns false if the next task in the sequence is unclaimed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // and ensures that it is claimed. Will set t to be the index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // of the claimed task in the sequence. Will return true if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // 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
   409
  bool is_task_claimed(uint& t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // The calling thread asserts that it has attempted to claim
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  // all the tasks it possibly can in the sequence. Every thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  // claiming tasks must promise call this. Returns true if this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // is the last thread to complete so that the thread can perform
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // cleanup if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  bool all_tasks_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
};
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   418
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   419
// Represents a set of free small integer ids.
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
   420
class FreeIdSet : public CHeapObj<mtInternal> {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   421
  enum {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   422
    end_of_list = -1,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   423
    claimed = -2
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   424
  };
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   425
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   426
  int _sz;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   427
  Monitor* _mon;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   428
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   429
  int* _ids;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   430
  int _hd;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   431
  int _waiters;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   432
  int _claimed;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   433
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   434
  static bool _safepoint;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   435
  typedef FreeIdSet* FreeIdSetPtr;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   436
  static const int NSets = 10;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   437
  static FreeIdSetPtr _sets[NSets];
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   438
  static bool _stat_init;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   439
  int _index;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   440
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   441
public:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   442
  FreeIdSet(int sz, Monitor* mon);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   443
  ~FreeIdSet();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   444
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   445
  static void set_safepoint(bool b);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   446
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   447
  // Attempt to claim the given id permanently.  Returns "true" iff
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   448
  // successful.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   449
  bool claim_perm_id(int i);
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
  // 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
   452
  // 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
   453
  int claim_par_id();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   454
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   455
  void release_par_id(int id);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   456
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
   457
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30585
diff changeset
   458
#endif // SHARE_VM_GC_SHARED_WORKGROUP_HPP