src/hotspot/share/gc/shared/taskqueue.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 52905 bec57b4a6d69
child 53544 aed190ed8549
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52905
diff changeset
     2
 * Copyright (c) 2001, 2019, 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: 5076
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5076
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: 5076
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52905
diff changeset
    25
#ifndef SHARE_GC_SHARED_TASKQUEUE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52905
diff changeset
    26
#define SHARE_GC_SHARED_TASKQUEUE_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    28
#include "memory/allocation.hpp"
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
    29
#include "memory/padded.hpp"
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48140
diff changeset
    30
#include "oops/oopsHierarchy.hpp"
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 48140
diff changeset
    31
#include "utilities/ostream.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    32
#include "utilities/stack.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    33
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    34
// Simple TaskQueue stats that are collected by default in debug builds.
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    35
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    36
#if !defined(TASKQUEUE_STATS) && defined(ASSERT)
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    37
#define TASKQUEUE_STATS 1
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    38
#elif !defined(TASKQUEUE_STATS)
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    39
#define TASKQUEUE_STATS 0
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    40
#endif
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    41
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    42
#if TASKQUEUE_STATS
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    43
#define TASKQUEUE_STATS_ONLY(code) code
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    44
#else
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    45
#define TASKQUEUE_STATS_ONLY(code)
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    46
#endif // TASKQUEUE_STATS
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    47
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    48
#if TASKQUEUE_STATS
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    49
class TaskQueueStats {
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    50
public:
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    51
  enum StatId {
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    52
    push,             // number of taskqueue pushes
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    53
    pop,              // number of taskqueue pops
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    54
    pop_slow,         // subset of taskqueue pops that were done slow-path
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    55
    steal_attempt,    // number of taskqueue steal attempts
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    56
    steal,            // number of taskqueue steals
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    57
    overflow,         // number of overflow pushes
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    58
    overflow_max_len, // max length of overflow stack
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    59
    last_stat_id
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    60
  };
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    61
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    62
public:
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    63
  inline TaskQueueStats()       { reset(); }
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    64
50953
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
    65
  inline void record_push()          { ++_stats[push]; }
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
    66
  inline void record_pop()           { ++_stats[pop]; }
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
    67
  inline void record_pop_slow()      { record_pop(); ++_stats[pop_slow]; }
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
    68
  inline void record_steal_attempt() { ++_stats[steal_attempt]; }
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
    69
  inline void record_steal()         { ++_stats[steal]; }
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    70
  inline void record_overflow(size_t new_length);
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    71
6251
90e562b9f1cc 6966222: G1: simplify TaskQueue overflow handling
jcoomes
parents: 6067
diff changeset
    72
  TaskQueueStats & operator +=(const TaskQueueStats & addend);
90e562b9f1cc 6966222: G1: simplify TaskQueue overflow handling
jcoomes
parents: 6067
diff changeset
    73
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    74
  inline size_t get(StatId id) const { return _stats[id]; }
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    75
  inline const size_t* get() const   { return _stats; }
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    76
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    77
  inline void reset();
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    78
6251
90e562b9f1cc 6966222: G1: simplify TaskQueue overflow handling
jcoomes
parents: 6067
diff changeset
    79
  // Print the specified line of the header (does not include a line separator).
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    80
  static void print_header(unsigned int line, outputStream* const stream = tty,
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    81
                           unsigned int width = 10);
6251
90e562b9f1cc 6966222: G1: simplify TaskQueue overflow handling
jcoomes
parents: 6067
diff changeset
    82
  // Print the statistics (does not include a line separator).
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    83
  void print(outputStream* const stream = tty, unsigned int width = 10) const;
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    84
6251
90e562b9f1cc 6966222: G1: simplify TaskQueue overflow handling
jcoomes
parents: 6067
diff changeset
    85
  DEBUG_ONLY(void verify() const;)
90e562b9f1cc 6966222: G1: simplify TaskQueue overflow handling
jcoomes
parents: 6067
diff changeset
    86
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    87
private:
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    88
  size_t                    _stats[last_stat_id];
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    89
  static const char * const _names[last_stat_id];
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    90
};
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    91
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    92
void TaskQueueStats::record_overflow(size_t new_len) {
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    93
  ++_stats[overflow];
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    94
  if (new_len > _stats[overflow_max_len]) _stats[overflow_max_len] = new_len;
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    95
}
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    96
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    97
void TaskQueueStats::reset() {
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    98
  memset(_stats, 0, sizeof(_stats));
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
    99
}
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
   100
#endif // TASKQUEUE_STATS
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
   101
19346
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   102
// TaskQueueSuper collects functionality common to all GenericTaskQueue instances.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   103
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   104
template <unsigned int N, MEMFLAGS F>
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   105
class TaskQueueSuper: public CHeapObj<F> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
protected:
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   107
  // Internal type for indexing the queue; also used for the tag.
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   108
  typedef NOT_LP64(uint16_t) LP64_ONLY(uint32_t) idx_t;
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   109
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   110
  // The first free element after the last one pushed (mod N).
2005
42075507972b 6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents: 1407
diff changeset
   111
  volatile uint _bottom;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   113
  enum { MOD_N_MASK = N - 1 };
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   114
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   115
  class Age {
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   116
  public:
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   117
    Age(size_t data = 0)         { _data = data; }
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   118
    Age(const Age& age)          { _data = age._data; }
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   119
    Age(idx_t top, idx_t tag)    { _fields._top = top; _fields._tag = tag; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   121
    Age   get()        const volatile { return _data; }
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   122
    void  set(Age age) volatile       { _data = age._data; }
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   123
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   124
    idx_t top()        const volatile { return _fields._top; }
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   125
    idx_t tag()        const volatile { return _fields._tag; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   127
    // Increment top; if it wraps, increment tag also.
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   128
    void increment() {
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   129
      _fields._top = increment_index(_fields._top);
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   130
      if (_fields._top == 0) ++_fields._tag;
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   131
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
30566
18eb9aa972d0 8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp
stefank
parents: 27880
diff changeset
   133
    Age cmpxchg(const Age new_age, const Age old_age) volatile;
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   134
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   135
    bool operator ==(const Age& other) const { return _data == other._data; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   137
  private:
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   138
    struct fields {
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   139
      idx_t _top;
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   140
      idx_t _tag;
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   141
    };
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   142
    union {
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   143
      size_t _data;
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   144
      fields _fields;
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   145
    };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  };
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   147
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   148
  volatile Age _age;
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   149
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   150
  // These both operate mod N.
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   151
  static uint increment_index(uint ind) {
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   152
    return (ind + 1) & MOD_N_MASK;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   154
  static uint decrement_index(uint ind) {
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   155
    return (ind - 1) & MOD_N_MASK;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   158
  // Returns a number in the range [0..N).  If the result is "N-1", it should be
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   159
  // interpreted as 0.
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   160
  uint dirty_size(uint bot, uint top) const {
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   161
    return (bot - top) & MOD_N_MASK;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Returns the size corresponding to the given "bot" and "top".
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   165
  uint size(uint bot, uint top) const {
2005
42075507972b 6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents: 1407
diff changeset
   166
    uint sz = dirty_size(bot, top);
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   167
    // Has the queue "wrapped", so that bottom is less than top?  There's a
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   168
    // complicated special case here.  A pair of threads could perform pop_local
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   169
    // and pop_global operations concurrently, starting from a state in which
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   170
    // _bottom == _top+1.  The pop_local could succeed in decrementing _bottom,
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   171
    // and the pop_global in incrementing _top (in which case the pop_global
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   172
    // will be awarded the contested queue element.)  The resulting state must
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   173
    // be interpreted as an empty queue.  (We only need to worry about one such
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   174
    // event: only the queue owner performs pop_local's, and several concurrent
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   175
    // threads attempting to perform the pop_global will all perform the same
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   176
    // CAS, and only one can succeed.)  Any stealing thread that reads after
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   177
    // either the increment or decrement will see an empty queue, and will not
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   178
    // join the competitors.  The "sz == -1 || sz == N-1" state will not be
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   179
    // modified by concurrent queues, so the owner thread can reset the state to
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   180
    // _bottom == top so subsequent pushes will be performed normally.
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   181
    return (sz == N - 1) ? 0 : sz;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  TaskQueueSuper() : _bottom(0), _age() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   187
  // Return true if the TaskQueue contains/does not contain any tasks.
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   188
  bool peek()     const { return _bottom != _age.top(); }
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   189
  bool is_empty() const { return size() == 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // Return an estimate of the number of elements in the queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // The "careful" version admits the possibility of pop_local/pop_global
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // races.
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   194
  uint size() const {
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   195
    return size(_bottom, _age.top());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   198
  uint dirty_size() const {
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   199
    return dirty_size(_bottom, _age.top());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   202
  void set_empty() {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   203
    _bottom = 0;
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   204
    _age.set(0);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   205
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   206
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // Maximum number of elements allowed in the queue.  This is two less
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // than the actual queue size, for somewhat complicated reasons.
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   209
  uint max_elems() const { return N - 2; }
5035
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4028
diff changeset
   210
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4028
diff changeset
   211
  // Total size of queue.
0e498c4df637 6928081: G1: rename parameters common with CMS
jmasa
parents: 4028
diff changeset
   212
  static const uint total_size() { return N; }
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
   213
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
   214
  TASKQUEUE_STATS_ONLY(TaskQueueStats stats;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
19346
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   217
//
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   218
// GenericTaskQueue implements an ABP, Aurora-Blumofe-Plaxton, double-
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   219
// ended-queue (deque), intended for use in work stealing. Queue operations
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   220
// are non-blocking.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   221
//
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   222
// A queue owner thread performs push() and pop_local() operations on one end
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   223
// of the queue, while other threads may steal work using the pop_global()
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   224
// method.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   225
//
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   226
// The main difference to the original algorithm is that this
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   227
// implementation allows wrap-around at the end of its allocated
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   228
// storage, which is an array.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   229
//
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   230
// The original paper is:
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   231
//
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   232
// Arora, N. S., Blumofe, R. D., and Plaxton, C. G.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   233
// Thread scheduling for multiprogrammed multiprocessors.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   234
// Theory of Computing Systems 34, 2 (2001), 115-144.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   235
//
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   236
// The following paper provides an correctness proof and an
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   237
// implementation for weakly ordered memory models including (pseudo-)
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   238
// code containing memory barriers for a Chase-Lev deque. Chase-Lev is
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   239
// similar to ABP, with the main difference that it allows resizing of the
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   240
// underlying storage:
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   241
//
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   242
// Le, N. M., Pop, A., Cohen A., and Nardell, F. Z.
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   243
// Correct and efficient work-stealing for weak memory models
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   244
// Proceedings of the 18th ACM SIGPLAN symposium on Principles and
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   245
// practice of parallel programming (PPoPP 2013), 69-80
7a5310d39603 8022784: TaskQueue misses minimal documentation and references for analysis
tschatzl
parents: 19153
diff changeset
   246
//
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   247
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   248
template <class E, MEMFLAGS F, unsigned int N = TASKQUEUE_SIZE>
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   249
class GenericTaskQueue: public TaskQueueSuper<N, F> {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   250
protected:
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   251
  typedef typename TaskQueueSuper<N, F>::Age Age;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   252
  typedef typename TaskQueueSuper<N, F>::idx_t idx_t;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   253
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   254
  using TaskQueueSuper<N, F>::_bottom;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   255
  using TaskQueueSuper<N, F>::_age;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   256
  using TaskQueueSuper<N, F>::increment_index;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   257
  using TaskQueueSuper<N, F>::decrement_index;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   258
  using TaskQueueSuper<N, F>::dirty_size;
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   259
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   260
public:
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   261
  using TaskQueueSuper<N, F>::max_elems;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   262
  using TaskQueueSuper<N, F>::size;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   263
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   264
#if  TASKQUEUE_STATS
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   265
  using TaskQueueSuper<N, F>::stats;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   266
#endif
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   267
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // Slow paths for push, pop_local.  (pop_global has no fast path.)
2005
42075507972b 6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents: 1407
diff changeset
   270
  bool push_slow(E t, uint dirty_n_elems);
42075507972b 6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents: 1407
diff changeset
   271
  bool pop_local_slow(uint localBot, Age oldAge);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
public:
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   274
  typedef E element_type;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   275
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // Initializes the queue to empty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  GenericTaskQueue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  void initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   281
  // Push the task "t" on the queue.  Returns "false" iff the queue is full.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  inline bool push(E t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   284
  // Attempts to claim a task from the "local" end of the queue (the most
49911
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 48157
diff changeset
   285
  // recently pushed) as long as the number of entries exceeds the threshold.
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 48157
diff changeset
   286
  // If successful, returns true and sets t to the task; otherwise, returns false
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 48157
diff changeset
   287
  // (the queue is empty or the number of elements below the threshold).
358be4680d12 6672778: G1 should trim task queues more aggressively during evacuation pauses
tschatzl
parents: 48157
diff changeset
   288
  inline bool pop_local(volatile E& t, uint threshold = 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   290
  // Like pop_local(), but uses the "global" end of the queue (the least
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   291
  // recently pushed).
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19346
diff changeset
   292
  bool pop_global(volatile E& t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // Delete any resource associated with the queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  ~GenericTaskQueue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
31994
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 30878
diff changeset
   297
  // Apply fn to each element in the task queue.  The queue must not
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 30878
diff changeset
   298
  // be modified while iterating.
3721b7aa3a0d 8079082: VerifyNoCSetOopsClosure is derived twice from Closure
kbarrett
parents: 30878
diff changeset
   299
  template<typename Fn> void iterate(Fn fn);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   300
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
private:
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   302
  DEFINE_PAD_MINUS_SIZE(0, DEFAULT_CACHE_LINE_SIZE, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // Element array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  volatile E* _elems;
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   305
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   306
  DEFINE_PAD_MINUS_SIZE(1, DEFAULT_CACHE_LINE_SIZE, sizeof(E*));
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   307
  // Queue owner local variables. Not to be accessed by other threads.
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   308
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   309
  static const uint InvalidQueueId = uint(-1);
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   310
  uint _last_stolen_queue_id; // The id of the queue we last stole from
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   311
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   312
  int _seed; // Current random seed used for selecting a random queue during stealing.
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   313
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   314
  DEFINE_PAD_MINUS_SIZE(2, DEFAULT_CACHE_LINE_SIZE, sizeof(uint) + sizeof(int));
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   315
public:
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   316
  int next_random_queue_id();
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   317
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   318
  void set_last_stolen_queue_id(uint id)     { _last_stolen_queue_id = id; }
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   319
  uint last_stolen_queue_id() const          { return _last_stolen_queue_id; }
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   320
  bool is_last_stolen_queue_id_valid() const { return _last_stolen_queue_id != InvalidQueueId; }
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   321
  void invalidate_last_stolen_queue_id()     { _last_stolen_queue_id = InvalidQueueId; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   324
template<class E, MEMFLAGS F, unsigned int N>
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   325
GenericTaskQueue<E, F, N>::GenericTaskQueue() : _last_stolen_queue_id(InvalidQueueId), _seed(17 /* random number */) {
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   326
  assert(sizeof(Age) == sizeof(size_t), "Depends on this.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   329
// OverflowTaskQueue is a TaskQueue that also includes an overflow stack for
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   330
// elements that do not fit in the TaskQueue.
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   331
//
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   332
// This class hides two methods from super classes:
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   333
//
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   334
// push() - push onto the task queue or, if that fails, onto the overflow stack
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   335
// is_empty() - return true if both the TaskQueue and overflow stack are empty
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   336
//
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   337
// Note that size() is not hidden--it returns the number of elements in the
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   338
// TaskQueue, and does not include the size of the overflow stack.  This
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   339
// simplifies replacement of GenericTaskQueues with OverflowTaskQueues.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   340
template<class E, MEMFLAGS F, unsigned int N = TASKQUEUE_SIZE>
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   341
class OverflowTaskQueue: public GenericTaskQueue<E, F, N>
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   342
{
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   343
public:
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   344
  typedef Stack<E, F>               overflow_t;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   345
  typedef GenericTaskQueue<E, F, N> taskqueue_t;
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   346
6067
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
   347
  TASKQUEUE_STATS_ONLY(using taskqueue_t::stats;)
8bfddf73fc04 6962947: shared TaskQueue statistics
jcoomes
parents: 5918
diff changeset
   348
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   349
  // Push task t onto the queue or onto the overflow stack.  Return true.
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   350
  inline bool push(E t);
39407
2e75eb109278 8152438: Threads may do significant work out of the non-shared overflow buffer
tschatzl
parents: 37057
diff changeset
   351
  // Try to push task t onto the queue only. Returns true if successful, false otherwise.
2e75eb109278 8152438: Threads may do significant work out of the non-shared overflow buffer
tschatzl
parents: 37057
diff changeset
   352
  inline bool try_push_to_taskqueue(E t);
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   353
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   354
  // Attempt to pop from the overflow stack; return true if anything was popped.
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   355
  inline bool pop_overflow(E& t);
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   356
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   357
  inline overflow_t* overflow_stack() { return &_overflow_stack; }
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   358
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   359
  inline bool taskqueue_empty() const { return taskqueue_t::is_empty(); }
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   360
  inline bool overflow_empty()  const { return _overflow_stack.is_empty(); }
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   361
  inline bool is_empty()        const {
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   362
    return taskqueue_empty() && overflow_empty();
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   363
  }
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   364
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   365
private:
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 6759
diff changeset
   366
  overflow_t _overflow_stack;
5918
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   367
};
73b96456819a 6957084: simplify TaskQueue overflow handling
jcoomes
parents: 5547
diff changeset
   368
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   369
class TaskQueueSetSuper {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // Returns "true" if some TaskQueue in the set contains a task.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  virtual bool peek() = 0;
52122
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   373
  // Tasks in queue
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   374
  virtual uint tasks() const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   377
template <MEMFLAGS F> class TaskQueueSetSuperImpl: public CHeapObj<F>, public TaskQueueSetSuper {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   378
};
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   379
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   380
template<class T, MEMFLAGS F>
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   381
class GenericTaskQueueSet: public TaskQueueSetSuperImpl<F> {
50953
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
   382
public:
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
   383
  typedef typename T::element_type E;
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
   384
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
private:
2005
42075507972b 6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents: 1407
diff changeset
   386
  uint _n;
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   387
  T** _queues;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   389
  bool steal_best_of_2(uint queue_num, E& t);
50953
0fad17c646c9 8206453: Taskqueue stats should count real steal attempts, not calls to GenericTaskQueueSet::steal
tschatzl
parents: 49911
diff changeset
   390
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
public:
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   392
  GenericTaskQueueSet(uint n);
47885
5caa1d5f74c1 8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents: 47216
diff changeset
   393
  ~GenericTaskQueueSet();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   395
  void register_queue(uint i, T* q);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   397
  T* queue(uint n);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
51292
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   399
  // Try to steal a task from some other queue than queue_num. It may perform several attempts at doing so.
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   400
  // Returns if stealing succeeds, and sets "t" to the stolen task.
0538a5cdb474 8205921: Optimizing best-of-2 work stealing queue selection
zgu
parents: 50953
diff changeset
   401
  bool steal(uint queue_num, E& t);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  bool peek();
52122
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   404
  uint tasks() const;
30878
f1702744b3a4 8080877: Don't use workers()->total_workers() when walking G1CollectedHeap::_task_queues
stefank
parents: 30764
diff changeset
   405
f1702744b3a4 8080877: Don't use workers()->total_workers() when walking G1CollectedHeap::_task_queues
stefank
parents: 30764
diff changeset
   406
  uint size() const { return _n; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   409
template<class T, MEMFLAGS F> void
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   410
GenericTaskQueueSet<T, F>::register_queue(uint i, T* q) {
2005
42075507972b 6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents: 1407
diff changeset
   411
  assert(i < _n, "index out of range.");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  _queues[i] = q;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   415
template<class T, MEMFLAGS F> T*
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   416
GenericTaskQueueSet<T, F>::queue(uint i) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  return _queues[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   420
template<class T, MEMFLAGS F>
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   421
bool GenericTaskQueueSet<T, F>::peek() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // Try all the queues.
2005
42075507972b 6787254: Work queue capacity can be increased substantially on some platforms
ysr
parents: 1407
diff changeset
   423
  for (uint j = 0; j < _n; j++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    if (_queues[j]->peek())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
52122
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   430
template<class T, MEMFLAGS F>
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   431
uint GenericTaskQueueSet<T, F>::tasks() const {
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   432
  uint n = 0;
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   433
  for (uint j = 0; j < _n; j++) {
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   434
    n += _queues[j]->size();
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   435
  }
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   436
  return n;
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   437
}
cb20bf10cfbd 8212074: Add method to peek the remaining tasks in task queues
zgu
parents: 51292
diff changeset
   438
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   439
// When to terminate from the termination protocol.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   440
class TerminatorTerminator: public CHeapObj<mtInternal> {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   441
public:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   442
  virtual bool should_exit_termination() = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   443
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   444
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
// A class to aid in the termination of a set of parallel tasks using
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
// TaskQueueSet's for work stealing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
2010
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   448
#undef TRACESPINNING
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   449
52905
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   450
class ParallelTaskTerminator: public CHeapObj<mtGC> {
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   451
protected:
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30566
diff changeset
   452
  uint _n_threads;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  TaskQueueSetSuper* _queue_set;
48140
ae61a5eb9da4 8188877: Improper synchronization in offer_termination
drwhite
parents: 47885
diff changeset
   454
  volatile uint _offered_termination;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
2010
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   456
#ifdef TRACESPINNING
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   457
  static uint _total_yields;
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   458
  static uint _total_spins;
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   459
  static uint _total_peeks;
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   460
#endif
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   461
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  bool peek_in_queue_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  virtual void yield();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  void sleep(uint millis);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // "n_threads" is the number of threads to be terminated.  "queue_set" is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  // queue sets of work queues of other threads.
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30566
diff changeset
   471
  ParallelTaskTerminator(uint n_threads, TaskQueueSetSuper* queue_set);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  // The current thread has no work, and is ready to terminate if everyone
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  // else is.  If returns "true", all threads are terminated.  If returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  // "false", available work has been observed in one of the task queues,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // so the global task is not complete.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   477
  bool offer_termination() {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   478
    return offer_termination(NULL);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   479
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   480
3607
fa62293fa65c 6821693: 64-bit TaskQueue capacity still too small
jcoomes
parents: 3262
diff changeset
   481
  // As above, but it also terminates if the should_exit_termination()
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   482
  // method of the terminator parameter returns true. If terminator is
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   483
  // NULL, then it is ignored.
52905
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   484
  virtual bool offer_termination(TerminatorTerminator* terminator);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // Reset the terminator, so that it may be reused again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // The caller is responsible for ensuring that this is done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  // in an MT-safe manner, once the previous round of use of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  // the terminator is finished.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  void reset_for_reuse();
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6251
diff changeset
   491
  // Same as above but the number of parallel threads is set to the
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 6251
diff changeset
   492
  // given number.
30585
12f312d694cd 6407976: GC worker number should be unsigned
eistepan
parents: 30566
diff changeset
   493
  void reset_for_reuse(uint n_threads);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
2010
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   495
#ifdef TRACESPINNING
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   496
  static uint total_yields() { return _total_yields; }
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   497
  static uint total_spins() { return _total_spins; }
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   498
  static uint total_peeks() { return _total_peeks; }
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   499
  static void print_termination_counts();
c13462bbad17 6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents: 2005
diff changeset
   500
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
52905
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   503
#ifdef _MSC_VER
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   504
#pragma warning(push)
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   505
// warning C4521: multiple copy constructors specified
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   506
#pragma warning(disable:4521)
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   507
// warning C4522: multiple assignment operators specified
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   508
#pragma warning(disable:4522)
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   509
#endif
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   510
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   511
class TaskTerminator : public StackObj {
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   512
private:
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   513
  ParallelTaskTerminator*  _terminator;
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   514
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   515
  // Disable following copy constructors and assignment operator
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   516
  TaskTerminator(TaskTerminator& o) { }
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   517
  TaskTerminator(const TaskTerminator& o) { }
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   518
  TaskTerminator& operator=(TaskTerminator& o) { return *this; }
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   519
public:
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   520
  TaskTerminator(uint n_threads, TaskQueueSetSuper* queue_set);
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   521
  ~TaskTerminator();
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   522
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   523
  // Move assignment
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   524
  TaskTerminator& operator=(const TaskTerminator& o);
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   525
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   526
  ParallelTaskTerminator* terminator() const {
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   527
    return _terminator;
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   528
  }
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   529
};
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   530
#ifdef _MSC_VER
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   531
#pragma warning(pop)
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   532
#endif
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   533
bec57b4a6d69 8204947: Port ShenandoahTaskTerminator to mainline and make it default
zgu
parents: 52122
diff changeset
   534
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   535
typedef GenericTaskQueue<oop, mtGC>             OopTaskQueue;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 10565
diff changeset
   536
typedef GenericTaskQueueSet<OopTaskQueue, mtGC> OopTaskQueueSet;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   538
#ifdef _MSC_VER
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   539
#pragma warning(push)
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   540
// warning C4522: multiple assignment operators specified
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   541
#pragma warning(disable:4522)
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   542
#endif
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   543
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   544
// This is a container class for either an oop* or a narrowOop*.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   545
// Both are pushed onto a task queue and the consumer will test is_narrow()
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   546
// to determine which should be processed.
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   547
class StarTask {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   548
  void*  _holder;        // either union oop* or narrowOop*
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   549
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   550
  enum { COMPRESSED_OOP_MASK = 1 };
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   551
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   552
 public:
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   553
  StarTask(narrowOop* p) {
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   554
    assert(((uintptr_t)p & COMPRESSED_OOP_MASK) == 0, "Information loss!");
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   555
    _holder = (void *)((uintptr_t)p | COMPRESSED_OOP_MASK);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   556
  }
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   557
  StarTask(oop* p)       {
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   558
    assert(((uintptr_t)p & COMPRESSED_OOP_MASK) == 0, "Information loss!");
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   559
    _holder = (void*)p;
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   560
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   561
  StarTask()             { _holder = NULL; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   562
  operator oop*()        { return (oop*)_holder; }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   563
  operator narrowOop*()  {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   564
    return (narrowOop*)((uintptr_t)_holder & ~COMPRESSED_OOP_MASK);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   565
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   566
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   567
  StarTask& operator=(const StarTask& t) {
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   568
    _holder = t._holder;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   569
    return *this;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   570
  }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   571
  volatile StarTask& operator=(const volatile StarTask& t) volatile {
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   572
    _holder = t._holder;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   573
    return *this;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   574
  }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   575
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   576
  bool is_narrow() const {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   577
    return (((uintptr_t)_holder & COMPRESSED_OOP_MASK) != 0);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   578
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   579
};
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   580
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   581
class ObjArrayTask
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   582
{
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   583
public:
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   584
  ObjArrayTask(oop o = NULL, int idx = 0): _obj(o), _index(idx) { }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   585
  ObjArrayTask(oop o, size_t idx): _obj(o), _index(int(idx)) {
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   586
    assert(idx <= size_t(max_jint), "too big");
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   587
  }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   588
  ObjArrayTask(const ObjArrayTask& t): _obj(t._obj), _index(t._index) { }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   589
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   590
  ObjArrayTask& operator =(const ObjArrayTask& t) {
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   591
    _obj = t._obj;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   592
    _index = t._index;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   593
    return *this;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   594
  }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   595
  volatile ObjArrayTask&
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   596
  operator =(const volatile ObjArrayTask& t) volatile {
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 19346
diff changeset
   597
    (void)const_cast<oop&>(_obj = t._obj);
5076
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   598
    _index = t._index;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   599
    return *this;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   600
  }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   601
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   602
  inline oop obj()   const { return _obj; }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   603
  inline int index() const { return _index; }
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   604
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   605
  DEBUG_ONLY(bool is_valid() const); // Tasks to be pushed/popped must be valid.
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   606
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   607
private:
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   608
  oop _obj;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   609
  int _index;
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   610
};
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   611
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   612
#ifdef _MSC_VER
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   613
#pragma warning(pop)
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   614
#endif
8b74a4b60b31 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 5035
diff changeset
   615
46764
39432ed123bb 8185884: NMT: taskqueues are miscategorized to mtClass
zgu
parents: 39407
diff changeset
   616
typedef OverflowTaskQueue<StarTask, mtGC>           OopStarTaskQueue;
39432ed123bb 8185884: NMT: taskqueues are miscategorized to mtClass
zgu
parents: 39407
diff changeset
   617
typedef GenericTaskQueueSet<OopStarTaskQueue, mtGC> OopStarTaskQueueSet;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
46764
39432ed123bb 8185884: NMT: taskqueues are miscategorized to mtClass
zgu
parents: 39407
diff changeset
   619
typedef OverflowTaskQueue<size_t, mtGC>             RegionTaskQueue;
39432ed123bb 8185884: NMT: taskqueues are miscategorized to mtClass
zgu
parents: 39407
diff changeset
   620
typedef GenericTaskQueueSet<RegionTaskQueue, mtGC>  RegionTaskQueueSet;
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
   621
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52905
diff changeset
   622
#endif // SHARE_GC_SHARED_TASKQUEUE_HPP