src/hotspot/share/runtime/safepoint.hpp
author rehn
Fri, 15 Feb 2019 14:15:10 +0100
changeset 53775 5d20b085d893
parent 53646 043ae846819f
child 53847 74b616640b00
permissions -rw-r--r--
8203469: Faster safepoints Reviewed-by: dcubed, pchilanomate, dholmes, acorn, coleenp, eosterlund
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: 52673
diff changeset
     2
 * Copyright (c) 1997, 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: 5042
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5042
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: 5042
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: 52673
diff changeset
    25
#ifndef SHARE_RUNTIME_SAFEPOINT_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52673
diff changeset
    26
#define SHARE_RUNTIME_SAFEPOINT_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "runtime/os.hpp"
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    30
#include "runtime/thread.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "utilities/ostream.hpp"
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    32
#include "utilities/waitBarrier.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Safepoint synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
////
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    37
// The VMThread uses the SafepointSynchronize::begin/end
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// methods to enter/exit a safepoint region. The begin method will roll
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// all JavaThreads forward to a safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// JavaThreads must use the ThreadSafepointState abstraction (defined in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// thread.hpp) to indicate that that they are at a safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// The Mutex/Condition variable and ObjectLocker classes calls the enter/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// exit safepoint methods, when a thread is blocked/restarted. Hence, all mutex exter/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// exit points *must* be at a safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
class ThreadSafepointState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// Implements roll-forward to safepoint (safepoint synchronization)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class SafepointSynchronize : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  enum SynchronizeState {
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    56
      _not_synchronized = 0,                   // Threads not synchronized at a safepoint. Keep this value 0.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
      _synchronizing    = 1,                   // Synchronizing in progress
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    58
      _synchronized     = 2                    // All Java threads are running in native, blocked in OS or stopped at safepoint.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    59
                                               // VM thread and any NonJavaThread may be running.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    62
  // The enums are listed in the order of the tasks when done serially.
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    63
  enum SafepointCleanupTasks {
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    64
    SAFEPOINT_CLEANUP_DEFLATE_MONITORS,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    65
    SAFEPOINT_CLEANUP_UPDATE_INLINE_CACHES,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    66
    SAFEPOINT_CLEANUP_COMPILATION_POLICY,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    67
    SAFEPOINT_CLEANUP_SYMBOL_TABLE_REHASH,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    68
    SAFEPOINT_CLEANUP_STRING_TABLE_REHASH,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    69
    SAFEPOINT_CLEANUP_CLD_PURGE,
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47216
diff changeset
    70
    SAFEPOINT_CLEANUP_SYSTEM_DICTIONARY_RESIZE,
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    71
    // Leave this one last.
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    72
    SAFEPOINT_CLEANUP_NUM_TASKS
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    73
  };
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    74
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
 private:
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    76
  friend class SafepointMechanism;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    77
  friend class ThreadSafepointState;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    78
  friend class HandshakeState;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    79
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    80
  enum SafepointTimeoutReason {
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    81
    _spinning_timeout = 0,
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    82
    _blocking_timeout = 1
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    83
  };
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    84
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    85
  // Threads might read this flag directly, without acquiring the Threads_lock:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    86
  static volatile SynchronizeState _state;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    87
  // Number of threads we are waiting for to block:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    88
  static int              _waiting_to_block;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    89
  // Counts the number of active critical natives during the safepoint:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    90
  static int              _current_jni_active_count;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // This counter is used for fast versions of jni_Get<Primitive>Field.
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    93
  // An even value means there are no ongoing safepoint operations.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // The counter is incremented ONLY at the beginning and end of each
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    95
  // safepoint.
52672
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
    96
  static volatile uint64_t _safepoint_counter;
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
    97
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    98
  // JavaThreads that need to block for the safepoint will stop on the
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    99
  // _wait_barrier, where they can quickly be started again.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   100
  static WaitBarrier* _wait_barrier;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   101
  static long         _end_of_last_safepoint;     // Time of last safepoint in milliseconds
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   102
  static julong       _coalesced_vmop_count;     // coalesced vmop count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 13195
diff changeset
   104
  // Statistics
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  static void begin_statistics(int nof_threads, int nof_running);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static void update_statistics_on_spin_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  static void update_statistics_on_sync_end(jlong end_time);
5042
f86707fd195a 6933402: RFE: Improve PrintSafepointStatistics output to track cleanup time
xlu
parents: 1
diff changeset
   108
  static void update_statistics_on_cleanup_end(jlong end_time);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static void end_statistics(jlong end_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  static void print_statistics();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // For debug long safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static void print_safepoint_timeout(SafepointTimeoutReason timeout_reason);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   115
  // Helper methods for safepoint procedure:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   116
  static void arm_safepoint();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   117
  static int synchronize_threads(jlong safepoint_limit_time, int nof_threads, int* initial_running);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   118
  static void disarm_safepoint();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   119
  static void increment_jni_active_count();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   120
  static void decrement_waiting_to_block();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   121
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   122
  // Used in safepoint_safe to do a stable load of the thread state.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   123
  static bool try_stable_load_state(JavaThreadState *state,
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   124
                                    JavaThread *thread,
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   125
                                    uint64_t safepoint_count);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   126
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   127
  // Called when a thread voluntarily blocks
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   128
  static void block(JavaThread *thread);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   129
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   130
  // Called from VMThread during handshakes.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   131
  // If true the VMThread may safely process the handshake operation for the JavaThread.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   132
  static bool handshake_safe(JavaThread *thread);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   133
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   136
  static void init(Thread* vmthread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   138
  // Roll all threads forward to safepoint. Must be called by the VMThread.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static void begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  static void end();                    // Start all suspended threads again...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   142
  // The value for a not set safepoint id.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   143
  static const uint64_t InactiveSafepointCounter;
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 11631
diff changeset
   144
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // Query
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   146
  static bool is_at_safepoint()                   { return _state == _synchronized; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   147
  static bool is_synchronizing()                  { return _state == _synchronizing; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   148
  static uint64_t safepoint_counter()             { return _safepoint_counter; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   149
  static bool is_same_safepoint(uint64_t counter) { return (SafepointSynchronize::safepoint_counter() - counter) < 2; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Exception handling for page polling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  static void handle_polling_page_exception(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // VM Thread interface for determining safepoint rate
5042
f86707fd195a 6933402: RFE: Improve PrintSafepointStatistics output to track cleanup time
xlu
parents: 1
diff changeset
   154
  static long last_non_safepoint_interval() {
f86707fd195a 6933402: RFE: Improve PrintSafepointStatistics output to track cleanup time
xlu
parents: 1
diff changeset
   155
    return os::javaTimeMillis() - _end_of_last_safepoint;
f86707fd195a 6933402: RFE: Improve PrintSafepointStatistics output to track cleanup time
xlu
parents: 1
diff changeset
   156
  }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6269
diff changeset
   157
  static long end_of_last_safepoint() {
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6269
diff changeset
   158
    return _end_of_last_safepoint;
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6269
diff changeset
   159
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  static bool is_cleanup_needed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static void do_cleanup_tasks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static void print_stat_on_exit();
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   164
  static void inc_vmop_coalesced_count() { _coalesced_vmop_count++; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   166
  static void set_is_at_safepoint()             { _state = _synchronized; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   167
  static void set_is_not_at_safepoint()         { _state = _not_synchronized; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 13195
diff changeset
   169
  // Assembly support
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   170
  static address address_of_state()             { return (address)&_state; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
52672
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   172
  // Only used for making sure that no safepoint has happened in
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   173
  // JNI_FastGetField. Therefore only the low 32-bits are needed
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   174
  // even if this is a 64-bit counter.
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   175
  static address safepoint_counter_addr() {
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   176
#ifdef VM_LITTLE_ENDIAN
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   177
    return (address)&_safepoint_counter;
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   178
#else /* BIG */
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   179
    // Return pointer to the 32 LSB:
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   180
    return (address) (((uint32_t*)(&_safepoint_counter)) + 1);
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   181
#endif
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   182
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
49333
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   185
// Some helper assert macros for safepoint checks.
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   186
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   187
#define assert_at_safepoint()                                           \
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   188
  assert(SafepointSynchronize::is_at_safepoint(), "should be at a safepoint")
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   189
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   190
#define assert_at_safepoint_msg(...)                                    \
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   191
  assert(SafepointSynchronize::is_at_safepoint(), __VA_ARGS__)
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   192
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   193
#define assert_not_at_safepoint()                                       \
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   194
  assert(!SafepointSynchronize::is_at_safepoint(), "should not be at a safepoint")
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   195
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   196
#define assert_not_at_safepoint_msg(...)                                \
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   197
  assert(!SafepointSynchronize::is_at_safepoint(), __VA_ARGS__)
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
// State class for a thread suspended at a safepoint
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11637
diff changeset
   200
class ThreadSafepointState: public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
 private:
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   202
  // At polling page safepoint (NOT a poll return safepoint):
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   203
  volatile bool                   _at_poll_safepoint;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   204
  JavaThread*                     _thread;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   205
  bool                            _safepoint_safe;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   206
  volatile uint64_t               _safepoint_id;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   207
  JavaThreadState                 _orig_thread_state;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   209
  ThreadSafepointState*           _next;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   211
  void account_safe_thread();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  ThreadSafepointState(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   216
  // Linked list support:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   217
  ThreadSafepointState* get_next() const { return _next; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   218
  void set_next(ThreadSafepointState* value) { _next = value; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   219
  ThreadSafepointState** next_ptr() { return &_next; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   220
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   221
  // examine/restart
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   222
  void examine_state_of_thread(uint64_t safepoint_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void restart();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Query
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  JavaThread*  thread() const         { return _thread; }
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   227
  bool         is_running() const     { return !_safepoint_safe; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   228
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   229
  uint64_t get_safepoint_id() const;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   230
  void     reset_safepoint_id();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   231
  void     set_safepoint_id(uint64_t sid);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   232
6269
10e06287c0b0 6975006: assert(check.is_deoptimized_frame()) failed: missed deopt
never
parents: 5547
diff changeset
   233
  JavaThreadState orig_thread_state() const { return _orig_thread_state; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // Support for safepoint timeout (debugging)
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   236
  bool is_at_poll_safepoint()           { return _at_poll_safepoint; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   237
  void set_at_poll_safepoint(bool val)  { _at_poll_safepoint = val; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  void handle_polling_page_exception();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void print() const                        { print_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // Initialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  static void create(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  static void destroy(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6269
diff changeset
   250
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   251
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52673
diff changeset
   252
#endif // SHARE_RUNTIME_SAFEPOINT_HPP