src/hotspot/share/runtime/safepoint.hpp
author rehn
Fri, 29 Nov 2019 12:09:25 +0100
changeset 59325 3636bab5e81e
parent 59258 4c2557ab304e
permissions -rw-r--r--
8234086: VM operation can be simplified Reviewed-by: kbarrett, dholmes, dcubed
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"
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
    31
#include "runtime/vmOperations.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "utilities/ostream.hpp"
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    33
#include "utilities/waitBarrier.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Safepoint synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
////
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    38
// The VMThread uses the SafepointSynchronize::begin/end
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// methods to enter/exit a safepoint region. The begin method will roll
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// all JavaThreads forward to a safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// JavaThreads must use the ThreadSafepointState abstraction (defined in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// thread.hpp) to indicate that that they are at a safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// The Mutex/Condition variable and ObjectLocker classes calls the enter/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// exit safepoint methods, when a thread is blocked/restarted. Hence, all mutex exter/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// exit points *must* be at a safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class ThreadSafepointState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    51
class SafepointStateTracker {
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    52
  uint64_t _safepoint_id;
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    53
  bool     _at_safepoint;
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    54
public:
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    55
  SafepointStateTracker(uint64_t safepoint_id, bool at_safepoint);
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    56
  bool safepoint_state_changed();
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    57
};
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    58
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// Implements roll-forward to safepoint (safepoint synchronization)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
class SafepointSynchronize : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  enum SynchronizeState {
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    65
      _not_synchronized = 0,                   // Threads not synchronized at a safepoint. Keep this value 0.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      _synchronizing    = 1,                   // Synchronizing in progress
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    67
      _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
    68
                                               // VM thread and any NonJavaThread may be running.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    71
  // The enums are listed in the order of the tasks when done serially.
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    72
  enum SafepointCleanupTasks {
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    73
    SAFEPOINT_CLEANUP_DEFLATE_MONITORS,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    74
    SAFEPOINT_CLEANUP_UPDATE_INLINE_CACHES,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    75
    SAFEPOINT_CLEANUP_COMPILATION_POLICY,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    76
    SAFEPOINT_CLEANUP_SYMBOL_TABLE_REHASH,
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    77
    SAFEPOINT_CLEANUP_STRING_TABLE_REHASH,
47774
69c081ca110a 8184765: Dynamically resize SystemDictionary
gziemski
parents: 47216
diff changeset
    78
    SAFEPOINT_CLEANUP_SYSTEM_DICTIONARY_RESIZE,
55569
8e3a0ebf3497 8226366: Excessive ServiceThread wakeups for OopStorage cleanup
kbarrett
parents: 55514
diff changeset
    79
    SAFEPOINT_CLEANUP_REQUEST_OOPSTORAGE_CLEANUP,
46702
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    80
    // Leave this one last.
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    81
    SAFEPOINT_CLEANUP_NUM_TASKS
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    82
  };
13ae789b982e 8180932: Parallelize safepoint cleanup
rkennke
parents: 37176
diff changeset
    83
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
 private:
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    85
  friend class SafepointMechanism;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    86
  friend class ThreadSafepointState;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    87
  friend class HandshakeState;
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
    88
  friend class SafepointStateTracker;
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    89
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    90
  // Threads might read this flag directly, without acquiring the Threads_lock:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    91
  static volatile SynchronizeState _state;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    92
  // Number of threads we are waiting for to block:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    93
  static int              _waiting_to_block;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    94
  // Counts the number of active critical natives during the safepoint:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    95
  static int              _current_jni_active_count;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // This counter is used for fast versions of jni_Get<Primitive>Field.
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
    98
  // An even value means there are no ongoing safepoint operations.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // The counter is incremented ONLY at the beginning and end of each
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   100
  // safepoint.
52672
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   101
  static volatile uint64_t _safepoint_counter;
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   102
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   103
  // A change in this counter or a change in the result of
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   104
  // is_at_safepoint() are used by SafepointStateTracker::
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   105
  // safepoint_state_changed() to determine its answer.
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   106
  static uint64_t _safepoint_id;
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   107
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   108
  // JavaThreads that need to block for the safepoint will stop on the
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   109
  // _wait_barrier, where they can quickly be started again.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   110
  static WaitBarrier* _wait_barrier;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   111
  static long         _end_of_last_safepoint;     // Time of last safepoint in milliseconds
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   112
  static julong       _coalesced_vmop_count;     // coalesced vmop count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // For debug long safepoint
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   115
  static void print_safepoint_timeout();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   117
  // Helper methods for safepoint procedure:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   118
  static void arm_safepoint();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   119
  static int synchronize_threads(jlong safepoint_limit_time, int nof_threads, int* initial_running);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   120
  static void disarm_safepoint();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   121
  static void increment_jni_active_count();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   122
  static void decrement_waiting_to_block();
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   123
  static bool thread_not_running(ThreadSafepointState *cur_state);
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   124
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   125
  // Used in safepoint_safe to do a stable load of the thread state.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   126
  static bool try_stable_load_state(JavaThreadState *state,
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   127
                                    JavaThread *thread,
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   128
                                    uint64_t safepoint_count);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   129
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   130
  // Called when a thread voluntarily blocks
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   131
  static void block(JavaThread *thread);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   132
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   133
  // Called from VMThread during handshakes.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   134
  // If true the VMThread may safely process the handshake operation for the JavaThread.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   135
  static bool handshake_safe(JavaThread *thread);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   136
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   137
  static uint64_t safepoint_counter()             { return _safepoint_counter; }
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   138
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   141
  static void init(Thread* vmthread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   143
  // Roll all threads forward to safepoint. Must be called by the VMThread.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  static void begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  static void end();                    // Start all suspended threads again...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   147
  // The value for a not set safepoint id.
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   148
  static const uint64_t InactiveSafepointCounter;
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 11631
diff changeset
   149
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Query
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   151
  static bool is_at_safepoint()                   { return _state == _synchronized; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   152
  static bool is_synchronizing()                  { return _state == _synchronizing; }
55514
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   153
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   154
  static uint64_t safepoint_id() {
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   155
    return _safepoint_id;
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   156
  }
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   157
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   158
  static SafepointStateTracker safepoint_state_tracker() {
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   159
    return SafepointStateTracker(safepoint_id(), is_at_safepoint());
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   160
  }
03468b206457 8225702: Safepoint counter can't be used for safepoint detection
rehn
parents: 54807
diff changeset
   161
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Exception handling for page polling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static void handle_polling_page_exception(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static bool is_cleanup_needed();
59325
3636bab5e81e 8234086: VM operation can be simplified
rehn
parents: 59258
diff changeset
   166
  static bool is_forced_cleanup_needed();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  static void do_cleanup_tasks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   169
  static void set_is_at_safepoint()             { _state = _synchronized; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   170
  static void set_is_not_at_safepoint()         { _state = _not_synchronized; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 13195
diff changeset
   172
  // Assembly support
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   173
  static address address_of_state()             { return (address)&_state; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
52672
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   175
  // Only used for making sure that no safepoint has happened in
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   176
  // JNI_FastGetField. Therefore only the low 32-bits are needed
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   177
  // even if this is a 64-bit counter.
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   178
  static address safepoint_counter_addr() {
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   179
#ifdef VM_LITTLE_ENDIAN
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   180
    return (address)&_safepoint_counter;
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   181
#else /* BIG */
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   182
    // Return pointer to the 32 LSB:
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   183
    return (address) (((uint32_t*)(&_safepoint_counter)) + 1);
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   184
#endif
bbfa1b3aaf7e 8212108: SafepointSynchronizer never ending counter (big enough)
rehn
parents: 52518
diff changeset
   185
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
49333
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   188
// 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
   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()                                           \
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(), "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
   192
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   193
#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
   194
  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
   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()                                       \
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(), "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
   198
489f1dd40582 8196876: OopStorage::assert_at_safepoint clashes with assert_at_safepoint macros in g1CollectedHeap.hpp
kbarrett
parents: 49169
diff changeset
   199
#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
   200
  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
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
// State class for a thread suspended at a safepoint
53847
74b616640b00 8219244: NMT: Change ThreadSafepointState's allocation type from mtInternal to mtThread
zgu
parents: 53775
diff changeset
   203
class ThreadSafepointState: public CHeapObj<mtThread> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
 private:
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   205
  // At polling page safepoint (NOT a poll return safepoint):
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   206
  volatile bool                   _at_poll_safepoint;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   207
  JavaThread*                     _thread;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   208
  bool                            _safepoint_safe;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   209
  volatile uint64_t               _safepoint_id;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   211
  ThreadSafepointState*           _next;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   213
  void account_safe_thread();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  ThreadSafepointState(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   218
  // Linked list support:
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   219
  ThreadSafepointState* get_next() const { return _next; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   220
  void set_next(ThreadSafepointState* value) { _next = value; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   221
  ThreadSafepointState** next_ptr() { return &_next; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   222
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   223
  // examine/restart
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   224
  void examine_state_of_thread(uint64_t safepoint_count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  void restart();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Query
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  JavaThread*  thread() const         { return _thread; }
53775
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   229
  bool         is_running() const     { return !_safepoint_safe; }
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   230
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   231
  uint64_t get_safepoint_id() const;
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   232
  void     reset_safepoint_id();
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   233
  void     set_safepoint_id(uint64_t sid);
5d20b085d893 8203469: Faster safepoints
rehn
parents: 53646
diff changeset
   234
1
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // Initialize
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  static void create(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  static void destroy(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   249
class SafepointTracing : public AllStatic {
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   250
private:
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   251
  // Absolute
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   252
  static jlong _last_safepoint_begin_time_ns;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   253
  static jlong _last_safepoint_sync_time_ns;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   254
  static jlong _last_safepoint_cleanup_time_ns;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   255
  static jlong _last_safepoint_end_time_ns;
54009
13acb4339895 8220151: SafepointTracing::end_of_last_safepoint_ms should return ms since epoch.
rehn
parents: 53895
diff changeset
   256
  // amount of ms since epoch
13acb4339895 8220151: SafepointTracing::end_of_last_safepoint_ms should return ms since epoch.
rehn
parents: 53895
diff changeset
   257
  static jlong _last_safepoint_end_time_epoch_ms;
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   258
  // Relative
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   259
  static jlong _last_app_time_ns;
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 6269
diff changeset
   260
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   261
  static int _nof_threads;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   262
  static int _nof_running;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   263
  static int _page_trap;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   264
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   265
  static VM_Operation::VMOp_Type _current_type;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   266
  static jlong     _max_sync_time;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   267
  static jlong     _max_vmop_time;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   268
  static uint64_t  _op_count[VM_Operation::VMOp_Terminating];
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   269
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   270
  static void statistics_log();
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   271
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   272
public:
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   273
  static void init();
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   274
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   275
  static void begin(VM_Operation::VMOp_Type type);
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   276
  static void synchronized(int nof_threads, int nof_running, int traps);
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   277
  static void cleanup();
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   278
  static void end();
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   279
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   280
  static void statistics_exit_log();
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   281
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   282
  static jlong time_since_last_safepoint_ms() {
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   283
    return (os::javaTimeNanos() - _last_safepoint_end_time_ns) / (NANOUNITS / MILLIUNITS);
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   284
  }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   285
54009
13acb4339895 8220151: SafepointTracing::end_of_last_safepoint_ms should return ms since epoch.
rehn
parents: 53895
diff changeset
   286
  static jlong end_of_last_safepoint_epoch_ms() {
13acb4339895 8220151: SafepointTracing::end_of_last_safepoint_ms should return ms since epoch.
rehn
parents: 53895
diff changeset
   287
    return _last_safepoint_end_time_epoch_ms;
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   288
  }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   289
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   290
  static jlong start_of_safepoint() {
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   291
    return _last_safepoint_begin_time_ns;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   292
  }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53847
diff changeset
   293
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   294
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52673
diff changeset
   295
#endif // SHARE_RUNTIME_SAFEPOINT_HPP